/* =========================================================
   MANJUSHREE PLANTATIONS — Landing Page
   Style: Organic Biophilic × Editorial Luxury
   ========================================================= */

:root {
  /* Brand-derived palette (from logo: orange + green + warm paper) */
  --paper:        #F4EEE1;   /* warm cream background        */
  --paper-2:      #EEE6D6;   /* slightly deeper surface      */
  --paper-3:      #E6DCC7;   /* card / muted surface         */
  --ink:          #23201A;   /* warm near-black text         */
  --ink-soft:     #5B554A;   /* secondary text               */
  --ink-faint:    #8B8477;   /* tertiary / labels            */
  --line:         #D8CDB8;   /* hairline borders             */

  --estate:       #E45E24;   /* brand orange (logo)          */
  --estate-deep:  #C64B18;   /* pressed / hover orange       */
  --forest:       #2C4A32;   /* deep plantation green        */
  --forest-2:     #1E3524;   /* darker green (heritage bg)   */
  --sage:         #7C8A6E;
  --amber:        #C68A3E;

  --night:        #17140F;   /* near-black warm (footer)     */

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;

  /* Spacious scale (density dial = 3) */
  --sp-1: 8px;  --sp-2: 16px; --sp-3: 24px; --sp-4: 40px;
  --sp-5: 64px; --sp-6: 96px; --sp-7: 128px; --sp-8: 180px;

  --maxw: 1280px;
  --radius: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --z-nav: 100;
  --z-menu: 120;
  --z-grain: 9000;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

::selection { background: var(--estate); color: #fff; }

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

.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 10000;
  background: var(--ink); color: var(--paper);
  padding: 10px 18px; border-radius: 8px; font-size: 14px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- Film grain ---------- */
.grain {
  position: fixed; inset: 0; z-index: var(--z-grain);
  pointer-events: none; opacity: .04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-nav);
  transition: background .5s var(--ease), backdrop-filter .5s var(--ease),
              box-shadow .5s var(--ease), transform .45s var(--ease);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; gap: var(--sp-3);
  padding: 22px clamp(20px, 5vw, 56px);
}
.nav__brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.nav__logo {
  height: 38px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.nav__wordmark { display: flex; flex-direction: column; line-height: 1.02; color: #fff; }
.nav__wordmark-top { font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: .01em; }
.nav__wordmark-bot { font-size: 10px; letter-spacing: .32em; text-transform: uppercase; opacity: .8; }

.nav__links { display: flex; gap: 34px; }
.nav__links a {
  position: relative; font-size: 14px; font-weight: 500; letter-spacing: .02em;
  color: #fff; padding: 4px 0; transition: color .3s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--estate); transition: width .35s var(--ease);
}
.nav__links a:hover { color: var(--estate); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.35); color: #fff;
  font-size: 13.5px; font-weight: 500; letter-spacing: .02em;
  transition: background .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .35s var(--ease);
}
.nav__cta svg { transition: transform .35s var(--ease); }
.nav__cta:hover { background: var(--estate); border-color: var(--estate); }
.nav__cta:hover svg { transform: translateX(3px); }

/* Scrolled state — solid paper nav */
.nav.is-solid {
  background: rgba(244,238,225,.86);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -22px rgba(35,32,26,.5);
}
.nav.is-solid .nav__wordmark, .nav.is-solid .nav__links a { color: var(--ink); }
.nav.is-solid .nav__links a:hover { color: var(--estate); }
.nav.is-solid .nav__cta { color: var(--ink); border-color: var(--line); }
.nav.is-solid .nav__cta:hover { color: #fff; border-color: var(--estate); }
.nav.is-hidden { transform: translateY(-105%); }

.nav__toggle {
  display: none; width: 44px; height: 44px; border: none; background: none;
  cursor: pointer; flex-direction: column; gap: 6px; align-items: center; justify-content: center;
}
.nav__toggle span { width: 24px; height: 2px; background: #fff; transition: transform .35s var(--ease), opacity .3s var(--ease); }
.nav.is-solid .nav__toggle span { background: var(--ink); }
body.menu-open .nav__toggle span { background: var(--paper); }
body.menu-open .nav__toggle span:first-child { transform: translateY(4px) rotate(45deg); }
body.menu-open .nav__toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: var(--z-menu);
  background: var(--forest-2); color: var(--paper);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: var(--sp-3); opacity: 0; visibility: hidden;
  clip-path: circle(0% at calc(100% - 40px) 40px);
  transition: clip-path .6s var(--ease), opacity .4s var(--ease), visibility .4s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; clip-path: circle(150% at calc(100% - 40px) 40px); }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mobile-menu a {
  font-family: var(--font-display); font-size: clamp(38px, 12vw, 64px);
  font-weight: 500; line-height: 1.05; opacity: 0; transform: translateY(20px);
}
body.menu-open .mobile-menu a { animation: menuIn .5s var(--ease) forwards; }
body.menu-open .mobile-menu a:nth-child(1) { animation-delay: .18s; }
body.menu-open .mobile-menu a:nth-child(2) { animation-delay: .26s; }
body.menu-open .mobile-menu a:nth-child(3) { animation-delay: .34s; }
@keyframes menuIn { to { opacity: 1; transform: translateY(0); } }
.mobile-menu a:active { color: var(--estate); }
.mobile-menu__foot { font-size: 12px; letter-spacing: .3em; text-transform: uppercase; opacity: .6; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; color: #fff; text-align: center;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__video {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06); will-change: transform;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 30%, transparent 30%, rgba(23,20,15,.35) 100%),
    linear-gradient(180deg, rgba(23,20,15,.55) 0%, rgba(23,20,15,.15) 35%, rgba(23,20,15,.45) 75%, rgba(23,20,15,.85) 100%);
}

.hero__rail {
  position: absolute; top: 50%; z-index: 3;
  writing-mode: vertical-rl; text-orientation: mixed;
  font-size: 11px; letter-spacing: .42em; text-transform: uppercase;
  color: rgba(255,255,255,.62); transform: translateY(-50%);
  display: flex; align-items: center; gap: 20px;
}
.hero__rail span { position: relative; }
.hero__rail--left { left: clamp(16px, 3vw, 40px); }
.hero__rail--right { right: clamp(16px, 3vw, 40px); transform: translateY(-50%) rotate(180deg); }
.hero__rail::before { content: ""; position: absolute; left: 50%; top: -70px; width: 1px; height: 54px; background: rgba(255,255,255,.4); }

.hero__content { position: relative; z-index: 4; width: min(1000px, 90vw); padding: 0 var(--sp-2); }

/* Cinematic headline sequence */
.hero__sequence { position: relative; min-height: 3.4em; display: grid; place-items: center; }
.hero__line {
  grid-area: 1 / 1;
  font-family: var(--font-display);
  font-weight: 400; font-size: clamp(26px, 5.2vw, 62px);
  line-height: 1.12; letter-spacing: -.015em;
  max-width: 16ch; margin: 0 auto;
  opacity: 0; visibility: hidden;
}
.hero__line span { display: inline-block; }
.hero__line.is-active { visibility: visible; }
.hero__line[data-line="1"], .hero__line[data-line="3"] { font-style: italic; font-weight: 300; }

/* Final reveal (logo + name) */
.hero__reveal {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  opacity: 0; visibility: hidden;
}
.hero__logo {
  height: 72px;
  width: auto;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 15px 40px -10px rgba(0,0,0,.3);
}
.hero__title { font-family: var(--font-display); font-weight: 500; line-height: .92; letter-spacing: -.02em; }
.hero__title-line { display: block; font-size: clamp(44px, 9vw, 108px); }
.hero__title-line--serif { font-style: italic; font-weight: 300; color: var(--paper); }
.hero__tagline { font-size: clamp(14px, 1.6vw, 18px); letter-spacing: .04em; color: rgba(255,255,255,.82); }

.hero__scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 10.5px; letter-spacing: .34em; text-transform: uppercase; color: rgba(255,255,255,.72);
  opacity: 0; transition: color .3s var(--ease);
}
.hero__scroll:hover { color: #fff; }
.hero__scroll-line { width: 1px; height: 48px; background: linear-gradient(rgba(255,255,255,.7), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: var(--estate); animation: scrollDrop 2.2s var(--ease-in-out) infinite;
}
@keyframes scrollDrop { 0% { top: -50%; } 60%,100% { top: 100%; } }

.hero__skip {
  position: absolute; bottom: 34px; right: clamp(20px, 5vw, 56px); z-index: 6;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.28); color: #fff;
  padding: 9px 16px; border-radius: 100px; font-family: var(--font-body);
  font-size: 12px; letter-spacing: .08em; cursor: pointer; backdrop-filter: blur(6px);
  transition: background .3s var(--ease), opacity .4s var(--ease);
}
.hero__skip:hover { background: rgba(255,255,255,.22); }
.hero__skip.is-gone { opacity: 0; pointer-events: none; }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  background: var(--forest-2); color: var(--paper);
  padding: 20px 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.06);
  position: relative; z-index: 2;
}
.marquee__track { display: flex; align-items: center; gap: 40px; width: max-content; white-space: nowrap; will-change: transform; }
.marquee__track span { font-family: var(--font-display); font-size: clamp(24px, 3.4vw, 40px); font-weight: 400; font-style: italic; }
.marquee__dot { color: var(--estate); font-size: 18px !important; font-style: normal !important; }

/* =========================================================
   SHARED — section heads
   ========================================================= */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .26em; text-transform: uppercase;
  font-weight: 600; color: var(--estate);
}
.eyebrow--dark { color: var(--forest); }
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

