/* =========================================================
   Αρσενίου Ο.Ε. — styles
   Palette taken from the logo: forest green + olive on cream
   ========================================================= */

:root {
  --forest-950: #081c0f;
  --forest-900: #0c2615;
  --forest-800: #10301b;
  --forest: #133c1f;
  --forest-600: #1e5530;
  --olive: #929b2a;
  --olive-hover: #a3ac36;
  --olive-700: #6a721c;
  --olive-300: #c9cf7a;
  --cream: #f6f3ea;
  --sand: #ebe5d4;
  --paper: #fffdf8;
  --ink: #0e1a12;
  --muted: rgba(14, 26, 18, .64);
  --line: rgba(14, 26, 18, .12);
  --line-light: rgba(246, 243, 234, .14);
  --red: #b3261e;

  --serif: "Noto Serif Display", Georgia, "Times New Roman", serif;
  --sans: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;

  --fs-display: clamp(46px, 7vw, 128px);
  --fs-h2: clamp(38px, 4.8vw, 88px);
  --fs-h3: clamp(26px, 2.5vw, 44px);
  --fs-lead: clamp(17px, 1.2vw, 20px);

  --gutter: clamp(20px, 4vw, 64px);
  --section-y: clamp(88px, 10vw, 170px);
  --head-gap: clamp(48px, 6vw, 96px);
  --container: 1480px;
  --header-h: 96px;

  --r-md: 16px;
  --r-lg: 26px;
  --r-xl: 34px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(15.5px, .95vw, 17px);
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
/* Subtle film grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
::selection { background: var(--olive); color: var(--ink); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
p { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
legend { padding: 0; }
:focus-visible { outline: 2px solid var(--olive); outline-offset: 3px; }

h1, h2, h3 { margin: 0; font-weight: 300; }
h2 {
  margin-top: 22px;
  font-family: var(--serif);
  font-size: var(--fs-h2);
  line-height: 1.02;
  letter-spacing: -.022em;
}
h2 em, .display em { font-style: italic; color: var(--olive-700); }
.section--dark h2 em, .hero .display em, .about h2 em { color: var(--olive-300); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.i { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Page intro + progress ---------- */
#page-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--forest-900);
  pointer-events: none;
  animation: overlay-out 1s cubic-bezier(.77, 0, .18, 1) 1.05s forwards;
}
#page-overlay img { width: min(220px, 52vw); opacity: 0; animation: logo-in 1.15s var(--ease) forwards; }
@keyframes overlay-out { to { transform: translateY(-100%); } }
@keyframes logo-in {
  0% { opacity: 0; transform: translateY(18px); }
  45%, 70% { opacity: 1; transform: none; }
  100% { opacity: 0; transform: translateY(-12px); }
}

.progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 102;
  height: 3px;
  background: var(--olive);
  transform: scaleX(0);
  transform-origin: left;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--forest);
  --btn-fg: var(--cream);
  --icon-bg: var(--olive);
  --icon-fg: var(--ink);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 58px;
  padding: 7px 28px;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: background-color .4s ease, color .4s ease, border-color .4s ease, transform .5s var(--ease), opacity .3s;
}
.btn__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  background: var(--icon-bg);
  color: var(--icon-fg);
  overflow: hidden;
  transition: background-color .4s ease, color .4s ease;
}
.btn__icon svg { grid-area: 1 / 1; transition: transform .55s var(--ease); }
.btn__icon svg + svg { transform: translate(-160%, 160%); }
.btn:hover .btn__icon svg:first-child { transform: translate(160%, -160%); }
.btn:hover .btn__icon svg + svg { transform: none; }
.btn:disabled { opacity: .6; pointer-events: none; }

