/* =============================================================
   CINTAPURI DURIANFARM — Editorial Luxe Design System
   Hand-crafted, no-build CSS. Tokens → base → components.
   ============================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Palette — Barley White + Mikado Yellow (warm golden-harvest scheme) */
  --cream:        #FAFAFA;   /* Alabaster — page background */
  --cream-deep:   #F0EFE9;   /* light neutral — product panels, icons */
  --paper:        #FFFFFF;   /* white — cards */
  --ink:          #2B2410;   /* dark warm brown — body text */
  --ink-soft:     #4C4325;
  --muted:        #7C6F49;
  --line:         rgba(43, 36, 16, 0.14);
  --line-strong:  rgba(43, 36, 16, 0.24);

  /* "green-*" names retained, repointed to the warm dark (espresso) anchor */
  --green-900:    #1E1907;   /* deepest — footer, dark sections, video stage */
  --green-800:    #2B2210;
  --green-700:    #5C4713;   /* readable warm brown — links, nav active */
  --green-600:    #7A5F17;
  --green-500:    #957420;
  --sage:         #C79A3A;   /* warm tan — decorative accents */
  --sage-soft:    #EBD9A0;

  --gold:         #FCEB53;   /* Sunburst — accent fills (marquee, stats, buttons) */
  --gold-700:     #8F6900;   /* deep amber — text accents on light (readable) */
  --gold-soft:    #FCEB53;   /* Sunburst — accents on dark */
  --chili:        #C64524;
  --chili-soft:   #E07A50;

  /* Typography */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Fluid type scale */
  --fs-eyebrow: 0.78rem;
  --fs-body:    clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --fs-lead:    clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem);
  --fs-h4:      clamp(1.25rem, 1.1rem + 0.6vw, 1.6rem);
  --fs-h3:      clamp(1.6rem, 1.3rem + 1.4vw, 2.4rem);
  --fs-h2:      clamp(2.1rem, 1.6rem + 2.6vw, 3.6rem);
  --fs-h1:      clamp(2.8rem, 1.9rem + 4.6vw, 6rem);
  --fs-display: clamp(3.4rem, 2rem + 7vw, 8.5rem);

  /* Spacing & layout */
  --container:  1280px;
  --container-narrow: 920px;
  --gutter:     clamp(1.25rem, 4vw, 4rem);
  --section-y:  clamp(4.5rem, 9vw, 9rem);
  --radius:     14px;
  --radius-lg:  26px;

  /* Motion */
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft:  cubic-bezier(0.4, 0, 0.2, 1);
  --dur:        0.6s;

  --shadow-sm:  0 1px 2px rgba(43, 36, 16, 0.06), 0 4px 14px rgba(43, 36, 16, 0.06);
  --shadow-md:  0 8px 30px rgba(43, 36, 16, 0.10);
  --shadow-lg:  0 30px 70px rgba(43, 36, 16, 0.16);

  --header-h:   84px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
  /* body-only overflow-x doesn't stop horizontal panning on iOS Safari — the root
     must clip too ("clip" avoids creating a scroll container; "hidden" is the fallback) */
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--green-700); color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--green-600);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.display { font-size: var(--fs-display); line-height: 0.96; font-weight: 600; letter-spacing: -0.02em; }
h1, .h1 { font-size: var(--fs-h1); }
h2, .h2 { font-size: var(--fs-h2); }
h3, .h3 { font-size: var(--fs-h3); }
h4, .h4 { font-size: var(--fs-h4); }
em, .italic { font-style: italic; }
.serif-em { font-family: var(--font-display); font-style: italic; font-weight: 500; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-700);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}
.eyebrow.is-light { color: var(--gold-soft); }
.eyebrow.center::before { display: none; }

.lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--ink-soft); }
.muted { color: var(--muted); }
.measure { max-width: 60ch; }
.measure-sm { max-width: 46ch; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container.narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); }
.section.tight { padding-block: clamp(3rem, 6vw, 5rem); }

