/* =====================================================================
   TROPICAL ROOTS · v2 — Editorial Luxury
   References: Brightland, Fishwife, Diaspora Co, Aesop, Ghia
   Palette: deep midnight, bone white, jungle, terracotta, gilded
   ===================================================================== */

:root {
  --bg:           #f4efe4;       /* bone */
  --bg-2:         #ebe4d3;       /* sand */
  --paper:        #fbf8f1;       /* cream */
  --ink:          #0d1411;       /* near-black green */
  --ink-2:        #2c332e;
  --muted:        #5a5650;
  --line:         rgba(13,20,17,.12);
  --jungle:       #1a3d2a;       /* deep forest */
  --jungle-2:     #0f2418;
  --moss:         #4a6a4f;
  --terracotta:   #c5634a;
  --terracotta-2: #a14a35;
  --gold:         #b08742;
  --gold-2:       #8b6929;
  --shadow-1:     0 1px 3px rgba(13,20,17,.06), 0 12px 30px rgba(13,20,17,.08);
  --shadow-2:     0 30px 80px rgba(13,20,17,.18);
  --serif:        "Fraunces", "Cormorant Garamond", "Tiempos Headline", Georgia, serif;
  --serif-disp:   "Fraunces", "EB Garamond", Georgia, serif;
  --sans:         "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono:         "JetBrains Mono", ui-monospace, monospace;
  --max:          1320px;
  --gutter:       40px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ----------------- type ----------------- */
.display {
  font-family: var(--serif-disp);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 0.95;
  color: var(--ink);
}
h1.display    { font-size: clamp(3.6rem, 9vw, 8rem); font-weight: 300; }
h2.display    { font-size: clamp(2.8rem, 6vw, 5.4rem); font-weight: 300; }
h3.display    { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 400; }
.italic       { font-style: italic; font-weight: 300; }
.italic-thin  { font-style: italic; font-weight: 200; color: var(--moss); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: .72rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--terracotta); font-weight: 500;
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--terracotta);
}
.eyebrow.light { color: var(--gold); }
.eyebrow.light::before { background: var(--gold); }