.btn--olive { --btn-bg: var(--olive); --btn-fg: var(--ink); --icon-bg: var(--ink); --icon-fg: var(--cream); }
.btn--olive:hover { --btn-bg: var(--olive-hover); }
.btn--dark:hover { --btn-bg: var(--forest-600); }
.btn--glass {
  --btn-bg: rgba(246, 243, 234, .1);
  --btn-fg: var(--cream);
  --icon-bg: var(--cream);
  --icon-fg: var(--ink);
  border: 1px solid rgba(246, 243, 234, .28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn--glass:hover { --btn-bg: rgba(246, 243, 234, .2); }
.btn--sm { min-height: 50px; padding: 5px 22px; gap: 12px; font-size: 14px; }
.btn--sm .btn__icon { width: 40px; height: 40px; }

/* ---------- Chips + eyebrows ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.chip--glass {
  color: var(--cream);
  background: rgba(246, 243, 234, .1);
  border: 1px solid rgba(246, 243, 234, .24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.chip--plain { font-size: 14px; font-weight: 500; letter-spacing: 0; text-transform: none; padding: 9px 16px 9px 12px; }
.chip--plain .i { width: 18px; height: 18px; color: var(--olive-300); }
.chip__dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--olive-300);
}
.chip__dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--olive-300);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse { from { transform: scale(.6); opacity: 1; } to { transform: scale(2); opacity: 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--forest-600);
}
.eyebrow__num {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
  letter-spacing: 0;
}
.section--dark .eyebrow { color: var(--olive-300); }

/* =========================================================
   Header
   ========================================================= */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  pointer-events: none;
  transition: transform .7s var(--ease);
}
.header__bar {
  position: relative;
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 100%;
  margin: 0 auto;
  padding: 18px var(--gutter);
  color: var(--cream);
  border: 1px solid transparent;
  border-radius: 0;
  pointer-events: auto;
  transition: max-width .7s var(--ease), margin .7s var(--ease), padding .7s var(--ease), border-radius .7s var(--ease),
              background-color .5s ease, color .5s ease, border-color .5s ease, box-shadow .5s ease;
}
body.is-sticky:not(.menu-open) .header__bar {
  max-width: min(1440px, calc(100% - 24px));
  margin-top: 12px;
  padding: 8px 8px 8px 22px;
  border-radius: 22px;
  color: var(--ink);
  background: rgba(246, 243, 234, .78);
  border-color: rgba(14, 26, 18, .08);
  box-shadow: 0 18px 50px -20px rgba(8, 28, 15, .35);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
}
body.header-hidden:not(.menu-open) .header { transform: translateY(-120%); }

.logo { position: relative; display: block; flex: none; }
.logo__img { display: block; width: clamp(120px, 9.5vw, 158px); height: auto; transition: width .7s var(--ease), opacity .5s ease; }
.logo__img--color { position: absolute; inset: 0; opacity: 0; }
body.is-sticky .logo__img { width: 112px; }
body.is-sticky:not(.menu-open) .logo__img--white { opacity: 0; }
body.is-sticky:not(.menu-open) .logo__img--color { opacity: 1; }

.nav { margin-inline: auto; }
.nav ul { display: flex; gap: 4px; }
.nav a {
  position: relative;
  display: block;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: background-color .3s ease;
}
.nav a:hover, .nav a.is-active { background: rgba(246, 243, 234, .14); }
body.is-sticky .nav a:hover, body.is-sticky .nav a.is-active { background: rgba(14, 26, 18, .07); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 4px;
  height: 4px;
  margin-left: -2px;
  border-radius: 50%;
  background: var(--olive);
}

.header__actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav + .header__actions { margin-left: 0; }

.lang {
  display: flex;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(246, 243, 234, .28);
  transition: border-color .5s ease;
}
body.is-sticky:not(.menu-open) .lang { border-color: rgba(14, 26, 18, .14); }
.lang a {
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  opacity: .75;
  transition: background-color .35s ease, color .35s ease, opacity .35s ease;
}
.lang a:hover { opacity: 1; }
.lang a[aria-current="true"] { opacity: 1; background: var(--cream); color: var(--ink); }
body.is-sticky:not(.menu-open) .lang a[aria-current="true"] { background: var(--forest); color: var(--cream); }

.burger {
  display: none;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(246, 243, 234, .14);
  border: 1px solid rgba(246, 243, 234, .28);
  transition: background-color .4s ease;
}
.burger span {
  grid-area: 1 / 1;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform .5s var(--ease);
}
.burger span:first-child { transform: translateY(-3.5px); }
.burger span:last-child { transform: translateY(3.5px); }
body.is-sticky:not(.menu-open) .burger { background: var(--forest); border-color: var(--forest); color: var(--cream); }
body.menu-open .burger span:first-child { transform: rotate(45deg); }
body.menu-open .burger span:last-child { transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 11;
  background: var(--forest-900);
  color: var(--cream);
  clip-path: circle(0 at calc(100% - 46px) 46px);
  pointer-events: none;
  transition: clip-path .8s var(--ease);
}
.mobile-menu__inner {
  height: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: calc(var(--header-h) + 24px) var(--gutter) 32px;
}
.mobile-menu__list li { overflow: hidden; border-bottom: 1px solid var(--line-light); }
.mobile-menu__list a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 14px 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 8vw, 56px);
  line-height: 1.1;
  transform: translateY(105%);
  transition: transform .8s calc(.15s + var(--i) * 60ms) var(--ease), color .3s ease;
}
.mobile-menu__list a:hover { color: var(--olive-300); }
.mobile-menu__num { font-family: var(--sans); font-size: 12px; font-weight: 700; color: var(--olive-300); }
.mobile-menu__footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  opacity: 0;
  transition: opacity .6s .45s ease;
}
.mobile-menu__footer .btn { margin-top: 16px; }
body.menu-open { overflow: hidden; }
body.menu-open .mobile-menu { clip-path: circle(150% at calc(100% - 46px) 46px); pointer-events: auto; }
body.menu-open .mobile-menu__list a { transform: none; }
body.menu-open .mobile-menu__footer { opacity: 1; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
  background: var(--forest-900);
}
.hero__media { position: absolute; inset: 0 0 -10%; z-index: -2; will-change: transform; }
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  transform: scale(1.18);
  transition: transform 2.8s var(--ease);
}
body.is-loaded .hero__media img { transform: scale(1.02); }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 28, 15, .6) 0%, rgba(8, 28, 15, 0) 26%),
    linear-gradient(0deg, rgba(8, 28, 15, .96) 0%, rgba(8, 28, 15, .6) 36%, rgba(8, 28, 15, 0) 72%),
    radial-gradient(90% 70% at 0% 100%, rgba(8, 28, 15, .55), transparent 70%);
}
.hero__inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: clamp(40px, 5.5vw, 84px);
}
.hero__content { max-width: 1180px; }
.display {
  margin-top: 26px;
  font-family: var(--serif);
  font-size: var(--fs-display);
  font-weight: 300;
  line-height: .98;
  letter-spacing: -.028em;
  max-width: 11.5em;
}
.hero__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px 64px;
  margin-top: clamp(28px, 3vw, 48px);
}
.hero__lead { max-width: 500px; font-size: var(--fs-lead); line-height: 1.55; color: rgba(246, 243, 234, .82); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__badge {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  display: grid;
  place-items: center;
  width: 136px;
  height: 136px;
  color: var(--cream);
}
.hero__ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 20s linear infinite; }
.hero__ring text { font-family: var(--sans); font-size: 9px; font-weight: 700; letter-spacing: .18em; fill: currentColor; }
.hero__badge-center {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--ink);
  transition: transform .5s var(--ease);
}
.hero__badge:hover .hero__badge-center { transform: scale(1.12); }
@keyframes spin { to { transform: rotate(360deg); } }

/* Hero content waits for the intro overlay */
.hero .reveal { transition-delay: 1.15s; }
.hero [data-split] .char { transition-delay: calc(1.2s + 16ms * var(--ci)); }

/* =========================================================
   Marquee
   ========================================================= */
.marquee {
  overflow: hidden;
  padding-block: clamp(18px, 2vw, 30px);
  background: var(--forest);
  color: var(--olive-300);
}
.marquee__track { display: flex; width: max-content; animation: marquee 45s linear infinite; }
.marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.8vw, 48px);
  padding-right: clamp(22px, 2.8vw, 48px);
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 52px);
  font-style: italic;
  font-weight: 300;
  white-space: nowrap;
}
.marquee__group i { font-style: normal; font-size: .45em; color: var(--olive); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   Sections
   ========================================================= */
.section { padding-block: var(--section-y); }
.section--sand { background: var(--sand); }
.section--dark { background: var(--forest-900); color: var(--cream); }
/* Back-to-back dark sections (Why us → Contact): one gap with a hairline instead of a double gap */
.section--dark + .section--dark { padding-top: 0; }
.section--dark + .section--dark > .container { border-top: 1px solid var(--line-light); padding-top: var(--section-y); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: end;
  gap: 32px clamp(32px, 6vw, 110px);
  margin-bottom: var(--head-gap);
}
.section-head__aside { display: flex; flex-direction: column; align-items: flex-start; gap: 28px; }
.lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--muted); max-width: 520px; }
.section--dark .lead { color: rgba(246, 243, 234, .7); }

/* ---------- Interactive list ---------- */
.list { border-top: 1px solid var(--line); }
.list__item {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: clamp(52px, 7vw, 120px) minmax(0, 1fr);
  align-items: start;
  column-gap: 24px;
  padding-block: clamp(26px, 2.6vw, 42px);
  border-bottom: 1px solid var(--line);
  transition: opacity .5s ease;
}
.list__num { padding-top: .95em; font-size: 13px; font-weight: 700; color: var(--muted); font-variant-numeric: tabular-nums; }
.list__body h3 {
  font-family: var(--serif);
  font-size: var(--fs-h3);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.012em;
  transition: transform .7s var(--ease);
}
.list__body p { max-width: 620px; padding-top: 14px; color: var(--muted); }
.list__arrow {
  display: grid;
  place-items: center;
  width: clamp(48px, 4vw, 62px);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background-color .5s ease, border-color .5s ease, color .5s ease;
}
.list__arrow svg { transition: transform .6s var(--ease); }

@media (hover: hover) and (min-width: 1025px) {
  .list:hover .list__item:not(:hover) { opacity: .38; }
  .list__item:hover h3 { transform: translateX(16px); }
  .list__item:hover .list__arrow { background: var(--forest); border-color: var(--forest); color: var(--cream); }
  .list__item:hover .list__arrow svg { transform: rotate(45deg); }
  .list__item .collapsible { max-height: 0; overflow: hidden; transition: max-height .7s var(--ease); }
  .list__item:hover .collapsible { max-height: var(--h, 240px); }
}

.cursor-image {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 270px;
  height: 350px;
  margin: -175px 0 0 -135px;
  border-radius: 20px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  scale: .7;
  rotate: -6deg;
  transition: opacity .5s ease, scale .6s var(--ease), rotate .6s var(--ease);
  will-change: transform;
  box-shadow: 0 30px 60px -25px rgba(8, 28, 15, .5);
}
.cursor-image.is-active { opacity: 1; scale: 1; rotate: 0deg; }
.cursor-image__track { transition: transform .7s var(--ease); }
.cursor-image__track img { width: 270px; height: 350px; object-fit: cover; }

