:root {
  --bg: #16110d;
  --bg-soft: #1f1813;
  --bg-card: #261d17;
  --paper: #f3eadc;
  --ink: #f6efe4;
  --ink-dim: #c9b8a4;
  --ink-faint: #8f7f6e;
  --clay: #e27a3a;
  --clay-deep: #b44d1f;
  --sage: #8fb573;
  --gold: #e8c27a;
  --line: rgba(232, 194, 122, .18);
  --line-strong: rgba(226, 122, 58, .35);

  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --font-body: "Outfit", "Avenir Next", "Segoe UI", system-ui, sans-serif;

  --shell: 1120px;
  --radius: 20px;
  --header-h: 76px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow: 0 28px 70px rgba(0, 0, 0, .38);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
img { height: auto; border: 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: var(--gold); text-underline-offset: 3px; }
a:hover { color: var(--paper); }
button { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -70px;
  z-index: 200;
  background: var(--gold);
  color: #2a1a0c;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { top: 16px; color: #2a1a0c; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 24px;
}
.shell-narrow { max-width: 760px; }

.section { padding: 96px 0; position: relative; }
.section-warm {
  background:
    linear-gradient(180deg, transparent, rgba(226, 122, 58, .05) 12%, rgba(226, 122, 58, .05) 88%, transparent);
  border-block: 1px solid var(--line);
}

.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head-left { margin-inline: 0; text-align: left; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
.section-lede { margin-top: 16px; color: var(--ink-dim); font-size: 1.05rem; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--clay); color: #fff8ef; }
.btn-primary:hover { background: #ef8a48; color: #fff8ef; }
.btn-ghost { background: transparent; color: var(--paper); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--gold); color: var(--paper); }
.btn-sm { min-height: 42px; padding: 8px 16px; font-size: .88rem; }
.btn-lg { min-height: 54px; padding: 14px 28px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  backdrop-filter: blur(18px);
  background: rgba(22, 17, 13, .72);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(22, 17, 13, .9);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--paper);
  flex-shrink: 0;
}
.brand img { width: 40px; height: 40px; border-radius: 12px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -.03em;
}
.brand-name em { font-style: italic; color: var(--gold); font-weight: 500; }

.nav { display: flex; align-items: center; gap: 22px; }
.nav a {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
}
.nav a:hover { color: var(--paper); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--paper);
  border-radius: 2px;
}

.hero {
  position: relative;
  padding: 36px 0 64px;
  overflow: hidden;
}
.hero-wash {
  position: absolute;
  inset: -20% 0 auto;
  height: 80%;
  background:
    radial-gradient(ellipse 70% 80% at 80% 20%, rgba(226, 122, 58, .18), transparent 58%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(143, 181, 115, .08), transparent 55%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: 48px 40px;
  align-items: center;
}
.hero-copy { max-width: 540px; }
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-style: italic;
  line-height: .94;
}
.hero h1 span { font-style: normal; color: var(--gold); }
.lede {
  margin: 20px 0 26px;
  max-width: 480px;
  color: var(--ink-dim);
  font-size: 1.08rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 26px;
  color: var(--ink-faint);
  font-size: .88rem;
}
.hero-meta strong { color: var(--paper); font-weight: 600; }

.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.86fr;
  grid-template-rows: auto auto;
  gap: 12px;
  min-height: 460px;
}
.hero-main,
.hero-side {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}
.hero-main { grid-row: span 2; }
.hero-main img,
.hero-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-main img { min-height: 460px; }
.hero-side img { aspect-ratio: 4 / 3; min-height: 168px; }
.hero-main figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(22, 17, 13, .72);
  color: var(--paper);
  font-size: .74rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-main { position: relative; }

.hero-chip {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(22, 17, 13, .82);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  color: var(--ink-dim);
  font-size: .72rem;
  letter-spacing: .02em;
}
.hero-chip b { color: var(--paper); font-size: .92rem; font-weight: 600; letter-spacing: 0; }
.chip-a { top: 18px; right: -8px; }
.chip-b { bottom: 28px; left: -12px; }

.ribbon {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #1a1410;
  padding: 14px 0;
}
.ribbon-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: ribbon 28s linear infinite;
  color: var(--ink-dim);
  font-size: .92rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.ribbon-track i { color: var(--clay); font-style: normal; }
