/* ============================================================
   ABROAD STAGE — abroadstage.com
   Brand: deep #3D1208 · warm #A04020 · sepia #B8935A · sand #D4B483
   Fonts: Cormorant Garamond (headlines) · Jost (body/UI)
   ============================================================ */

:root {
  --deep:   #3D1208;
  --rich:   #5C1A0A;
  --mid:    #7A2E15;
  --warm:   #A04020;
  --light:  #C8683A;
  --sepia:  #B8935A;
  --sand:   #D4B483;
  --cream:  #F2E8D5;
  --owhite: #FAF5EC;
  --white:  #FFFFFF;
  --tdark:  #1E0A05;
  --tmid:   #4A2010;
  --expo:   cubic-bezier(.16, 1, .3, 1);
  --p2out:  cubic-bezier(.5, 1, .89, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--tdark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

::selection { background: var(--sand); color: var(--deep); }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 72px; padding: 0 clamp(20px, 4vw, 56px);
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  transition: background .6s var(--p2out), height .4s var(--p2out), box-shadow .6s var(--p2out);
}
.nav.solid {
  background: var(--deep);
  height: 60px;
  box-shadow: 0 6px 30px rgba(30, 10, 5, .25);
}
.nav-logo img { height: 22px; width: auto; transition: height .4s var(--p2out); }
.nav.solid .nav-logo img { height: 18px; }
.nav-links { display: flex; gap: clamp(18px, 2.6vw, 34px); list-style: none; align-items: center; }
.nav-links a {
  font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(242, 232, 213, .65); text-decoration: none; font-weight: 400;
  position: relative; padding: 4px 0;
  transition: color .4s var(--p2out);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px; background: var(--sand);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--expo);
}
.nav-links a:hover, .nav-links a.active { color: var(--owhite); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
  background: var(--sand); color: var(--deep) !important; padding: 10px 20px; border-radius: 24px;
  text-decoration: none;
  transition: transform .3s var(--p2out), box-shadow .3s var(--p2out);
}
.nav-cta::after { display: none; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212, 180, 131, .35); }

/* mobile nav */
.nav-burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px; position: relative; z-index: 1001;
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px; background: var(--owhite);
  margin: 5px auto; transition: transform .4s var(--expo), opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-burger { display: block; }
  .nav-links {
    position: fixed; inset: 0; z-index: 1000;
    background: var(--deep);
    flex-direction: column; justify-content: center; gap: 30px;
    opacity: 0; pointer-events: none;
    transition: opacity .45s var(--p2out);
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 14px; letter-spacing: 4px; }
  .nav-burger { position: relative; }
  .nav.menu-open { background: transparent; box-shadow: none; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block; padding: 16px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600;
  text-decoration: none; border-radius: 32px; border: 0; cursor: pointer;
  transition: transform .35s var(--expo), box-shadow .35s var(--expo), background .35s var(--p2out), color .35s var(--p2out);
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--sand); color: var(--deep); box-shadow: 0 10px 30px rgba(184, 147, 90, .25); }
.btn-primary:hover { box-shadow: 0 16px 40px rgba(184, 147, 90, .45); }
.btn-outline { background: transparent; color: var(--warm); border: 1px solid var(--warm); }
.btn-outline:hover { background: var(--warm); color: #fff; }
.btn-outline-light { background: transparent; color: var(--sand); border: 1px solid rgba(212, 180, 131, .5); }
.btn-outline-light:hover { background: var(--sand); color: var(--deep); }

.text-link {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  color: var(--warm); text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--sand); padding-bottom: 3px;
  transition: gap .3s var(--expo), color .3s;
}
.text-link:hover { gap: 12px; color: var(--mid); }

/* ============ TYPE SYSTEM ============ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4.5vw, 56px); }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 clamp(20px, 4.5vw, 56px); }

.eyebrow {
  font-size: 10.5px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--warm); font-weight: 500; margin-bottom: 18px;
}
.h-display {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.6vw, 64px); font-weight: 400;
  color: var(--deep); line-height: 1.08;
}
.h-display em, .h-section em { font-style: italic; color: var(--warm); }
.h-section {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.8vw, 52px); font-weight: 400;
  color: var(--deep); line-height: 1.1;
}
.lede {
  margin-top: 22px; font-size: 15.5px; line-height: 1.8;
  color: var(--tmid); font-weight: 300; max-width: 640px;
}
.on-dark .eyebrow { color: var(--sepia); }
.on-dark .h-display, .on-dark .h-section { color: var(--owhite); }
.on-dark .h-display em, .on-dark .h-section em { color: var(--sand); }
.on-dark .lede { color: rgba(242, 232, 213, .7); }

/* split-line reveal (GSAP) */
.split-lines .line { display: block; overflow: hidden; }
.split-lines .line-inner { display: block; transform: translateY(110%); }
html.no-js .split-lines .line-inner, html.reduced .split-lines .line-inner { transform: none; }