.grid { display: grid; gap: clamp(1.5rem, 3vw, 3rem); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 6rem); align-items: center; }
.stack-sm > * + * { margin-top: 1rem; }
.stack > * + * { margin-top: 1.5rem; }
.stack-lg > * + * { margin-top: 2.5rem; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .measure, .center .measure-sm { margin-inline: auto; }

/* ---------- Buttons ---------- */
/* ---- Liquid glass buttons (pure CSS, static) ---- */
.btn {
  --glass-tint: linear-gradient(180deg, rgba(252, 235, 83, 0.68), rgba(245, 226, 66, 0.6));
  --btn-fg: var(--ink);
  position: relative; isolation: isolate; overflow: hidden; cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.7em;
  padding: 0.95em 1.75em; border-radius: 100px;
  color: var(--btn-fg);
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.01em; line-height: 1;
  background: var(--glass-tint);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
          backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid rgba(205, 178, 40, 0.55);
  text-shadow: 0 1px 1px rgba(255, 252, 214, 0.5);
  box-shadow:
    0 2px 10px rgba(30, 24, 8, 0.16),
    inset 0 1px 1px rgba(255, 255, 255, 0.5),
    inset 0 -2px 6px rgba(0, 0, 0, 0.16),
    inset 2px 2px 1px -2px rgba(255, 255, 255, 0.9),
    inset -2px -2px 1px -2px rgba(255, 255, 255, 0.65);
  transition: transform 0.4s var(--ease), box-shadow 0.35s var(--ease-soft), filter 0.3s var(--ease-soft);
}
/* glossy top sheen */
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit; pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 50%);
  opacity: 0.7;
}
/* liquid light-sweep on hover */
.btn::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -80%; width: 55%; z-index: -1; pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-18deg); transition: left 0.7s var(--ease);
}
.btn:hover::after { left: 135%; }
.btn svg { width: 1.05em; height: 1.05em; transition: transform 0.4s var(--ease); }
.btn:hover {
  transform: translateY(-1px); filter: brightness(1.07);
  box-shadow:
    0 10px 26px rgba(30, 24, 8, 0.24),
    inset 0 1px 1px rgba(255, 255, 255, 0.6),
    inset 0 -2px 6px rgba(0, 0, 0, 0.18),
    inset 2px 2px 1px -2px rgba(255, 255, 255, 0.95),
    inset -2px -2px 1px -2px rgba(255, 255, 255, 0.7);
}
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(0) scale(0.985); }

.btn--gold { --glass-tint: linear-gradient(180deg, rgba(252, 235, 83, 0.92), rgba(244, 224, 58, 0.85)); --btn-fg: var(--ink); border-color: rgba(200, 172, 30, 0.6); text-shadow: 0 1px 1px rgba(255, 252, 214, 0.55); }
.btn--light { --glass-tint: linear-gradient(180deg, rgba(252, 235, 83, 0.85), rgba(244, 224, 58, 0.78)); --btn-fg: var(--ink); text-shadow: none; border-color: rgba(200, 172, 30, 0.5); }
.btn--ghost { --glass-tint: rgba(255, 255, 255, 0.12); --btn-fg: var(--ink); }
.btn--on-dark.btn--ghost { --btn-fg: var(--cream); border-color: rgba(255, 244, 204, 0.35); }

/* Text link with animated underline */
.link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--green-800);
  position: relative;
  padding-bottom: 3px;
}
.link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.link:hover::after { transform: scaleX(1); }
.link svg { width: 1em; height: 1em; transition: transform 0.4s var(--ease); }
.link:hover svg { transform: translateX(4px); }
.link.is-light { color: var(--gold-soft); }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color 0.4s var(--ease-soft), box-shadow 0.4s var(--ease-soft), height 0.4s var(--ease-soft);
}
.header__inner {
  width: 100%; max-width: var(--container); margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; z-index: 2; }
.brand img { width: 46px; height: 46px; transition: width 0.4s var(--ease-soft); }
.brand__name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  letter-spacing: 0.02em; line-height: 1; color: var(--ink);
}
.brand__name span { display: block; font-family: var(--font-body); font-weight: 500;
  font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-700); margin-top: 4px; }

.nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.4vw, 2.4rem); }
.nav__link {
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.01em; color: var(--ink-soft);
  position: relative; padding: 0.4em 0;
  transition: color 0.3s var(--ease-soft);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 100%;
  background: var(--green-700); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--green-900); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }

/* Dropdown */
.nav__item { position: relative; }
.nav__dd {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px);
  min-width: 200px; padding: 0.6rem; margin-top: 0.6rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.nav__item:hover .nav__dd, .nav__item:focus-within .nav__dd { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav__dd a {
  display: flex; align-items: center; gap: 0.7rem; padding: 0.7rem 0.8rem; border-radius: 9px;
  font-size: 0.9rem; font-weight: 500; color: var(--ink-soft);
  transition: background-color 0.2s, color 0.2s;
}
.nav__dd a:hover { background: var(--cream); color: var(--green-900); }
.nav__dd img { width: 38px; height: 38px; border-radius: 7px; object-fit: cover; }
.nav__caret { width: 0.7em; height: 0.7em; transition: transform 0.3s var(--ease); }
.nav__item:hover .nav__caret { transform: rotate(180deg); }

.nav__actions { display: flex; align-items: center; gap: 1rem; }

/* Language toggle */
.lang {
  display: inline-flex; align-items: center; border: 1px solid var(--line-strong);
  border-radius: 100px; overflow: hidden; padding: 2px;
}
.lang button {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; padding: 0.35em 0.7em;
  border-radius: 100px; color: var(--muted); transition: color 0.3s, background-color 0.3s;
}
.lang button[aria-pressed="true"] { background: var(--green-800); color: var(--cream); }

/* Header scrolled state */
.header.is-scrolled {
  height: 70px; background: rgba(250, 250, 250, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.header.is-scrolled .brand img { width: 38px; height: 38px; }

/* Transparent-on-hero header (dark text still readable over light hero top) */
.header.on-hero:not(.is-scrolled) { background: transparent; }

/* Solid header for interior pages */
.header--solid {
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

/* Burger */
.burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; align-items: center; }
.burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.4s var(--ease), opacity 0.3s; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 45;
  background: var(--cream); padding: calc(var(--header-h) + 2rem) var(--gutter) 2rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  transform: translateY(-100%); opacity: 0; visibility: hidden;
  transition: transform 0.55s var(--ease), opacity 0.4s, visibility 0.55s;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display); font-size: clamp(1.8rem, 8vw, 2.6rem); font-weight: 600;
  color: var(--ink); padding: 0.35em 0; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu a .sub { font-family: var(--font-body); font-size: 0.8rem; font-weight: 500; color: var(--gold-700); letter-spacing: 0.2em; text-transform: uppercase; }
.mobile-menu__sub { padding-left: 1rem; }
.mobile-menu__sub a { font-size: clamp(1.2rem, 5vw, 1.6rem); }
.mobile-menu__foot { margin-top: auto; padding-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }

/* ---------- Hero (glowy waves) ---------- */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }

/* Espresso backdrop shows while the farm photo loads */
.hero--waves { background: linear-gradient(180deg, #2A2108 0%, #1E1907 52%, #16110A 100%); }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(30, 24, 8,0.5) 0%, rgba(30, 24, 8,0.05) 32%),
    linear-gradient(0deg, rgba(30, 24, 8,0.94) 0%, rgba(30, 24, 8,0.62) 34%, rgba(30, 24, 8,0.24) 60%, rgba(30, 24, 8,0) 80%),
    linear-gradient(0deg, rgba(30, 24, 8,0.20), rgba(30, 24, 8,0.20));
}
.hero__media.kenburns img { animation: kenburns 20s var(--ease-soft) forwards; transform-origin: 60% 40%; }
@keyframes kenburns { from { transform: scale(1.12); } to { transform: scale(1); } }
/* Glowing wind strands drawn above the photo + overlay */
.hero__waves { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; pointer-events: none; }

/* Light header over the dark waves hero (reverts to ink once .is-scrolled adds the solid bg) */
.header.on-hero:not(.is-scrolled) .brand__name { color: var(--cream); }
.header.on-hero:not(.is-scrolled) .brand__name span { color: var(--gold-soft); }
.header.on-hero:not(.is-scrolled) .nav__link { color: rgba(255, 244, 204, 0.8); }
.header.on-hero:not(.is-scrolled) .nav__link:hover,
.header.on-hero:not(.is-scrolled) .nav__link[aria-current="page"] { color: var(--cream); }
.header.on-hero:not(.is-scrolled) .nav__link::after { background: var(--gold-soft); }
.header.on-hero:not(.is-scrolled) .burger span { background: var(--cream); }
.header.on-hero:not(.is-scrolled) .lang { border-color: rgba(255, 244, 204, 0.35); }
.header.on-hero:not(.is-scrolled) .lang button { color: rgba(255, 244, 204, 0.7); }
.header.on-hero:not(.is-scrolled) .lang button[aria-pressed="true"] { background: var(--gold-soft); color: var(--green-900); }
/* ...but flip back to ink while the cream mobile menu is open under the header */
.header.on-hero:not(.is-scrolled) .burger.is-open span { background: var(--ink); }
.header.on-hero:not(.is-scrolled):has(.burger.is-open) .brand__name { color: var(--ink); }
.header.on-hero:not(.is-scrolled):has(.burger.is-open) .brand__name span { color: var(--gold-700); }
.header.on-hero:not(.is-scrolled):has(.burger.is-open) .lang { border-color: var(--line-strong); }
.header.on-hero:not(.is-scrolled):has(.burger.is-open) .lang button { color: var(--muted); }
.header.on-hero:not(.is-scrolled):has(.burger.is-open) .lang button[aria-pressed="true"] { background: var(--green-800); color: var(--cream); }
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(3rem, 7vw, 6rem); }
.hero__title { color: var(--cream); font-size: var(--fs-h1); max-width: 16ch; text-shadow: 0 2px 30px rgba(30, 24, 8,0.66), 0 1px 4px rgba(30, 24, 8,0.72); }
.hero__title em { color: var(--gold-soft); }
.hero .eyebrow { color: var(--gold-soft); text-shadow: 0 1px 12px rgba(30, 24, 8,0.66); }
.hero__sub { color: rgba(255,244,204,0.88); font-size: var(--fs-lead); max-width: 44ch; margin-top: 1.4rem; text-shadow: 0 1px 18px rgba(30, 24, 8,0.7); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero__scroll {
  position: absolute; left: var(--gutter); bottom: 1.6rem; z-index: 2;
  display: flex; align-items: center; gap: 0.7rem; color: rgba(255,244,204,0.7);
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.hero__scroll .mouse { width: 22px; height: 34px; border: 1.5px solid rgba(255,244,204,0.5); border-radius: 12px; position: relative; }
.hero__scroll .mouse::after { content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 6px; background: var(--gold-soft); border-radius: 2px; transform: translateX(-50%); animation: scrollDot 1.8s var(--ease) infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%, 0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 10px); } }

/* ---------- Marquee / trust strip ---------- */
/* Extruded gold bar: lit top bevel, curved enamel face, darker "thickness" edge, cast shadow */
.marquee {
  overflow: hidden; position: relative;
  background: linear-gradient(180deg, #FDF382 0%, var(--gold) 38%, #F1DB39 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 5px solid #D3BA2C;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.55),
    inset 0 -2px 3px rgba(143, 105, 0, 0.18),
    0 12px 22px -10px rgba(43, 36, 16, 0.35);
}
.marquee__track { display: flex; gap: 3.5rem; padding: 1.1rem 0; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 0.8rem; font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--green-800); white-space: nowrap; }
.marquee__item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-800); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 3rem); }
.stat__num { font-family: var(--font-display); font-size: clamp(2.6rem, 1.8rem + 3vw, 4.6rem); font-weight: 600; line-height: 1; color: var(--green-800); letter-spacing: -0.02em; }
.stat__num .suffix { color: var(--ink); }
.stat__label { margin-top: 0.7rem; font-size: 0.85rem; letter-spacing: 0.04em; color: var(--muted); }