@keyframes ribbon {
  to { transform: translateX(-50%); }
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.story-copy h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.story-copy p + p { margin-top: 16px; color: var(--ink-dim); }
.story-copy p:first-of-type { color: var(--ink-dim); }
.pull {
  margin: 28px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.35;
  color: var(--paper);
}
.story-frame {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.story-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.story-frame figcaption {
  padding: 12px 16px 14px;
  background: var(--bg-card);
  color: var(--ink-faint);
  font-size: .82rem;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.track-card {
  padding: 24px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--line);
}
.track-card .mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 36px;
  padding: 0 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(226, 122, 58, .14);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}
.track-card.cut .mark { background: rgba(226, 80, 60, .16); color: #ff8d78; }
.track-card.save .mark { background: rgba(143, 181, 115, .16); color: var(--sage); }
.track-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.track-card p { color: var(--ink-dim); font-size: .95rem; }

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.shot {
  margin: 0;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card);
}
.shot button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.shot:hover img { transform: scale(1.03); }
.shot.tall { grid-row: span 2; }
.shot.tall img { min-height: 520px; }
.shot figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(22, 17, 13, .72);
  backdrop-filter: blur(8px);
  color: var(--paper);
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step {
  padding: 28px 24px 26px;
  border-top: 1px solid var(--line-strong);
}
.step-num {
  display: block;
  margin-bottom: 16px;
  color: var(--clay);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-style: italic;
}
.step h3 { font-size: 1.4rem; margin-bottom: 10px; }
.step p { color: var(--ink-dim); }

.facts-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.facts > div {
  padding: 18px 20px;
  background: var(--bg-card);
}
.facts dt {
  color: var(--ink-faint);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.facts dd { margin: 0; font-weight: 600; color: var(--paper); }

.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-weight: 600;
  font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 400;
}
.faq details[open] summary::after { content: "–"; }
.faq details p {
  padding: 0 0 20px;
  color: var(--ink-dim);
}

.cta-band {
  position: relative;
  padding: 88px 0;
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(226, 122, 58, .22), transparent 60%);
}
.cta-inner { position: relative; max-width: 640px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 18px 0 12px; }
.cta-inner p { color: var(--ink-dim); margin-bottom: 24px; }
.cta-mark { margin: 0 auto; width: 64px; height: 64px; border-radius: 18px; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 28px;
  background: #120e0b;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-brand p { margin-top: 14px; color: var(--ink-faint); font-size: .92rem; max-width: 360px; }
.footer-brand p + p { margin-top: 8px; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav h2 {
  font-family: var(--font-body);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 6px;
}
.footer-nav a { color: var(--ink-dim); text-decoration: none; }
.footer-nav a:hover { color: var(--paper); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-size: .85rem;
}

.page-hero { padding: 72px 0 24px; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-style: italic; }
.page-hero p { margin-top: 14px; color: var(--ink-dim); }

.prose { padding: 24px 0 96px; }
.prose .updated { color: var(--ink-faint); font-size: .9rem; margin-bottom: 28px; }
.prose h2 {
  font-size: 1.55rem;
  margin: 36px 0 12px;
}
.prose p, .prose li { color: var(--ink-dim); }
.prose p + p { margin-top: 14px; }
.prose ul { padding-left: 18px; list-style: disc; }
.prose li { margin: 8px 0; }
.prose li::marker { color: var(--clay); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(10, 8, 6, .88);
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(1100px, 100%); max-height: 86vh; border-radius: 16px; }
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--paper);
  color: #2a1a0c;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ribbon-track { animation: none; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 16px;
    background: #231b16;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav-toggle { display: flex; }
  .header-actions .btn { display: none; }
  .story, .facts-wrap, .steps, .track-grid, .gallery, .footer-inner,
  .hero-grid, .hero-stage {
    grid-template-columns: 1fr;
  }
  .shot.tall { grid-row: auto; }
  .shot.tall img { min-height: 240px; aspect-ratio: 16 / 10; }
  .hero-main { grid-row: auto; }
  .hero-main img { min-height: 0; aspect-ratio: 16 / 10; }
  .hero-stage { min-height: 0; }
  .chip-a { top: 12px; right: 12px; }
  .chip-b { display: none; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .track-grid, .facts { grid-template-columns: 1fr; }
  .hero h1 { font-size: 3.1rem; }
}