/* generic reveal (GSAP fallback-safe) */
[data-reveal] { opacity: 0; transform: translateY(34px); }
html.no-js [data-reveal], html.reduced [data-reveal] { opacity: 1; transform: none; }

/* image reveal */
.img-reveal { overflow: hidden; }
.img-reveal img { transform: scale(1.12); will-change: transform; }
html.no-js .img-reveal img, html.reduced .img-reveal img { transform: none; }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: radial-gradient(130% 100% at 50% 12%, #55200e 0%, var(--deep) 52%, #2a0c05 100%);
  padding: 120px 24px 90px;
}
.hero-grid-bg {
  position: absolute; inset: -2%; pointer-events: none;
  background-image:
    linear-gradient(rgba(212, 180, 131, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 180, 131, .04) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-glow {
  position: absolute; width: 55vw; height: 55vw; max-width: 760px; max-height: 760px;
  border-radius: 50%; filter: blur(90px); opacity: .5; pointer-events: none;
  background: radial-gradient(circle, rgba(160, 64, 32, .55), transparent 68%);
  top: 6%; left: 50%; transform: translateX(-50%);
}
.hero-content { position: relative; z-index: 3; text-align: center; max-width: 900px; }
.hero-eyebrow {
  font-size: clamp(9.5px, 1.1vw, 11px); letter-spacing: 6px; color: var(--sepia);
  text-transform: uppercase; font-weight: 400; margin-bottom: 42px;
}
.hero-logo img { width: clamp(240px, 30vw, 430px); margin: 0 auto; }
.hero-tagline {
  margin-top: 34px;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(19px, 2.2vw, 27px); font-weight: 300;
  color: rgba(242, 232, 213, .85);
}
.hero-actions { margin-top: 46px; display: flex; flex-direction: column; align-items: center; gap: 26px; }
.hero-sub {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(212, 180, 131, .65); text-decoration: none;
  display: inline-flex; align-items: center; gap: 9px;
  transition: color .3s;
}
.hero-sub:hover { color: var(--sand); }
.hero-sub svg { transition: transform .3s var(--expo); }
.hero-sub:hover svg { transform: translateY(3px); }

.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3;
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(212, 180, 131, .5), transparent);
}
.scroll-cue::after {
  content: ''; position: absolute; top: 0; left: -2px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--sand);
  animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue { 0%, 100% { top: 0; opacity: 1; } 55% { top: 38px; opacity: .35; } 90% { opacity: 0; } }

/* page hero (inner pages) */
.page-hero {
  position: relative; overflow: hidden;
  background: radial-gradient(130% 120% at 50% 0%, #55200e 0%, var(--deep) 58%, #2a0c05 100%);
  padding: 190px 0 110px; text-align: left;
}
.page-hero .hero-grid-bg { background-size: 56px 56px; }
.page-hero .container { position: relative; z-index: 2; }

/* ============ MARQUEE ============ */
.marquee {
  background: var(--deep); padding: 22px 0; overflow: hidden;
  border-top: 1px solid rgba(212, 180, 131, .12);
}
.marquee-track { display: flex; gap: 56px; width: max-content; animation: marquee 30s linear infinite; }
.mq-item {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 17px; color: var(--sand); white-space: nowrap; opacity: .8;
}
.mq-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--warm); align-self: center; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ============ SECTIONS ============ */
.section { padding: clamp(80px, 10vw, 130px) 0; background: var(--white); }
.section-dark { background: var(--deep); }
.section-cream { background: var(--owhite); }

/* mission strip */
.mission-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 38px); font-weight: 300; font-style: italic;
  color: var(--mid); line-height: 1.55; max-width: 900px;
}
.mission-quote strong { color: var(--warm); font-weight: 500; }