/* ---------- Figure / media ---------- */
.figure { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.figure img, .figure video { width: 100%; height: 100%; object-fit: cover; }
.figure--tall { aspect-ratio: 4 / 5; }
.figure--wide { aspect-ratio: 16 / 10; }
.figure--square { aspect-ratio: 1; }
.figure__cap { position: absolute; left: 1rem; bottom: 1rem; right: 1rem; color: var(--cream); font-size: 0.8rem; letter-spacing: 0.05em; text-shadow: 0 1px 12px rgba(0,0,0,0.5); }
.media-parallax { will-change: transform; }

/* Floating product image (transparent PNG) */
.product-float { filter: drop-shadow(0 30px 45px rgba(43, 36, 16,0.28)); }

/* ---------- Variety trio (Productions) ---------- */
/* Durian-flower decorations: float above all content and spill freely across
   section borders (no overflow clip here — body's overflow-x:hidden guards the page) */
.section--flowers { position: relative; }
.section--flowers > .container { position: relative; z-index: 1; }
.prod-flower {
  position: absolute; z-index: 2; pointer-events: none; user-select: none;
  filter: drop-shadow(0 22px 30px rgba(43, 36, 16, 0.2));
}
.prod-flower--tr { top: -2%; right: -4%; width: clamp(170px, 24vw, 380px); transform: rotate(9deg); }
.prod-flower--bl { bottom: -7%; left: -5%; width: clamp(190px, 26vw, 430px); transform: rotate(-7deg); }
@media (max-width: 720px) {
  .prod-flower--tr { right: -14%; opacity: 0.85; }
  .prod-flower--bl { left: -16%; opacity: 0.85; }
}

.varieties {
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2.4rem);
}
/* Wind current threading the three packs — same flow language as the hero */
.varieties__wind {
  position: absolute; left: -3%; top: 2%; width: 106%; height: 52%;
  z-index: 0; pointer-events: none;
}
.varieties__wind path { fill: none; stroke: var(--sage); stroke-width: 1.4; stroke-linecap: round; }
.varieties__wind path:nth-child(1) { opacity: 0.5; }
.varieties__wind path:nth-child(2) { opacity: 0.32; }
.varieties__wind path:nth-child(3) { opacity: 0.2; }

/* "trio-card" (not "variety" — that class already belongs to durian.html sections) */
.trio-card {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: clamp(1.2rem, 2vw, 1.8rem); border-radius: var(--radius-lg);
  transition: background-color 0.4s var(--ease-soft), box-shadow 0.4s var(--ease-soft), transform 0.5s var(--ease);
}
.trio-card:hover { background: var(--paper); box-shadow: var(--shadow-md); transform: translateY(-6px); }

