/* FARMiliarity homepage. Tokens mirror DESIGN.md ("Leaf and Sun"), taken from the FARMiliarity logo. */
:root {
  --bg: #F5F8F0;
  --surface: #FFFFFF;
  --mint: #E3F1DC;
  --ink: #13271A;
  --muted: #4B5D50;
  --accent: #217F36;   /* leaf green, deepened from the logo for readable text */
  --leaf: #3FAE49;     /* the logo's green */
  --sun: #F4CF1F;      /* the logo's yellow: buttons, highlights, panels (never text) */
  --forest: #15361F;
  --forest-ink: #E6F2E4;
  --line: rgba(19, 39, 26, .13);
  --line-dark: rgba(230, 242, 228, .18);

  --display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --sans: "Hanken Grotesk", "Segoe UI", system-ui, sans-serif;

  --wrap: 1320px;
  --gut: max(16px, 4vw);
  --sec: clamp(88px, 11vw, 160px);
  --r: 28px;
  --ease: cubic-bezier(.22, .7, .12, 1);
}

/* Reset, at zero specificity so component rules always win */
:where(html) { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
:where(*, *::before, *::after) { box-sizing: border-box; }
:where(body, h1, h2, h3, p, ul, ol, figure, address) { margin: 0; padding: 0; }
:where(ul, ol) { list-style: none; }
:where(img, svg) { display: block; max-width: 100%; height: auto; }
:where(a) { color: inherit; }

body.fm {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
.fm :focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
.fm h1, .fm h2, .fm h3 {
  font-family: var(--display);
  font-weight: 650;
  font-variation-settings: "opsz" 96;
  letter-spacing: -.03em;
  line-height: 1.02;
}
.fm h2 { font-size: clamp(36px, 4.8vw, 72px); }
.fm h3 { font-size: clamp(21px, 1.8vw, 27px); line-height: 1.15; letter-spacing: -.015em; font-weight: 600; }
.fm h2 em, .fm h1 em { font-style: normal; color: var(--accent); }
.fm section { position: relative; padding: var(--sec) var(--gut); }
.fm section > * { max-width: var(--wrap); margin-left: auto; margin-right: auto; }

/* Yellow highlighter behind a key phrase (the logo's sun) */
.fm-mark { background: linear-gradient(transparent 58%, var(--sun) 58%, var(--sun) 92%, transparent 92%); padding: 0 .06em; -webkit-box-decoration-break: clone; box-decoration-break: clone; }

.fm-skip { position: absolute; left: 12px; top: -80px; z-index: 100; background: var(--ink); color: var(--bg); padding: 10px 16px; border-radius: 999px; }
.fm-skip:focus { top: 12px; }
.fm-eyebrow { font-size: 14px; letter-spacing: .06em; text-transform: uppercase; font-weight: 700; color: var(--accent); margin-bottom: 20px !important; }

/* Pill buttons */
.fm-btn {
  display: inline-flex; align-items: center; gap: 10px; min-height: 54px; padding: 0 26px;
  border-radius: 999px; background: var(--forest); color: var(--forest-ink);
  font-weight: 700; font-size: 16px; text-decoration: none; white-space: nowrap;
  transition: background-color .3s var(--ease), transform .2s var(--ease);
}
.fm-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s var(--ease); }
.fm-btn:hover { background: var(--accent); }
.fm-btn:hover svg { transform: translateX(3px); }
.fm-btn:active { transform: scale(.97); }
.fm-btn--small { min-height: 44px; padding: 0 18px; font-size: 15px; }
.fm-btn--sun { background: var(--sun); color: var(--ink); }
.fm-btn--sun:hover { background: #FFE04A; }
.fm-btn--mint { background: var(--sun); color: var(--ink); }
.fm-btn--mint:hover { background: #FFE04A; }
.fm-link { font-weight: 700; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; text-decoration-color: var(--leaf); padding: 12px 0; }
.fm-link:hover { color: var(--accent); }

/* Nav */
.fm-nav { position: fixed; inset: 0 0 auto; z-index: 50; transition: transform .45s var(--ease), background-color .3s; }
.admin-bar .fm-nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .fm-nav { top: 46px; } }
.fm-nav.is-solid { background: rgba(245, 248, 240, .9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.fm-nav.is-hidden { transform: translateY(-120%); }
.fm-nav__in { max-width: calc(var(--wrap) + 2 * var(--gut)); margin: 0 auto; padding: 12px var(--gut); display: flex; align-items: center; gap: 28px; }
.fm-nav__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--display); font-size: 23px; font-weight: 600; letter-spacing: -.02em; }
.fm-nav__brand img { width: 34px; height: auto; }
.fm-nav__brand b { font-weight: 800; color: var(--accent); }
.fm-nav__links { display: flex; gap: 26px; margin: 0 auto; }
.fm-nav__links a { font-size: 15px; font-weight: 500; text-decoration: none; padding: 8px 0; background: linear-gradient(var(--leaf), var(--leaf)) 0 100% / 0 2px no-repeat; transition: background-size .35s var(--ease); }
.fm-nav__links a:hover { background-size: 100% 2px; }
.fm-nav__toggle { display: none; margin-left: auto; width: 48px; height: 48px; border: 0; background: none; cursor: pointer; position: relative; color: inherit; }
.fm-nav__toggle span { position: absolute; left: 13px; right: 13px; height: 2px; background: currentColor; transition: transform .3s var(--ease); }
.fm-nav__toggle span:first-child { top: 19px; }
.fm-nav__toggle span:last-child { top: 27px; }
.fm-nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.fm-nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.fm-menu { position: fixed; inset: 0; z-index: 40; background: var(--forest); color: var(--forest-ink); display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 96px var(--gut) 40px; }
.fm-menu[hidden] { display: none; }
.fm-menu a { font-family: var(--display); font-weight: 600; font-size: 42px; letter-spacing: -.03em; line-height: 1.2; text-decoration: none; }
body.fm-menu-open .fm-nav { color: var(--forest-ink); background: transparent; border-color: transparent; }
body.fm-menu-open .fm-nav .fm-btn { visibility: hidden; }

/* Hero: copy left, the brand photo bleeding off the right edge */
.fm-hero {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: clamp(28px, 4vw, 64px); align-items: center;
  min-height: min(100svh, 980px); padding-top: clamp(96px, 9vw, 130px) !important; padding-bottom: clamp(40px, 5vw, 72px) !important; padding-right: 0 !important;
}
.fm-hero > * { max-width: none !important; margin: 0 !important; }
.fm-hero__copy { padding-left: max(0px, calc((100vw - var(--wrap)) / 2 - var(--gut))); }
.fm-hero__kicker { font-size: 15px; font-weight: 700; color: var(--accent); margin-bottom: 20px !important; display: flex; align-items: center; gap: 10px; }
.fm-hero__kicker::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--sun); box-shadow: 0 0 0 5px rgba(244, 207, 31, .28); }
.fm-hero__title { font-size: clamp(44px, 5.6vw, 88px) !important; line-height: 1 !important; letter-spacing: -.032em !important; font-weight: 700 !important; }
.fm-hero__lede { margin-top: 26px !important; font-size: clamp(17px, 1.3vw, 20px); color: var(--muted); max-width: 44ch; }
.fm-hero__ctas { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-top: 34px; }
.fm-hero__photo { height: min(76svh, 820px); border-radius: var(--r) 0 0 var(--r); overflow: hidden; background: var(--mint); }
.fm-hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%; }