/* stats band */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  margin-top: clamp(50px, 6vw, 80px);
  border-top: 1px solid rgba(61, 18, 8, .1); padding-top: clamp(36px, 5vw, 60px);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5vw, 72px); font-weight: 300; color: var(--deep); line-height: 1;
}
.stat-num sup { font-size: .45em; color: var(--warm); }
.stat-label { margin-top: 10px; font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--sepia); font-weight: 500; }
@media (max-width: 760px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }

/* ============ EPISODE FEATURE (home) ============ */
.feature-grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(36px, 5vw, 70px);
  align-items: center; margin-top: clamp(44px, 5vw, 70px);
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }
.ep-meta { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--sepia); margin-bottom: 16px; font-weight: 500; }
.ep-title-lg {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 2.8vw, 40px); font-weight: 500; color: var(--deep); line-height: 1.15;
}
.ep-hook { margin-top: 18px; font-size: 14.5px; line-height: 1.8; color: var(--tmid); font-weight: 300; }

/* video facade */
.video-frame {
  position: relative; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden;
  background: var(--deep); cursor: pointer;
  box-shadow: 0 24px 60px rgba(61, 18, 8, .18);
}
.video-frame img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: transform .8s var(--expo), opacity .4s; }
.video-frame:hover img { transform: scale(1.04); opacity: 1; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(212, 180, 131, .92); border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .35s var(--expo), background .3s;
  pointer-events: none;
}
.video-frame:hover .play-btn { transform: translate(-50%, -50%) scale(1.1); background: var(--sand); }
.play-btn svg { margin-left: 4px; }

/* platform pills */
.plat-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.plat-pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 10.5px; letter-spacing: 1.8px; text-transform: uppercase; font-weight: 500;
  padding: 11px 20px; border-radius: 26px; text-decoration: none;
  color: var(--warm); background: rgba(160, 64, 32, .07);
  transition: background .3s var(--p2out), color .3s var(--p2out), transform .3s var(--expo);
}
.plat-pill:hover { background: var(--warm); color: #fff; transform: translateY(-2px); }
.plat-pill.on-dark-pill { color: var(--sand); background: rgba(212, 180, 131, .12); }
.plat-pill.on-dark-pill:hover { background: var(--sand); color: var(--deep); }
.plat-pill svg { width: 15px; height: 15px; }

/* ============ EPISODE CARDS (podcast page) ============ */
.ep-list { display: flex; flex-direction: column; gap: clamp(60px, 7vw, 100px); margin-top: clamp(50px, 6vw, 80px); }
.ep-card {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px, 4.5vw, 64px);
  align-items: center;
}
.ep-card:nth-child(even) .ep-card-media { order: 2; }
@media (max-width: 900px) {
  .ep-card { grid-template-columns: 1fr; }
  .ep-card:nth-child(even) .ep-card-media { order: 0; }
}
.ep-num {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(48px, 5vw, 68px);
  font-weight: 300; color: var(--sand); line-height: 1;
}
.ep-card .ep-title-lg { margin-top: 12px; }
.ep-route { margin-top: 14px; font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--sepia); font-weight: 500; }

/* next on stage teaser */
.teaser {
  margin-top: clamp(60px, 8vw, 110px);
  background: var(--deep); border-radius: 22px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1.4fr; align-items: stretch;
}
@media (max-width: 820px) { .teaser { grid-template-columns: 1fr; } }
.teaser-img { position: relative; min-height: 320px; }
.teaser-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.teaser-body { padding: clamp(34px, 4.5vw, 64px); display: flex; flex-direction: column; justify-content: center; }
.teaser-date {
  display: inline-block; align-self: flex-start;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
  background: var(--sand); color: var(--deep); padding: 7px 14px; border-radius: 20px; margin-bottom: 22px;
}

