/* ==========================================================================
   FRESH ROOTS — Premium Farm-Fresh Produce · Baner, Pune
   Enterprise marketing site · design system + layout
   Palette: warm paper · deep forest green · sage · refined gold
   Type: Fraunces (display serif) · Inter (UI/body)
   ========================================================================== */

/* ------------------------------- Tokens ---------------------------------- */
:root {
  /* Neutrals / paper */
  --paper:      #F7F4EC;
  --paper-2:    #F1EBDD;
  --card:       #FFFFFF;
  --line:       #E4DECE;
  --line-soft:  #EEE9DC;

  /* Greens */
  --ink:        #15281C;   /* primary text */
  --ink-soft:   #4B5A4B;
  --ink-faint:  #828C7B;
  --forest-900: #0E2216;   /* darkest dramatic bg */
  --forest-800: #143020;
  --forest-700: #1C3A28;
  --green-600:  #2E5238;
  --green-500:  #3F6B49;
  --sage-500:   #7FA06A;
  --sage-400:   #95B27E;
  --sage-200:   #C4D5B2;
  --sage-100:   #E7EDDB;
  --sage-50:    #F0F3E8;

  /* Gold accent */
  --gold-700:   #A9842B;
  --gold-600:   #C2982F;
  --gold-500:   #CBA341;
  --gold-200:   #E7D6A0;

  --white: #fff;

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Geometry */
  --maxw: 1240px;
  --gutter: 26px;
  --radius: 20px;
  --radius-sm: 13px;
  --radius-xs: 9px;

  /* Shadow */
  --sh-sm: 0 2px 8px rgba(21, 40, 28, .05);
  --sh:    0 22px 50px -28px rgba(21, 40, 28, .35);
  --sh-lg: 0 50px 90px -45px rgba(14, 34, 22, .55);

  --ease: cubic-bezier(.21, 1, .31, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ------------------------------- Reset ----------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 100px; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; padding: 0; }
input, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--sage-200); color: var(--forest-900); }

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

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 1000;
  background: var(--forest-800); color: #fff; padding: 12px 18px; border-radius: 10px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ------------------------------ Layout ----------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(70px, 9vw, 132px) 0; position: relative; }
