:root {
  --forest: #204d3a;
  --forest-deep: #102d22;
  --leaf: #73825e;
  --paper: #f3efe4;
  --ivory: #fffdf8;
  --sand: #e6ddcd;
  --gold: #b97942;
  --gold-soft: #e4b276;
  --ink: #1c2e25;
  --muted: #6b786f;
  --line: rgba(28, 46, 37, .16);
  --line-light: rgba(255, 255, 255, .24);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: "Avenir Next", "Segoe UI", ui-sans-serif, -apple-system, BlinkMacSystemFont, sans-serif;
  --max: 1400px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button, a { -webkit-tap-highlight-color: transparent; }

button { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: 1rem;
  padding: .75rem 1rem;
  background: var(--ivory);
  color: var(--forest);
  transform: translateY(-180%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 240, 230, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.announcement {
  min-height: 34px;
  padding: .3rem max(1.25rem, calc((100vw - var(--max)) / 2));
  background: var(--forest-deep);
  color: #f8f2df;
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.announcement-inner {
  width: 100%;
  min-height: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.announcement p { margin: 0; }

.announcement-copy { display: inline-flex; align-items: center; gap: .65rem; }

.announcement-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-soft); }

.announcement a { color: var(--gold-soft); transition: color .2s ease; }

.announcement a:hover { color: white; }

.announcement a span { margin-left: .45rem; font-size: .9rem; }

.nav-shell {
  width: min(var(--max), calc(100% - 2.5rem));
  min-height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand-mark {
  width: 116px;
  height: 51px;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  mix-blend-mode: multiply;
  transform: scale(1.22);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.4vw, 2.8rem);
  color: #314c63;
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-links > a:not(.nav-order) { position: relative; }

.nav-links > a:not(.nav-order)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.45rem;
  height: 1px;
  background: var(--forest);
  transition: right .25s ease;
}

.nav-links > a:not(.nav-order):hover::after { right: 0; }

.nav-order {
  padding: .75rem 1.2rem;
  border: 1px solid var(--forest);
  color: var(--forest);
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.nav-order:hover { background: var(--forest); color: white; transform: translateY(-1px); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: var(--forest);
  transition: transform .2s ease;
}

.hero {
  width: min(var(--max), calc(100% - 2.5rem));
  min-height: min(760px, calc(100svh - 116px));
  margin: 0 auto;
  padding: clamp(3.8rem, 6vw, 6.7rem) 0 clamp(4rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 7rem);
}

.hero-copy { padding-left: max(0rem, calc((100vw - var(--max)) / -2)); }

.hero-kicker { display: flex; align-items: center; gap: 1rem; }

.hero-kicker .eyebrow { margin-bottom: 0; }

.hero-kicker-rule { width: 42px; height: 1px; background: var(--gold); }

.eyebrow {
  margin: 0 0 1.45rem;
  color: var(--leaf);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.collection-heading h2,
.garden-copy h2,
.community h2,
.order-section h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .91;
}

.hero h1 {
  max-width: 720px;
  margin: 1.75rem 0 0;
  color: var(--forest-deep);
  font-size: clamp(4.8rem, 8.6vw, 9rem);
}

.hero h1 em,
.collection-heading h2 em { color: var(--leaf); font-weight: 400; }

.hero h1 em { position: relative; }

.hero h1 em::after {
  content: "";
  position: absolute;
  left: .08em;
  right: .1em;
  bottom: -.07em;
  height: 2px;
  background: var(--gold);
  transform: rotate(-2deg);
  transform-origin: left;
}

.hero-intro {
  max-width: 530px;
  margin: clamp(2rem, 3vw, 3rem) 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.8;
}

.hero-actions {
  margin-top: 2.3rem;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.button {
  min-height: 54px;
  padding: .86rem 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  border: 1px solid transparent;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary { background: var(--forest); color: white; box-shadow: 0 12px 24px rgba(11, 52, 37, .13); }

.button-primary:hover { background: var(--forest-deep); box-shadow: 0 16px 30px rgba(11, 52, 37, .2); }

.button span { font-size: 1.05rem; font-weight: 400; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border-bottom: 1px solid currentColor;
  color: var(--forest);
  font-size: .83rem;
  font-weight: 700;
  line-height: 1.8;
}

.text-link span { transition: transform .2s ease; }

.text-link:hover span { transform: translate(2px, -2px); }

.hero-details {
  max-width: 590px;
  margin-top: clamp(3.2rem, 6vw, 5.8rem);
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.hero-detail span,
.control-label,
.origin-tag > div > span,
.product-order-row div span {
  display: block;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-detail strong { display: block; margin-top: .35rem; color: var(--forest); font-family: var(--serif); font-size: 1.03rem; font-weight: 400; line-height: 1.25; }

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 720px;
  justify-self: end;
  padding: .75rem .75rem 1rem;
  aspect-ratio: 1.12 / 1;
  background: var(--forest-deep);
  border-radius: 1.6rem 1.6rem 1.6rem .25rem;
  box-shadow: 0 26px 60px rgba(6, 31, 22, .16);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: .38rem;
  border: 1px solid rgba(219, 193, 154, .38);
  border-radius: 1.35rem 1.35rem 1.35rem .15rem;
  pointer-events: none;
  z-index: 2;
}

.hero-image-frame { width: 100%; height: 100%; overflow: hidden; border-radius: 1.12rem 1.12rem 1.12rem .15rem; }

.hero-image-frame::after { content: ""; position: absolute; inset: .75rem .75rem 1rem; background: linear-gradient(180deg, rgba(6, 31, 22, .04), rgba(6, 31, 22, .28)); pointer-events: none; border-radius: 1.12rem 1.12rem 1.12rem .15rem; }

.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; }

.origin-tag {
  position: absolute;
  z-index: 3;
  left: 1.5rem;
  bottom: 1.55rem;
  min-width: 205px;
  padding: .82rem 1rem .82rem .78rem;
  background: rgba(255, 253, 248, .93);
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: .75rem;
  backdrop-filter: blur(10px);
}

.origin-number { width: 30px; height: 30px; border: 1px solid var(--gold); display: grid; place-items: center; color: var(--gold); font-family: var(--serif); font-size: .85rem; }

.origin-tag strong { display: block; margin-top: .1rem; font-family: var(--serif); font-size: 1rem; font-weight: 400; line-height: 1.2; }

.visual-note { position: absolute; z-index: 3; right: 1.65rem; top: 1.5rem; color: white; font-family: var(--serif); font-size: clamp(1rem, 1.55vw, 1.35rem); font-style: italic; line-height: 1.15; text-align: right; }

.principles {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1.3rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.principle {
  min-height: 84px;
  padding: .8rem clamp(1rem, 3vw, 3.4rem);
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.principle:first-child { padding-left: 0; }

.principle:last-child { border-right: 0; }

.principle > span { color: var(--gold); font-family: var(--serif); font-size: 1.35rem; }

.principle strong { color: var(--forest); font-family: var(--serif); font-size: 1.12rem; font-weight: 400; }

.principle p { margin: .05rem 0 0; color: var(--muted); font-size: .78rem; }

.section-pad { padding: clamp(5.5rem, 10vw, 10.5rem) max(1.25rem, calc((100vw - var(--max)) / 2)); }

.section-kicker-row { margin-bottom: 2.4rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.section-kicker-row .eyebrow { margin: 0; }

.section-kicker-row > span { color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.section-kicker-row i { margin-left: .6rem; color: var(--gold); font-style: normal; font-size: .8rem; }

.collection { background: var(--paper); }

.benefits {
  background: var(--sand);
  border-top: 1px solid var(--line);
}

.benefits-heading {
  margin-bottom: clamp(3.5rem, 6vw, 5.8rem);
  display: grid;
  grid-template-columns: 1fr minmax(280px, 500px);
  align-items: end;
  gap: 3rem;
}

.benefits-heading h2 {
  margin: 0;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: clamp(3.7rem, 6.7vw, 7.3rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .91;
}

.benefits-heading h2 em { color: var(--forest); font-weight: 400; }

.benefits-heading > p {
  max-width: 500px;
  margin: 0;
  padding-bottom: .45rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.benefits-layout {
  display: grid;
  grid-template-columns: minmax(300px, .84fr) minmax(0, 1.16fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: stretch;
}

.benefits-visual {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: 1.35rem 1.35rem 1.35rem .2rem;
  background: var(--forest-deep);
  box-shadow: 0 20px 44px rgba(24, 40, 31, .12);
}

.benefits-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 45, 34, .02), rgba(16, 45, 34, .72));
  pointer-events: none;
}

.benefits-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.benefits-visual-caption {
  position: absolute;
  z-index: 1;
  left: 1.45rem;
  right: 1.45rem;
  bottom: 1.4rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(255, 255, 255, .42);
  color: white;
}

.benefits-visual-caption span {
  display: block;
  color: var(--gold-soft);
  font-size: .63rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.benefits-visual-caption strong {
  display: block;
  margin-top: .25rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.1;
}

.benefit-list { border-top: 1px solid var(--line); }

.benefit-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1.25rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line);
}

.benefit-index { color: var(--gold); font-family: var(--serif); font-size: 1.35rem; }

.benefit-item h3 {
  margin: 0;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.25vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.05;
}

.benefit-item p {
  max-width: 520px;
  margin: .7rem 0 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.75;
}

.collection-heading { margin-bottom: 3.8rem; display: grid; grid-template-columns: 1fr minmax(280px, 470px); align-items: end; gap: 3rem; }

.collection-heading h2,
.section-heading h2,
.garden-copy h2,
.community h2,
.order-section h2 { margin: 0; font-size: clamp(3.7rem, 6.7vw, 7.3rem); }

.collection-intro { max-width: 470px; padding-bottom: .45rem; }

.collection-intro > p { margin: 0; color: var(--muted); line-height: 1.78; }

.collection-note { margin-top: 1.5rem; display: flex; align-items: center; gap: .65rem; color: var(--forest); font-size: .73rem; font-weight: 700; letter-spacing: .04em; }

.collection-note b { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }

.product-card {
  position: relative;
  min-height: 565px;
  padding: clamp(1.55rem, 3.4vw, 3.25rem);
  overflow: hidden;
  border: 1px solid rgba(11, 52, 37, .08);
  border-radius: 1.35rem;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 42px rgba(24, 40, 31, .045);
}

.product-card::after { content: attr(data-index); position: absolute; right: -.03em; bottom: -.21em; color: rgba(11, 52, 37, .045); font-family: var(--serif); font-size: 12rem; line-height: .8; pointer-events: none; }

.product-card-dark { background: var(--forest); color: white; border-color: var(--forest); box-shadow: 0 20px 44px rgba(6, 31, 22, .18); }

.product-card-gold { background: #e5d8d2; }

.product-card-head { position: relative; z-index: 1; display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }

.product-topline { display: flex; justify-content: space-between; gap: 1rem; color: var(--leaf); font-size: .64rem; font-weight: 750; letter-spacing: .16em; line-height: 1.35; text-transform: uppercase; }

.product-card-dark .product-topline { color: var(--gold-soft); }

.product-season { padding: .33rem .55rem; border: 1px solid rgba(11, 52, 37, .22); color: var(--forest); font-size: .59rem; font-weight: 750; letter-spacing: .1em; line-height: 1; text-transform: uppercase; white-space: nowrap; }

.product-card-dark .product-season { border-color: rgba(219, 193, 154, .48); color: var(--gold-soft); }

.product-body { position: relative; z-index: 1; margin-top: 3.6rem; }

.product-card h3 { max-width: 610px; margin: 0; font-family: var(--serif); font-size: clamp(2.3rem, 4vw, 4.55rem); font-weight: 400; line-height: .98; letter-spacing: -.045em; }

.product-brief { max-width: 365px; margin: 1.5rem 0 0; color: var(--muted); font-size: .9rem; line-height: 1.65; }

.product-card-dark .product-brief { color: rgba(255, 255, 255, .62); }

.per-kilo { margin: 1.65rem 0 0; color: var(--forest); font-family: var(--serif); font-size: 1.25rem; letter-spacing: .01em; }

.per-kilo span { color: var(--muted); font-family: var(--sans); font-size: .64rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }

.product-card-dark .per-kilo { color: white; }

.product-card-dark .per-kilo span { color: rgba(255, 255, 255, .55); }

.product-bottom { position: relative; z-index: 1; margin-top: auto; padding-top: 3rem; }

.control-label { color: var(--muted); }

.product-card-dark .control-label { color: rgba(255, 255, 255, .55); }

.weights { margin-top: .75rem; display: flex; flex-wrap: wrap; gap: .48rem; }

.weight-option { min-width: 70px; min-height: 42px; padding: .48rem .78rem; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: inherit; cursor: pointer; font-size: .76rem; font-weight: 650; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease; }

.weight-option:hover { transform: translateY(-1px); }

.weight-option:hover, .weight-option.selected { border-color: var(--forest); background: var(--forest); color: white; }

.product-card-dark .weight-option { border-color: rgba(255, 255, 255, .33); }

.product-card-dark .weight-option:hover, .product-card-dark .weight-option.selected { border-color: white; background: white; color: var(--forest); }

.product-order-row { margin-top: 1.35rem; padding-top: 1.1rem; border-top: 1px solid var(--line); display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }

.product-card-dark .product-order-row { border-color: rgba(255, 255, 255, .2); }

.product-order-row div span { color: var(--muted); }

.product-card-dark .product-order-row div span { color: rgba(255, 255, 255, .55); }

.selected-price { display: block; margin-top: .22rem; font-family: var(--serif); font-size: 1.65rem; font-weight: 400; line-height: 1; }

.product-order { min-width: 96px; min-height: 45px; padding: .62rem .88rem; border: 1px solid currentColor; display: inline-flex; align-items: center; justify-content: center; gap: .45rem; font-size: .75rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; transition: background .2s ease, color .2s ease, transform .2s ease; }

.product-order:hover { background: var(--forest); color: white; transform: translateY(-1px); }

.product-card-dark .product-order:hover { background: white; color: var(--forest); }

.product-card-image { position: relative; padding: 0; color: white; border-color: var(--forest-deep); }

.product-card-image > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }

.product-card-image::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(5, 24, 17, .13), rgba(5, 24, 17, .9)); }

.product-card-image::after { z-index: 2; color: rgba(255, 255, 255, .09); }

.product-card-overlay { position: relative; z-index: 3; min-height: 565px; padding: clamp(1.55rem, 3.4vw, 3.25rem); display: flex; flex-direction: column; }

.product-card-image .product-topline { color: #e2efdf; }

.product-card-image .product-season { border-color: rgba(255, 255, 255, .48); color: white; }

.product-card-image .product-brief { color: rgba(255, 255, 255, .7); }

.product-card-image .per-kilo { color: white; }

.product-card-image .per-kilo span,
.product-card-image .product-order-row div span { color: rgba(255, 255, 255, .66); }

.product-card-image .weight-option { border-color: rgba(255, 255, 255, .5); }

.product-card-image .weight-option:hover, .product-card-image .weight-option.selected { border-color: white; background: white; color: var(--forest); }

.product-card-image .product-order-row { border-color: rgba(255, 255, 255, .3); }

.product-card-image .product-order:hover { background: white; color: var(--forest); }

.freshness-section { background: var(--ivory); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-heading { max-width: 980px; }

.freshness-body { margin-top: clamp(3rem, 6vw, 5.8rem); padding-top: 2rem; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 8vw, 9rem); }

.freshness-body p { margin-top: 0; }

.lead-copy { max-width: 600px; font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 2.7rem); line-height: 1.2; }

.body-copy { max-width: 540px; color: var(--muted); font-size: 1rem; line-height: 1.85; }

.body-copy .text-link { margin-top: 1.3rem; color: var(--forest); }

.garden-story { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 780px; background: var(--forest-deep); color: white; }

.garden-image { min-height: 700px; overflow: hidden; }

.garden-image img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; }

.garden-copy { position: relative; padding: clamp(4rem, 8vw, 8.5rem); display: flex; flex-direction: column; justify-content: center; }

.garden-copy .eyebrow, .order-section .eyebrow { color: var(--gold-soft); }

.story-number { margin-bottom: 3rem; color: var(--gold-soft); font-family: var(--serif); font-size: 1.25rem; }

.story-number span { color: rgba(255, 255, 255, .42); font-family: var(--sans); font-size: .66rem; letter-spacing: .14em; }

.community .story-number { color: var(--gold); }

.community .story-number span { color: var(--muted); }

.garden-copy p:not(.eyebrow) { max-width: 520px; margin-top: 3rem; color: rgba(255, 255, 255, .7); font-size: 1.03rem; line-height: 1.85; }

.garden-copy blockquote { margin: auto 0 0; padding-top: 3rem; border-top: 1px solid var(--line-light); color: var(--gold-soft); font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.9rem); font-style: italic; line-height: 1.2; }

.community { display: grid; grid-template-columns: .83fr 1.17fr; gap: clamp(3rem, 8vw, 9rem); align-items: center; background: var(--ivory); }

.community-copy h2 { font-size: clamp(3.5rem, 6vw, 6.7rem); }

.community-copy > p:not(.eyebrow) { max-width: 520px; margin-top: 2.2rem; color: var(--muted); font-size: 1.03rem; line-height: 1.85; }

.community-points { margin-top: 2.5rem; border-top: 1px solid var(--line); }

.community-points span { padding: .8rem 0; border-bottom: 1px solid var(--line); display: block; color: var(--forest); font-family: var(--serif); font-size: 1.05rem; }

.community-image { min-height: 650px; overflow: hidden; border-radius: 1.4rem 1.4rem 1.4rem .2rem; box-shadow: 0 20px 44px rgba(24, 40, 31, .1); }

.community-image img { width: 100%; height: 100%; object-fit: cover; object-position: left center; }

.order-section { padding: clamp(5.5rem, 10vw, 9.5rem) max(1.25rem, calc((100vw - var(--max)) / 2)); background: var(--forest); color: white; display: grid; grid-template-columns: 1.18fr .82fr; gap: clamp(3rem, 10vw, 10rem); }

.order-section h2 { color: white; }

.order-actions { padding-top: 3.9rem; }

.order-actions > p { max-width: 470px; margin: 0 0 2rem; color: rgba(255, 255, 255, .68); }

.button-light { width: 100%; margin-bottom: 2.4rem; background: var(--ivory); color: var(--forest); }

.button-light:hover { background: var(--gold-soft); }

.contact-line { padding: 1rem 0; border-top: 1px solid rgba(255, 255, 255, .2); display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 1rem; }

.contact-line span:first-child { color: rgba(255, 255, 255, .52); font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }

.contact-line strong { font-family: var(--serif); font-size: 1.02rem; font-weight: 400; }

.contact-line span:last-child { color: var(--gold-soft); font-size: 1rem; }

footer { padding: 2rem max(1.25rem, calc((100vw - var(--max)) / 2)); background: var(--forest-deep); color: rgba(255, 255, 255, .58); display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 2rem; font-size: .7rem; letter-spacing: .05em; }

.footer-brand { color: white; font-size: 1.15rem; font-weight: 850; letter-spacing: -.02em; }

.footer-brand span { margin-left: .15rem; color: var(--gold-soft); font-size: .58rem; font-weight: 400; }

footer p { margin: 0; }

.whatsapp-float { position: fixed; z-index: 90; right: clamp(1rem, 2.5vw, 2rem); bottom: clamp(1rem, 2.5vw, 2rem); width: 58px; height: 58px; aspect-ratio: 1; border: 1px solid rgba(255, 255, 255, .55); border-radius: 50%; background: #1d9e55; color: white; display: grid; place-items: center; line-height: 0; box-shadow: 0 14px 36px rgba(6, 37, 26, .25); transition: transform .2s ease, background .2s ease; }

.whatsapp-float:hover { transform: translateY(-3px) scale(1.02); background: #168649; }

.whatsapp-float svg { display: block; width: 30px; height: 30px; flex: 0 0 auto; fill: currentColor; }

.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s cubic-bezier(.2, .7, .2, 1); }

.js .reveal.in-view { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

@media (max-width: 1080px) {
  .nav-links { gap: 1.2rem; }
  .hero { gap: 2.6rem; grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr); }
  .hero h1 { font-size: clamp(4.5rem, 8.8vw, 7.7rem); }
  .product-card h3 { font-size: clamp(2.1rem, 4vw, 3.8rem); }
}

@media (max-width: 980px) {
  .announcement { padding-left: 1.25rem; padding-right: 1.25rem; }
  .nav-shell { min-height: 72px; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .nav-links { position: fixed; inset: 106px 0 0; padding: 3rem 1.5rem; background: var(--paper); flex-direction: column; align-items: stretch; gap: 0; transform: translateX(100%); visibility: hidden; transition: transform .3s ease, visibility .3s ease; }
  .nav-links.open { transform: translateX(0); visibility: visible; }
  .nav-links a { padding: 1rem 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.8rem; font-weight: 400; letter-spacing: -.02em; text-transform: none; }
  .nav-order { margin-top: 1rem; padding: 1rem !important; text-align: center; font-family: var(--sans) !important; font-size: .8rem !important; font-weight: 750 !important; letter-spacing: .08em !important; text-transform: uppercase !important; }
  .hero { width: min(var(--max), calc(100% - 2rem)); min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 2rem 0 0; }
  .hero-visual { max-width: none; }
  .principles { width: min(var(--max), calc(100% - 2rem)); }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .garden-story { grid-template-columns: 1fr; }
  .garden-image { min-height: 620px; }
  .garden-copy { min-height: 700px; }
  .community { grid-template-columns: 1fr; }
  .community-image { order: -1; min-height: 560px; }
  .order-section { grid-template-columns: 1fr; }
  .order-actions { padding-top: 0; }
}

@media (max-width: 700px) {
  .announcement { min-height: 31px; font-size: .59rem; letter-spacing: .07em; }
  .announcement a { display: none; }
  .nav-shell { width: calc(100% - 2rem); }
  .nav-links { inset: 103px 0 0; }
  .hero { width: calc(100% - 2rem); padding-top: 3.5rem; }
  .hero h1 { margin-top: 1.45rem; font-size: clamp(4rem, 18vw, 5.9rem); }
  .hero-intro { line-height: 1.7; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.1rem; }
  .hero-details { grid-template-columns: 1fr; gap: 1rem; }
  .hero-visual { margin-top: 1rem; aspect-ratio: .97 / 1; padding: .55rem .55rem .75rem; border-radius: 1.2rem 1.2rem 1.2rem .15rem; }
  .hero-image-frame { border-radius: .85rem .85rem .85rem .1rem; }
  .hero-image-frame::after { inset: .55rem .55rem .75rem; border-radius: .85rem .85rem .85rem .1rem; }
  .origin-tag { left: 1rem; bottom: 1.2rem; min-width: 180px; }
  .visual-note { right: 1.15rem; top: 1rem; font-size: 1rem; }
  .principles { width: calc(100% - 2rem); grid-template-columns: 1fr; padding: .5rem 0; }
  .principle { min-height: 76px; padding: 1rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .principle:last-child { border-bottom: 0; }
  .section-pad { padding-left: 1.25rem; padding-right: 1.25rem; }
  .section-kicker-row { align-items: flex-start; flex-direction: column; gap: .55rem; }
  .collection-heading { grid-template-columns: 1fr; gap: 2rem; }
  .collection-heading h2, .section-heading h2, .garden-copy h2, .community h2, .order-section h2 { font-size: clamp(3.25rem, 15vw, 5.1rem); }
  .collection-heading { margin-bottom: 2.8rem; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 520px; padding: 1.45rem; border-radius: 1.15rem; }
  .product-card-overlay { min-height: 520px; padding: 1.45rem; }
  .product-body { margin-top: 3rem; }
  .product-card h3 { font-size: clamp(2.35rem, 11vw, 3.8rem); }
  .freshness-body { grid-template-columns: 1fr; gap: 2rem; }
  .lead-copy { font-size: 2rem; }
  .garden-image { min-height: 500px; }
  .garden-copy { min-height: 620px; padding: 4rem 1.5rem; }
  .community-image { min-height: 440px; border-radius: 1.1rem 1.1rem 1.1rem .15rem; }
  .story-number { margin-bottom: 2rem; }
  .order-section { padding-left: 1.25rem; padding-right: 1.25rem; }
  footer { grid-template-columns: 1fr; gap: .65rem; }
}

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

/* The Himalayan dawn cover is the brand's primary visual signature. */
.hero {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: calc(100svh - 116px);
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background: var(--forest-deep);
  color: white;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(var(--max), calc(100% - 2.5rem));
  min-height: calc(100svh - 116px);
  margin: 0 auto;
  padding: clamp(6rem, 13vh, 10rem) 0 clamp(4rem, 7vw, 6.5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-visual {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  padding: 0;
  aspect-ratio: auto;
  border-radius: 0;
  background: var(--forest-deep);
  box-shadow: none;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(16, 45, 34, .92) 0%, rgba(16, 45, 34, .68) 31%, rgba(16, 45, 34, .18) 72%, rgba(16, 45, 34, .08) 100%), linear-gradient(0deg, rgba(16, 45, 34, .74) 0%, rgba(16, 45, 34, 0) 58%);
  pointer-events: none;
}

.hero-image-frame {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
}

.hero-image-frame::after { display: none; }

.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; filter: saturate(.86) contrast(1.04) brightness(.9); }

.hero-kicker-rule { background: var(--gold-soft); }

.hero-kicker .eyebrow { color: var(--gold-soft); }

.hero h1 { max-width: 900px; margin-top: 1.75rem; color: white; font-size: clamp(4.6rem, 8.8vw, 9.4rem); }

.hero h1 em { color: var(--gold-soft); }

.hero h1 em::after { background: var(--gold-soft); }

.hero-intro { max-width: 600px; color: rgba(255, 255, 255, .79); }

.hero-actions { margin-top: 2.3rem; }

.hero .button-primary { background: var(--gold); color: var(--forest-deep); box-shadow: 0 14px 32px rgba(6, 18, 30, .24); }

.hero .button-primary:hover { background: var(--gold-soft); color: var(--forest-deep); }

.hero .text-link { color: white; border-bottom-color: rgba(255, 255, 255, .7); }

.hero-details { max-width: 660px; border-top-color: rgba(255, 255, 255, .3); }

.hero-detail span { color: rgba(255, 255, 255, .58); }

.hero-detail strong { color: white; }

.origin-tag { left: auto; right: clamp(1.25rem, 4vw, 4rem); bottom: clamp(1.6rem, 4vw, 4rem); }

.visual-note { right: clamp(1.25rem, 4vw, 4rem); top: clamp(1.5rem, 4vw, 4rem); text-shadow: 0 2px 18px rgba(6, 18, 30, .28); }

@media (max-width: 980px) {
  .hero { width: 100%; min-height: calc(100svh - 106px); display: flex; grid-template-columns: none; }
  .hero-copy { width: min(var(--max), calc(100% - 2rem)); min-height: calc(100svh - 106px); padding: 5rem 0 4.5rem; }
  .hero-visual { max-width: none; }
}

@media (max-width: 700px) {
  .hero { width: 100%; min-height: calc(100svh - 103px); }
  .hero-copy { width: calc(100% - 2rem); min-height: calc(100svh - 103px); padding: 4.2rem 0 3.8rem; }
  .hero h1 { margin-top: 1.45rem; font-size: clamp(3.8rem, 17vw, 5.8rem); }
  .hero-intro { max-width: 470px; }
  .hero-visual { margin-top: 0; aspect-ratio: auto; }
  .hero-image-frame img { object-position: center 58%; }
  .hero-details { grid-template-columns: 1fr; gap: 1rem; }
  .origin-tag { right: 1rem; bottom: 2.6rem; left: auto; min-width: 180px; }
  .visual-note { right: 1rem; top: 1rem; font-size: 1rem; }
  .benefits-heading { grid-template-columns: 1fr; gap: 2rem; }
  .benefits-heading h2 { font-size: clamp(3.25rem, 15vw, 5.1rem); }
  .benefits-layout { grid-template-columns: 1fr; gap: 2.2rem; }
  .benefits-visual { min-height: 390px; }
  .benefit-item { grid-template-columns: 44px 1fr; gap: .9rem; padding: 1.35rem 0; }
}

/* Editorial cover: keep the MOFS image clean and give the copy its own space. */
.hero {
  width: 100%;
  max-width: none;
  min-height: calc(100svh - 116px);
  display: grid;
  grid-template-columns: minmax(430px, .8fr) minmax(0, 1.2fr);
  overflow: hidden;
  background: var(--forest-deep);
}

.hero-copy {
  width: auto;
  min-height: calc(100svh - 116px);
  margin: 0;
  padding: clamp(4.5rem, 8vw, 8rem) clamp(2.2rem, 5vw, 6.5rem);
  justify-content: center;
  background: var(--forest-deep);
}

.hero h1 { max-width: 760px; font-size: clamp(4.3rem, 7.2vw, 8rem); }

.hero-intro { max-width: 540px; }

.hero-details { max-width: 560px; }

.hero-visual {
  position: relative;
  inset: auto;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: calc(100svh - 116px);
  padding: 0;
  aspect-ratio: auto;
  border-radius: 0;
  background: var(--forest-deep);
  box-shadow: none;
}

.hero-visual::before {
  background: linear-gradient(180deg, rgba(16, 45, 34, .02) 25%, rgba(16, 45, 34, .52) 100%);
}

.hero-image-frame img {
  object-position: center 62%;
  filter: saturate(.86) contrast(1.04) brightness(.94);
}

.origin-tag {
  left: 1.5rem;
  right: auto;
  bottom: 1.5rem;
}

.visual-note {
  top: 1.7rem;
  right: 1.8rem;
  max-width: 180px;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: 100%;
    min-height: auto;
    padding: 5.5rem max(1.5rem, calc((100% - 680px) / 2)) 4.5rem;
  }

  .hero-visual {
    height: min(78svh, 760px);
    min-height: 560px;
  }
}

@media (max-width: 700px) {
  .hero-copy {
    padding: 4.2rem 1.25rem 3.8rem;
  }

  .hero h1 { font-size: clamp(3.8rem, 17vw, 5.8rem); }

  .hero-visual {
    height: 600px;
    min-height: 0;
  }

  .hero-image-frame img { object-position: center 58%; }

  .origin-tag { left: 1rem; bottom: 1.2rem; }

  .visual-note { top: 1rem; right: 1rem; font-size: .95rem; }
}

/* Forest cover direction: use the clean image as the hero and keep copy off the tea setup. */
.hero {
  width: 100%;
  max-width: none;
  min-height: calc(100svh - 116px);
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--forest-deep);
  color: white;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(720px, calc(100% - 2.5rem));
  min-height: calc(100svh - 116px);
  margin-left: max(1.25rem, calc((100vw - var(--max)) / 2));
  margin-right: auto;
  padding: clamp(4.8rem, 8vh, 7rem) 0 clamp(3.2rem, 7vh, 5.8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
}

.hero-visual {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100%;
  padding: 0;
  aspect-ratio: auto;
  border-radius: 0;
  background: var(--forest-deep);
  box-shadow: none;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(4, 23, 17, .9) 0%, rgba(4, 23, 17, .72) 28%, rgba(4, 23, 17, .22) 54%, rgba(4, 23, 17, .04) 78%),
    linear-gradient(0deg, rgba(4, 23, 17, .52) 0%, rgba(4, 23, 17, 0) 46%);
  pointer-events: none;
}

.hero-image-frame {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
}

.hero-image-frame::after { display: none; }

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.94) contrast(1.04) brightness(.92);
}

.hero h1 {
  max-width: 690px;
  margin-top: 1.45rem;
  color: white;
  font-size: clamp(4.2rem, 7.4vw, 8.4rem);
  text-shadow: 0 14px 42px rgba(0, 0, 0, .34);
}

.hero h1 em { color: var(--gold-soft); }

.hero h1 em::after { background: var(--gold-soft); }

.hero-intro {
  max-width: 535px;
  color: rgba(255, 255, 255, .82);
  text-shadow: 0 10px 28px rgba(0, 0, 0, .35);
}

.hero-actions { margin-top: 2.1rem; }

.hero .button-primary {
  background: var(--gold);
  color: var(--forest-deep);
  box-shadow: 0 18px 40px rgba(4, 23, 17, .35);
}

.hero .button-primary:hover { background: var(--gold-soft); color: var(--forest-deep); }

.hero .text-link { color: white; border-bottom-color: rgba(255, 255, 255, .68); }

.hero-details {
  max-width: 560px;
  border-top-color: rgba(255, 255, 255, .28);
}

.hero-detail span { color: rgba(255, 255, 255, .58); }

.hero-detail strong { color: white; }

.origin-tag,
.visual-note {
  display: none;
}

@media (max-width: 980px) {
  .hero {
    min-height: calc(100svh - 106px);
    display: flex;
    grid-template-columns: none;
  }

  .hero-copy {
    width: min(690px, calc(100% - 2rem));
    min-height: calc(100svh - 106px);
    margin-left: auto;
    margin-right: auto;
    padding: 5rem 0 4.2rem;
  }

  .hero-image-frame img { object-position: 58% center; }
}

@media (max-width: 700px) {
  .hero {
    min-height: calc(100svh - 103px);
  }

  .hero-copy {
    width: calc(100% - 2rem);
    min-height: calc(100svh - 103px);
    padding: 4rem 0 3.5rem;
    justify-content: flex-start;
  }

  .hero-visual::before {
    background:
      linear-gradient(180deg, rgba(4, 23, 17, .92) 0%, rgba(4, 23, 17, .75) 41%, rgba(4, 23, 17, .2) 72%, rgba(4, 23, 17, .62) 100%);
  }

  .hero-image-frame img { object-position: 64% center; }

  .hero h1 {
    max-width: 390px;
    font-size: clamp(3.6rem, 16vw, 5.4rem);
  }

  .hero-intro { max-width: 390px; }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.1rem;
  }

  .hero-details {
    max-width: 390px;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