.lead {
  font-family: var(--serif);
  font-weight: 300; font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.55; color: var(--ink-2); max-width: 56ch;
}
.body  { color: var(--muted); font-size: 1rem; line-height: 1.7; }
.tiny  { font-family: var(--mono); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

/* ----------------- layout primitives ----------------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.bleed { width: 100%; }

.section { padding: 140px 0; position: relative; }
.section.tight { padding: 90px 0; }

.row { display: flex; align-items: center; gap: 16px; }
.col { display: flex; flex-direction: column; }
.between { justify-content: space-between; }

/* ----------------- buttons ----------------- */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 30px; border-radius: 999px;
  font-size: .88rem; font-weight: 500; letter-spacing: .04em;
  border: 1.5px solid var(--ink); background: transparent; color: var(--ink);
  transition: all .35s cubic-bezier(.2,.7,.2,1);
}
.btn:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn .arrow { transition: transform .35s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-fill { background: var(--ink); color: var(--paper); }
.btn-fill:hover { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }
.btn-ghost-light { border-color: var(--paper); color: var(--paper); }
.btn-ghost-light:hover { background: var(--paper); color: var(--jungle); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: .78rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: gap .3s ease;
}
.link-arrow:hover { gap: 14px; }

/* ----------------- announcement bar ----------------- */
.announce {
  background: var(--jungle-2); color: var(--paper);
  font-family: var(--mono); font-size: .72rem; letter-spacing: .22em;
  text-transform: uppercase; padding: 10px 0; overflow: hidden;
}
.announce-track { display: flex; gap: 60px; white-space: nowrap; animation: slide 60s linear infinite; }
.announce-track span { display: inline-flex; align-items: center; gap: 14px; }
.announce-track .dot { color: var(--gold); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ----------------- nav ----------------- */
.nav {
  position: sticky; top: 0; z-index: 80;
  background: rgba(244,239,228,.78);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-color: var(--line); background: rgba(244,239,228,.92); }
.nav-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 24px 0; }
.nav-left, .nav-right { display: flex; gap: 36px; align-items: center; }
.nav-right { justify-content: flex-end; }
.nav-link {
  font-size: .88rem; font-weight: 500; color: var(--ink);
  position: relative; padding: 6px 0;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav-link:hover::after { transform: scaleX(1); }

.brand-wm {
  display: inline-flex; flex-direction: column; align-items: center;
  gap: 0; color: var(--jungle); line-height: 1;
}
.brand-wm .brand-leaf {
  width: 160px; height: auto; margin-bottom: -4px;
  /* the canvas-rendered leaf is dark-green & light-green on transparent */
  filter: drop-shadow(0 1px 2px rgba(13,20,17,.04));
}
.brand-wm .brand-text {
  font-family: "Mulish", "Plus Jakarta Sans", var(--sans);
  font-weight: 900;
  font-size: 1.7rem;
  letter-spacing: -.02em;
  color: var(--jungle);
  white-space: nowrap;
}
.brand-wm .brand-text sup {
  font-size: .42em; font-weight: 700;
  vertical-align: super; margin-left: 2px; opacity: .7;
}
/* Light variant for footer / dark backgrounds */
.brand-wm-light .brand-text { color: var(--paper); }
.brand-wm-light .brand-leaf {
  /* invert the dark green to white, keep bright leaf tip slightly green */
  filter: brightness(0) invert(1) drop-shadow(0 1px 4px rgba(0,0,0,.2));
}
.brand-wm-light { transform: translateY(-4px); }
@media (max-width: 980px) {
  .brand-wm .brand-leaf { width: 132px; margin-bottom: -8px; }
  .brand-wm .brand-text { font-size: 1.35rem; }
}

.nav-cart {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px; border: 1px solid var(--ink);
  font-size: .8rem; font-weight: 500;
}
.nav-cart:hover { background: var(--ink); color: var(--paper); }

.menu-toggle { display: none; }
.nav-mobile { display: none; }
@media (max-width: 980px) {
  /* extra inset on the inner nav so the logo + burger don't kiss the edges */
  .wrap.nav-inner {
    grid-template-columns: 1fr auto; column-gap: 16px;
    padding-left: calc(var(--gutter) + 8px);
    padding-right: calc(var(--gutter) + 8px);
    padding-top: 18px; padding-bottom: 18px;
  }
  .nav-left, .nav-right { display: none; }
  .brand-wm { justify-self: start; }
  .menu-toggle {
    display: inline-flex; flex-direction: column; gap: 5px; padding: 11px;
    border: 1px solid rgba(13,20,17,.35); border-radius: 999px;
    background: rgba(255,255,255,.45); backdrop-filter: blur(6px);
    width: 42px; height: 42px; align-items: center; justify-content: center;
    justify-self: end;
    transition: border-color .25s ease, background .25s ease;
  }
  .menu-toggle:hover, .menu-toggle:focus-visible {
    border-color: var(--ink); background: var(--paper);
  }
  .menu-toggle span { width: 18px; height: 1.5px; background: var(--ink); display: block; }
  .nav-mobile {
    position: fixed; inset: 0; background: var(--paper); z-index: 90;
    display: none; flex-direction: column; padding: 100px 40px;
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile a { padding: 16px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.6rem; }
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  background: var(--jungle-2);
  color: var(--paper);
  overflow: hidden;
  min-height: 92vh;
  display: flex; align-items: flex-end;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .55;
  transform: scale(1.05);
  animation: kenburns 24s ease-in-out infinite alternate;
}
@keyframes kenburns {
  to { transform: scale(1.18) translateY(-2%); }
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,36,24,.65) 0%, rgba(15,36,24,.25) 40%, rgba(15,36,24,.92) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(176,135,66,.15), transparent 50%);
}
.hero-content {
  position: relative; z-index: 2; padding: 100px 0 70px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: end;
  width: 100%;
}
.hero-content .eyebrow { color: var(--gold); }
.hero-content .eyebrow::before { background: var(--gold); }
.hero h1 {
  color: var(--paper);
  font-size: clamp(3.5rem, 9vw, 7.8rem);
  font-weight: 200; letter-spacing: -.035em; line-height: .92;
  margin: 24px 0 28px;
}
.hero h1 .l1, .hero h1 .l2, .hero h1 .l3 { display: block; opacity: 0; transform: translateY(24px); animation: rise .9s cubic-bezier(.2,.7,.2,1) forwards; }
.hero h1 .l1 { animation-delay: .15s; }
.hero h1 .l2 { animation-delay: .3s; font-style: italic; color: var(--gold); font-weight: 200; }
.hero h1 .l3 { animation-delay: .45s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.hero-side {
  display: flex; flex-direction: column; gap: 28px;
  border-left: 1px solid rgba(255,255,255,.18); padding-left: 32px;
}
.hero-side p { color: rgba(245,241,232,.82); font-family: var(--serif); font-weight: 300; font-size: 1.1rem; line-height: 1.6; }
.hero-side .btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.hero-side .btns .btn { padding: 14px 22px; font-size: .82rem; }

.hero-meta {
  position: absolute; left: var(--gutter); right: var(--gutter); bottom: 28px; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(245,241,232,.55);
  border-top: 1px solid rgba(245,241,232,.15); padding-top: 18px; max-width: calc(var(--max) - var(--gutter)*2); margin: 0 auto;
}
.hero-meta strong { color: var(--gold); font-family: var(--mono); font-weight: 500; }

.scrollhint {
  position: absolute; left: 50%; bottom: 70px; transform: translateX(-50%);
  font-family: var(--mono); font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--paper); opacity: .6; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scrollhint .line {
  width: 1px; height: 30px; background: var(--gold);
  animation: scrollpulse 2s ease-in-out infinite;
}
@keyframes scrollpulse { 0%,100%{transform: scaleY(1); transform-origin: top;} 50%{transform: scaleY(.3);} }

/* ===================== MARQUEE ===================== */
.marquee {
  background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 22px 0; overflow: hidden;
}
.marquee-track { display: flex; gap: 60px; white-space: nowrap; animation: slide 50s linear infinite; }
.marquee-track .item { display: inline-flex; align-items: center; gap: 18px; font-family: var(--serif-disp); font-size: 1.6rem; font-weight: 300; color: var(--ink); }
.marquee-track .item .star { color: var(--terracotta); font-size: 1rem; }
.marquee-track .item.italic { font-style: italic; color: var(--moss); }

/* ===================== ABOUT INTRO (split) ===================== */
.intro-split {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; align-items: end;
}
.intro-num {
  font-family: var(--serif-disp);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 200; line-height: .8; color: var(--ink);
  letter-spacing: -.06em;
}
.intro-num .dot { color: var(--terracotta); }
.intro-txt h2 { font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 300; line-height: 1.02; letter-spacing: -.025em; }
.intro-txt h2 em { font-style: italic; color: var(--moss); font-weight: 300; }
.intro-txt .body { margin-top: 28px; max-width: 56ch; font-family: var(--serif); font-size: 1.15rem; line-height: 1.65; }
.intro-txt .link-arrow { margin-top: 36px; }

/* ===================== CATEGORIES (asymmetric editorial) ===================== */
.cats-section { background: var(--paper); padding: 160px 0; }
.cats-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 80px; }
.cats-head h2 { font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 300; letter-spacing: -.025em; line-height: 1; }
.cats-head h2 em { font-style: italic; color: var(--terracotta); font-weight: 300; }
.cats-head .body { font-family: var(--serif); font-size: 1.1rem; }

.cats-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px;
}
.cat {
  position: relative; overflow: hidden; border-radius: 4px;
  display: block; isolation: isolate; cursor: pointer;
}
.cat-img { aspect-ratio: 4/5; overflow: hidden; }
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.cat:hover .cat-img img { transform: scale(1.06); }
.cat-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 16px; border-top: 1px solid var(--line); margin-top: 16px;
}
.cat-meta .cat-name { font-family: var(--serif-disp); font-weight: 400; font-size: 1.45rem; letter-spacing: -.01em; }
.cat-meta .cat-num { font-family: var(--mono); font-size: .72rem; letter-spacing: .18em; color: var(--muted); text-transform: uppercase; }
.cat-tag {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  background: rgba(251,248,241,.92); backdrop-filter: blur(8px);
  padding: 6px 12px; border-radius: 999px;
  font-family: var(--mono); font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink);
}