.cursor-dot {
  position: fixed;
  top: -18px;
  left: -18px;
  z-index: 9998;
  width: 36px;
  height: 36px;
  border: 1px solid #fff;
  border-radius: 50%;
  mix-blend-mode: difference;
  pointer-events: none;
  opacity: 0;
  transition: width .35s var(--ease), height .35s var(--ease), top .35s var(--ease), left .35s var(--ease), opacity .3s ease;
}
.cursor-dot.is-visible { opacity: 1; }
.cursor-dot.is-hovering { width: 64px; height: 64px; top: -32px; left: -32px; }
@media (hover: none), (max-width: 1024px) {
  .cursor-image, .cursor-dot { display: none; }
}

/* ---------- USPs ---------- */
.usps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 28px); }
.usp-wrap { will-change: transform; }
.usp {
  height: 100%;
  padding: 10px;
  border-radius: var(--r-lg);
  background: rgba(246, 243, 234, .035);
  border: 1px solid var(--line-light);
  transition: background-color .5s ease, border-color .5s ease;
}
.usp:hover { background: rgba(246, 243, 234, .07); border-color: rgba(201, 207, 122, .45); }
.usp__media { position: relative; isolation: isolate; aspect-ratio: 4 / 3; border-radius: calc(var(--r-lg) - 8px); overflow: hidden; }
.usp__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  height: 38%;
  background: linear-gradient(to top, rgba(8, 18, 12, .5), transparent);
  pointer-events: none;
}
/* Wrapper keeps the reveal/hover zoom; each photo runs its own slow drift */
.usp__slides { position: absolute; inset: 0; transform: scale(1.2); transition: transform 1.6s var(--ease); }
.usp.in-view .usp__slides { transform: scale(1); }
.usp.in-view:hover .usp__slides { transform: scale(1.06); }
.usp__slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.usp__media { cursor: pointer; -webkit-tap-highlight-color: transparent; }
.usp__slides img:nth-child(2) { transform-origin: 35% 65%; }
.usp__slides img:nth-child(3) { transform-origin: 65% 35%; }
.usp__slides img.is-active { z-index: 2; opacity: 1; }
.usp__slides img.is-prev { z-index: 1; opacity: 1; }
.usp__slides img.is-active,
.usp__slides img.is-prev { animation: usp-drift 9s linear both; }
.usp__media:not(.is-playing) .usp__slides img { animation-play-state: paused; }
.usp__bars { position: absolute; right: 14px; bottom: 5px; z-index: 4; display: flex; gap: 2px; }
/* Tall transparent button for an easy tap target; the visible bar is the span */
.usp__bar { display: grid; align-items: center; width: 34px; height: 24px; padding: 0 3px; border: 0; background: none; cursor: pointer; }
.usp__bar span { display: block; height: 2px; border-radius: 2px; background: rgba(246, 243, 234, .3); overflow: hidden; transition: background-color .3s ease; }
.usp__bar:hover span { background: rgba(246, 243, 234, .55); }
.usp__bar:focus-visible { outline: 2px solid var(--olive); outline-offset: -2px; border-radius: 4px; }
.usp__bar i { display: block; height: 100%; background: #f6f3ea; transform: scaleX(0); transform-origin: left; }
.usp__bar.is-active i { animation: usp-fill var(--usp-dur, 6s) linear forwards; animation-play-state: paused; }
.usp__media.is-playing .usp__bar.is-active i { animation-play-state: running; }
@media (hover: hover) {
  .usp:hover .usp__slides img,
  .usp:hover .usp__media.is-playing .usp__bar.is-active i { animation-play-state: paused; }
}
@keyframes usp-drift { from { transform: scale(1.08); } to { transform: scale(1); } }
@keyframes usp-fill { to { transform: scaleX(1); } }
/* flow-root stops the icon's negative margin from pulling this box over the photo's bars */
.usp__body { position: relative; display: flow-root; padding: 0 18px 22px; }
.usp__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: -28px 0 22px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--ink);
  box-shadow: 0 0 0 7px var(--forest-900);
}
.usp h3 { font-family: var(--serif); font-size: clamp(24px, 1.9vw, 32px); font-weight: 400; line-height: 1.15; margin-bottom: 12px; }
.usp p { color: rgba(246, 243, 234, .68); font-size: 15.5px; }

/* ---------- Products: category slider ---------- */
.section-head--center {
  grid-template-columns: minmax(0, 1fr);
  justify-items: stretch;
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
}
.section-head--center .eyebrow { justify-self: center; }
.section-head--center .lead { max-width: 720px; margin-inline: auto; margin-top: 22px; }

.feeds { --feeds-visible: 4; --feeds-gap: clamp(10px, 1.2vw, 16px); position: relative; }
.feeds__track {
  display: flex;
  gap: var(--feeds-gap);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}
.feeds__track::-webkit-scrollbar { display: none; }
@media (hover: hover) and (pointer: fine) {
  .feeds__track { cursor: grab; }
  .feeds__track.is-dragging { cursor: grabbing; }
}
.feeds__track.is-dragging { scroll-snap-type: none; scroll-behavior: auto; user-select: none; }
.feeds__track.is-dragging .feed-card img { transition: none; }
.feed-card img { pointer-events: none; -webkit-user-drag: none; }
.feed-card {
  position: relative;
  isolation: isolate;
  flex: 0 0 calc((100% - (var(--feeds-visible) - 1) * var(--feeds-gap)) / var(--feeds-visible));
  aspect-ratio: 844 / 1120;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 2vw, 36px);
  border-radius: var(--r-lg);
  clip-path: inset(0 round var(--r-lg));
  overflow: hidden;
  scroll-snap-align: start;
  text-align: left;
  color: var(--cream);
  background: var(--forest);
  transition: opacity 1s var(--ease), transform 1.2s var(--ease);
}
/* Cards reveal by fading in only. A vertical shift would make the scrolling
   row scrollable up/down as well and let it hide the rounded top edge. */
.feed-card.reveal { transform: none; }
.feed-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  transition: transform 1.4s var(--ease), filter .6s ease;
}
.feed-card.in-view img { transform: scale(1); }
.feed-card.in-view:hover img { transform: scale(1.06); }
.feed-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(17deg, rgba(8, 28, 15, .94) -9%, rgba(8, 28, 15, .35) 40%, rgba(8, 28, 15, 0) 77%);
  transition: background .5s ease;
}
/* Hover wash: an olive gradient fades in over the photo, like the reference */
.feed-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(17deg, rgba(146, 155, 42, .9) 6%, rgba(146, 155, 42, .45) 45%, rgba(146, 155, 42, 0) 82%);
  opacity: 0;
  transition: opacity .45s ease;
}
.feed-card:hover::after, .feed-card:focus-visible::after { opacity: 1; }
.feed-card__title {
  display: block;
  font-family: var(--serif);
  font-size: clamp(22px, 1.75vw, 30px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.01em;
  transition: transform .45s var(--ease);
}
.feed-card:hover .feed-card__title, .feed-card:focus-visible .feed-card__title { transform: translateY(-8px); }

.feeds__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: clamp(24px, 3vw, 40px);
}
.feeds__hint { font-size: 13px; letter-spacing: .02em; color: var(--muted); text-align: center; }
.feeds__btn {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: background-color .4s ease, border-color .4s ease, color .4s ease, opacity .3s ease;
}
.feeds__btn:hover:not(:disabled) { background: var(--forest); border-color: var(--forest); color: var(--cream); }