/* Where we start: headline + four photo questions */
.fm-start { overflow: hidden; }
.fm-start__head { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: clamp(24px, 5vw, 80px); align-items: end; margin-bottom: clamp(40px, 5vw, 72px) !important; position: relative; z-index: 2; }
.fm-start__head h2 { font-size: clamp(34px, 4.2vw, 64px); }
.fm-start__head h2 em { display: block; margin-top: .15em; }
.fm-start__head p { color: var(--muted); max-width: 50ch; }
.fm-start__cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; align-items: start; position: relative; z-index: 2; }
.fm-q:nth-child(even) { margin-top: clamp(32px, 5vw, 80px); }
.fm-q__img { aspect-ratio: 3 / 4; border-radius: var(--r); overflow: hidden; background: var(--mint); }
.fm-q__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.fm-q:hover .fm-q__img img { transform: scale(1.04); }
.fm-q h3 { margin: 18px 0 6px !important; font-size: clamp(22px, 1.8vw, 28px); }
.fm-q p { color: var(--muted); font-size: 16px; max-width: 30ch; }

/* Floating spices along the edges (never over text) */
.fm-float { position: absolute; z-index: 1; pointer-events: none; height: auto; filter: drop-shadow(0 18px 22px rgba(19, 39, 26, .16)); }
.fm-float--gp { width: clamp(150px, 15vw, 250px); right: -3vw; top: 2%; transform: rotate(-18deg); }
.fm-float--cp { width: clamp(110px, 10vw, 170px); left: -2vw; top: 34%; transform: rotate(28deg); }
.fm-float--pc { width: clamp(70px, 6.5vw, 110px); left: -1vw; bottom: 18%; transform: rotate(-12deg); }
.fm-float--ch { width: clamp(130px, 13vw, 220px); right: -3vw; top: 6%; transform: rotate(150deg); }
.fm-float--cl { width: clamp(150px, 15vw, 250px); left: -3vw; bottom: 6%; transform: rotate(10deg); }
.fm-float--pn { width: clamp(50px, 4.5vw, 80px); left: 8vw; top: 12%; transform: rotate(20deg); }
.fm-crops, .fm-help { overflow: hidden; }
.fm-crops > *:not(.fm-float), .fm-help > *:not(.fm-float) { position: relative; z-index: 2; }