/* ============ GUEST CARDS ============ */
.guest-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 28px;
  margin-top: clamp(50px, 6vw, 80px);
}
.guest-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 10px 36px rgba(61, 18, 8, .07);
  transition: transform .5s var(--expo), box-shadow .5s var(--expo);
  display: flex; flex-direction: column;
}
.guest-card:hover { transform: translateY(-8px); box-shadow: 0 26px 60px rgba(61, 18, 8, .14); }
.guest-photo { aspect-ratio: 1 / 1; overflow: hidden; position: relative; }
.guest-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--expo); }
.guest-card:hover .guest-photo img { transform: scale(1.06); }
.guest-body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.guest-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 500; color: var(--deep); }
.guest-route { margin-top: 6px; font-size: 10px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--sepia); font-weight: 500; }
.guest-hook { margin-top: 12px; font-size: 13px; line-height: 1.7; color: var(--tmid); font-weight: 300; flex: 1; }
.guest-links { display: flex; gap: 16px; margin-top: 18px; flex-wrap: wrap; }
.guest-links a {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--warm); text-decoration: none; border-bottom: 1px solid var(--sand); padding-bottom: 2px;
  transition: color .3s;
}
.guest-links a:hover { color: var(--mid); }
.guest-reach { margin-top: 18px; }
.guest-reach button {
  width: 100%; padding: 12px; border-radius: 24px; cursor: pointer;
  background: transparent; border: 1px solid var(--warm); color: var(--warm);
  font-family: 'Jost', sans-serif; font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
  transition: background .3s, color .3s;
}
.guest-reach button:hover { background: var(--warm); color: #fff; }
.guest-card.coming .guest-photo::after {
  content: 'NEXT ON STAGE'; position: absolute; top: 14px; left: 14px;
  background: var(--sand); color: var(--deep);
  font-size: 9px; letter-spacing: 2px; font-weight: 700; padding: 6px 12px; border-radius: 16px;
}

/* home guest strip */
.guest-strip {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
  margin-top: clamp(44px, 5vw, 70px);
}
@media (max-width: 980px) { .guest-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .guest-strip { grid-template-columns: repeat(2, 1fr); } }
.strip-item { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 3 / 4; display: block; text-decoration: none; }
.strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--expo); }
.strip-item:hover img { transform: scale(1.07); }
.strip-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30, 10, 5, .78) 0%, transparent 52%);
}
.strip-cap {
  position: absolute; bottom: 14px; left: 16px; right: 12px; z-index: 2;
  color: var(--owhite);
}
.strip-cap .n { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 500; display: block; }
.strip-cap .c { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--sand); }
.strip-item.coming .strip-cap .c { color: var(--sand); }

/* ============ ABOUT HOST ============ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(40px, 6vw, 90px); align-items: center;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }
.about-photo { border-radius: 20px; overflow: hidden; box-shadow: 0 24px 60px rgba(61, 18, 8, .16); }
.about-photo img { width: 100%; height: auto; }
.about-text p { margin-top: 18px; font-size: 14.5px; line-height: 1.85; color: var(--tmid); font-weight: 300; }
.about-sign {
  margin-top: 26px; font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 22px; color: var(--warm);
}

/* ============ NEWSLETTER ============ */
.nl-band { position: relative; overflow: hidden; }
.nl-band .hero-grid-bg { opacity: .7; }
.nl-inner { position: relative; z-index: 2; max-width: 660px; margin: 0 auto; text-align: center; }
.substack-embed {
  margin: 36px auto 0; max-width: 480px;
  border-radius: 16px; overflow: hidden;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(212, 180, 131, .18);
}
.substack-embed iframe { width: 100%; height: 150px; border: 0; display: block; background: transparent; }
.nl-note { margin-top: 16px; font-size: 11px; color: rgba(242, 232, 213, .45); letter-spacing: .5px; }
.nl-note a { color: var(--sand); }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: clamp(44px, 5vw, 70px); }
@media (max-width: 820px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { background: var(--owhite); border-radius: 16px; padding: 32px 28px; }
.why-num { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 300; color: var(--sand); line-height: 1; }
.why-card h3 { margin-top: 14px; font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 500; color: var(--deep); }
.why-card p { margin-top: 10px; font-size: 13.5px; line-height: 1.75; color: var(--tmid); font-weight: 300; }

/* ============ AS HEARD ON ============ */
.heard-row {
  display: flex; align-items: center; justify-content: center; gap: clamp(30px, 6vw, 70px);
  flex-wrap: wrap; margin-top: 40px;
}
.heard-row a {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--sepia); text-decoration: none;
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 500;
  opacity: .75; transition: opacity .3s, color .3s;
}
.heard-row a:hover { opacity: 1; color: var(--warm); }
.heard-row svg { width: 22px; height: 22px; }