/* ---------- Product popup ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9980;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 40px);
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 28, 15, .74);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .5s ease;
}
.modal__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  width: min(1100px, 100%);
  max-height: calc(100vh - 2 * clamp(12px, 3vw, 40px));
  max-height: calc(100dvh - 2 * clamp(12px, 3vw, 40px));
  overflow: hidden;
  border-radius: var(--r-xl);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 40px 80px rgba(8, 28, 15, .35);
  opacity: 0;
  transform: translateY(28px) scale(.97);
  transition: opacity .55s var(--ease), transform .7s var(--ease);
}
.modal.is-open .modal__backdrop { opacity: 1; }
.modal.is-open .modal__panel { opacity: 1; transform: none; }
.modal__media { position: relative; min-height: 100%; background: var(--forest); }
.modal__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.modal__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(17deg, rgba(8, 28, 15, .55) -9%, rgba(8, 28, 15, 0) 60%);
}
.modal__body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
  padding: clamp(28px, 4.5vw, 64px);
  overflow-y: auto;
}
.modal__title {
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 50px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -.02em;
  margin-top: 4px;
}
.modal__content p { font-size: var(--fs-lead); line-height: 1.55; color: var(--muted); }
.modal__content ul { display: grid; gap: 0; margin-top: 22px; border-top: 1px solid var(--line); }
.modal__content li {
  position: relative;
  padding: 13px 0 13px 26px;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
  line-height: 1.45;
}
.modal__content li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 21px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--olive);
}
.modal__body .eyebrow, .modal__cta { align-self: flex-start; }
.modal__cta { margin-top: 8px; }
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(246, 243, 234, .92);
  color: var(--ink);
  box-shadow: 0 6px 20px rgba(8, 28, 15, .18);
  transition: background-color .3s ease, color .3s ease, transform .5s var(--ease);
}
.modal__close:hover { background: var(--forest); color: var(--cream); transform: rotate(90deg); }
body.modal-open { overflow: hidden; }

/* ---------- About ---------- */
.about {
  padding-inline: clamp(8px, 1vw, 16px);
  /* Sits between the green marquee and the cream journey section */
  background: linear-gradient(var(--forest) 50%, var(--cream) 50%);
}
.about__frame {
  --i: 0;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: min(92vh, 960px);
  border-radius: var(--r-xl);
  overflow: hidden;
  color: var(--cream);
  background: var(--forest-900);
  clip-path: inset(calc(var(--i) * 7%) calc(var(--i) * 6%) round var(--r-xl));
}
.about__media { position: absolute; inset: -12% 0; z-index: -2; will-change: transform; }
.about__media img, .about__media video { display: block; width: 100%; height: 100%; object-fit: cover; }
.about__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(8, 28, 15, .95) 0%, rgba(8, 28, 15, .72) 38%, rgba(8, 28, 15, .18) 72%, rgba(8, 28, 15, .05) 100%),
    radial-gradient(70% 60% at 85% 85%, rgba(8, 28, 15, .45), transparent 70%);
}
/* Keep the cow's face in frame on narrow screens */
@media (max-width: 767px) {
  .hero__media img { object-position: 24% center; }
}
.about__content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  align-items: end;
  gap: 32px clamp(32px, 6vw, 110px);
  padding-block: clamp(48px, 7vw, 120px);
}
.about h2 { margin-top: 24px; }
.about__text { font-size: var(--fs-lead); line-height: 1.55; color: rgba(246, 243, 234, .85); }
.about__points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: start;
  gap: clamp(48px, 6vw, 110px);
}
.contact__intro .lead { margin-top: 26px; }
.contact__details { display: grid; gap: 12px; margin-top: 44px; max-width: 480px; }
.detail {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px 14px 14px;
  border: 1px solid var(--line-light);
  border-radius: var(--r-md);
  transition: background-color .4s ease, border-color .4s ease, transform .5s var(--ease);
}
.detail:hover { background: rgba(246, 243, 234, .06); border-color: rgba(201, 207, 122, .45); transform: translateX(6px); }
.detail__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(201, 207, 122, .14);
  color: var(--olive-300);
}
.detail__label { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(246, 243, 234, .55); }
.detail__value { display: block; font-size: 16.5px; }

.contact-form {
  position: relative;
  padding: clamp(24px, 3.2vw, 52px);
  border-radius: var(--r-xl);
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .6);
}
.contact-form__title { font-family: var(--serif); font-size: clamp(28px, 2.4vw, 40px); font-weight: 300; line-height: 1.1; margin-bottom: 30px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px 18px; }
.field { display: flex; flex-direction: column; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field > label:not(.check), .field legend { margin-bottom: 8px; font-size: 13.5px; font-weight: 600; }
.field__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.field__head label { font-size: 13.5px; font-weight: 600; }
.field__clear {
  padding: 2px 0; border: 0; background: none; font: inherit; font-size: 12.5px; font-weight: 600;
  color: var(--forest-600); cursor: pointer; text-decoration: underline; text-decoration-color: rgba(30, 85, 48, .35); text-underline-offset: 3px;
  transition: text-decoration-color .3s ease, color .3s ease;
}
.field__clear:hover { text-decoration-color: currentColor; }
.field__clear:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(146, 155, 42, .35); border-radius: 4px; }
.field input:not([type="radio"]):not([type="checkbox"]),
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(14, 26, 18, .14);
  border-radius: 14px;
  background: var(--paper);
  font: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(14, 26, 18, .45); }
.field input:not([type="radio"]):not([type="checkbox"]):hover, .field textarea:hover { border-color: rgba(14, 26, 18, .3); }
.field input:not([type="radio"]):not([type="checkbox"]):focus, .field textarea:focus {
  border-color: var(--forest-600);
  box-shadow: 0 0 0 4px rgba(146, 155, 42, .25);
  background: #fff;
}
.field.has-error input:not([type="radio"]):not([type="checkbox"]),
.field.has-error textarea { border-color: var(--red); box-shadow: 0 0 0 4px rgba(179, 38, 30, .1); }
.field__error { min-height: 22px; padding-top: 4px; font-size: 12.5px; color: var(--red); }
fieldset.field { margin-bottom: 22px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-radio { position: relative; cursor: pointer; }
.chip-radio input { position: absolute; inset: 0; margin: 0; opacity: 0; cursor: pointer; }
.chip-radio span {
  display: inline-flex;
  padding: 10px 17px;
  border: 1px solid rgba(14, 26, 18, .16);
  border-radius: 999px;
  background: var(--paper);
  font-size: 14px;
  font-weight: 500;
  transition: background-color .3s ease, border-color .3s ease, color .3s ease;
}
.chip-radio:hover span { border-color: rgba(14, 26, 18, .4); }
.chip-radio input:checked + span { background: var(--forest); border-color: var(--forest); color: var(--cream); }
.chip-radio input:focus-visible + span { box-shadow: 0 0 0 4px rgba(146, 155, 42, .35); }

.check { display: flex; align-items: flex-start; gap: 12px; margin-top: 4px; font-size: 14.5px; line-height: 1.5; color: var(--muted); cursor: pointer; }
.check a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.check input {
  appearance: none;
  display: grid;
  place-content: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin: 0;
  border: 1.5px solid rgba(14, 26, 18, .3);
  border-radius: 7px;
  background: var(--paper);
  cursor: pointer;
  transition: background-color .25s ease, border-color .25s ease;
}
.check input::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--cream);
  border-bottom: 2px solid var(--cream);
  transform: translateY(-1px) rotate(-45deg) scale(0);
  transition: transform .25s var(--ease);
}
.check input:checked { background: var(--forest); border-color: var(--forest); }
.check input:checked::after { transform: translateY(-1px) rotate(-45deg) scale(1); }
.field.has-error .check input { border-color: var(--red); }