.section--paper2 { background: var(--paper-2); }
.section--dark { background: var(--forest-900); color: #E7EEDF; }
.section--dark.section--noise::before {
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background:
    radial-gradient(60% 50% at 85% 0%, rgba(127,160,106,.16), transparent 70%),
    radial-gradient(50% 50% at 12% 100%, rgba(203,163,65,.10), transparent 70%);
}
.center { text-align: center; }

/* ---------------------------- Typography --------------------------------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; line-height: 1.07; letter-spacing: -.015em; color: var(--ink); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #F4F6ED; }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
h3 { font-size: 1.34rem; line-height: 1.18; letter-spacing: -.01em; }
.display-em { font-style: italic; color: var(--green-500); }
.section--dark .display-em { color: var(--sage-400); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: .76rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold-700);
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--gold-600); }
.section--dark .eyebrow { color: var(--gold-500); }
.section--dark .eyebrow::before { background: var(--gold-500); }

.lead { font-size: clamp(1.06rem, 1.7vw, 1.24rem); color: var(--ink-soft); max-width: 60ch; line-height: 1.6; }
.section--dark .lead { color: #C2CDB8; }

.head { max-width: 760px; margin-bottom: 56px; }
.head.center { margin-inline: auto; }

/* ------------------------------ Buttons ---------------------------------- */
.btn {
  --bg: var(--forest-800); --fg: #fff; --bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 100px;
  background: var(--bg); color: var(--fg); border: 1.5px solid var(--bd);
  font-weight: 600; font-size: .98rem; letter-spacing: .005em; white-space: nowrap;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { --bg: var(--green-600); box-shadow: 0 14px 30px -14px rgba(46,82,56,.85); }
.btn--primary:hover { --bg: var(--forest-700); box-shadow: 0 20px 36px -16px rgba(46,82,56,.9); }
.btn--gold { --bg: var(--gold-600); --fg: #21180A; box-shadow: 0 14px 30px -14px rgba(194,152,47,.8); }
.btn--gold:hover { --bg: var(--gold-500); }
.btn--wa { --bg: #1FA855; box-shadow: 0 14px 30px -14px rgba(31,168,85,.7); }
.btn--wa:hover { --bg: #18914a; }
.btn--ghost { --bg: rgba(255,255,255,.08); --fg: #fff; --bd: rgba(255,255,255,.5); backdrop-filter: blur(6px); }
.btn--ghost:hover { --bg: rgba(255,255,255,.18); }
.btn--outline { --bg: transparent; --fg: var(--forest-800); --bd: var(--line); }
.btn--outline:hover { --bd: var(--green-500); --bg: var(--sage-50); }
.btn--sm { padding: 11px 19px; font-size: .9rem; }
.btn--lg { padding: 17px 32px; font-size: 1.04rem; }

/* ------------------------------- Header ---------------------------------- */
.header { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background .4s var(--ease), box-shadow .4s, border-color .4s; border-bottom: 1px solid transparent; }
.header__bar { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.header.scrolled { background: rgba(247,244,236,.86); backdrop-filter: saturate(150%) blur(16px); border-bottom-color: var(--line); box-shadow: var(--sh-sm); }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__name { font-family: var(--display); font-size: 1.32rem; font-weight: 600; line-height: 1; color: #fff; transition: color .4s; letter-spacing: -.01em; }
.brand__tag { display: block; font-size: .56rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-500); margin-top: 5px; transition: color .4s; }
.header.scrolled .brand__name { color: var(--ink); }

.nav { display: flex; align-items: center; gap: 36px; }
.nav__links { display: flex; gap: 30px; }
.nav__links a { font-size: .94rem; font-weight: 500; color: rgba(255,255,255,.9); position: relative; padding: 5px 0; transition: color .25s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--gold-500); border-radius: 2px; transition: width .3s var(--ease); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.header.scrolled .nav__links a { color: var(--ink-soft); }
.header.scrolled .nav__links a:hover { color: var(--ink); }
.nav__cta { display: inline-flex; gap: 12px; align-items: center; }

.menu-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; align-items: center; justify-content: center; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { content: ""; display: block; width: 23px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), background .3s; }
.menu-toggle span { position: relative; }
.menu-toggle span::before { position: absolute; top: -7px; } .menu-toggle span::after { position: absolute; top: 7px; }
.header.scrolled .menu-toggle span, .header.scrolled .menu-toggle span::before, .header.scrolled .menu-toggle span::after { background: var(--ink); }
body.nav-open .menu-toggle span { background: transparent; }
body.nav-open .menu-toggle span::before { transform: translateY(7px) rotate(45deg); }
body.nav-open .menu-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 88px 0 auto 0; z-index: 99; display: none; flex-direction: column; gap: 2px;
  background: rgba(247,244,236,.98); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line);
  box-shadow: var(--sh); padding: 14px 26px 28px;
  transform: translateY(-14px); opacity: 0; pointer-events: none; transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.mobile-nav a { padding: 15px 6px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line-soft); }
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav .btn { margin-top: 16px; }
body.nav-open .mobile-nav { opacity: 1; transform: none; pointer-events: auto; }

/* -------------------------------- Hero ----------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: #fff; isolation: isolate; padding: 90px 0 84px; }
/* lift the card up a little and shift it toward the left edge */
.hero > .wrap { max-width: none; padding-inline: clamp(22px, 4vw, 88px); }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  /* gentle, even depth wash — the card (below) carries text legibility, not the gradient */
  background:
    linear-gradient(rgba(6,13,9,.24), rgba(6,13,9,.34)),
    linear-gradient(100deg, rgba(5,12,8,.62) 0%, rgba(5,12,8,.26) 44%, transparent 68%);
}

/* Transparent content — the full storefront stays visible (matches mobile);
   text legibility is carried by the background scrim + text-shadows. */
.hero__card {
  max-width: 560px;
  padding: clamp(16px, 2vw, 30px) 0;
  background: transparent;
  -webkit-backdrop-filter: none; backdrop-filter: none;
  border: 0; box-shadow: none;
}
.hero__pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 15px; border-radius: 100px;
  background: rgba(8,16,11,.45); border: 1px solid rgba(255,255,255,.28);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  font-size: .8rem; font-weight: 500; margin-bottom: 22px;
}
.hero__pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage-400); box-shadow: 0 0 0 4px rgba(149,178,126,.3); }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 3.4vw, 3.4rem); font-weight: 500; letter-spacing: -.02em; line-height: 1.07; text-shadow: 0 2px 24px rgba(0,0,0,.6), 0 1px 4px rgba(0,0,0,.55); }
.hero h1 .display-em { color: #DCE8C8; }
.hero__sub { margin-top: 18px; font-size: clamp(1.02rem, 1.3vw, 1.14rem); color: rgba(244,248,240,.98); text-shadow: 0 1px 18px rgba(0,0,0,.85), 0 1px 4px rgba(0,0,0,.75); }
.hero__actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero__trust { margin-top: 30px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.16); }
.hero__trust .t { display: flex; flex-direction: column; min-width: 0; }
.hero__trust .t b { font-family: var(--display); font-size: 1.45rem; line-height: 1; color: #fff; text-shadow: 0 1px 14px rgba(0,0,0,.8), 0 1px 4px rgba(0,0,0,.7); }
.hero__trust .t span { font-size: .8rem; color: rgba(240,246,238,.95); margin-top: 5px; letter-spacing: .02em; text-shadow: 0 1px 12px rgba(0,0,0,.85); }
.scroll-cue { position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: .64rem; letter-spacing: .26em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.scroll-cue .line { width: 1.5px; height: 40px; background: linear-gradient(rgba(255,255,255,.8), transparent); animation: cue 2.2s var(--ease) infinite; }
@keyframes cue { 0%,100% { transform: scaleY(.4); transform-origin: top; opacity: .35 } 50% { transform: scaleY(1); opacity: 1 } }

/* ------------------------------ Marquee ---------------------------------- */
.marquee { background: var(--forest-800); color: #EAF0E0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.06); }
.marquee__track { display: flex; gap: 0; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 16px; padding: 18px 0; font-family: var(--display); font-size: 1.15rem; font-style: italic; color: #EAF0E0; }
.marquee__item::after { content: "✦"; font-style: normal; color: var(--gold-500); margin: 0 36px; font-size: .8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; } }

/* ----------------------------- Split blocks ------------------------------ */
.split { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--sh); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split__media.is-wide img { aspect-ratio: 16 / 11; }
.split p { color: var(--ink-soft); }
.split p + p { margin-top: 18px; }
.section--dark .split p { color: #C2CDB8; }

.float-card {
  position: absolute; left: -24px; bottom: -26px; background: var(--card); color: var(--ink);
  border-radius: var(--radius-sm); padding: 18px 22px; box-shadow: var(--sh); display: flex; align-items: center; gap: 14px; max-width: 280px;
}
.float-card .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--sage-100); color: var(--green-600); display: grid; place-items: center; flex: none; }
.float-card .ic svg { width: 24px; height: 24px; }
.float-card b { font-family: var(--display); font-size: 1.05rem; }
.float-card span { font-size: .82rem; color: var(--ink-soft); }

.chips { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border-radius: 100px; background: var(--sage-50); border: 1px solid var(--sage-100); font-size: .86rem; font-weight: 500; color: var(--green-600); }
.chip svg { width: 15px; height: 15px; color: var(--green-500); }

/* --------------------------- Problem statement --------------------------- */
.statement { max-width: 1000px; margin-inline: auto; text-align: center; }
.statement h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.statement h2 .hl { color: var(--gold-500); font-style: italic; }
.statement p { margin-top: 26px; font-size: clamp(1.05rem, 1.7vw, 1.25rem); color: #C2CDB8; max-width: 64ch; margin-inline: auto; }

/* ------------------------------- Cards grid ------------------------------ */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.feature {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .35s var(--ease), box-shadow .35s, border-color .3s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--sh); border-color: var(--sage-100); }
.feature__ic { width: 56px; height: 56px; border-radius: 15px; background: var(--sage-100); color: var(--green-600); display: grid; place-items: center; margin-bottom: 22px; }
.feature__ic svg { width: 28px; height: 28px; }
.feature h3 { margin-bottom: 10px; }
.feature p { font-size: .96rem; color: var(--ink-soft); }
.feature__no { font-family: var(--display); font-size: .85rem; color: var(--gold-600); margin-bottom: 12px; letter-spacing: .04em; }

/* ------------------------------ Store gallery ---------------------------- */
.gallery { display: grid; grid-template-columns: 1.5fr 1fr; gap: 22px; }
.gcol { display: grid; grid-template-rows: 1fr 1fr; gap: 22px; }
.gphoto { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--sh-sm); cursor: zoom-in; background: var(--paper-2); }
.gphoto img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.gphoto.is-tall { grid-row: span 2; }
.gphoto:hover img { transform: scale(1.05); }
.gphoto::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(10,22,14,.6)); }
.gphoto__cap { position: absolute; left: 18px; bottom: 15px; right: 16px; z-index: 2; color: #fff; font-size: .9rem; font-weight: 500; display: flex; align-items: center; gap: 8px; text-shadow: 0 1px 12px rgba(0,0,0,.5); }
.gphoto__cap svg { width: 16px; height: 16px; flex: none; }

.zones { margin-top: 24px; display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; }
.zone { background: var(--card); border: 1px solid var(--line); border-radius: 15px; padding: 18px 12px; text-align: center; transition: transform .3s var(--ease), border-color .3s; }
.zone:hover { transform: translateY(-4px); border-color: var(--sage-200); }
.zone .n { font-family: var(--display); color: var(--gold-600); font-size: 1.05rem; }
.zone .t { font-size: .8rem; font-weight: 600; margin-top: 6px; line-height: 1.25; }

/* ----------------------------- Daily harvest ----------------------------- */
.harvest { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pcard {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px 22px 20px;
  display: flex; flex-direction: column; gap: 6px; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; position: relative; overflow: hidden;
}
.pcard:hover { transform: translateY(-5px); box-shadow: var(--sh); border-color: var(--sage-200); }
.pcard__cat { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-700); }
.pcard__name { font-family: var(--display); font-size: 1.32rem; line-height: 1.1; }
.pcard__origin { font-size: .85rem; color: var(--ink-faint); display: flex; align-items: center; gap: 6px; }
.pcard__origin svg { width: 13px; height: 13px; color: var(--sage-500); }
.pcard__foot { margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line); display: flex; align-items: baseline; justify-content: space-between; }
.pcard__price { font-family: var(--display); font-size: 1.3rem; color: var(--green-600); }
.pcard__price small { font-family: var(--sans); font-size: .75rem; color: var(--ink-faint); font-weight: 500; }
.pcard__tag { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--sage-500); background: var(--sage-50); border: 1px solid var(--sage-100); padding: 4px 9px; border-radius: 100px; }
.harvest-note { margin-top: 30px; text-align: center; font-size: .92rem; color: var(--ink-faint); }