/* large + small editorial spans */
.cat.span-7 { grid-column: span 7; }
.cat.span-5 { grid-column: span 5; }
.cat.span-4 { grid-column: span 4; }
.cat.span-6 { grid-column: span 6; }
.cat.span-8 { grid-column: span 8; }
.cat.span-7 .cat-img, .cat.span-8 .cat-img { aspect-ratio: 4/3; }
.cat.span-5 .cat-img, .cat.span-4 .cat-img, .cat.span-6 .cat-img { aspect-ratio: 4/5; }

/* ===================== EDITORIAL FEATURE ===================== */
.feature {
  background: var(--jungle); color: var(--paper);
  padding: 160px 0; position: relative; overflow: hidden;
}
.feature::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(176,135,66,.18), transparent 50%);
}
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative;
}
.feature h2 { color: var(--paper); font-size: clamp(2.6rem, 5vw, 4.4rem); font-weight: 300; line-height: 1; letter-spacing: -.025em; }
.feature h2 em { color: var(--gold); font-style: italic; font-weight: 300; }
.feature .lead { color: rgba(245,241,232,.85); margin-top: 28px; font-size: 1.2rem; }
.feature .pull {
  margin-top: 40px; padding: 28px 32px;
  background: rgba(255,255,255,.05); border-left: 2px solid var(--gold);
  font-family: var(--serif); font-size: 1.15rem; font-style: italic; color: rgba(245,241,232,.92);
  line-height: 1.6;
}
.feature-img {
  position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 4px;
  box-shadow: var(--shadow-2);
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-tag {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--paper); color: var(--ink);
  padding: 14px 22px; border-radius: 999px; box-shadow: var(--shadow-1);
  font-family: var(--mono); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
}
.feature-tag .dot { color: var(--terracotta); margin-right: 8px; }