.contact-form__footer { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px; margin-top: 14px; }
.form-note { font-size: 13px; color: var(--muted); }
.form-status { flex-basis: 100%; padding: 12px 16px; border-radius: 12px; font-size: 15px; }
.form-status:empty { display: none; }
.form-status a { text-decoration: underline; }
.form-status.is-success { background: rgba(30, 85, 48, .1); color: var(--forest-600); font-weight: 600; }
.form-status.is-error { background: rgba(179, 38, 30, .08); color: var(--red); }
.form-status.is-info { background: rgba(146, 155, 42, .14); color: var(--ink); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ---------- Footer ---------- */
.footer {
  overflow: hidden;
  padding-top: clamp(72px, 8vw, 130px);
  background: var(--forest-950);
  color: var(--cream);
}
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand img { width: 170px; height: auto; }
.footer__brand p { max-width: 340px; margin: 22px 0 24px; color: rgba(246, 243, 234, .66); }
.footer__social {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--olive);
  border-radius: 50%;
  background: var(--olive);
  color: var(--ink);
  transition: background-color .4s ease, color .4s ease, border-color .4s ease, transform .4s var(--ease);
}
.footer__social svg { width: 20px; height: 20px; }
.footer__social:hover { background: var(--cream); border-color: var(--cream); color: var(--ink); transform: translateY(-2px); }
.footer__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: left;
  color: var(--olive-300);
  cursor: default;
}
.footer__heading .chev { display: none; }
.footer__menu li { margin-bottom: 10px; }
.footer__menu a {
  color: rgba(246, 243, 234, .75);
  background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat;
  transition: color .3s ease, background-size .4s var(--ease);
}
.footer__menu a:hover { color: var(--cream); background-size: 100% 1px; }

.footer__wordmark {
  margin-top: clamp(56px, 7vw, 110px);
  font-family: var(--serif);
  font-size: clamp(84px, 21.5vw, 380px);
  font-weight: 300;
  line-height: .78;
  letter-spacing: -.045em;
  text-align: center;
  white-space: nowrap;
  color: transparent;
  background: linear-gradient(180deg, rgba(201, 207, 122, .5) 0%, rgba(201, 207, 122, 0) 88%);
  -webkit-background-clip: text;
  background-clip: text;
  user-select: none;
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 28px;
  padding-block: 26px;
  border-top: 1px solid var(--line-light);
  font-size: 13.5px;
  color: rgba(246, 243, 234, .58);
}
.footer__legal { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 24px; }
.footer__legal a:hover { color: var(--cream); }
.to-top { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border: 1px solid var(--line-light); border-radius: 999px; color: var(--cream); transition: background-color .3s, color .3s; }
.to-top:hover { background: var(--cream); color: var(--ink) !important; }

/* =========================================================
   Reveal animations
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease), transform 1.2s var(--ease);
  transition-delay: calc(var(--d, 0) * 110ms);
}
.reveal.in-view { opacity: 1; transform: none; }

[data-split] .word { display: inline-block; overflow: hidden; vertical-align: top; padding: 0 .06em .1em 0; margin: 0 -.06em -.1em 0; }
[data-split] .char {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .9s var(--ease);
  transition-delay: calc(14ms * var(--ci));
}
.in-view [data-split] .char { transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  #page-overlay { display: none; }
  .reveal, [data-split] .char { opacity: 1; transform: none; }
  .about__frame { clip-path: none; }
  .usp__bar.is-active i { transform: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1180px) {
  .nav a { padding: 10px 12px; }
}

@media (max-width: 1024px) {
  :root { --header-h: 84px; }
  .nav, .hide-tablet { display: none; }
  .burger { display: grid; }
  .header__bar { padding-block: 14px; }
  body.is-sticky:not(.menu-open) .header__bar { padding: 6px 6px 6px 16px; margin-top: 8px; max-width: calc(100% - 16px); }
  .hero__badge { display: none; }
  .section-head { grid-template-columns: 1fr; align-items: start; }
  .usps { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .usp-wrap { transform: none !important; }
  .feeds { --feeds-visible: 2.4; }
  .about__content { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: repeat(3, 1fr); }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
  .hero__actions { width: 100%; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: space-between; }
  .list__item { grid-template-columns: 38px minmax(0, 1fr); }
  .list__arrow { display: none; }
  .list__num { padding-top: .6em; }
  .feeds { --feeds-visible: 1.25; }
  .feeds__nav { gap: 12px; }
  .feeds__hint { flex: 1 1 auto; font-size: 12px; }
  /* Phones: a bottom sheet that slides up over the page. The content card
     overlaps the photo, the list becomes soft cards and the quote button
     stays in reach while the details scroll. Swipe down closes (main.js). */
  .modal { padding: 0; place-items: end stretch; }
  .modal__panel {
    display: block;
    width: 100%;
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
    border-radius: 28px 28px 0 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    box-shadow: 0 -18px 50px rgba(8, 28, 15, .3);
    opacity: 1;
    transform: translateY(100%);
    transition: transform .6s var(--ease);
  }
  .modal__panel::-webkit-scrollbar { display: none; }
  .modal__close {
    position: sticky;
    top: 14px;
    z-index: 3;
    width: 42px;
    height: 42px;
    margin: 0 14px -42px auto;
    color: var(--cream);
    background: rgba(8, 28, 15, .36);
    border: 1px solid rgba(246, 243, 234, .28);
    box-shadow: none;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  .modal__media { width: 100%; height: 44vh; height: 44dvh; min-height: 260px; max-height: 400px; background: var(--forest-900); overflow: hidden; }
  .modal__media img { object-position: 50% 35%; transform: scale(1.1); transition: transform 1.4s var(--ease); }
  .modal.is-open .modal__media img { transform: none; }
  .modal__media::after { background: linear-gradient(180deg, rgba(8, 28, 15, .45), rgba(8, 28, 15, 0) 30%, rgba(8, 28, 15, 0) 65%, rgba(8, 28, 15, .3)); }
  /* Grab handle */
  .modal__media::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    z-index: 1;
    width: 44px;
    height: 5px;
    margin-left: -22px;
    border-radius: 999px;
    background: rgba(246, 243, 234, .8);
  }
  .modal__body {
    position: relative;
    gap: 16px;
    margin-top: -28px;
    padding: 26px 20px 0;
    border-radius: 28px 28px 0 0;
    background: var(--paper);
    overflow: visible;
  }
  .modal__body .eyebrow {
    gap: 10px;
    padding: 5px 14px 5px 5px;
    border-radius: 999px;
    background: rgba(146, 155, 42, .14);
    color: var(--olive-700);
    font-size: 11px;
  }
  .modal__body .eyebrow__num { width: 26px; height: 26px; border: 0; background: var(--olive); color: var(--ink); font-size: 10.5px; }
  .modal__title { font-size: 36px; margin-top: 2px; }
  .modal__content p { font-size: 16px; line-height: 1.6; }
  .modal__content ul { gap: 10px; margin-top: 20px; border-top: 0; }
  .modal__content li {
    padding: 14px 16px 14px 52px;
    border: 0;
    border-radius: 16px;
    background: var(--cream);
    box-shadow: inset 0 0 0 1px var(--line);
    font-size: 15px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .5s ease, transform .7s var(--ease);
  }
  .modal.is-open .modal__content li { opacity: 1; transform: none; }
  .modal.is-open .modal__content li:nth-child(1) { transition-delay: .25s; }
  .modal.is-open .modal__content li:nth-child(2) { transition-delay: .31s; }
  .modal.is-open .modal__content li:nth-child(3) { transition-delay: .37s; }
  .modal.is-open .modal__content li:nth-child(4) { transition-delay: .43s; }
  .modal.is-open .modal__content li:nth-child(n+5) { transition-delay: .49s; }
  /* Olive tick */
  .modal__content li::before { left: 14px; top: 50%; width: 24px; height: 24px; margin-top: -12px; background: var(--olive); }
  .modal__content li::after {
    content: "";
    position: absolute;
    left: 23px;
    top: 50%;
    width: 6px;
    height: 11px;
    margin-top: -7px;
    border-right: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    transform: rotate(45deg);
  }
  .modal__cta {
    position: sticky;
    bottom: calc(14px + env(safe-area-inset-bottom));
    z-index: 2;
    align-self: stretch;
    justify-content: center;
    margin: 8px 0 calc(14px + env(safe-area-inset-bottom));
    /* Dark lift below, and a paper-coloured glow that fades the list behind it */
    box-shadow: 0 12px 28px rgba(8, 28, 15, .25), 0 -10px 26px 14px var(--paper);
  }
  .about__frame { min-height: 88vh; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-form__submit { width: 100%; justify-content: space-between; }

  .footer__top { grid-template-columns: 1fr; gap: 0; }
  .footer__brand { padding-bottom: 32px; }
  .footer__col { border-top: 1px solid var(--line-light); }
  .footer__heading { width: 100%; margin: 0; padding: 20px 0; cursor: pointer; }
  .footer__heading .chev {
    display: block;
    width: 9px;
    height: 9px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform .3s ease;
  }
  .footer__heading[aria-expanded="true"] .chev { transform: rotate(-135deg); }
  .footer__toggle { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
  .footer__heading[aria-expanded="true"] + .footer__toggle { max-height: var(--h, 400px); padding-bottom: 16px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   Ration Lab — interactive feed mix builder
   ========================================================= */
.lab { position: relative; overflow: hidden; }
.lab::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 60vw;
  max-width: 900px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(146, 155, 42, .16), transparent 62%);
  pointer-events: none;
}
.lab .container { position: relative; }
.lab__note { color: var(--forest-600); background: rgba(19, 60, 31, .06); border: 1px solid rgba(19, 60, 31, .14); }
.lab__note .chip__dot, .lab__note .chip__dot::after { background-color: var(--olive); border-color: var(--olive); }

.lab__grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(20px, 2.4vw, 36px);
  align-items: start;
}