/* ------------------------------- Tiers ----------------------------------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tier { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; position: relative; overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s; }
.tier:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.tier::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--acc); }
.tier--1 { --acc: var(--sage-500); } .tier--2 { --acc: var(--gold-600); } .tier--3 { --acc: #B6552F; }
.tier__label { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--acc); }
.tier h3 { margin: 12px 0 14px; }
.tier p { font-size: .95rem; color: var(--ink-soft); margin-bottom: 20px; }
.tier ul { display: flex; flex-wrap: wrap; gap: 8px; }
.tier ul li { font-size: .82rem; padding: 6px 13px; border-radius: 100px; background: var(--sage-50); border: 1px solid var(--sage-100); color: var(--green-600); }

/* ------------------------------ Seasonal --------------------------------- */
.season { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.scard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; transition: transform .35s var(--ease), box-shadow .35s; }
.scard:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.scard .em { font-size: 2.2rem; line-height: 1; }
.scard h3 { margin: 16px 0 4px; font-size: 1.2rem; }
.scard .origin { font-size: .82rem; color: var(--gold-700); font-weight: 600; }
.scard .when { margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line); display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--ink-soft); }
.scard .when svg { width: 15px; height: 15px; color: var(--sage-500); }

/* ------------------------------- Plans ----------------------------------- */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 940px; margin-inline: auto; }
.plan { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 34px; position: relative; transition: transform .35s var(--ease), box-shadow .35s; }
.plan:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.plan--featured { border: 1.5px solid var(--gold-500); box-shadow: var(--sh); }
.plan__flag { position: absolute; top: 24px; right: 24px; background: var(--gold-600); color: #20180A; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; padding: 6px 13px; border-radius: 100px; }
.plan__name { font-family: var(--display); font-size: 1.5rem; }
.plan__price { margin: 14px 0 4px; font-family: var(--display); font-size: 2.9rem; line-height: 1; color: var(--green-600); }
.plan__price small { font-family: var(--sans); font-size: .9rem; font-weight: 500; color: var(--ink-faint); }
.plan__desc { font-size: .92rem; color: var(--ink-soft); margin-bottom: 24px; }
.plan ul { display: grid; gap: 13px; margin-bottom: 30px; }
.plan ul li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; }
.plan ul li svg { width: 19px; height: 19px; color: var(--green-500); flex: none; margin-top: 2px; }
.plan .btn { width: 100%; }