/* Packs bleed slightly past the card padding so they hit ~350px on desktop, up to 500px stacked */
.trio-card__pack { position: relative; width: min(500px, calc(100% + 2.8rem)); margin-inline: -1.4rem; }
.trio-card__pack::before {
  content: ""; position: absolute; inset: 12% -14% -2%; z-index: 0;
  background: radial-gradient(52% 46% at 50% 58%, rgba(252, 235, 83, 0.42), rgba(252, 235, 83, 0) 72%);
}
.trio-card__pack img {
  position: relative; z-index: 1; width: 100%; height: auto;
  filter: drop-shadow(0 26px 28px rgba(43, 36, 16, 0.24));
  transition: transform 0.5s var(--ease);
}
.trio-card:hover .trio-card__pack img { transform: rotate(-1.4deg) scale(1.03); }

.trio-card__name { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h4); color: var(--ink); margin-top: 1.1rem; }
/* Short rule in the variety's real label colour (green / brown / black band on the pack) */
.trio-card__name::after { content: ""; display: block; width: 44px; height: 3px; border-radius: 2px; background: var(--label, var(--gold-700)); margin: 0.55rem auto 0; }
.trio-card__tag { color: var(--muted); font-size: 0.95rem; line-height: 1.6; max-width: 30ch; margin-top: 0.7rem; }

.trio-card__notes { list-style: none; padding: 0; margin: 1.1rem 0 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
.trio-card__notes li {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--gold-700); background: rgba(252, 235, 83, 0.16);
  border: 1px solid rgba(143, 105, 0, 0.28); border-radius: 100px; padding: 0.4em 0.85em;
  transition: color 0.3s, border-color 0.3s;
}
.trio-card:hover .trio-card__notes li { color: var(--label, var(--gold-700)); border-color: var(--label, var(--gold-700)); }

/* Cold-chain facts strip */
.varieties__specs {
  margin-top: clamp(2.2rem, 4vw, 3.2rem);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.8rem 1rem;
}
.spec-pill {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.8rem; color: var(--ink-soft);
  background: var(--paper); border: 1px solid var(--line); border-radius: 100px; padding: 0.55em 1.1em;
}
.spec-pill svg { width: 1.05em; height: 1.05em; color: var(--gold-700); flex: none; }
.varieties__specs .link { margin-left: 0.6rem; }

@media (max-width: 900px) {
  .varieties { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; gap: 2.2rem; }
  .varieties__wind { display: none; }
  .trio-card:hover { transform: none; }
}

/* ---------- Gallery (masonry + lightbox) ---------- */
.gallery { columns: 3 300px; column-gap: 1.2rem; }
.gallery__item {
  display: block; width: 100%; margin-bottom: 1.2rem; break-inside: avoid;
  position: relative; border-radius: var(--radius); overflow: hidden;
  padding: 0; border: none; background: var(--cream-deep); cursor: zoom-in;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.gallery__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery__item:focus-visible { outline: 2px solid var(--gold-700); outline-offset: 3px; }
.gallery__item img, .gallery__item video { display: block; width: 100%; height: auto; }
.gallery__item img { transition: transform 0.6s var(--ease); }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item--video { cursor: default; }
.gallery__badge {
  position: absolute; top: 0.8rem; left: 0.8rem; z-index: 1; pointer-events: none;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--green-900); background: var(--gold); border-radius: 100px; padding: 0.35em 0.8em;
  box-shadow: 0 2px 8px rgba(43, 36, 16, 0.25);
}
@media (max-width: 720px) {
  .gallery { columns: 2 150px; column-gap: 0.8rem; }
  .gallery__item { margin-bottom: 0.8rem; }
}

/* Lightbox dialog */
.lightbox {
  border: none; padding: 0; background: transparent;
  width: 100vw; height: 100vh; max-width: none; max-height: none;
  display: none; align-items: center; justify-content: center;
}
.lightbox[open] { display: flex; }
.lightbox::backdrop { background: rgba(20, 16, 6, 0.9); }
.lightbox img {
  max-width: min(92vw, 1100px); max-height: 88vh;
  border-radius: var(--radius); box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
}
.lightbox__close, .lightbox__nav {
  position: fixed; z-index: 2; display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255, 244, 204, 0.3);
  background: rgba(30, 24, 8, 0.55); color: var(--cream); cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(143, 105, 0, 0.6); }
.lightbox__close { top: 1.2rem; right: 1.2rem; }
.lightbox__nav--prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox__close svg, .lightbox__nav svg { width: 20px; height: 20px; }

/* ---------- Cards ---------- */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s;
  display: flex; flex-direction: column;
}
.card:hover { box-shadow: var(--shadow-lg), 0 0 0 2px var(--gold) inset; border-color: var(--gold); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: clamp(1.4rem, 2.5vw, 2rem); display: flex; flex-direction: column; gap: 0.8rem; flex: 1; }
.card__index { font-family: var(--font-display); font-style: italic; color: var(--gold-700); font-size: 1rem; }
.card__title { font-size: var(--fs-h4); }
.card__foot { margin-top: auto; padding-top: 0.6rem; }