/* Crops bento */
.fm-crops__head { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: clamp(24px, 5vw, 80px); align-items: end; margin-bottom: clamp(40px, 5vw, 64px) !important; }
.fm-crops__head p { color: var(--muted); max-width: 52ch; }
.fm-crops__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 18px; }
.fm-crop { margin: 0; }
.fm-crop__img { border-radius: var(--r); overflow: hidden; background: var(--mint); }
.fm-crop__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.fm-crop:hover .fm-crop__img img { transform: scale(1.04); }
.fm-crop figcaption { padding: 16px 4px 0; max-width: 44ch; }
.fm-crop h3 { font-size: clamp(26px, 2.3vw, 36px); margin-bottom: 4px !important; }
.fm-crop h3::after { content: ""; display: inline-block; width: .32em; height: .32em; border-radius: 50%; background: var(--sun); margin-left: .18em; }
.fm-crop p { color: var(--muted); font-size: 16px; }
.fm-crop--peanut { grid-column: 1 / span 7; }
.fm-crop--peanut .fm-crop__img { aspect-ratio: 16 / 11; }
.fm-crop--millet { grid-column: 8 / span 5; grid-row: span 2; }
.fm-crop--millet .fm-crop__img { aspect-ratio: 4 / 5.4; }
.fm-crop--chilli { grid-column: 1 / span 4; margin-top: 10px; }
.fm-crop--chilli .fm-crop__img { aspect-ratio: 4 / 4.6; }
.fm-crop--milk { grid-column: 5 / span 3; margin-top: 10px; }
.fm-crop--milk .fm-crop__img { aspect-ratio: 3 / 4.2; }