.steps { margin-top: 60px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { position: relative; }
.step__n { font-family: var(--display); width: 42px; height: 42px; border-radius: 50%; background: var(--green-600); color: #fff; display: grid; place-items: center; margin-bottom: 16px; }
.step h3 { font-size: 1.08rem; margin-bottom: 6px; }
.step p { font-size: .9rem; color: var(--ink-soft); }
.step:not(:last-child)::before { content: ""; position: absolute; top: 28px; left: 54px; right: -14px; height: 1.5px; background: repeating-linear-gradient(90deg, var(--sage-200) 0 6px, transparent 6px 12px); }

/* ------------------------------ Delivery --------------------------------- */
.windows { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 24px; }
.window { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; display: flex; gap: 22px; align-items: center; }
.window__time { font-family: var(--display); font-size: 1.8rem; color: var(--green-600); flex: none; width: 140px; line-height: 1.1; }
.window__time span { display: block; font-family: var(--sans); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-700); font-weight: 700; margin-bottom: 6px; }
.window p { font-size: .94rem; color: var(--ink-soft); }
.channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.channel { background: var(--sage-50); border: 1px solid var(--sage-100); border-radius: var(--radius); padding: 30px 26px; }
.channel__ic { width: 52px; height: 52px; border-radius: 14px; background: #fff; color: var(--green-600); display: grid; place-items: center; box-shadow: var(--sh-sm); margin-bottom: 18px; }
.channel__ic svg { width: 25px; height: 25px; }
.channel h3 { font-size: 1.12rem; margin-bottom: 8px; }
.channel p { font-size: .92rem; color: var(--ink-soft); }

/* ------------------------------- Hygiene --------------------------------- */
.hyg { display: grid; grid-template-columns: 1fr 1.04fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.hyg__media img { border-radius: var(--radius); box-shadow: var(--sh-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.hyg__list { margin-top: 30px; display: grid; gap: 16px; }
.hyg__list li { display: flex; gap: 14px; align-items: flex-start; }
.hyg__list .tick { width: 32px; height: 32px; border-radius: 10px; background: rgba(149,178,126,.18); color: var(--sage-400); display: grid; place-items: center; flex: none; }
.hyg__list .tick svg { width: 17px; height: 17px; }
.hyg__list b { color: #F4F6ED; font-weight: 600; }
.hyg__list span { display: block; color: #B6C2AC; font-size: .9rem; margin-top: 2px; }

/* ------------------------------- Journey --------------------------------- */
.journey { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.journey::before { content: ""; position: absolute; top: 28px; left: 9%; right: 9%; height: 2px; background: repeating-linear-gradient(90deg, var(--sage-200) 0 8px, transparent 8px 16px); }
.jstep { position: relative; z-index: 1; text-align: center; }
.jstep__dot { width: 58px; height: 58px; border-radius: 50%; background: var(--card); border: 2px solid var(--sage-200); color: var(--green-600); display: grid; place-items: center; margin: 0 auto 18px; box-shadow: var(--sh-sm); }
.jstep__dot svg { width: 26px; height: 26px; }
.jstep__time { font-family: var(--display); color: var(--gold-700); font-size: 1.06rem; font-weight: 600; }
.jstep h3 { font-size: 1.05rem; margin: 4px 0 6px; }
.jstep p { font-size: .88rem; color: var(--ink-soft); }

/* --------------------------------- FAQ ----------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 4px; text-align: left; font-family: var(--display); font-size: 1.2rem; color: var(--ink); }
.faq__q .pm { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line); flex: none; position: relative; transition: border-color .25s, background .25s; }
.faq__q .pm::before, .faq__q .pm::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; background: var(--green-600); transform: translate(-50%,-50%); transition: transform .3s var(--ease); border-radius: 2px; }
.faq__q .pm::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq__item.open .faq__q .pm { background: var(--green-600); border-color: var(--green-600); }
.faq__item.open .faq__q .pm::before, .faq__item.open .faq__q .pm::after { background: #fff; }
.faq__item.open .faq__q .pm::after { transform: translate(-50%,-50%) rotate(0); }
.faq__a { overflow: hidden; transition: max-height .4s var(--ease); }
.js .faq__a { max-height: 0; }  /* collapsed only when JS can re-open it */
.faq__a p { padding: 0 4px 26px; color: var(--ink-soft); font-size: .98rem; max-width: 66ch; }

/* ------------------------------- Contact --------------------------------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.info-list { display: grid; gap: 22px; margin: 30px 0; }
.info { display: flex; gap: 16px; }
.info__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--sage-100); color: var(--green-600); display: grid; place-items: center; flex: none; }
.info__ic svg { width: 22px; height: 22px; }
.info b { display: block; margin-bottom: 2px; }
.info a, .info p { color: var(--ink-soft); font-size: .95rem; }
.info a:hover { color: var(--green-600); }
.contact__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.map-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 12px; box-shadow: var(--sh-sm); }
.map-card iframe { width: 100%; height: 400px; border: 0; border-radius: 13px; display: block; filter: saturate(.92) contrast(1.02); }

/* --------------------------------- CTA ----------------------------------- */
.cta-band { text-align: center; }
.cta-band .wrap { max-width: 720px; }

/* ------------------------------- Footer ---------------------------------- */
.footer { background: var(--forest-900); color: #B9C6AC; padding: 76px 0 32px; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 44px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand__name { color: #fff; }
.footer__about { margin-top: 18px; font-size: .92rem; max-width: 34ch; color: #9DAB8E; }
.footer h4 { font-family: var(--sans); color: #fff; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul li { margin-bottom: 11px; }
.footer ul li a, .footer ul li span { font-size: .93rem; color: #B4C2A6; transition: color .2s; }
.footer ul li a:hover { color: #fff; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; transition: background .25s, border-color .25s; }
.footer__social a:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.4); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 26px; font-size: .84rem; color: #859372; flex-wrap: wrap; }

/* ---------------------------- Scroll reveal ------------------------------ */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s var(--ease-out), transform .85s var(--ease-out); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }

/* ------------------------------ Lightbox --------------------------------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(8,18,12,.94); display: none; align-items: center; justify-content: center; padding: 32px; opacity: 0; transition: opacity .3s; }
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 12px; box-shadow: 0 40px 90px rgba(0,0,0,.6); }
.lightbox__close { position: absolute; top: 24px; right: 28px; width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff; font-size: 1.7rem; display: grid; place-items: center; }
.lightbox__close:hover { background: rgba(255,255,255,.26); }

/* ============================== Responsive ============================== */
@media (max-width: 1040px) {
  .zones { grid-template-columns: repeat(4, 1fr); }
  .harvest { grid-template-columns: repeat(2, 1fr); }
  .journey { grid-template-columns: repeat(2, 1fr); gap: 40px 22px; }
  .journey::before { display: none; }
}
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .tiers, .season, .steps, .channels { grid-template-columns: repeat(2, 1fr); }
  .steps .step::before { display: none; }
  .split, .hyg, .contact { grid-template-columns: 1fr; }
  .split--rev .split__media { order: -1; }
  .hyg__media, .split__media { max-width: 620px; }
  .gallery { grid-template-columns: 1fr; }
  .gphoto.is-tall { grid-row: auto; aspect-ratio: 16/10; }
}
@media (max-width: 820px) {
  .nav__links, .nav__cta .btn--outline { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: flex; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  :root { --gutter: 20px; }
  .grid-4, .grid-3, .grid-2, .tiers, .season, .steps, .channels, .windows, .plans, .harvest { grid-template-columns: 1fr; }
  .zones { grid-template-columns: repeat(2, 1fr); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__trust { gap: 22px 30px; }
  .hero__trust .t b { font-size: 1.35rem; }
  .float-card { position: static; margin-top: 18px; max-width: none; }
  .window { flex-direction: column; align-items: flex-start; gap: 12px; }
  .window__time { width: auto; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .scroll-cue { display: none; }
}

/* ==========================================================================
   v3 — multi-page additions: solid header w/ logo, legible split hero,
   page heroes, prose, photo product cards, contact form
   ========================================================================== */

/* ---- Header: always solid + logo image (overrides earlier transparent rules) */
.header { background: rgba(229,240,222,.9); backdrop-filter: saturate(160%) blur(16px); border-bottom: 1px solid rgba(126,160,106,.28); }
.header.scrolled { background: rgba(225,238,217,.94); box-shadow: 0 4px 20px -10px rgba(28,58,40,.25); }
.header__bar { height: 88px; }
.brand__logo { height: 56px; width: auto; display: block; }
@media (max-width: 600px){ .brand__logo { height: 44px; } .header__bar { height: 76px; } }
.nav__links a { color: var(--ink-soft); }
.nav__links a:hover, .nav__links a.active { color: var(--ink); }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { background: var(--ink); }

/* ---- Split hero (home) — text on solid panel, image beside it (fully legible) */
.hero2 { display: grid; grid-template-columns: 1.04fr .96fr; align-items: stretch; min-height: 92vh; padding-top: 80px; }
.hero2__text { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px,6vw,96px) clamp(28px,5vw,80px) clamp(40px,6vw,72px) max(24px, calc((100vw - var(--maxw))/2 + 24px)); }
.hero2__media { position: relative; overflow: hidden; background: var(--paper-2); }
.hero2__media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero2__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(247,244,236,.7), transparent 22%); }
.hero2__badge { position: absolute; left: 26px; bottom: 26px; z-index: 2; display: flex; align-items: center; gap: 13px; background: rgba(255,255,255,.92); backdrop-filter: blur(6px); border-radius: 14px; padding: 14px 18px; box-shadow: var(--sh); }
.hero2__badge .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--sage-100); color: var(--green-600); display: grid; place-items: center; flex: none; }
.hero2__badge .ic svg { width: 22px; height: 22px; }
.hero2__badge b { font-family: var(--display); font-size: 1rem; display: block; line-height: 1.1; }
.hero2__badge span { font-size: .8rem; color: var(--ink-soft); }
.hero2 .hero__pill { background: var(--sage-50); border-color: var(--sage-100); color: var(--green-600); }
.hero2 h1 { color: var(--ink); font-size: clamp(2.1rem, 4.6vw, 4.3rem); font-weight: 500; letter-spacing: -.02em; line-height: 1.05; overflow-wrap: break-word; }
.hero2 h1 .display-em { color: var(--green-500); }
.hero2__sub { margin-top: 22px; font-size: clamp(1.05rem,1.5vw,1.22rem); color: var(--ink-soft); max-width: 52ch; }
.hero2__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero2__trust { margin-top: 42px; display: flex; flex-wrap: wrap; gap: 28px 40px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero2__trust .t b { font-family: var(--display); font-size: 1.7rem; color: var(--green-600); line-height: 1; display: block; }
.hero2__trust .t span { font-size: .82rem; color: var(--ink-faint); margin-top: 6px; display: block; }

/* ---- Inner page hero ---- */
.page-hero { padding: clamp(120px, 16vh, 180px) 0 clamp(50px, 7vw, 80px); background: var(--forest-900); color: #E7EEDF; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .5; background: radial-gradient(55% 60% at 88% 10%, rgba(127,160,106,.18), transparent 70%), radial-gradient(45% 55% at 6% 100%, rgba(203,163,65,.12), transparent 70%); }
.page-hero .wrap { position: relative; max-width: 880px; }
.page-hero h1 { color: #F4F6ED; font-size: clamp(2.4rem, 5vw, 4rem); }
.page-hero p { margin-top: 20px; font-size: clamp(1.06rem,1.7vw,1.26rem); color: #C2CDB8; max-width: 60ch; }
.breadcrumb { display: flex; gap: 10px; align-items: center; font-size: .82rem; letter-spacing: .04em; color: #9DB089; margin-bottom: 22px; text-transform: uppercase; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: .5; }

/* ---- Prose / rich content ---- */
.prose { max-width: 70ch; }
.prose p { color: var(--ink-soft); margin-bottom: 20px; font-size: 1.06rem; }
.prose h3 { margin: 38px 0 14px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose .pull { font-family: var(--display); font-size: clamp(1.4rem,2.4vw,2rem); line-height: 1.3; color: var(--green-600); border-left: 3px solid var(--gold-500); padding-left: 24px; margin: 34px 0; font-style: italic; }
.signoff { margin-top: 28px; font-family: var(--display); font-style: italic; font-size: 1.25rem; color: var(--ink); }
.signoff span { display: block; font-family: var(--sans); font-style: normal; font-size: .85rem; color: var(--ink-faint); margin-top: 6px; letter-spacing: .02em; }

/* ---- Produce photo cards ---- */
.pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pgrid--3 { grid-template-columns: repeat(3, 1fr); }
.pphoto { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s, border-color .3s; }
.pphoto:hover { transform: translateY(-6px); box-shadow: var(--sh); border-color: var(--sage-200); }
.pphoto__img { aspect-ratio: 1/1; overflow: hidden; background: var(--paper-2); position: relative; }
.pphoto__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.pphoto:hover .pphoto__img img { transform: scale(1.06); }
.pphoto__tag { position: absolute; top: 12px; left: 12px; font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green-700); background: rgba(255,255,255,.92); padding: 5px 10px; border-radius: 100px; }
.pphoto__body { padding: 18px 20px 20px; }
.pphoto__cat { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-700); }
.pphoto__name { font-family: var(--display); font-size: 1.28rem; margin: 4px 0 2px; }
.pphoto__origin { font-size: .84rem; color: var(--ink-faint); display: flex; align-items: center; gap: 6px; }
.pphoto__origin svg { width: 13px; height: 13px; color: var(--sage-500); }
.pphoto__foot { margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line); display: flex; align-items: baseline; justify-content: space-between; }
.pphoto__price { font-family: var(--display); font-size: 1.3rem; color: var(--green-600); }
.pphoto__price small { font-family: var(--sans); font-size: .74rem; color: var(--ink-faint); font-weight: 500; }

/* ---- Feature split with photo (alternating content blocks) ---- */
.blocks { display: grid; gap: clamp(50px, 8vw, 110px); }
.fblock { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,72px); align-items: center; }
.fblock:nth-child(even) .fblock__media { order: 2; }
.fblock__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--sh); aspect-ratio: 4/3; object-fit: cover; }
.fblock h2 { font-size: clamp(1.7rem,3vw,2.5rem); }
.fblock p { color: var(--ink-soft); margin-top: 16px; }

/* ---- Box plans with image ---- */
.boxcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s; }
.boxcard:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.boxcard--featured { border: 1.5px solid var(--gold-500); }
.boxcard__img { aspect-ratio: 16/11; overflow: hidden; position: relative; background: var(--paper-2); }
.boxcard__img img { width: 100%; height: 100%; object-fit: cover; }
.boxcard__flag { position: absolute; top: 16px; right: 16px; background: var(--gold-600); color: #20180A; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; padding: 6px 12px; border-radius: 100px; }
.boxcard__body { padding: 28px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.boxcard__name { font-family: var(--display); font-size: 1.4rem; }
.boxcard__price { font-family: var(--display); font-size: 2.3rem; color: var(--green-600); margin: 8px 0 2px; line-height: 1; }
.boxcard__price small { font-family: var(--sans); font-size: .85rem; color: var(--ink-faint); font-weight: 500; }
.boxcard__desc { font-size: .92rem; color: var(--ink-soft); margin-bottom: 18px; }
.boxcard ul { display: grid; gap: 11px; margin-bottom: 24px; }
.boxcard ul li { display: flex; gap: 10px; align-items: flex-start; font-size: .93rem; }
.boxcard ul li svg { width: 18px; height: 18px; color: var(--green-500); flex: none; margin-top: 2px; }
.boxcard .btn { margin-top: auto; width: 100%; }

/* ---- Contact form ---- */
.cform { display: grid; gap: 16px; }
.cform .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: .82rem; font-weight: 600; letter-spacing: .03em; color: var(--ink-soft); margin-bottom: 7px; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--card); color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 4px var(--sage-50); }
.field textarea { min-height: 130px; resize: vertical; }
.cform .btn { justify-self: start; }
.form-note { font-size: .82rem; color: var(--ink-faint); }

/* ---- Stat band ---- */
.statband { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.1); border-radius: var(--radius); overflow: hidden; }
.statband .s { background: var(--forest-800); padding: 34px 26px; text-align: center; }
.statband .s b { font-family: var(--display); font-size: clamp(1.8rem,3vw,2.6rem); color: #fff; display: block; line-height: 1; }
.statband .s span { font-size: .82rem; color: #B7C4A8; margin-top: 10px; display: block; letter-spacing: .03em; }

/* ---- Area list ---- */
.arealist { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.arealist li { display: flex; align-items: center; gap: 11px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; font-weight: 500; }
.arealist li svg { width: 18px; height: 18px; color: var(--green-500); flex: none; }

/* ---- CTA card (reusable bottom CTA) ---- */
.ctacard { background: var(--forest-900); color: #E7EEDF; border-radius: var(--radius); padding: clamp(40px,6vw,72px); text-align: center; position: relative; overflow: hidden; }
.ctacard::before { content:""; position:absolute; inset:0; opacity:.5; background: radial-gradient(50% 60% at 85% 0%, rgba(127,160,106,.16), transparent 70%), radial-gradient(45% 55% at 10% 100%, rgba(203,163,65,.1), transparent 70%); }
.ctacard > * { position: relative; }
.ctacard h2 { color: #F4F6ED; }
.ctacard p { color: #C2CDB8; max-width: 52ch; margin: 16px auto 30px; }

/* ---- responsive for v3 ---- */
@media (max-width: 980px){
  .pgrid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px){
  .hero2 { grid-template-columns: 1fr; min-height: 0; }
  .hero2__media { min-height: 320px; order: -1; }
  .hero2__media > img { position: relative; }
  .hero2__text { padding: 40px 24px 56px; }
  .fblock { grid-template-columns: 1fr; }
  .fblock:nth-child(even) .fblock__media { order: -1; }
  .pgrid--3 { grid-template-columns: repeat(2,1fr); }
  .statband { grid-template-columns: repeat(2,1fr); }
  .arealist { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px){
  .pgrid, .pgrid--3, .arealist, .statband { grid-template-columns: 1fr; }
  .cform .row { grid-template-columns: 1fr; }
  .hero2__trust { gap: 20px 28px; }
}

@media (max-width: 600px){ .mobile-nav { top: 76px; } }

/* ===== Two-column content block that stacks on mobile (replaces inline grids) ===== */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.duo--start { align-items: start; }
.duo > img { width: 100%; border-radius: var(--radius); box-shadow: var(--sh); }
@media (max-width: 900px) {
  .duo { grid-template-columns: 1fr; }
  .duo--rev > :first-child { order: 2; }   /* keep image-after-text order when needed */
}

/* ===== Prevent image min-content from blowing out stacked grids on mobile ===== */
.duo { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.duo > *, .split > *, .fblock > *, .hyg > *, .contact > *, .gallery > *, .story > * { min-width: 0; }
@media (max-width: 900px) { .duo { grid-template-columns: minmax(0, 1fr); } }

/* Hero on small screens — compact the card so all content fits cleanly */
@media (max-width: 700px) {
  .hero { padding: 78px 0 40px; }
  .hero > .wrap { padding-inline: 18px; }
  /* fully transparent on phones — storefront fully visible, text carried by shadows */
  .hero__card {
    padding: 20px 4px 24px; border-radius: 0;
    background: transparent;
    -webkit-backdrop-filter: none; backdrop-filter: none;
    border: 0; box-shadow: none;
  }
  .hero__pill { font-size: .72rem; padding: 7px 13px; margin-bottom: 15px; background: rgba(8,16,11,.5); border-color: rgba(255,255,255,.32); }
  .hero h1 { font-size: 1.85rem; line-height: 1.14; text-shadow: 0 2px 16px rgba(0,0,0,.95), 0 1px 3px rgba(0,0,0,.85); }
  .hero__sub { font-size: .98rem; margin-top: 12px; text-shadow: 0 1px 10px rgba(0,0,0,.95), 0 1px 3px rgba(0,0,0,.9); }
  .hero__actions { margin-top: 22px; gap: 10px; }
  .hero__actions .btn { width: 100%; padding: 14px 22px; font-size: .98rem; }
  .hero__trust { margin-top: 24px; padding-top: 18px; gap: 10px; border-top-color: rgba(255,255,255,.4); }
  .hero__trust .t b { font-size: 1.18rem; text-shadow: 0 1px 8px rgba(0,0,0,.9); }
  .hero__trust .t span { font-size: .7rem; line-height: 1.25; color: rgba(255,255,255,.86); text-shadow: 0 1px 8px rgba(0,0,0,.9); }
}

/* ==========================================================================
   Cart & WhatsApp checkout  (progressive enhancement — added by JS)
   ========================================================================== */

/* ---- "Add to cart" button on product / box cards ---- */
.pcard-add {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 15px; border-radius: 100px; cursor: pointer;
  background: var(--green-600); color: #fff;
  font-family: var(--sans); font-weight: 600; font-size: .82rem; letter-spacing: .01em;
  border: 1.5px solid transparent; white-space: nowrap;
  transition: background .25s var(--ease), transform .2s var(--ease), box-shadow .25s;
  box-shadow: 0 10px 22px -14px rgba(46,82,56,.9);
}
.pcard-add svg { width: 15px; height: 15px; }
.pcard-add:hover { background: var(--forest-700); transform: translateY(-1px); }
.pcard-add.is-added { background: var(--gold-600); color: #21180A; }
.pphoto__foot .pcard-add { align-self: center; }
.pcard-add--box { width: 100%; justify-content: center; margin-top: 10px; padding: 13px 20px; font-size: .92rem; }

/* ---- Floating cart button ---- */
.fr-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 940;
  width: 60px; height: 60px; border-radius: 50%; cursor: pointer;
  background: var(--forest-800); color: #fff; border: none;
  display: grid; place-items: center;
  box-shadow: 0 18px 40px -16px rgba(14,34,22,.8), 0 4px 12px rgba(14,34,22,.3);
  transition: transform .3s var(--ease), background .25s;
}
.fr-fab:hover { transform: translateY(-3px) scale(1.03); background: var(--forest-700); }
.fr-fab svg { width: 25px; height: 25px; }
.fr-fab__badge {
  position: absolute; top: -3px; right: -3px; min-width: 23px; height: 23px; padding: 0 6px;
  border-radius: 100px; background: var(--gold-600); color: #21180A;
  font-family: var(--sans); font-size: .78rem; font-weight: 800; line-height: 23px; text-align: center;
  border: 2px solid var(--paper); transform: scale(0); transition: transform .3s var(--ease);
}
.fr-fab__badge.show { transform: scale(1); }
.fr-fab.bump { animation: frBump .5s var(--ease); }
@keyframes frBump { 0%,100%{transform:none} 30%{transform:scale(1.14)} }

/* ---- Overlay + drawer ---- */
.fr-overlay {
  position: fixed; inset: 0; z-index: 970; background: rgba(14,34,22,.5);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s;
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.fr-overlay.open { opacity: 1; visibility: visible; }

.fr-cart {
  position: fixed; top: 0; right: 0; z-index: 980; height: 100%;
  width: min(420px, 100%); display: flex; flex-direction: column;
  background: var(--paper); box-shadow: var(--sh-lg);
  transform: translateX(100%); transition: transform .42s var(--ease-out);
}
.fr-cart.open { transform: none; }
.fr-cart__head {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 22px; border-bottom: 1px solid var(--line); background: var(--card);
}
.fr-cart__title { font-family: var(--display); font-size: 1.32rem; font-weight: 500; color: var(--ink); flex: 1; }
.fr-cart__back, .fr-cart__close {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--paper); color: var(--ink-soft); cursor: pointer; display: grid; place-items: center;
  transition: background .2s, color .2s; font-size: 1.3rem; line-height: 1;
}
.fr-cart__back:hover, .fr-cart__close:hover { background: var(--sage-50); color: var(--ink); }
.fr-cart__back { display: none; }
.fr-cart[data-view="checkout"] .fr-cart__back { display: grid; }

.fr-cart__body { flex: 1; overflow-y: auto; padding: 18px 22px; }
.fr-cart__foot { padding: 18px 22px 22px; border-top: 1px solid var(--line); background: var(--card); }

/* view switching */
.fr-view { display: none; }
.fr-cart[data-view="cart"]     .fr-view--cart,
.fr-cart[data-view="cart"]     .fr-foot--cart,
.fr-cart[data-view="checkout"] .fr-view--checkout,
.fr-cart[data-view="checkout"] .fr-foot--checkout,
.fr-cart[data-view="done"]     .fr-view--done { display: block; }
.fr-cart:not([data-view="cart"]) .fr-foot--cart,
.fr-cart:not([data-view="checkout"]) .fr-foot--checkout,
.fr-cart[data-view="done"] .fr-cart__foot { display: none; }

/* ---- Cart line items ---- */
.fr-empty { text-align: center; color: var(--ink-soft); padding: 48px 10px; }
.fr-empty svg { width: 46px; height: 46px; color: var(--sage-400); margin-bottom: 14px; }
.fr-item { display: flex; align-items: flex-start; gap: 12px; padding: 15px 0; border-bottom: 1px solid var(--line-soft); }
.fr-item__main { flex: 1; min-width: 0; }
.fr-item__name { font-weight: 600; color: var(--ink); font-size: .98rem; }
.fr-item__unit { font-size: .78rem; color: var(--ink-faint); margin-top: 2px; }
.fr-item__price { font-family: var(--display); color: var(--green-600); font-size: 1.02rem; margin-top: 4px; }
.fr-item__side { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.fr-step { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 100px; overflow: hidden; background: var(--card); }
.fr-step button { width: 30px; height: 30px; cursor: pointer; background: none; border: none; color: var(--green-600); font-size: 1.15rem; line-height: 1; display: grid; place-items: center; }
.fr-step button:hover { background: var(--sage-50); }
.fr-step span { min-width: 26px; text-align: center; font-weight: 700; font-size: .9rem; color: var(--ink); }
.fr-item__rm { background: none; border: none; cursor: pointer; color: var(--ink-faint); font-size: .76rem; text-decoration: underline; padding: 0; }
.fr-item__rm:hover { color: #b4442f; }

/* ---- Totals + form ---- */
.fr-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 4px; }
.fr-total b { font-family: var(--display); font-size: 1.5rem; color: var(--ink); font-weight: 500; }
.fr-note { font-size: .76rem; color: var(--ink-faint); margin: 2px 0 14px; }
.fr-cart .btn { width: 100%; }

.fr-field { margin-bottom: 15px; }
.fr-field label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.fr-field label .req { color: #b4442f; }
.fr-field input, .fr-field textarea {
  width: 100%; font: inherit; font-size: .95rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-xs);
  background: var(--card); transition: border-color .2s, box-shadow .2s;
}
.fr-field input:focus, .fr-field textarea:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(63,107,73,.12); }
.fr-field textarea { resize: vertical; min-height: 74px; }
.fr-field.err input, .fr-field.err textarea { border-color: #cf5b45; box-shadow: 0 0 0 3px rgba(207,91,69,.12); }
.fr-field__err { display: none; color: #b4442f; font-size: .76rem; margin-top: 5px; }
.fr-field.err .fr-field__err { display: block; }
.fr-summary { background: var(--sage-50); border: 1px solid var(--sage-100); border-radius: var(--radius-xs); padding: 12px 15px; margin-bottom: 18px; font-size: .88rem; color: var(--ink-soft); }
.fr-summary b { color: var(--ink); }

/* ---- Success view ---- */
.fr-view--done { text-align: center; padding: 34px 12px; }
.fr-done__tick { width: 74px; height: 74px; border-radius: 50%; background: var(--sage-100); color: var(--green-600); display: grid; place-items: center; margin: 0 auto 20px; }
.fr-done__tick svg { width: 38px; height: 38px; }
.fr-view--done h3 { font-family: var(--display); font-weight: 500; font-size: 1.5rem; margin-bottom: 10px; }
.fr-view--done p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 8px; }
.fr-view--done .btn { margin-top: 20px; }
.fr-wa-fallback { display: inline-block; margin-top: 14px; color: var(--green-600); font-weight: 600; font-size: .88rem; }

/* ---- Toast ---- */
.fr-toast {
  position: fixed; left: 50%; bottom: 96px; z-index: 950; transform: translate(-50%, 20px);
  background: var(--forest-800); color: #fff; padding: 12px 20px; border-radius: 100px;
  font-size: .9rem; font-weight: 500; box-shadow: var(--sh); opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease); max-width: 90vw;
}
.fr-toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 600px) {
  .fr-fab { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .fr-cart__head, .fr-cart__body, .fr-cart__foot { padding-left: 18px; padding-right: 18px; }
}

/* ---- Price-list catalogue (many items, compact rows) ---- */
.plist { display: grid; grid-template-columns: repeat(auto-fill, minmax(288px, 1fr)); gap: 12px; }
.pitem {
  display: flex; align-items: center; gap: 12px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px 12px 17px; transition: border-color .2s, box-shadow .25s, transform .2s;
}
.pitem:hover { border-color: var(--sage-200); box-shadow: var(--sh-sm); transform: translateY(-1px); }
.pitem__info { flex: 1; min-width: 0; }
.pitem__name { font-weight: 600; color: var(--ink); font-size: .97rem; }
.pitem__unit { font-size: .75rem; color: var(--ink-faint); margin-top: 1px; }
.pitem__buy { display: flex; align-items: center; gap: 12px; flex: none; }
.pitem__price { font-family: var(--display); color: var(--green-600); font-size: 1.14rem; white-space: nowrap; }
.pitem__price small { font-family: var(--sans); font-size: .68rem; color: var(--ink-faint); font-weight: 500; }
.pcard-add--list { padding: 9px 14px; font-size: .8rem; }
.plist-cat { margin: 30px 0 16px; }
.plist-cat:first-child { margin-top: 6px; }
.plist-cat h3 { font-family: var(--display); font-weight: 500; font-size: 1.28rem; color: var(--ink); display: flex; align-items: center; gap: 10px; }
.plist-cat h3::before { content: ""; width: 20px; height: 2px; background: var(--gold-500); border-radius: 2px; flex: none; }
@media (max-width: 480px) { .plist { grid-template-columns: 1fr; } }

/* ---- Product card quantity stepper (replaces Add once in cart) ---- */
.pcard-ctrl { display: contents; }
.pphoto__foot .pcard-add, .pphoto__foot .pcard-step { align-self: center; }
.pcard-step {
  display: inline-flex; align-items: center; gap: 4px; padding: 3px;
  border-radius: 100px; background: var(--sage-50); border: 1.5px solid var(--green-600);
}
.pcard-step button {
  width: 30px; height: 30px; border: none; border-radius: 50%; cursor: pointer;
  background: var(--green-600); color: #fff; font-size: 1.15rem; line-height: 1;
  display: grid; place-items: center; transition: background .2s var(--ease), transform .12s;
}
.pcard-step button:hover { background: var(--forest-700); }
.pcard-step button:active { transform: scale(.9); }
.pcard-step__n { min-width: 24px; text-align: center; font-weight: 700; font-size: .92rem; color: var(--green-600); }
.pcard-step--box { width: 100%; justify-content: space-between; margin-top: 12px; padding: 5px; }
.pcard-step--box .pcard-step__n { font-size: 1.05rem; min-width: 60px; }
.pitem__buy .pcard-step button { width: 27px; height: 27px; font-size: 1.05rem; }

/* ---- Shop grid: compact cards + sticky category filter ---- */
.pgrid--shop { grid-template-columns: repeat(auto-fill, minmax(176px, 1fr)); gap: 16px; }
.pphoto--sm .pphoto__img { aspect-ratio: 1/1; }
.pphoto--sm .pphoto__body { padding: 11px 13px 13px; }
.pphoto--sm .pphoto__cat { font-size: .57rem; letter-spacing: .1em; }
.pphoto--sm .pphoto__name { font-size: 1rem; margin: 3px 0 0; line-height: 1.16; }
.pphoto--sm .pphoto__foot { margin-top: 10px; padding-top: 10px; }
.pphoto--sm .pphoto__price { font-size: 1.06rem; }
.pphoto--sm .pphoto__price small { font-size: .65rem; }
.pphoto--sm .pcard-add { padding: 7px 12px; font-size: .76rem; }
.pphoto--sm .pcard-step button { width: 26px; height: 26px; font-size: 1.02rem; }

.pfilter {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; margin: 24px 0 4px;
  position: sticky; top: 72px; z-index: 60; background: var(--paper); padding: 12px 0;
}
.section--paper2 .pfilter { background: var(--paper-2); }
.pfilter__search {
  display: inline-flex; align-items: center; gap: 8px; padding: 0 16px; flex: 0 0 auto;
  min-width: 230px; border: 1.5px solid var(--line); border-radius: 100px; background: var(--card);
  transition: border-color .2s, box-shadow .2s;
}
.pfilter__search:focus-within { border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(63,107,73,.12); }
.pfilter__search svg { width: 17px; height: 17px; color: var(--ink-faint); flex: none; }
.pfilter__search input { flex: 1; min-width: 0; border: 0; outline: 0; background: none; font: inherit; font-size: .9rem; color: var(--ink); padding: 11px 0; }
.pfilter__chips { display: flex; flex-wrap: wrap; gap: 9px; }
.pphoto.is-hidden { display: none; }
.pnoresults { text-align: center; color: var(--ink-soft); padding: 40px 12px; font-size: 1.02rem; }
.pfilter__chip {
  padding: 9px 16px; border-radius: 100px; border: 1.5px solid var(--line);
  background: var(--card); color: var(--ink-soft); font: inherit; font-weight: 600; font-size: .84rem;
  cursor: pointer; white-space: nowrap; transition: background .2s, color .2s, border-color .2s, transform .12s;
}
.pfilter__chip:hover { border-color: var(--sage-400); color: var(--ink); }
.pfilter__chip:active { transform: scale(.96); }
.pfilter__chip.is-active { background: var(--green-600); border-color: var(--green-600); color: #fff; }

.pcat__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 46px 0 18px; padding-bottom: 11px; border-bottom: 1px solid var(--line); }
.pcat:first-of-type .pcat__head { margin-top: 10px; }
.pcat__head h3 { font-family: var(--display); font-weight: 500; font-size: 1.42rem; color: var(--ink); }
.pcat__count { font-size: .8rem; color: var(--ink-faint); font-weight: 500; white-space: nowrap; }
.pcat.is-hidden { display: none; }

@media (max-width: 600px) {
  .pfilter { top: 68px; gap: 8px; padding: 10px 0; margin: 18px 0 0; }
  .pfilter__search { min-width: 0; width: 100%; }
  .pfilter__chips { gap: 7px; overflow-x: auto; flex-wrap: nowrap; width: 100%; padding-bottom: 2px; -webkit-overflow-scrolling: touch; }
  .pfilter__chip { padding: 8px 13px; font-size: .78rem; }
  .pgrid--shop { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pcat__head h3 { font-size: 1.2rem; }
}

/* juice/compact card foot: keep unit text together, wrap gracefully */
.pphoto--sm .pphoto__foot { flex-wrap: wrap; gap: 8px; }
.pphoto__price small { white-space: nowrap; }