/* ============ FORMS ============ */
.form-card {
  max-width: 640px; margin: clamp(44px, 5vw, 70px) auto 0;
  background: #fff; border-radius: 20px; padding: clamp(30px, 4.5vw, 52px);
  box-shadow: 0 16px 50px rgba(61, 18, 8, .08);
}
.form-row { margin-bottom: 22px; }
.form-row label {
  display: block; font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--sepia); margin-bottom: 8px; font-weight: 600;
}
.form-row label .opt { color: rgba(184, 147, 90, .6); font-weight: 400; letter-spacing: 1px; text-transform: none; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 14px 16px;
  border: 1px solid rgba(61, 18, 8, .14); border-radius: 12px;
  font-family: 'Jost', sans-serif; font-size: 14px; color: var(--tdark); background: var(--white);
  transition: border-color .3s, box-shadow .3s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none; border-color: var(--sepia); box-shadow: 0 0 0 3px rgba(184, 147, 90, .15);
}
.form-row textarea { min-height: 150px; resize: vertical; }
.check-row {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px;
  font-size: 12.5px; color: var(--tmid); line-height: 1.6; font-weight: 300;
}
.check-row input { margin-top: 3px; accent-color: var(--warm); width: 15px; height: 15px; flex-shrink: 0; }
.check-row a { color: var(--warm); }
.form-actions { margin-top: 26px; text-align: center; }
.form-note { margin-top: 16px; font-size: 11px; color: var(--sepia); text-align: center; line-height: 1.6; }

/* ============ FOOTER CTA + FOOTER ============ */
.footer-cta { text-align: center; }
.footer-cta .btn { margin-top: 36px; }

footer { background: #2a0c05; padding: clamp(50px, 6vw, 80px) 0 34px; }
.f-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: 36px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(212, 180, 131, .12);
}
.f-brand img { height: 22px; }
.f-brand p { margin-top: 16px; font-size: 12px; color: rgba(242, 232, 213, .45); max-width: 260px; line-height: 1.7; font-weight: 300; }
.f-col h4 { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--sepia); font-weight: 600; margin-bottom: 16px; }
.f-col ul { list-style: none; }
.f-col li { margin-bottom: 10px; }
.f-col a {
  color: rgba(242, 232, 213, .6); text-decoration: none; font-size: 12.5px; font-weight: 300;
  transition: color .3s;
}
.f-col a:hover { color: var(--sand); }
.f-bottom {
  margin-top: 30px; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.f-copy { font-size: 11px; color: rgba(242, 232, 213, .35); font-weight: 300; }
.f-social { display: flex; gap: 14px; }
.f-social a {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(242, 232, 213, .55); border: 1px solid rgba(212, 180, 131, .2);
  transition: color .3s, border-color .3s, transform .3s var(--expo);
}
.f-social a:hover { color: var(--sand); border-color: var(--sand); transform: translateY(-3px); }
.f-social svg { width: 15px; height: 15px; }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed; bottom: 20px; left: 20px; z-index: 950;
  max-width: 330px; background: var(--deep); color: var(--cream);
  border-radius: 16px; padding: 20px 22px;
  box-shadow: 0 18px 50px rgba(30, 10, 5, .4);
  border: 1px solid rgba(212, 180, 131, .18);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity .5s var(--p2out), transform .5s var(--expo);
}
.cookie-banner.show { opacity: 1; transform: none; pointer-events: auto; }
.cookie-banner p { font-size: 12px; line-height: 1.65; font-weight: 300; color: rgba(242, 232, 213, .8); }
.cookie-actions { display: flex; gap: 10px; margin-top: 14px; }
.cookie-actions button {
  flex: 1; padding: 9px 10px; border-radius: 20px; cursor: pointer;
  font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
  transition: opacity .3s;
}
.cookie-ok { background: var(--sand); color: var(--deep); border: 0; }
.cookie-no { background: transparent; color: rgba(242, 232, 213, .6); border: 1px solid rgba(242, 232, 213, .25); }
.cookie-actions button:hover { opacity: .85; }
@media (max-width: 480px) { .cookie-banner { left: 12px; right: 12px; max-width: none; bottom: 12px; } }

/* ============ MISC ============ */
.center { text-align: center; }
.mt-lg { margin-top: clamp(44px, 5vw, 70px); }
.divider-band {
  position: relative; min-height: 46vh; overflow: hidden;
}
.divider-band img {
  position: absolute; inset: -12% 0; width: 100%; height: 124%;
  object-fit: cover; will-change: transform;
}
.divider-band::after { content: ''; position: absolute; inset: 0; background: rgba(30, 10, 5, .3); }

.page-hero-meta { margin-top: 26px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(212, 180, 131, .7); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