/* ===================== STATS ===================== */
.stats {
  background: var(--bg-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 60px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 60px; }
.stat { display: flex; flex-direction: column; gap: 12px; }
.stat strong {
  font-family: var(--serif-disp);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 300; line-height: 1;
  letter-spacing: -.02em; color: var(--ink);
}
.stat .label { font-family: var(--mono); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.stat .desc { font-size: .9rem; color: var(--muted); margin-top: 4px; }

/* ===================== PRODUCTS (grid + filter) ===================== */
.products-section { background: var(--paper); padding: 160px 0; }
.products-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 60px;
}
.products-head h2 { font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 300; line-height: 1; letter-spacing: -.025em; }
.products-head h2 em { font-style: italic; color: var(--terracotta); font-weight: 300; }

.filterbar {
  display: flex; flex-wrap: wrap; gap: 8px; padding: 28px 0; margin-bottom: 40px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  align-items: center; justify-content: center;
}
.filterbar .label { font-family: var(--mono); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-right: 20px; }
.chip {
  padding: 10px 18px; border-radius: 999px;
  border: 1px solid var(--line); background: transparent;
  font-size: .82rem; font-weight: 500; color: var(--ink-2);
  transition: all .25s ease;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px 28px;
}
.product {
  display: flex; flex-direction: column;
  cursor: pointer; transition: transform .4s ease;
}
.product:hover { transform: translateY(-4px); }
.product-img {
  aspect-ratio: 1/1; overflow: hidden; border-radius: 4px;
  background: #fff; position: relative; margin-bottom: 18px;
  border: 1px solid var(--line);
}
/* real packshots: show the whole pack, never crop */
.product-img img { width: 100%; height: 100%; object-fit: contain; padding: 14px; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.product:hover .product-img img { transform: scale(1.05); }
.product-tagchip {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--moss); padding: 5px 11px; border: 1px solid var(--line); border-radius: 999px;
}
.product-num {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .18em; color: var(--ink);
  background: rgba(251,248,241,.88); backdrop-filter: blur(6px);
  padding: 4px 10px; border-radius: 999px;
}
.product-cat {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-family: var(--mono); font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--paper); background: rgba(13,20,17,.75); backdrop-filter: blur(6px);
  padding: 4px 10px; border-radius: 999px;
}
.product-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.product-name { font-family: var(--serif-disp); font-size: 1.15rem; font-weight: 400; letter-spacing: -.01em; line-height: 1.2; color: var(--ink); }
.product-weight { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; color: var(--muted); }
.product-desc { color: var(--muted); font-size: .88rem; margin-top: 6px; line-height: 1.45; }
.product-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
.product-price { font-family: var(--serif-disp); font-size: 1rem; font-weight: 500; color: var(--ink); }
.product-add {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.product:hover .product-add { color: var(--terracotta); border-color: var(--terracotta); }

/* ===================== STORY TIMELINE ===================== */
.story {
  background: var(--bg); padding: 160px 0;
}
.story-head { max-width: 720px; margin: 0 auto 80px; text-align: center; }
.story-head h2 { font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 300; line-height: 1; letter-spacing: -.025em; }
.story-head h2 em { font-style: italic; color: var(--terracotta); font-weight: 300; }
.story-head .body { margin-top: 24px; font-family: var(--serif); font-size: 1.15rem; max-width: 60ch; margin-left: auto; margin-right: auto; }

.story-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
.story-card {
  padding: 36px 32px; background: var(--paper);
  border: 1px solid var(--line); border-radius: 2px;
  display: flex; flex-direction: column;
  transition: all .35s ease;
}
.story-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-1); }
.story-num {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .22em;
  color: var(--terracotta); text-transform: uppercase; margin-bottom: 28px;
}
.story-card h3 { font-family: var(--serif-disp); font-weight: 400; font-size: 1.6rem; line-height: 1.15; margin-bottom: 14px; }
.story-card p { color: var(--muted); font-size: .95rem; line-height: 1.6; }
.story-card .icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-2); display: grid; place-items: center;
  font-family: var(--serif-disp); font-size: 1.2rem; color: var(--jungle); margin-bottom: 32px;
}

/* ===================== BIG PULL QUOTE ===================== */
.pullquote {
  background: var(--paper); padding: 140px 0; text-align: center;
}
.pullquote blockquote {
  max-width: 1000px; margin: 0 auto; padding: 0 var(--gutter);
  font-family: var(--serif-disp); font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.15; letter-spacing: -.02em; color: var(--ink);
}
.pullquote em { font-style: italic; color: var(--terracotta); }
.pullquote cite {
  display: block; margin-top: 32px; font-style: normal;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted);
}

/* ===================== TEAM ===================== */
.team-section { background: var(--bg); padding: 160px 0; }
.team-head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 70px; }
.team-head h2 { font-size: clamp(2.6rem, 5vw, 4.4rem); font-weight: 300; line-height: 1; letter-spacing: -.025em; }
.team-head h2 em { font-style: italic; color: var(--terracotta); font-weight: 300; }
.team-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 18px; }
.member {
  display: flex; flex-direction: column;
  transition: transform .35s ease;
}
.member:hover { transform: translateY(-6px); }
.member-photo {
  aspect-ratio: 3/4; overflow: hidden; border-radius: 2px;
  background: var(--bg-2); margin-bottom: 16px;
}
.member-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.35) contrast(1.05); transition: filter .4s ease; }
.member:hover .member-photo img { filter: grayscale(0); }
.member-name { font-family: var(--serif-disp); font-weight: 400; font-size: 1rem; line-height: 1.2; }
.member-role { font-family: var(--mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--terracotta); margin-top: 4px; }