.section-head { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }
.section-head--center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 8vw, 104px); line-height: .98; letter-spacing: -.025em;
  margin-top: 20px; max-width: 14ch;
}
.section-title em { font-style: italic; color: var(--estate); }
.section-title--light { color: var(--paper); max-width: none; }
.section-title--light em { color: var(--amber); }
.section-lede { margin-top: 26px; max-width: 46ch; font-size: clamp(16px, 1.7vw, 19px); color: var(--ink-soft); }

/* =========================================================
   HARVESTS
   ========================================================= */
.harvests { padding: clamp(90px, 12vw, 160px) 0 clamp(70px, 9vw, 120px); position: relative; }

.crops {
  max-width: var(--maxw); margin: clamp(50px, 7vw, 90px) auto 0;
  padding: 0 clamp(20px, 5vw, 56px);
  display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(16px, 1.6vw, 22px);
}
/* Editorial asymmetric placement */
.crop--tea      { grid-column: span 3; }
.crop--coffee   { grid-column: span 3; }
.crop--cardamom { grid-column: span 2; }
.crop--pepper   { grid-column: span 2; }
.crop--clove    { grid-column: span 2; }

.crop {
  position: relative; display: flex; flex-direction: column; justify-content: space-between;
  min-height: 340px; padding: 30px; border-radius: var(--radius);
  background: var(--crop-soft); color: var(--ink);
  border: 1px solid rgba(0,0,0,.04); overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  will-change: transform;
}
.crop--tea, .crop--coffee { min-height: 400px; }
.crop::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(120% 120% at 100% 0%, color-mix(in srgb, var(--crop) 16%, transparent), transparent 55%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.crop:hover { transform: translateY(-8px); box-shadow: 0 40px 70px -40px color-mix(in srgb, var(--crop) 60%, transparent); }
.crop:hover::before { opacity: 1; }

.crop__index {
  position: relative; z-index: 1;
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  color: var(--crop); letter-spacing: .1em;
}
.crop__art {
  position: absolute; z-index: 0; color: var(--crop);
  right: 18px; bottom: 78px; width: clamp(120px, 22vw, 190px); opacity: .5;
  transition: transform .6s var(--ease), opacity .5s var(--ease);
}
.crop:hover .crop__art { transform: rotate(-6deg) scale(1.08) translateY(-6px); opacity: .85; }
.crop__body { position: relative; z-index: 1; margin-top: auto; }
.crop__name { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 3.6vw, 40px); line-height: 1; letter-spacing: -.02em; }
.crop__tag { margin-top: 8px; font-size: 15px; color: var(--ink-soft); font-style: italic; font-family: var(--font-display); }
.crop__link {
  position: relative; z-index: 1; margin-top: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--crop);
}
.crop__link svg { transition: transform .35s var(--ease); }
.crop:hover .crop__link svg { transform: translateX(5px); }