/* Variety cards (products) */
.variety { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.variety.alt { grid-template-columns: 1fr 1.05fr; }
.variety__media { position: relative; }
.variety__tag {
  position: absolute; z-index: 2; pointer-events: none; white-space: nowrap;
  font-family: var(--font-display); font-style: italic; line-height: 1;
  font-size: clamp(3rem, 8vw, 6.5rem);
  color: var(--gold); /* Sunburst */
  text-shadow: 0 12px 26px rgba(43, 36, 16, 0.28), 0 3px 7px rgba(43, 36, 16, 0.2);
}

/* Spec list */
.specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line); }
.spec { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.spec:nth-child(odd) { padding-right: 1.5rem; }
.spec:nth-child(even) { padding-left: 1.5rem; border-left: 1px solid var(--line); }
.spec dt { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-700); }
.spec dd { font-family: var(--font-display); font-size: 1.2rem; margin-top: 0.3rem; }

/* ---------- Process steps ---------- */
.steps { counter-reset: step; display: grid; gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.step { background: var(--cream); padding: clamp(1.6rem, 3vw, 2.6rem) 0; display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1rem, 3vw, 3rem); align-items: start; }
.step__no { counter-increment: step; font-family: var(--font-display); font-style: italic; font-size: 1.4rem; color: var(--gold-700); }
.step__no::before { content: "0" counter(step); }
.step__title { font-size: var(--fs-h4); }
.step__text { color: var(--muted); max-width: 52ch; margin-top: 0.5rem; }
.step__media { width: clamp(120px, 18vw, 220px); border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.step__media img, .step__media video { width: 100%; height: 100%; object-fit: cover; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0; text-align: left; font-family: var(--font-display); font-size: var(--fs-h4);
  color: var(--ink); transition: color 0.3s;
}
.faq__q:hover { color: var(--green-700); }
.faq__icon { flex-shrink: 0; width: 34px; height: 34px; border: 1px solid var(--line-strong); border-radius: 50%; position: relative; transition: background-color 0.3s, border-color 0.3s; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); background: var(--green-800); transition: transform 0.4s var(--ease), background-color 0.3s; }
.faq__icon::before { width: 13px; height: 1.5px; }
.faq__icon::after { width: 1.5px; height: 13px; }
.faq__item.is-open .faq__icon { background: var(--green-800); border-color: var(--green-800); }
.faq__item.is-open .faq__icon::before, .faq__item.is-open .faq__icon::after { background: var(--cream); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__a { overflow: hidden; height: 0; transition: height 0.45s var(--ease); }
.faq__a-inner { padding-bottom: 1.6rem; color: var(--muted); max-width: 64ch; }
.faq-aside { position: sticky; top: 120px; }

/* ---------- Dark / cinematic section ---------- */
.dark { background: var(--green-900); color: var(--cream); position: relative; overflow: hidden; }
.dark h1, .dark h2, .dark h3, .dark h4 { color: var(--cream); }
.dark .muted { color: rgba(255,244,204,0.62); }
.dark .lead { color: rgba(255,244,204,0.82); }
.dark .eyebrow { color: var(--gold-soft); }
.dark .spec { border-color: rgba(255,244,204,0.14); }
.dark .specs { border-color: rgba(255,244,204,0.14); }
.dark .spec:nth-child(even) { border-color: rgba(255,244,204,0.14); }
.dark__bg { position: absolute; inset: 0; z-index: 0; opacity: 0.28; }
.dark__bg img, .dark__bg video { width: 100%; height: 100%; object-fit: cover; }
.dark > .container { position: relative; z-index: 1; }

/* ---------- Quote / pull ---------- */
.pull {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.6rem, 1.1rem + 2.4vw, 3.2rem); line-height: 1.18; letter-spacing: -0.01em;
}
.pull .accent { color: var(--gold); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band__bg { position: absolute; inset: 0; }
.cta-band__bg img, .cta-band__bg video { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(30, 24, 8,0.92), rgba(30, 24, 8,0.6)); }
.cta-band__inner { position: relative; z-index: 1; text-align: center; color: var(--cream); }
.cta-band__inner h1, .cta-band__inner h2, .cta-band__inner h3 { color: var(--cream); }
.cta-band__inner em { color: var(--gold-soft); font-style: italic; }