/* ===================== TRUST / CERTS ===================== */
.trust {
  background: var(--jungle-2); color: var(--paper); padding: 90px 0;
}
.trust-head { text-align: center; margin-bottom: 50px; }
.trust-head h3 { color: var(--paper); font-family: var(--serif-disp); font-weight: 300; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.trust-list {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}
.trust-list .badge {
  height: 92px; width: 92px; border-radius: 50%;
  background: var(--paper);
  display: grid; place-items: center; padding: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  transition: transform .3s ease;
}
.trust-list .badge:hover { transform: translateY(-4px); }
.trust-list .badge img { max-width: 100%; max-height: 100%; object-fit: contain; }
@media (max-width: 540px) { .trust-list .badge { height: 74px; width: 74px; padding: 12px; } }

/* ===================== CTA ===================== */
.cta {
  background: var(--terracotta); color: var(--paper);
  padding: 140px 0; text-align: center; position: relative; overflow: hidden;
}
.cta::before, .cta::after {
  content: ""; position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.cta::before { left: -120px; top: -120px; }
.cta::after  { right: -120px; bottom: -120px; }
.cta-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; padding: 0 var(--gutter); }
.cta h2 {
  color: var(--paper);
  font-family: var(--serif-disp); font-weight: 200;
  font-size: clamp(2.6rem, 6vw, 5.4rem); line-height: .95; letter-spacing: -.025em;
}
.cta h2 em { font-style: italic; color: rgba(255,255,255,.85); font-weight: 200; }
.cta .lead { color: rgba(255,255,255,.92); margin: 28px auto 40px; font-size: 1.2rem; max-width: 56ch; }
.cta .btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.cta .btn:hover { background: var(--ink); color: var(--paper); }

/* ===================== CONTACT ===================== */
.contact-section { background: var(--bg); padding: 160px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-info h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1; letter-spacing: -.02em; }
.contact-info h2 em { font-style: italic; color: var(--terracotta); }
.contact-info .lead { margin-top: 24px; }
.contact-info ul { list-style: none; margin-top: 36px; padding: 0; }
.contact-info li { padding: 22px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 120px 1fr; gap: 20px; }
.contact-info li:last-child { border-bottom: 1px solid var(--line); }
.contact-info .lab { font-family: var(--mono); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); padding-top: 4px; }
.contact-info .val { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); line-height: 1.55; }

.form-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 2px; padding: 50px;
}
.form-card h3 { font-family: var(--serif-disp); font-weight: 400; font-size: 1.6rem; margin-bottom: 32px; }
.field { margin-bottom: 22px; }
.field label { display: block; font-family: var(--mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 0; border: 0; border-bottom: 1px solid var(--line);
  background: transparent; font-family: var(--serif); font-size: 1.05rem; color: var(--ink);
  transition: border-color .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-color: var(--ink);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-card .btn { margin-top: 14px; width: 100%; justify-content: center; }

/* ===================== FOOTER ===================== */
footer {
  background: var(--ink); color: var(--paper); padding: 100px 0 30px;
}
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 80px; }
.foot-brand .brand-wm { align-items: flex-start; transform: none; }
.foot-brand .brand-wm .brand-leaf { width: 220px; margin-bottom: 0; height: auto; }
.foot-brand .brand-wm .brand-text { font-size: 2.1rem; color: var(--paper); margin-top: -4px; }
.foot-brand p { color: rgba(245,241,232,.7); margin-top: 18px; max-width: 38ch; font-family: var(--serif); font-size: 1rem; }
.foot-col h5 { font-family: var(--mono); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; font-weight: 500; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 12px; }
.foot-col a { color: rgba(245,241,232,.75); font-size: .92rem; }
.foot-col a:hover { color: var(--paper); }
.foot-bot {
  border-top: 1px solid rgba(245,241,232,.15); padding-top: 30px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .14em; color: rgba(245,241,232,.5);
  text-transform: uppercase;
}
.foot-credit { color: rgba(245,241,232,.55); }
.foot-credit a {
  color: var(--gold);
  border-bottom: 1px solid rgba(176,135,66,.4);
  padding-bottom: 1px;
  transition: color .25s ease, border-color .25s ease;
}
.foot-credit a:hover { color: var(--paper); border-color: var(--paper); }
.socials { display: flex; gap: 8px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: grid; place-items: center;
  transition: all .25s ease;
}
.socials a:hover { background: var(--gold); color: var(--ink); }

.bigwm {
  font-family: var(--serif-disp);
  font-weight: 200; letter-spacing: -.05em;
  font-size: clamp(6rem, 18vw, 18rem);
  text-align: center; line-height: .85; color: rgba(245,241,232,.06);
  margin-top: 60px; padding-bottom: 30px;
  user-select: none;
}

/* ===================== reveal ===================== */
/* Hidden states apply ONLY when JS is active (html.js). No-JS / failure → visible. */
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal-d2 { transition-delay: .12s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .36s; }
/* fail-open safety net */
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1 !important; transform: none !important; }
}