/* reveal state */
.crop { opacity: 0; transform: translateY(40px); }
.crop.is-in { opacity: 1; transform: translateY(0); transition: opacity .7s var(--ease), transform .7s var(--ease); }

/* =========================================================
   ABOUT
   ========================================================= */
.about { position: relative; padding: clamp(90px, 12vw, 170px) 0; overflow: hidden; }
.about__leaf { position: absolute; color: var(--sage); opacity: .16; z-index: 0; pointer-events: none; }
.about__leaf--1 { width: clamp(260px, 34vw, 520px); top: -60px; right: -100px; }

.about__grid {
  position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: start;
}
.about__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(38px, 6vw, 82px); line-height: .98; letter-spacing: -.025em; margin-top: 22px; }
.about__title-serif { font-style: italic; color: var(--estate); }
.about__copy { padding-top: 12px; }
.about__copy p { color: var(--ink-soft); margin-bottom: 20px; max-width: 52ch; }
.about__lead { font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 27px) !important; line-height: 1.35; color: var(--ink) !important; font-weight: 400; }
.about__copy strong { color: var(--ink); font-weight: 600; }

.about__cta {
  display: inline-flex; flex-direction: column; gap: 6px; margin-top: 18px;
  padding: 22px 26px; border-radius: 18px; background: var(--forest); color: var(--paper);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease);
}
.about__cta:hover { transform: translateY(-4px); background: var(--forest-2); box-shadow: 0 30px 50px -30px rgba(44,74,50,.7); }
.about__cta-label { font-family: var(--font-display); font-style: italic; font-size: 17px; opacity: .82; }
.about__cta-action { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; letter-spacing: .01em; }
.about__cta-action svg { transition: transform .4s var(--ease); }
.about__cta:hover .about__cta-action svg { transform: translateX(6px); }