/* Question list with photo */
.fm-ask { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 18px; align-items: stretch; }
.fm-ask > * { margin: 0 !important; max-width: none !important; }
.fm-ask__panel { background: var(--mint); border-radius: var(--r); padding: clamp(28px, 4vw, 64px); }
.fm-ask__panel h2 { font-size: clamp(20px, 1.7vw, 25px); font-weight: 700; letter-spacing: -.01em; margin-bottom: clamp(18px, 2.6vw, 36px) !important; color: var(--accent); }
.fm-ask__list li { font-family: var(--display); font-weight: 600; font-size: clamp(26px, 3vw, 46px); line-height: 1.16; letter-spacing: -.03em; color: var(--ink); padding: 4px 0; transition: color .45s var(--ease); }
.js .fm-ask__list li { color: rgba(19, 39, 26, .26); }
.js .fm-ask__list li.is-on { color: var(--ink); }
.fm-ask__photo { border-radius: var(--r); overflow: hidden; min-height: 420px; }
.fm-ask__photo img { width: 100%; height: 100%; object-fit: cover; }

/* Full-width photo band */
.fm-band { margin: 0 var(--gut); height: clamp(280px, 46vw, 680px); border-radius: var(--r); overflow: hidden; }
.fm-band img { width: 100%; height: 118%; object-fit: cover; }

/* Services */
.fm-help__head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 5vw, 80px); align-items: end; margin-bottom: clamp(40px, 5vw, 64px) !important; }
.fm-help__head p { color: var(--muted); max-width: 52ch; }
.fm-help__cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 3vw, 48px); }
.fm-help__cols h3 { padding-bottom: 14px; border-bottom: 3px solid var(--sun); margin-bottom: 4px !important; }
.fm-help__cols li { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 17px; }

/* Park (the dark section) */
.fm-park { background: var(--forest); color: var(--forest-ink); border-radius: var(--r); margin: 0 var(--gut); }
.fm-park .fm-eyebrow { color: var(--sun); }
.fm-park h2 em { color: var(--sun); }
.fm-park__in { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.fm-park__copy h2 { margin-bottom: 28px !important; }
.fm-park__copy p:not(.fm-eyebrow) { color: rgba(230, 242, 228, .8); max-width: 50ch; margin-bottom: 1em !important; }
.fm-park__photos { position: relative; padding-bottom: 18%; }
.fm-park__p1 { border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 3.3; width: 86%; }
.fm-park__p2 { position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 1; border-radius: var(--r); overflow: hidden; box-shadow: 0 0 0 10px var(--forest); }
.fm-park__photos img { width: 100%; height: 100%; object-fit: cover; }
.fm-park__lists { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 96px); margin-top: clamp(56px, 7vw, 110px) !important; }
.fm-park__lists h3 { margin-bottom: 14px !important; }
.fm-park__lists ul { columns: 2; column-gap: 32px; }
.fm-park__lists div:last-child ul { columns: 1; }
.fm-park__lists li { break-inside: avoid; padding: 11px 0; border-top: 1px solid var(--line-dark); font-size: 16px; color: rgba(230, 242, 228, .88); }