/* ===================== responsive ===================== */
@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 880px) {
  :root { --gutter: 32px; }
  .section { padding: 90px 0; }
  .hero { min-height: auto; padding-bottom: 60px; display: block; }
  .hero-content {
    grid-template-columns: 1fr; gap: 32px;
    /* IMPORTANT: keep horizontal gutter — shorthand otherwise zeroes .wrap padding */
    padding: 110px var(--gutter) 50px;
    width: 100%; max-width: 100%;
  }
  .hero h1 { margin: 18px 0 22px; }
  .hero-side { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,.18); padding-top: 26px; gap: 20px; }
  .hero-side p { font-size: 1rem; }
  .hero-side .btns { gap: 10px; }
  .hero-side .btns .btn { padding: 13px 20px; font-size: .78rem; }
  .hero-meta {
    position: static;
    flex-direction: column; gap: 10px; align-items: flex-start;
    font-size: .62rem; letter-spacing: .18em;
    margin: 30px var(--gutter) 0; padding: 16px 0 0;
    max-width: none;
  }
  .scrollhint { display: none !important; }
  .intro-split { grid-template-columns: 1fr; gap: 40px; }
  .cats-head, .products-head, .team-head { grid-template-columns: 1fr; gap: 30px; margin-bottom: 50px; }
  .cats-grid { grid-template-columns: 1fr; gap: 16px; }
  .cat,
  .cat.span-7, .cat.span-5, .cat.span-4, .cat.span-6, .cat.span-8, .cat.span-12 {
    grid-column: 1 / -1 !important;
  }
  .cat .cat-img { aspect-ratio: 4/5 !important; }
  .cat-tag { top: 14px; left: 14px; font-size: .62rem; padding: 6px 10px; }
  .cat-meta { padding: 16px 4px 0; }
  .cat-name { font-size: 1.05rem; }
  .cat-num { font-size: .68rem; }
  /* announce bar more legible on mobile */
  .announce { padding: 11px 0; font-size: .68rem; letter-spacing: .18em; }
  .announce-track { gap: 40px; }
  .announce-track span { gap: 10px; }
  /* marquee a touch tighter */
  .marquee .item { font-size: 1rem; }
  .feature-grid { grid-template-columns: 1fr; gap: 50px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .story-grid { grid-template-columns: 1fr; gap: 18px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .form-card { padding: 32px; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 36px; margin-bottom: 60px; }
}
@media (max-width: 540px) {
  :root { --gutter: 24px; }
  .hero h1 { font-size: clamp(2.4rem, 12vw, 3.8rem); letter-spacing: -.03em; }
  .hero-content { padding: 100px var(--gutter) 40px; gap: 26px; }
  /* readability bumps */
  .body, .lead { font-size: 1rem; line-height: 1.7; }
  h2.display { font-size: clamp(2rem, 8vw, 3rem); }
  h3.display { font-size: clamp(1.4rem, 5vw, 1.9rem); }
  .section { padding: 70px 0; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .product-name { font-size: .95rem; }
  .product-desc { font-size: .82rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .contact-info li { grid-template-columns: 1fr; gap: 8px; }
  .form-row { grid-template-columns: 1fr; }
  /* footer brand mark scaled for phones */
  .foot-brand .brand-wm .brand-leaf { width: 160px; }
  .foot-brand .brand-wm .brand-text { font-size: 1.6rem; }
}

/* =====================================================================
   v3 — PREMIUM LAYER (motion, texture, new sections, readability)
   ===================================================================== */

/* ---- readability + global polish ---- */
.eyebrow { color: var(--terracotta-2); }            /* darker → better contrast on cream */
.body { color: #4a4742; }                            /* nudge body darker for legibility */
::selection { background: var(--terracotta); color: var(--paper); }
::-moz-selection { background: var(--terracotta); color: var(--paper); }
html { scrollbar-color: var(--moss) var(--bg-2); }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--moss); border-radius: 999px; border: 3px solid var(--bg-2); }
::-webkit-scrollbar-thumb:hover { background: var(--jungle); }

/* ---- film grain (premium editorial texture) ---- */
.grain {
  position: fixed; inset: -50%; z-index: 9990; pointer-events: none;
  width: 200%; height: 200%; opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: no-preference) {
  .grain { animation: grain 0.7s steps(4) infinite; }
}
@keyframes grain {
  0%{transform:translate(0,0)} 25%{transform:translate(-3%,2%)}
  50%{transform:translate(2%,-3%)} 75%{transform:translate(-2%,-2%)} 100%{transform:translate(3%,2%)}
}

/* ---- scroll progress ---- */
.scrollprog { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 9996; pointer-events: none; background: transparent; }
.scrollprog > i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--moss), var(--gold), var(--terracotta)); }