/* ----- Controls panel ----- */
.lab__panel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: clamp(22px, 2.6vw, 40px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: 0 30px 60px -40px rgba(14, 26, 18, .35);
}
.lab__step {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
  padding-block: clamp(18px, 2vw, 28px);
  border-top: 1px solid var(--line);
}
.lab__step:first-child { border-top: 0; padding-top: 0; }
.lab__step:last-child { padding-bottom: 0; }
.lab__step-num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--serif);
}
.lab__step-body { min-width: 0; }
.lab__step-title {
  margin: 4px 0 16px;
  font-family: var(--serif);
  font-size: clamp(21px, 1.6vw, 27px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.lab__row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.lab__row .lab__step-title { margin-bottom: 12px; }
.lab__hint { margin: -4px 0 16px; font-size: 13.5px; color: var(--muted); }

.lab__animals { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 8px; }
.lab-animal { position: relative; display: flex; flex-direction: column; align-items: center; gap: 9px; padding: 12px 6px 11px; border-radius: 18px; border: 1px solid transparent; text-align: center; cursor: pointer; transition: background-color .3s ease, border-color .3s ease, transform .5s var(--ease); }
.lab-animal input { position: absolute; inset: 0; margin: 0; opacity: 0; cursor: pointer; }
.lab-animal img {
  width: clamp(44px, 4vw, 60px);
  height: clamp(44px, 4vw, 60px);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--paper), 0 0 0 3px rgba(14, 26, 18, .16);
  filter: saturate(.7);
  transition: box-shadow .3s ease, filter .3s ease, transform .5s var(--ease);
}
.lab-animal span { font-size: 12.5px; font-weight: 600; line-height: 1.2; color: var(--muted); transition: color .3s ease; }
.lab-animal:hover img { filter: saturate(1); transform: translateY(-2px); }
.lab-animal:has(input:checked) { background: var(--sand); border-color: rgba(14, 26, 18, .08); }
.lab-animal:has(input:checked) img { filter: saturate(1); box-shadow: 0 0 0 2px var(--paper), 0 0 0 4px var(--olive); }
.lab-animal:has(input:checked) span { color: var(--ink); }
.lab-animal:has(input:focus-visible) { box-shadow: 0 0 0 4px rgba(146, 155, 42, .35); }

.lab__stages { gap: 8px; }
.lab__stages .chip-radio span { font-size: 13.5px; padding: 9px 15px; }

.lab__heads { font-family: var(--serif); font-size: clamp(26px, 2.2vw, 36px); line-height: 1; color: var(--forest); font-variant-numeric: tabular-nums; }
.lab__heads small { font-family: var(--sans); font-size: 13px; color: var(--muted); margin-left: 6px; }

/* Range inputs */
.lab-range {
  --c: var(--olive);
  --p: 50%;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 22px;
  margin: 0;
  background: transparent;
  cursor: pointer;
  touch-action: pan-y;
}
.lab-range::-webkit-slider-runnable-track { height: 6px; border-radius: 999px; background: linear-gradient(to right, var(--c) var(--p), rgba(14, 26, 18, .1) var(--p)); }
.lab-range::-moz-range-track { height: 6px; border-radius: 999px; background: rgba(14, 26, 18, .1); }
.lab-range::-moz-range-progress { height: 6px; border-radius: 999px; background: var(--c); }
.lab-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px; margin-top: -8px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--forest);
  box-shadow: 0 2px 8px rgba(14, 26, 18, .25);
  transition: transform .25s var(--ease);
}
.lab-range::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--paper); border: 2px solid var(--forest); box-shadow: 0 2px 8px rgba(14, 26, 18, .25); }
.lab-range:hover::-webkit-slider-thumb, .lab-range:active::-webkit-slider-thumb { transform: scale(1.15); }
.lab-range:focus-visible { outline: none; }
.lab-range:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 4px rgba(146, 155, 42, .4); }
.lab-range:focus-visible::-moz-range-thumb { box-shadow: 0 0 0 4px rgba(146, 155, 42, .4); }
.lab-range--heads { --c: var(--forest); }

.lab__ingredients { display: flex; flex-direction: column; gap: 6px; }
.lab-ing { display: grid; grid-template-columns: minmax(0, 1fr) 54px; grid-template-rows: auto auto; column-gap: 12px; align-items: center; padding: 4px 0; }
.lab-ing__name { grid-column: 1; grid-row: 1; display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; }
.lab-ing__dot { width: 10px; height: 10px; border-radius: 3px; background: var(--c); flex: none; }
.lab-ing__val { grid-column: 2; grid-row: 1 / 3; justify-self: end; font-family: var(--serif); font-size: 20px; color: var(--forest); font-variant-numeric: tabular-nums; }
.lab-ing__val small { font-family: var(--sans); font-size: 11px; color: var(--muted); }
.lab-ing .lab-range { grid-column: 1; grid-row: 2; height: 18px; }
.lab-ing.is-hot .lab-ing__name { color: var(--forest-600); }