/* Seven stages (horizontal on wide screens) */
.fm-stages { padding-left: 0 !important; padding-right: 0 !important; padding-top: 0 !important; padding-bottom: 0 !important; overflow: hidden; }
.fm-stages > * { max-width: none !important; }
.fm-stages__pin { height: 100vh; display: flex; flex-direction: column; justify-content: center; gap: clamp(20px, 3.5vh, 44px); padding: clamp(80px, 11vh, 120px) 0 clamp(28px, 5vh, 56px); }
.fm-stages__head { padding: 0 var(--gut); max-width: calc(var(--wrap) + 2 * var(--gut)); margin: 0 auto; width: 100%; }
.fm-stages__head h2 { font-size: clamp(32px, min(4.4vw, 6.5vh), 68px); max-width: 18ch; }
.fm-stages__track { display: flex; gap: 20px; padding: 0 var(--gut); width: max-content; }
.fm-stage { width: clamp(280px, 28vw, 420px); flex: none; }
.fm-stage__img { height: clamp(170px, 34vh, 400px); border-radius: var(--r); overflow: hidden; background: var(--mint); }
.fm-stage__img img { width: 100%; height: 100%; object-fit: cover; }
.fm-stage__txt { display: grid; grid-template-columns: auto 1fr; column-gap: 14px; padding: 18px 0 8px; }
.fm-stage__n { grid-row: span 2; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--sun); font-family: var(--display); font-weight: 700; font-size: 20px; line-height: 1; }
.fm-stage h3 { font-size: clamp(22px, 1.9vw, 30px); margin-bottom: 6px !important; }
.fm-stage p { color: var(--muted); font-size: 16px; }
.fm-stages__bar { display: flex; align-items: center; gap: 18px; max-width: calc(var(--wrap) + 2 * var(--gut)); width: 100%; margin: 0 auto; padding: 0 var(--gut); font-size: 14px; font-weight: 700; }
.fm-stages__count { font-family: var(--display); font-size: 18px; min-width: 3.4em; }
.fm-stages__count b { color: var(--accent); }
.fm-stages__track-line { flex: 1; height: 6px; border-radius: 99px; background: var(--mint); overflow: hidden; }
.fm-stages__fill { display: block; height: 100%; width: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--leaf), var(--sun)); transform-origin: left; transform: scaleX(.02); }
.fm-stages__hint { color: var(--muted); font-weight: 500; }

/* After launch */
.fm-after { text-align: center; overflow: hidden; }
.fm-after__in { max-width: 940px !important; position: relative; z-index: 2; }
.fm-after h2 { font-size: clamp(42px, 6.4vw, 100px); margin-bottom: 30px !important; }
.fm-after__body { color: var(--muted); max-width: 60ch; margin: 0 auto !important; }
.fm-after__note { margin-top: 28px !important; font-weight: 600; max-width: 52ch; margin-left: auto !important; margin-right: auto !important; padding: 16px 22px; border-radius: 18px; background: var(--mint); }
.fm-after__photo { position: absolute; right: max(var(--gut), 3vw); top: 12%; width: clamp(140px, 17vw, 260px); aspect-ratio: 3 / 4.2; border-radius: var(--r); overflow: hidden; transform: rotate(5deg); margin: 0 !important; z-index: 1; }
.fm-after__photo img { width: 100%; height: 100%; object-fit: cover; }

/* Selling, with outline type */
.fm-sell__title { font-size: clamp(38px, 5.8vw, 92px) !important; line-height: 1 !important; text-align: center; max-width: 1180px !important; margin-bottom: clamp(48px, 6vw, 88px) !important; }
.fm-sell__title span { display: block; }
.fm-outline { color: transparent; -webkit-text-stroke: 1.6px var(--accent); }
@supports not (-webkit-text-stroke: 1px black) { .fm-outline { color: var(--accent); } }
.fm-sell__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.fm-sell__body { color: var(--muted); max-width: 44ch; }
.fm-sell__list { columns: 2; column-gap: 32px; }
.fm-sell__list li { break-inside: avoid; font-family: var(--display); font-weight: 600; letter-spacing: -.02em; font-size: clamp(21px, 1.9vw, 28px); padding: 12px 0; border-top: 1px solid var(--line); }
.fm-sell__loop { margin-top: clamp(40px, 5vw, 64px) !important; font-size: 16px; color: var(--muted); max-width: 70ch; }