/* ---- custom cursor (desktop pointer only) ---- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  border-radius: 50%; mix-blend-mode: difference; will-change: transform;
}
.cursor-dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: #fff; }
.cursor-ring {
  width: 38px; height: 38px; margin: -19px 0 0 -19px;
  border: 1px solid rgba(255,255,255,.7);
  transition: width .28s ease, height .28s ease, margin .28s ease, background .28s ease, opacity .28s ease;
}
.cursor-ring.is-hover { width: 64px; height: 64px; margin: -32px 0 0 -32px; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.35); }
.cursor-ring.is-down { width: 28px; height: 28px; margin: -14px 0 0 -14px; }
body.has-cursor, body.has-cursor a, body.has-cursor button, body.has-cursor .chip, body.has-cursor input, body.has-cursor textarea, body.has-cursor select { cursor: none; }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none !important; } }
@media (prefers-reduced-motion: reduce) { .cursor-dot, .cursor-ring { display: none !important; } }

/* ---- heading line reveal (mask + slide up) ---- */
.split-line { display: block; overflow: hidden; padding-bottom: .04em; }
html.js .split-line > .ln {
  display: block; transform: translateY(108%);
  transition: transform 1s cubic-bezier(.19,1,.22,1);
}
html.js .split.in .split-line > .ln { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html.js .split-line > .ln { transform: none !important; }
}

/* ---- image clip reveal ---- */
html.js .clip { clip-path: inset(0 0 100% 0); transition: clip-path 1.1s cubic-bezier(.19,1,.22,1); }
html.js .clip.in { clip-path: inset(0 0 0 0); }
@media (prefers-reduced-motion: reduce) { html.js .clip { clip-path: none !important; } }

/* ---- intro loader ---- */
.loader {
  position: fixed; inset: 0; z-index: 10000; background: var(--jungle-2);
  display: grid; place-items: center; transition: opacity .7s ease, visibility .7s ease;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader .l-inner { text-align: center; color: var(--paper); padding: 0 24px; }
.loader .l-leaf { width: 96px; height: auto; margin: 0 auto 18px; filter: brightness(0) invert(1); opacity: .92;
  animation: floaty 2.4s ease-in-out infinite; }
.loader .l-name { font-family: "Mulish", var(--sans); font-weight: 900; font-size: clamp(1.6rem,5vw,2.4rem); letter-spacing: -.02em; }
.loader .l-sub { font-family: var(--mono); font-size: .66rem; letter-spacing: .32em; text-transform: uppercase; color: var(--gold); margin-top: 10px; }
.loader .l-bar { width: 150px; height: 2px; background: rgba(255,255,255,.18); margin: 22px auto 0; overflow: hidden; border-radius: 2px; }
.loader .l-bar > i { display: block; height: 100%; width: 0; background: var(--gold); animation: loadbar 1.1s cubic-bezier(.6,0,.2,1) forwards; }
@keyframes loadbar { to { width: 100%; } }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@media (prefers-reduced-motion: reduce) { .loader .l-leaf { animation: none; } .loader .l-bar > i { animation: none; width: 100%; } }

/* ---- magnetic ---- */
.magnetic { will-change: transform; }

/* ---- nav logo breathing (desktop too) ---- */
.nav .wrap.nav-inner { padding-top: 22px; padding-bottom: 22px; }

/* =====================================================================
   NEW SECTION — HOW IT WORKS (3 steps)
   ===================================================================== */
.steps-section { background: var(--bg-2); padding: 130px 0; border-top: 1px solid var(--line); }
.steps-head { text-align: center; max-width: 680px; margin: 0 auto 70px; }
.steps-head h2 { font-family: var(--serif-disp); font-weight: 300; font-size: clamp(2.2rem,4.5vw,3.6rem); letter-spacing: -.025em; line-height: 1.02; }
.steps-head h2 em { font-style: italic; color: var(--terracotta); }
.steps-head .body { margin-top: 18px; font-family: var(--serif); font-size: 1.1rem; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.step { position: relative; padding: 40px 34px; background: var(--paper); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.step-num { font-family: var(--serif-disp); font-weight: 200; font-size: 4.5rem; line-height: .8; color: var(--terracotta); opacity: .22; letter-spacing: -.04em; }
.step-ico { width: 52px; height: 52px; margin: -56px 0 28px auto; display: grid; place-items: center; border-radius: 50%; background: var(--jungle); color: var(--paper); font-size: 1.3rem; }
.step h3 { font-family: var(--serif-disp); font-weight: 400; font-size: 1.55rem; margin-bottom: 12px; letter-spacing: -.01em; }
.step p { color: var(--muted); font-size: .96rem; line-height: 1.6; }
.step .step-time { margin-top: 20px; font-family: var(--mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--moss); }

/* =====================================================================
   NEW — REAL PHOTO CINEMATIC BAND
   ===================================================================== */
.realband { position: relative; height: 60vh; min-height: 440px; overflow: hidden; background: var(--jungle-2); }
.realband img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.realband::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,24,15,.92) 0%, rgba(10,24,15,.55) 45%, rgba(10,24,15,.2) 100%),
    linear-gradient(180deg, rgba(10,24,15,.3), rgba(10,24,15,.65));
}
.realband-txt { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 0 0 56px; }
.realband-txt .wrap { color: var(--paper); }
.realband-txt h2 { font-family: var(--serif-disp); font-weight: 300; color: var(--paper); font-size: clamp(2rem,5vw,4rem); letter-spacing: -.025em; line-height: 1; max-width: 18ch; }
.realband-txt h2 em { font-style: italic; color: var(--gold); }
.realband-tag { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; font-family: var(--mono); font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.realband-tag::before { content: ""; width: 26px; height: 1px; background: var(--gold); }

/* =====================================================================
   NEW — REAL GALLERY ("Straight from Cochin")
   ===================================================================== */
.gallery-section { background: var(--paper); padding: 150px 0; }
.gallery-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 56px; }
.gallery-head h2 { font-family: var(--serif-disp); font-weight: 300; font-size: clamp(2.4rem,5vw,4.4rem); letter-spacing: -.025em; line-height: 1; }
.gallery-head h2 em { font-style: italic; color: var(--terracotta); }
.gallery-head .body { font-family: var(--serif); font-size: 1.1rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 16px; grid-auto-flow: dense; }
.gphoto { position: relative; overflow: hidden; border-radius: 4px; }
.gphoto img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s cubic-bezier(.19,1,.22,1); }
.gphoto:hover img { transform: scale(1.07); }
.gphoto.tall { grid-row: span 2; }
.gphoto.wide { grid-column: span 2; }
.gphoto .real-tag {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  font-family: var(--mono); font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--paper); background: rgba(13,20,17,.6); backdrop-filter: blur(6px);
  padding: 5px 10px; border-radius: 999px;
}