.lab__reset {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 12px; border-radius: 999px;
  border: 1px solid rgba(14, 26, 18, .16); background: transparent;
  font: inherit; font-size: 12.5px; font-weight: 600; color: var(--forest-600); cursor: pointer;
  transition: background-color .3s ease, border-color .3s ease;
}
.lab__reset:hover { background: var(--sand); border-color: rgba(14, 26, 18, .3); }
.lab__reset:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(146, 155, 42, .35); }
.lab__reset svg { transition: transform .6s var(--ease); }
.lab__reset:hover svg { transform: rotate(-300deg); }

/* ----- Result panel ----- */
.lab__result {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(20px, 2.4vw, 40px);
  padding: clamp(22px, 2.6vw, 40px);
  background: var(--forest-900);
  color: var(--cream);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.lab__result::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 20% 100%, rgba(146, 155, 42, .22), transparent 70%),
    radial-gradient(50% 40% at 100% 0%, rgba(30, 85, 48, .5), transparent 70%);
}
.lab__sack-wrap { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.lab-sack { width: 100%; max-width: 260px; height: auto; filter: drop-shadow(0 24px 30px rgba(0, 0, 0, .35)); }
.lab-sack__layer { transition: y .7s var(--ease), height .7s var(--ease); }
.lab-sack__grain { animation: lab-fall .9s cubic-bezier(.4, 0, .8, 1) forwards; }
@keyframes lab-fall {
  from { transform: translateY(-40px); opacity: 0; }
  20% { opacity: 1; }
  to { transform: translateY(150px); opacity: 0; }
}
.lab__legend { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 12px; }
.lab__legend li { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(246, 243, 234, .75); font-variant-numeric: tabular-nums; transition: opacity .3s ease; }
.lab__legend li.is-zero { opacity: .35; }
.lab__legend i { width: 9px; height: 9px; border-radius: 2px; background: var(--c); }
.lab__legend b { font-weight: 700; color: var(--cream); }

.lab__analysis { display: flex; flex-direction: column; gap: clamp(18px, 2vw, 26px); min-width: 0; }
.lab__score { display: flex; align-items: center; gap: 16px; }
.lab-ring { width: 76px; height: 76px; flex: none; }
#lab-ring-fill { transition: stroke-dashoffset .8s var(--ease), stroke .4s ease; }
.lab__score-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--olive-300); }
.lab__status { display: block; margin-top: 4px; font-family: var(--serif); font-weight: 400; font-size: clamp(19px, 1.5vw, 24px); line-height: 1.2; }
.lab__status.is-warn { color: #f1c56b; }
.lab__status.is-ok { color: var(--cream); }

.lab__gauges { display: flex; flex-direction: column; gap: 12px; }
.lab-gauge { display: grid; grid-template-columns: minmax(0, 1fr) auto; row-gap: 7px; align-items: baseline; font-size: 13px; }
.lab-gauge__name { font-weight: 600; color: rgba(246, 243, 234, .85); }
.lab-gauge__val { font-family: var(--serif); font-size: 18px; font-variant-numeric: tabular-nums; color: var(--cream); }
.lab-gauge__val small { font-family: var(--sans); font-size: 11px; color: rgba(246, 243, 234, .6); margin-left: 3px; }
.lab-gauge__track { grid-column: 1 / -1; position: relative; height: 8px; border-radius: 999px; background: rgba(246, 243, 234, .12); }
.lab-gauge__target { position: absolute; top: 0; bottom: 0; border-radius: 999px; background: rgba(201, 207, 122, .35); border: 1px solid rgba(201, 207, 122, .6); transition: left .5s var(--ease), width .5s var(--ease); }
.lab-gauge__mark {
  position: absolute; top: 50%; width: 16px; height: 16px; margin: -8px 0 0 -8px;
  border-radius: 50%; background: var(--olive-300); border: 2px solid var(--forest-900);
  box-shadow: 0 0 0 2px rgba(246, 243, 234, .4);
  transition: left .6s var(--ease), background-color .3s ease;
}
.lab-gauge__mark.is-out { background: #f1c56b; }
.lab-gauge__range { grid-column: 1 / -1; font-size: 11.5px; color: rgba(246, 243, 234, .55); margin-top: -2px; }

.lab__stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 0; }
.lab__stats > div { padding: 14px 16px; border-radius: 16px; background: rgba(246, 243, 234, .06); border: 1px solid rgba(246, 243, 234, .1); }
.lab__stats dt { font-size: 11.5px; font-weight: 600; letter-spacing: .04em; color: rgba(246, 243, 234, .6); }
.lab__stats dd { margin: 4px 0 0; font-family: var(--serif); font-size: clamp(20px, 1.7vw, 26px); line-height: 1.1; font-variant-numeric: tabular-nums; }
.lab__stats dd small { font-family: var(--sans); font-size: 12px; color: rgba(246, 243, 234, .6); margin-left: 4px; }

.lab__actions { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lab__actions .btn { width: 100%; max-width: 100%; justify-content: center; white-space: normal; text-align: center; line-height: 1.3; padding-block: 12px; }
.lab__link {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-align: center;
  padding: 0; border: 0; background: none; font: inherit; font-size: 14px; font-weight: 600;
  color: var(--olive-300); cursor: pointer; text-decoration: underline; text-decoration-color: rgba(201, 207, 122, .4); text-underline-offset: 4px;
  transition: text-decoration-color .3s ease;
}
.lab__link:hover { text-decoration-color: currentColor; }
.lab__link:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(146, 155, 42, .35); border-radius: 6px; }
.lab__disclaimer { margin: 0; font-size: 12.5px; line-height: 1.5; color: rgba(246, 243, 234, .5); }

@media (max-width: 1180px) {
  .lab__grid { grid-template-columns: 1fr; }
  .lab__result { grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); }
}
@media (max-width: 767px) {
  .lab__animals { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lab__step { grid-template-columns: 1fr; gap: 10px; }
  .lab__step-num { width: 28px; height: 28px; font-size: 11px; }
  .lab__result { grid-template-columns: 1fr; }
  .lab-sack { max-width: 200px; }
  .lab__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lab__stats dd { font-size: 20px; }
}
@media (max-width: 420px) {
  .lab__stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .lab__stats > div { padding: 12px; }
}

/* =========================================================
   Hero — drifting grain particles
   ========================================================= */
.hero__grain { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; pointer-events: none; }

/* =========================================================
   Journey of the grain — scroll-driven process
   ========================================================= */
.journey { position: relative; overflow: clip; }
.journey__grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
}
.journey__stage-wrap { position: sticky; top: calc(var(--header-h) + 20px); }
.journey__stage {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(22px, 2.4vw, 36px);
  border-radius: var(--r-xl);
  background: var(--forest-900);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.journey__stage::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 55% at 80% 100%, rgba(146, 155, 42, .22), transparent 70%),
    radial-gradient(45% 40% at 0% 0%, rgba(30, 85, 48, .55), transparent 70%);
}
.journey__stage-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.journey__counter { display: inline-flex; align-items: baseline; gap: 6px; font-family: var(--serif); font-size: clamp(30px, 2.6vw, 44px); line-height: 1; letter-spacing: -.02em; }
.journey__counter b { font-weight: 400; display: inline-block; min-width: 1.35em; }
.journey__counter span { font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: .1em; color: rgba(246, 243, 234, .55); }
.journey__dots { display: inline-flex; gap: 6px; }
.journey__dots i { width: 22px; height: 4px; border-radius: 999px; background: rgba(246, 243, 234, .18); transition: background-color .4s ease, width .4s var(--ease); }
.journey__dots i.is-done { background: rgba(201, 207, 122, .55); }
.journey__dots i.is-active { background: var(--olive-300); width: 34px; }