/* Two routes */
.fm-routes { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 100px); max-width: calc(var(--wrap) + 2 * var(--gut)); margin: 0 auto; align-items: start; }
.fm-routes > * { max-width: none !important; margin: 0 !important; }
.fm-routes h2 { font-size: clamp(30px, 3.4vw, 52px); margin-bottom: clamp(28px, 4vw, 48px) !important; }
.fm-routes h3 { margin-bottom: 12px !important; }
.fm-routes__old { padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); }
.fm-routes__old h3 { color: var(--muted); }
.fm-routes__old p { text-decoration: line-through; text-decoration-color: rgba(19, 39, 26, .35); max-width: 40ch; }
.fm-routes__new h3 { color: var(--accent); margin-bottom: 20px !important; }
.fm-steps { counter-reset: step; display: grid; grid-template-columns: 1fr 1fr; column-gap: 32px; position: relative; }
.fm-steps li { position: relative; display: flex; align-items: center; gap: 16px; padding: 14px 0; font-family: var(--display); font-weight: 600; letter-spacing: -.02em; font-size: clamp(20px, 1.8vw, 26px); border-top: 1px solid var(--line); }
.fm-steps__dot { flex: none; width: 14px; height: 14px; border-radius: 50%; background: var(--leaf); box-shadow: 0 0 0 5px rgba(63, 174, 73, .18); }
.fm-steps li:last-child .fm-steps__dot { background: var(--sun); box-shadow: 0 0 0 6px rgba(244, 207, 31, .35); }
.fm-steps li:nth-child(-n+5) { grid-column: 1; }
.fm-steps li:nth-child(n+6) { grid-column: 2; }
.fm-steps li:nth-child(6) { grid-row: 1; } .fm-steps li:nth-child(7) { grid-row: 2; } .fm-steps li:nth-child(8) { grid-row: 3; } .fm-steps li:nth-child(9) { grid-row: 4; } .fm-steps li:nth-child(10) { grid-row: 5; }

/* Who */
.fm-who__title { text-align: center; margin-bottom: clamp(24px, 3vw, 40px) !important; }
.fm-who__list { font-family: var(--display); font-weight: 500; letter-spacing: -.025em; font-size: clamp(25px, 2.9vw, 44px); line-height: 1.24; text-align: center; max-width: 1150px !important; }
.fm-who__list em { font-style: normal; color: var(--accent); font-weight: 650; }
.fm-who__priority { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.4fr); gap: clamp(24px, 4vw, 64px); align-items: center; background: var(--sun); border-radius: var(--r); padding: clamp(16px, 2vw, 22px); margin-top: clamp(56px, 7vw, 104px) !important; }
.fm-who__priority figure { border-radius: calc(var(--r) - 8px); overflow: hidden; aspect-ratio: 4 / 4.4; }
.fm-who__priority figure img { width: 100%; height: 100%; object-fit: cover; }
.fm-who__priority > div { padding: clamp(8px, 2vw, 32px) clamp(8px, 2vw, 40px) clamp(8px, 2vw, 32px) 0; }
.fm-who__priority h3 { font-size: clamp(25px, 2.4vw, 38px); margin-bottom: 18px !important; }
.fm-who__priority li { font-family: var(--display); font-weight: 600; letter-spacing: -.02em; font-size: clamp(21px, 1.9vw, 28px); padding: 10px 0; border-top: 1px solid rgba(19, 39, 26, .22); }
.fm-who__priority p { margin-top: 18px !important; }

/* DRP and geography */
.fm-drp { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(32px, 6vw, 96px); max-width: calc(var(--wrap) + 2 * var(--gut)); margin: 0 auto; }
.fm-drp > * { max-width: none !important; margin: 0 !important; }
.fm-drp h3 { font-size: clamp(25px, 2.3vw, 36px); margin-bottom: 18px !important; }
.fm-drp p { color: var(--muted); margin-bottom: 1em !important; }
.fm-drp__fine { font-size: 14px; border-top: 1px solid var(--line); padding-top: 14px; }