/* Stats */
.stats {
  position: relative; z-index: 1; max-width: var(--maxw); margin: clamp(60px, 8vw, 110px) auto 0;
  padding: clamp(40px, 5vw, 60px) clamp(20px, 5vw, 56px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; gap: 10px; }
.stat__num { font-family: var(--font-display); font-weight: 400; font-size: clamp(40px, 5.5vw, 72px); line-height: 1; letter-spacing: -.03em; color: var(--estate); }
.stat__unit { font-size: .5em; }
.stat__label { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); font-weight: 500; }

/* =========================================================
   HERITAGE TIMELINE
   ========================================================= */
.heritage {
  background: var(--forest-2); color: var(--paper);
  padding: clamp(90px, 12vw, 160px) 0 clamp(90px, 11vw, 150px);
  position: relative; overflow: hidden;
}
.heritage::before {
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background: radial-gradient(80% 50% at 50% 0%, rgba(198,138,62,.14), transparent 60%);
}
.heritage .eyebrow { color: var(--amber); }

.timeline {
  position: relative; max-width: 1080px; margin: clamp(56px, 7vw, 90px) auto 0;
  padding: 0 clamp(20px, 5vw, 56px);
}
.timeline__progress {
  position: absolute; left: clamp(28px, 5vw, 64px); top: 0; bottom: 0; width: 2px;
  background: rgba(244,238,225,.14); border-radius: 2px;
}
.timeline__progress span { position: absolute; top: 0; left: 0; width: 100%; height: 0; background: linear-gradient(var(--amber), var(--estate)); border-radius: 2px; }