.journey__scene { margin-inline: -6px; }
.journey-belt { width: 100%; height: auto; display: block; }

/* stations crossfade */
.journey-station { opacity: 0; transform: translateY(14px) scale(.96); transform-origin: 260px 100px; transition: opacity .5s ease, transform .7s var(--ease); pointer-events: none; }
.journey__stage[data-step="1"] .journey-station[data-for="1"],
.journey__stage[data-step="2"] .journey-station[data-for="2"],
.journey__stage[data-step="3"] .journey-station[data-for="3"],
.journey__stage[data-step="4"] .journey-station[data-for="4"],
.journey__stage[data-step="5"] .journey-station[data-for="5"],
.journey__stage[data-step="6"] .journey-station[data-for="6"] { opacity: 1; transform: none; }

.journey-spin { animation: journey-spin 6s linear infinite; }
@keyframes journey-spin { to { transform: rotate(360deg); } }
.journey-wave { animation: journey-wave 1.8s ease-in-out infinite alternate; }
@keyframes journey-wave { from { transform: translateX(-6px); } to { transform: translateX(6px); } }
.journey-roller { animation: journey-spin 3s linear infinite; }
.journey-belt__dash { animation: journey-dash 1.2s linear infinite; }
@keyframes journey-dash { to { stroke-dashoffset: -24; } }

/* items travelling on the belt */
.journey-item { animation: journey-travel 6.4s linear infinite; animation-delay: calc(var(--i) * -.8s); }
@keyframes journey-travel { from { transform: translate(20px, 186px); } to { transform: translate(500px, 186px); } }
.journey-item .s { fill: #e2b93b; transition: opacity .5s ease; opacity: 0; }
.journey-item .s-flour { fill: #f0e6c8; }
.journey-item .s-sack { fill: #e7dfc7; }
.journey__stage[data-step="1"] .s-grain, .journey__stage[data-step="2"] .s-grain { opacity: 1; }
.journey__stage[data-step="3"] .s-flour { opacity: 1; }
.journey__stage[data-step="4"] .s-mix { opacity: 1; }
.journey__stage[data-step="5"] .s-sack, .journey__stage[data-step="6"] .s-sack { opacity: 1; }

.journey__caption { display: flex; flex-direction: column; gap: 4px; min-height: 58px; }
.journey__caption strong { font-family: var(--serif); font-weight: 400; font-size: clamp(22px, 1.9vw, 30px); line-height: 1.15; letter-spacing: -.01em; }
.journey__caption span { font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--olive-300); }
.journey__caption.is-switching strong, .journey__caption.is-switching span { animation: journey-caption .5s var(--ease); }
@keyframes journey-caption { from { opacity: 0; transform: translateY(8px); } }

/* steps list */
.journey__steps {
  --progress: 0;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0 0 0 clamp(28px, 3vw, 44px);
}
.journey__steps::before, .journey__steps::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  border-radius: 2px;
  background: var(--line);
}
.journey__steps::after { background: var(--olive); transform-origin: top; transform: scaleY(var(--progress)); }
.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  padding-block: clamp(26px, 3.4vw, 52px);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: opacity .5s ease;
}
.journey-step:last-child { border-bottom: 0; }
.journey-step::before {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(28px, 3vw, 44px) + 2px);
  top: calc(clamp(26px, 3.4vw, 52px) + 10px);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid rgba(14, 26, 18, .25);
  transition: background-color .4s ease, border-color .4s ease, transform .5s var(--ease), box-shadow .4s ease;
}
.journey-step.is-active::before { background: var(--olive); border-color: var(--olive); transform: scale(1.3); box-shadow: 0 0 0 6px rgba(146, 155, 42, .18); }
.journey-step.is-done::before { background: var(--olive); border-color: var(--olive); }
.journey-step__num { font-family: var(--serif); font-size: 15px; color: var(--muted); padding-top: 6px; transition: color .4s ease; }
.journey-step h3 { margin: 0 0 10px; font-family: var(--serif); font-weight: 400; font-size: clamp(24px, 2.2vw, 36px); line-height: 1.1; letter-spacing: -.015em; transition: color .4s ease, transform .6s var(--ease); }
.journey-step p { margin: 0; max-width: 520px; color: var(--muted); }
.journey-step.is-active .journey-step__num { color: var(--olive-700); }
.journey-step.is-active h3 { transform: translateX(6px); }
.journey-step:not(.is-active) h3 { color: rgba(14, 26, 18, .6); }
.journey-step:hover h3 { color: var(--ink); }

@media (max-width: 1024px) {
  .journey__grid { grid-template-columns: 1fr; gap: 24px; }
  .journey__stage-wrap { top: calc(var(--header-h) + 8px); z-index: 2; }
  .journey__stage { padding: 16px 18px; gap: 8px; }
  .journey__scene { max-width: 360px; margin: 0 auto; }
  .journey__caption { min-height: 0; }
  .journey__caption strong { font-size: 20px; }
  .journey-step { padding-block: 26px; }
  .journey-step p { font-size: 15px; }
}
@media (max-width: 767px) {
  .journey__stage-wrap { top: calc(var(--header-h) + 4px); }
  .journey__stage { flex-direction: row; flex-wrap: wrap; align-items: center; padding: 14px 16px; }
  .journey__stage-top { flex: 1 1 100%; }
  .journey__scene { flex: 0 0 150px; max-width: 150px; margin: 0; }
  .journey__caption { flex: 1 1 120px; }
  .journey__counter { font-size: 28px; }
  .journey__dots i { width: 16px; }
  .journey__dots i.is-active { width: 24px; }
}

/* =========================================================
   Legal pages (privacy policy)
   ========================================================= */
.legal-page { background: var(--cream); }
.legal-page::before { display: none; }
.legal-bar { position: sticky; top: 0; z-index: 10; background: rgba(246, 243, 234, .92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.legal-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 76px; }
.legal-bar__logo img { display: block; width: 120px; height: auto; }
.legal-bar__actions { display: flex; align-items: center; gap: 14px; }
.lang--dark { border-color: rgba(14, 26, 18, .2); }
.lang--dark a { color: var(--ink); }
.lang--dark a[aria-current="true"] { background: var(--forest); color: var(--cream); }
.legal { padding-block: clamp(48px, 7vw, 110px); }
.legal__wrap { max-width: 820px; }
.legal h1 { margin: 22px 0 10px; font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 5vw, 76px); line-height: 1.02; letter-spacing: -.022em; }
.legal h1 em { font-style: italic; color: var(--olive-700); }
.legal__updated { margin: 0 0 28px; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.legal .lead { max-width: none; margin-bottom: 40px; }
.legal h2 { margin: 44px 0 12px; font-family: var(--serif); font-weight: 400; font-size: clamp(24px, 2.2vw, 32px); line-height: 1.15; letter-spacing: -.01em; }
.legal p, .legal li { line-height: 1.7; color: rgba(14, 26, 18, .82); }
.legal ul { list-style: disc; margin: 0 0 16px; padding-left: 24px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--forest-600); text-decoration: underline; text-underline-offset: 3px; }
.legal strong { color: var(--ink); }
.legal-footer { border-top: 1px solid var(--line); padding-block: 22px; font-size: 13.5px; color: var(--muted); }
.legal-footer .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.legal-footer a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 600px) {
  .legal-bar__actions .btn { display: none; }
}