/* Final questions */
.fm-ask2 { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 96px); max-width: calc(var(--wrap) + 2 * var(--gut)); margin: 0 auto; }
.fm-ask2 > * { max-width: none !important; margin: 0 !important; }
.fm-ask2__head { position: sticky; top: 110px; align-self: start; }
.fm-ask2__head h2 { font-size: clamp(32px, 3.8vw, 56px); margin-bottom: 22px !important; }
.fm-ask2__head p { color: var(--muted); max-width: 48ch; }
.fm-ask2__qs li { font-family: var(--display); font-weight: 600; letter-spacing: -.025em; font-size: clamp(24px, 2.6vw, 40px); line-height: 1.12; padding: 22px 0; border-top: 1px solid var(--line); }
.fm-ask2__qs li:last-child { border-bottom: 1px solid var(--line); }

/* Contact */
.fm-contact { padding-top: 0 !important; }
.fm-contact__in { background: var(--forest); color: var(--forest-ink); border-radius: var(--r); padding: clamp(40px, 6vw, 96px) clamp(24px, 5vw, 80px); max-width: var(--wrap); }
.fm-contact h2 { font-size: clamp(34px, 4.8vw, 76px); max-width: 17ch; margin-bottom: clamp(40px, 6vw, 88px) !important; }
.fm-contact h2 em { color: var(--sun); }
.fm-contact__grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 32px; align-items: end; border-top: 1px solid var(--line-dark); padding-top: 32px; }
.fm-contact__grid h3 { font-family: var(--sans); font-size: 14px; letter-spacing: .06em; text-transform: uppercase; font-weight: 700; color: var(--sun); margin-bottom: 10px !important; }
.fm-contact__big { font-family: var(--display); font-weight: 600; letter-spacing: -.02em; font-size: clamp(28px, 2.6vw, 40px); line-height: 1.1; }
.fm-contact address { font-style: normal; font-size: 18px; color: rgba(230, 242, 228, .85); }

/* Footer */
.fm-foot { padding: clamp(56px, 7vw, 96px) var(--gut) 28px; overflow: hidden; }
.fm-foot__brand { display: flex; align-items: center; justify-content: center; gap: clamp(12px, 2vw, 28px); max-width: var(--wrap); margin: 0 auto; }
.fm-foot__brand img { width: clamp(56px, 11vw, 170px); height: auto; }
.fm-foot__word { font-family: var(--display); font-weight: 700; font-size: clamp(52px, 12.5vw, 210px); line-height: 1; letter-spacing: -.055em; color: var(--ink); white-space: nowrap; padding-bottom: .08em; }
.fm-foot__word b { font-weight: 800; color: var(--accent); }
.fm-foot__row { max-width: var(--wrap); margin: 24px auto 0; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 18px; font-size: 14px; color: var(--muted); }
.fm-foot__row a { text-decoration: none; }
.fm-foot__row a:hover { color: var(--accent); }