/* =====================================================================
   NEW — FAQ
   ===================================================================== */
.faq-section { background: var(--bg); padding: 150px 0; }
.faq-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.faq-head h2 { font-family: var(--serif-disp); font-weight: 300; font-size: clamp(2.2rem,4.5vw,3.6rem); letter-spacing: -.025em; }
.faq-head h2 em { font-style: italic; color: var(--terracotta); }
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 30px 4px; font-family: var(--serif-disp); font-weight: 400; font-size: clamp(1.15rem,2.2vw,1.5rem);
  color: var(--ink); background: none; border: 0; cursor: pointer; letter-spacing: -.01em;
}
.faq-q .pm { flex: 0 0 auto; width: 28px; height: 28px; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--terracotta); transition: transform .35s ease, opacity .35s ease; }
.faq-q .pm::before { top: 50%; left: 4px; right: 4px; height: 1.5px; transform: translateY(-50%); }
.faq-q .pm::after  { left: 50%; top: 4px; bottom: 4px; width: 1.5px; transform: translateX(-50%); }
.faq-item.open .faq-q .pm::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.4,0,.2,1); }
.faq-a-inner { padding: 0 4px 30px; color: var(--muted); font-family: var(--serif); font-size: 1.08rem; line-height: 1.7; max-width: 70ch; }

/* =====================================================================
   NEW — NEWSLETTER
   ===================================================================== */
.news-section { background: var(--jungle); color: var(--paper); padding: 110px 0; position: relative; overflow: hidden; }
.news-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 30%, rgba(176,135,66,.18), transparent 55%); }
.news-grid { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.news-grid h2 { font-family: var(--serif-disp); font-weight: 300; color: var(--paper); font-size: clamp(2rem,4vw,3.4rem); letter-spacing: -.025em; line-height: 1.02; }
.news-grid h2 em { font-style: italic; color: var(--gold); }
.news-grid p { color: rgba(245,241,232,.8); margin-top: 16px; font-family: var(--serif); font-size: 1.1rem; }
.news-form { display: flex; gap: 12px; flex-wrap: wrap; }
.news-form input {
  flex: 1; min-width: 220px; padding: 18px 22px; border-radius: 999px;
  border: 1px solid rgba(245,241,232,.3); background: rgba(255,255,255,.06); color: var(--paper);
  font-family: var(--serif); font-size: 1rem;
}
.news-form input::placeholder { color: rgba(245,241,232,.5); }
.news-form input:focus { outline: 0; border-color: var(--gold); }
.news-form .btn { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.news-form .btn:hover { background: var(--paper); border-color: var(--paper); }
.news-note { margin-top: 16px; font-family: var(--mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(245,241,232,.5); }

/* ---- responsive for new sections ---- */
@media (max-width: 880px) {
  .steps-grid { grid-template-columns: 1fr; gap: 18px; }
  .gallery-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 36px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; gap: 12px; }
  .gphoto.wide { grid-column: span 2; }
  .gphoto.tall { grid-row: span 1; }
  .news-grid { grid-template-columns: 1fr; gap: 30px; }
  .realband { height: 56vh; min-height: 360px; }
  .cursor-dot, .cursor-ring { display: none !important; }
}
@media (max-width: 540px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gphoto.wide { grid-column: span 1; }
  .steps-section, .gallery-section, .faq-section { padding: 80px 0; }
  .news-section { padding: 70px 0; }
  .faq-q { font-size: 1.1rem; padding: 22px 2px; }
}
