:root {
  --ink: #1c241c;
  --muted: #5c675c;
  --paper: #f3efe6;
  --leaf: #2f5d3a;
  --leaf-deep: #1e3d28;
  --amber: #c47a2c;
  --amber-soft: #e8c48a;
  --line: rgba(28, 36, 28, 0.12);
  --shadow: 0 24px 60px rgba(20, 35, 24, 0.18);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(232, 196, 138, 0.28), transparent 55%),
    linear-gradient(180deg, #f7f3eb 0%, var(--paper) 45%, #ebe5d8 100%);
  line-height: 1.55;
}

a { color: inherit; }
img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 6vw;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: linear-gradient(180deg, rgba(20, 35, 24, 0.45), transparent);
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
  letter-spacing: -0.02em;
  color: #f7f3eb;
}
.site-header nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.site-header nav a {
  text-decoration: none;
  color: rgba(247, 243, 235, 0.88);
  font-weight: 500;
  font-size: 0.95rem;
}
.site-header nav a:hover { color: #fff; }

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: wash 1.2s ease both;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 30, 22, 0.72) 0%, rgba(18, 30, 22, 0.45) 48%, rgba(18, 30, 22, 0.2) 100%),
    linear-gradient(180deg, rgba(18, 30, 22, 0.25) 0%, rgba(18, 30, 22, 0.55) 100%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 12vw, 8rem) 6vw clamp(3rem, 8vw, 5rem);
  max-width: 44rem;
  color: #f7f3eb;
  animation: rise 0.9s ease both;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--amber-soft);
  font-weight: 600;
  margin: 0 0 1rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.95;
  margin: 0 0 1.2rem;
  letter-spacing: -0.03em;
  max-width: 10ch;
}
.lede {
  font-size: 1.15rem;
  color: rgba(247, 243, 235, 0.88);
  max-width: 34rem;
  margin: 0 0 1.8rem;
}
.cta-row { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary {
  background: var(--leaf-deep);
  color: #f7f3eb;
}
.btn.primary:hover { background: var(--leaf); }
.hero .btn.primary {
  background: var(--amber);
  color: #1c241c;
}
.hero .btn.primary:hover { background: var(--amber-soft); }
.btn.ghost {
  background: transparent;
  border-color: rgba(247, 243, 235, 0.45);
  color: #f7f3eb;
}
.btn.ghost:hover { background: rgba(247, 243, 235, 0.12); }

.strip {
  padding: 1rem 6vw;
  text-align: center;
  color: var(--muted);
  border-block: 1px solid var(--line);
  font-size: 0.95rem;
}

.section {
  padding: clamp(3rem, 8vw, 5.5rem) 6vw;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.section.in, .newsletter.in, .strip.in,
html:not(.js) .section,
html:not(.js) .newsletter,
html:not(.js) .strip {
  opacity: 1;
  transform: none;
}
.section.alt {
  background: rgba(255, 255, 255, 0.35);
  border-block: 1px solid var(--line);
}
.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}
.section-head h2,
.newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 0.7rem;
  letter-spacing: -0.02em;
}
.section-head p { margin: 0 0 1.2rem; color: var(--muted); }

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}
.guide-grid article {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid var(--leaf);
}
.guide-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  flex-shrink: 0;
}
.guide-grid span,
.guide-grid h3,
.guide-grid p {
  display: block;
  padding-left: 1.15rem;
  padding-right: 1.15rem;
}
.guide-grid span {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--amber);
  font-weight: 600;
  margin: 0.9rem 0 0.35rem;
}
.guide-grid h3,
.kit-rows h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.55rem;
}
.guide-grid p {
  margin: 0 0 1.2rem;
  color: var(--muted);
}

.craft-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}
.craft-list a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.45rem;
  transition: transform 0.2s ease;
}
.craft-list a:hover { transform: translateY(-3px); }
.craft-list img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  flex: 0 0 auto;
  align-self: stretch;
}
.craft-list strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  padding: 0 0.1rem;
}
.craft-list span {
  color: var(--muted);
  font-size: 0.92rem;
  padding: 0 0.1rem 0.4rem;
}

.kit-rows {
  display: grid;
  gap: 1.4rem;
}
.kit-rows article {
  display: grid;
  grid-template-columns: minmax(0, 280px) 1fr;
  gap: 1.25rem;
  align-items: center;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}
.kit-rows img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.tag {
  margin: 0 0 0.4rem;
  color: var(--leaf);
  font-weight: 600;
  font-size: 0.92rem;
}
.kit-rows p:last-child { margin: 0; color: var(--muted); }

.classes {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}
.classes-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.classes .section-head { margin-bottom: 0; }

.newsletter {
  margin: 0 6vw 4rem;
  padding: clamp(2rem, 5vw, 3rem);
  background: linear-gradient(135deg, var(--leaf-deep), #355f3f 55%, #6d4a24);
  color: #f7f3eb;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.newsletter p { color: rgba(247, 243, 235, 0.85); max-width: 34rem; }
.newsletter form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}
.newsletter input {
  flex: 1 1 220px;
  border: 0;
  padding: 0.9rem 1rem;
  font: inherit;
  background: rgba(247, 243, 235, 0.95);
  color: var(--ink);
}
.newsletter .btn.primary {
  background: var(--amber);
  color: #1c241c;
}
.newsletter .btn.primary:hover { background: var(--amber-soft); }

.site-footer {
  padding: 2rem 6vw 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.site-footer strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.fine { font-size: 0.85rem; }

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes wash {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .guide-grid { grid-template-columns: 1fr; }
  .craft-list { grid-template-columns: 1fr 1fr; }
  .kit-rows article { grid-template-columns: 1fr; }
  .classes { grid-template-columns: 1fr; }
  .site-header nav { display: none; }
  .hero { min-height: 88vh; }
}