/* ---------- Footer ---------- */
.footer { background: var(--green-900); color: rgba(255,244,204,0.78); padding-top: clamp(4rem, 7vw, 6rem); padding-bottom: clamp(1.25rem, 2.5vw, 2.25rem); overflow: hidden; }
.footer a { transition: color 0.3s; }
.footer a:hover { color: var(--gold-soft); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(2rem, 4vw, 3rem); padding-bottom: 3rem; border-bottom: 1px solid rgba(255,244,204,0.14); }
.footer__brand { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.4rem; }
.footer__brand img { width: 54px; height: 54px; }
.footer__brand b { font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); display: block; }
.footer__brand span { font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-soft); }
.footer h5 { font-family: var(--font-body); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1.2rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.7rem; font-size: 0.92rem; }
.footer__social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.footer__social a { width: 42px; height: 42px; border: 1px solid rgba(255,244,204,0.2); border-radius: 50%; display: grid; place-items: center; transition: background-color 0.3s, border-color 0.3s, color 0.3s; }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.footer__social svg { width: 18px; height: 18px; }
.footer__social.on-light a { border-color: var(--line); color: var(--green-800); }
.footer__social.on-light a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
/* Phone + email list in the footer contact column */
.footer__contact { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 1.1rem; font-size: 0.9rem; }
.footer__contact a { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--gold-soft); }
.footer__contact a:hover { color: var(--cream); }
.footer__contact svg { width: 1.05em; height: 1.05em; flex: none; }
.footer__contact span { overflow-wrap: anywhere; } /* long addresses must not widen the column */
@media (max-width: 720px) {
  /* trade the row gap for padding so each row is a ~44px touch target */
  .footer__contact { gap: 0.15rem; }
  .footer__contact a { padding-block: 0.65rem; }
}
.footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.8rem 0; font-size: 0.8rem; color: rgba(255,244,204,0.55); }
.footer__wordmark { font-family: var(--font-display); font-size: clamp(3rem, 16vw, 12rem); line-height: 0.8; color: rgba(255,244,204,0.06); text-align: center; padding-top: 1.5rem; user-select: none; letter-spacing: 0.02em; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); }
.contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.6rem); }
.field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.2rem; }
.field label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.field input, .field textarea, .field select {
  background: var(--cream); border: 1px solid var(--line); border-radius: 10px; padding: 0.85em 1em;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(46,139,73,0.15); }
.field textarea { resize: vertical; min-height: 120px; }
.info-row { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: none; }
.info-row__icon { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: var(--cream-deep); display: grid; place-items: center; color: var(--green-700); }
.info-row__icon svg { width: 22px; height: 22px; }
.info-row h6 { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.info-row p { margin-top: 0.2rem; color: var(--ink); overflow-wrap: anywhere; }
.info-row p a { transition: color 0.3s; }
.info-row p a:hover { color: var(--gold-700); }

/* ---------- Page header (interior) ---------- */
.page-hero { position: relative; padding-top: calc(var(--header-h) + clamp(3rem, 7vw, 6rem)); padding-bottom: clamp(2.5rem, 5vw, 4rem); overflow: hidden; }
.page-hero.dark { background: var(--green-900); }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img, .page-hero__bg video { width: 100%; height: 100%; object-fit: cover; }
.page-hero.has-media .page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(30, 24, 8,0.85), rgba(30, 24, 8,0.35)); }
.page-hero.has-media { color: var(--cream); }
.page-hero.has-media h1 { color: var(--cream); }
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__title { font-size: var(--fs-h1); max-width: 18ch; }
.breadcrumb { display: flex; gap: 0.5rem; font-size: 0.8rem; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 1.2rem; }
.page-hero.has-media .breadcrumb { color: rgba(255,244,204,0.7); }
.breadcrumb a:hover { color: var(--gold-700); }

/* ---------- Video scroll hero (scroll-to-scale) ---------- */
.vhero { position: relative; height: 220vh; background: var(--green-900); }
.vhero__sticky { position: sticky; top: 0; height: 100vh; display: grid; place-items: center; overflow: hidden; background: var(--green-900); }
.vhero__frame {
  position: relative; grid-area: 1 / 1;
  width: min(94vw, 1520px); height: 84vh; border-radius: 24px; overflow: hidden;
  transform: scale(0.15); transform-origin: center center; will-change: transform;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}
.no-js .vhero__frame { transform: none; }
.vhero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vhero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(30, 24, 8,0.55) 0%, rgba(30, 24, 8,0.1) 38%, rgba(30, 24, 8,0.72) 100%),
    linear-gradient(0deg, rgba(30, 24, 8,0.25), rgba(30, 24, 8,0.25));
}
.vhero__content {
  grid-area: 1 / 1; position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: clamp(1.5rem, 4vw, 3rem); max-width: 60rem; margin-inline: auto;
}
.vhero__content .breadcrumb { color: rgba(255,244,204,0.72); justify-content: center; margin-bottom: 1.1rem; }
.vhero__content .breadcrumb a:hover { color: var(--gold-soft); }
.vhero__title {
  font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: -0.01em;
  font-size: clamp(2.3rem, 1.4rem + 4vw, 5.2rem); color: var(--cream); max-width: 18ch;
  text-shadow: 0 2px 30px rgba(30, 24, 8,0.6), 0 1px 4px rgba(30, 24, 8,0.7);
}
.vhero__title em { color: var(--gold-soft); font-style: italic; }
.vhero__sub {
  font-size: var(--fs-lead); line-height: 1.55; color: rgba(255,244,204,0.9); max-width: 52ch;
  margin-top: 1.3rem; text-shadow: 0 1px 16px rgba(30, 24, 8,0.6);
}
.vhero__cue {
  margin-top: 2.2rem; display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,244,204,0.7);
}
.vhero__cue .mouse { width: 22px; height: 34px; border: 1.5px solid rgba(255,244,204,0.5); border-radius: 12px; position: relative; }
.vhero__cue .mouse::after { content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 6px; background: var(--gold-soft); border-radius: 2px; transform: translateX(-50%); animation: scrollDot 1.8s var(--ease) infinite; }
/* Cream content curves up over the dark hero */
.vhero-after { position: relative; z-index: 2; background: var(--cream); border-radius: 30px 30px 0 0; margin-top: -32px; padding-top: clamp(3.5rem, 6vw, 5.5rem); }