/* Custom cursor (mouse and trackpad only) */
.fm-cursor { position: fixed; left: 0; top: 0; z-index: 9999; pointer-events: none; width: 0; height: 0; }
.fm-cursor__dot, .fm-cursor__half { position: absolute; border-radius: 50%; transform: translate(-50%, -50%); }
.fm-cursor__dot { width: 16px; height: 16px; background: var(--leaf); box-shadow: 0 0 0 2px rgba(255, 255, 255, .85); transition: width .2s var(--ease), height .2s var(--ease); z-index: 2; }
.fm-cursor__half { width: 46px; height: 46px; background: var(--sun); opacity: 0; transition: opacity .15s, transform .25s var(--ease); z-index: 1; }
.fm-cursor__half--l { clip-path: inset(0 50% 0 0); transform: translate(-50%, -50%) scale(.3); }
.fm-cursor__half--r { clip-path: inset(0 0 0 50%); transform: translate(-50%, -50%) scale(.3); }
.fm-cursor.is-left .fm-cursor__half--l, .fm-cursor.is-right .fm-cursor__half--r { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.fm-cursor.is-link .fm-cursor__dot { width: 26px; height: 26px; }
html.fm-has-cursor, html.fm-has-cursor * { cursor: none !important; }

/* Motion start states: only when JS runs, and never for reduced motion */
.js .fm-hero__copy > * { opacity: 0; transform: translateY(28px); }
.js .fm-hero__photo { clip-path: inset(0% 0% 0% 100%); }

/* Responsive */
@media (max-width: 1080px) {
  .fm-nav__links { gap: 18px; }
  .fm-crop--chilli { grid-column: 1 / span 6; }
  .fm-crop--milk { grid-column: 7 / span 6; }
  .fm-crop--millet { grid-column: 8 / span 5; grid-row: auto; }
  .fm-crop--millet .fm-crop__img { aspect-ratio: 16 / 11; }
}
@media (max-width: 900px) {
  .fm-nav__links, .fm-nav .fm-btn { display: none; }
  .fm-nav__toggle { display: block; }
  .fm-hero { grid-template-columns: minmax(0, 1fr); min-height: 0; padding-right: var(--gut) !important; }
  .fm-hero__copy { padding-left: 0; }
  .fm-hero__photo { height: 62vh; border-radius: var(--r); order: -1; margin-top: 8px !important; }
  .js .fm-hero__photo { clip-path: inset(0% 0% 100% 0%); }
  .fm-start__head, .fm-crops__head, .fm-help__head, .fm-ask, .fm-park__in, .fm-park__lists, .fm-sell__grid, .fm-routes__grid, .fm-who__priority, .fm-drp, .fm-ask2, .fm-contact__grid { grid-template-columns: minmax(0, 1fr); }
  .fm-crops__grid { grid-template-columns: minmax(0, 1fr); }
  .fm-crop--peanut, .fm-crop--millet, .fm-crop--chilli, .fm-crop--milk { grid-column: auto; grid-row: auto; margin-top: 0; }
  .fm-crop .fm-crop__img { aspect-ratio: 4 / 3 !important; }
  .fm-help__cols { grid-template-columns: minmax(0, 1fr); }
  /* Question cards become a swipeable row on phones */
  .fm-start__cards { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; margin: 0 calc(-1 * var(--gut)) !important; padding: 0 var(--gut) 8px; scrollbar-width: none; }
  .fm-start__cards::-webkit-scrollbar { display: none; }
  .fm-q { flex: 0 0 76%; scroll-snap-align: start; }
  .fm-q:nth-child(even) { margin-top: 0; }
  .fm-routes { grid-template-columns: minmax(0, 1fr); }
  .fm-steps { grid-template-columns: 1fr; }
  .fm-steps li:nth-child(n) { grid-column: 1; grid-row: auto; }
  .fm-park__p2, .fm-after__photo, .fm-stages__bar { display: none; }
  .fm-park__photos { padding-bottom: 0; }
  .fm-park__p1 { width: 100%; }
  .fm-stage__img { height: auto; aspect-ratio: 4 / 3; }
  .fm-stages__pin { height: auto; padding: var(--sec) 0; }
  .fm-ask__photo { min-height: 300px; }
  .fm-stages__track { width: auto; flex-direction: column; }
  .fm-stage { width: 100%; }
  .fm-after__photo { position: relative; right: auto; top: auto; margin: 0 auto 40px !important; }
  .fm-ask2__head { position: static; }
  .fm-who__priority > div { padding: 8px; }
}
@media (max-width: 600px) {
  body.fm { font-size: 17px; }
  .fm-park__lists ul, .fm-sell__list { columns: 1; }
  .fm-float { display: none; }
  .fm-foot__brand img { width: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  :where(html) { scroll-behavior: auto; }
  .js .fm-hero__copy > * { opacity: 1; transform: none; }
  .js .fm-hero__photo { clip-path: none; }
  .js .fm-ask__list li { color: var(--ink); }
  .fm * { transition-duration: .01ms !important; }
}