.era { position: relative; padding-left: clamp(46px, 8vw, 84px); padding-bottom: clamp(48px, 7vw, 80px); }
.era:last-child { padding-bottom: 0; }
.era::before {
  content: ""; position: absolute; left: clamp(22px, 5vw, 58px); top: 8px;
  width: 14px; height: 14px; border-radius: 50%; background: var(--amber);
  box-shadow: 0 0 0 5px var(--forest-2), 0 0 0 6px rgba(198,138,62,.35);
  transform: translateX(-50%);
}
.era__head { margin-bottom: 26px; }
.era__range { font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--amber); font-weight: 600; }
.era__name { font-family: var(--font-display); font-weight: 400; font-size: clamp(30px, 4.5vw, 54px); line-height: 1; letter-spacing: -.02em; margin-top: 8px; }
.era__events { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.era__events li {
  display: grid; grid-template-columns: 68px 1fr; gap: 18px; align-items: baseline;
  padding: 16px 0; border-top: 1px solid rgba(244,238,225,.12);
}
.era__year { font-family: var(--font-display); font-size: 19px; font-weight: 500; color: var(--paper); font-variant-numeric: tabular-nums; }
.era__text { color: rgba(244,238,225,.74); font-size: clamp(15px, 1.7vw, 18px); }

.era__events li { opacity: 0; transform: translateX(-16px); }
.era__events li.is-in { opacity: 1; transform: translateX(0); transition: opacity .6s var(--ease), transform .6s var(--ease); }

/* =========================================================
   CLOSING
   ========================================================= */
.closing {
  text-align: center; padding: clamp(90px, 13vw, 180px) clamp(20px, 5vw, 56px);
  display: flex; flex-direction: column; align-items: center; gap: 30px;
  background:
    radial-gradient(70% 90% at 50% 0%, color-mix(in srgb, var(--estate) 8%, transparent), transparent 60%),
    var(--paper);
}
.closing__logo {
  height: 64px;
  width: auto;
  border-radius: 13px;
  object-fit: contain;
  box-shadow: 0 15px 35px -10px rgba(0,0,0,.2);
}
.closing__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(32px, 5.6vw, 72px); line-height: 1.02; letter-spacing: -.02em; max-width: 18ch; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 34px; border-radius: 100px; font-weight: 600; font-size: 15px; letter-spacing: .01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}
.btn--solid { background: var(--estate); color: #fff; box-shadow: 0 16px 34px -14px rgba(228,94,36,.6); }
.btn--solid:hover { background: var(--estate-deep); transform: translateY(-3px); box-shadow: 0 22px 44px -16px rgba(228,94,36,.7); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--night); color: var(--paper); padding: clamp(60px, 8vw, 96px) 0 40px; }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(40px, 6vw, 80px);
}
.footer__wordmark { font-family: var(--font-display); font-size: clamp(24px, 3vw, 34px); font-weight: 500; letter-spacing: -.01em; }
.footer__tag { margin-top: 14px; max-width: 34ch; color: rgba(244,238,225,.6); font-size: 15px; }
.footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col-title { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--amber); margin-bottom: 6px; }
.footer__col a { color: rgba(244,238,225,.68); font-size: 15px; width: fit-content; transition: color .25s var(--ease), transform .25s var(--ease); }
.footer__col a:hover { color: var(--estate); transform: translateX(4px); }
.footer__base {
  max-width: var(--maxw); margin: clamp(48px, 6vw, 72px) auto 0; padding: 26px clamp(20px, 5vw, 56px) 0;
  border-top: 1px solid rgba(244,238,225,.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: rgba(244,238,225,.5); letter-spacing: .04em;
}

/* =========================================================
   REVEAL ANIMATIONS (JS toggles .is-in)
   ========================================================= */
[data-reveal-item] { opacity: 0; transform: translateY(28px); }
[data-reveal-item].is-in { opacity: 1; transform: translateY(0); transition: opacity .8s var(--ease), transform .8s var(--ease); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .crops { grid-template-columns: repeat(4, 1fr); }
  .crop--tea, .crop--coffee { grid-column: span 2; }
  .crop--cardamom { grid-column: span 2; }
  .crop--pepper   { grid-column: span 2; }
  .crop--clove    { grid-column: span 4; min-height: 300px; }
  .crop--clove { flex-direction: row; align-items: flex-end; }
  .crop--clove .crop__body { margin-top: 0; }
}

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .about__grid { grid-template-columns: 1fr; gap: 34px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .hero__rail { display: none; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .crops { grid-template-columns: 1fr; }
  .crop--tea, .crop--coffee, .crop--cardamom, .crop--pepper, .crop--clove { grid-column: span 1; min-height: 280px; }
  .crop--clove { flex-direction: column; align-items: stretch; }
  .crop--tea, .crop--coffee { min-height: 300px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; gap: 8px; }
  .era__events li { grid-template-columns: 54px 1fr; gap: 12px; }
  .hero__skip { bottom: 26px; }
  .hero__scroll { bottom: 22px; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .hero__video { transform: none; }
  .hero__line, .hero__reveal, [data-reveal-item], .crop, .era__events li { opacity: 1 !important; visibility: visible !important; transform: none !important; }
  .hero__sequence { display: none; }
  .hero__scroll-line::after { animation: none; }
}