/* ---------- Decorative ---------- */
.divider-leaf { display: flex; align-items: center; justify-content: center; gap: 1rem; color: var(--sage); }
.divider-leaf::before, .divider-leaf::after { content: ""; height: 1px; flex: 1; max-width: 120px; background: var(--line); }
.kicker-num { font-family: var(--font-display); font-style: italic; color: var(--gold-700); font-size: 1.1rem; }

/* ---------- Reveal animations ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); will-change: opacity, transform; }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="fade"] { transform: none; }
[data-reveal="left"] { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }

/* Headline line-mask reveal */
.reveal-lines .line { display: block; overflow: hidden; }
.reveal-lines .line > span { display: block; transform: translateY(110%); transition: transform 1s var(--ease); }
.reveal-lines.in .line > span { transform: none; }
.reveal-lines.in .line:nth-child(2) > span { transition-delay: 0.1s; }
.reveal-lines.in .line:nth-child(3) > span { transition-delay: 0.2s; }

/* Image cover-wipe reveal */
.img-reveal { position: relative; overflow: hidden; }
.img-reveal img, .img-reveal video { transform: scale(1.12); transition: transform 1.4s var(--ease); }
.img-reveal.in img, .img-reveal.in video { transform: scale(1); }

/* ---------- Mobile menu foot button reset ---------- */
.mobile-menu__foot .btn {
  font-family: var(--font-body); font-size: 0.95rem; border: none;
  padding: 1em 1.6em; justify-content: center; color: var(--cream);
}
.mobile-menu__foot .btn--ghost { color: var(--ink); border: 1px solid var(--line-strong); }

/* ---------- Utilities ---------- */
.hide { display: none !important; }
.hide-mobile { }
.relative { position: relative; }
.mt-0 { margin-top: 0; }
.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 2rem; }
.mb-lg { margin-bottom: 3.5rem; }
.maxw-narrow { max-width: var(--container-narrow); }
.text-gold { color: var(--gold-700); }
.text-green { color: var(--green-700); }
.bg-paper { background: var(--paper); }
/* Same extruded-gold language as the marquee, scaled up for the stats band */
.bg-deep {
  position: relative;
  background: linear-gradient(180deg, #FDF382 0%, var(--gold) 30%, #F3DE41 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 6px solid #D3BA2C;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.55),
    inset 0 -3px 4px rgba(143, 105, 0, 0.16),
    0 14px 26px -12px rgba(43, 36, 16, 0.32);
}
.bg-deep .eyebrow { color: var(--ink-soft); }
.bg-deep .stat__label { color: var(--ink-soft); }
/* Letterpress: dark type pressed into the gold face */
.bg-deep .stat__num, .marquee__item { text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); }
.no-js [data-reveal], .no-js .reveal-lines .line > span, .no-js .img-reveal img { opacity: 1 !important; transform: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 2.5rem; }
}
@media (max-width: 860px) {
  :root { --header-h: 72px; }
  .hide-mobile { display: none !important; }
  .nav, .nav__actions .lang { display: none; }
  .nav__actions .lang.mobile-show { display: inline-flex; }
  .burger { display: flex; }
  .split, .variety, .variety.alt { grid-template-columns: 1fr; gap: 2.5rem; }
  .cols-2, .cols-3 { grid-template-columns: 1fr; }
  .step { grid-template-columns: auto 1fr; }
  .step__media { display: none; }
  .faq-aside { position: static; top: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .variety__tag { font-size: clamp(2.8rem, 13vw, 5rem); }
}
@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; }
  .specs { grid-template-columns: 1fr; }
  .spec:nth-child(even) { border-left: none; padding-left: 0; }
  .spec:nth-child(odd) { padding-right: 0; }
  .hero__scroll { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  [data-reveal], .reveal-lines .line > span, .img-reveal img, .img-reveal video { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation: none; }
}
