@font-face {
  font-family: "Don Display";
  src: local("Arial Black");
  font-display: swap;
}

:root {
  --forest-950: #061d16;
  --forest-900: #08281e;
  --forest-800: #103c2b;
  --forest-700: #195239;
  --cream: #f5efdf;
  --paper: #fffaf0;
  --ink: #102119;
  --tomato: #e74327;
  --tomato-dark: #b82d1a;
  --carrot: #f58a2b;
  --lime: #c9dc79;
  --yellow: #f3cb62;
  --muted: #69766d;
  --line: rgba(16, 33, 25, 0.16);
  --shell: min(1180px, calc(100% - 48px));
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--forest-950);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

img,
svg {
  display: block;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

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

.demo-bar {
  position: relative;
  z-index: 90;
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 5px 20px;
  background: var(--yellow);
  color: #322a12;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

.demo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tomato);
  box-shadow: 0 0 0 4px rgba(231, 67, 39, 0.14);
}

.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 30px;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--tomato);
  transform: scaleX(0);
  transform-origin: left;
}

@supports (animation-timeline: scroll()) {
  .scroll-progress span {
    animation: page-progress linear both;
    animation-timeline: scroll(root block);
  }

  @keyframes page-progress {
    to { transform: scaleX(1); }
  }
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 30px;
  left: 0;
  width: 100%;
  color: white;
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease, transform 0.35s var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(245, 239, 223, 0.92);
  color: var(--ink);
  box-shadow: 0 8px 30px rgba(6, 29, 22, 0.12);
  backdrop-filter: blur(14px);
}

body[data-scene="contact"] .site-header.is-scrolled {
  background: rgba(6, 29, 22, 0.93);
  color: white;
}

.header-inner {
  display: grid;
  min-height: var(--header-h);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  overflow: visible;
  fill: var(--tomato);
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.16));
}

.brand-mark circle {
  stroke: currentColor;
  stroke-width: 1.8;
}

.brand-mark .brand-leaf {
  fill: var(--lime);
  stroke: var(--forest-950);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.brand-mark .brand-shirt {
  fill: var(--cream);
}

.brand-mark .brand-tie {
  fill: var(--forest-950);
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: "Don Display", Impact, Haettenschweiler, sans-serif;
  font-size: 19px;
  letter-spacing: 0.055em;
}

.brand-copy small {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  opacity: 0.72;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 31px;
}

.site-nav a {
  position: relative;
  padding: 9px 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--tomato);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.38s var(--ease-out);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-phone {
  display: inline-flex;
  width: max-content;
  align-items: center;
  justify-self: end;
  gap: 8px;
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.is-scrolled .header-phone {
  border-color: rgba(16, 33, 25, 0.24);
}

.header-phone:hover,
.header-phone:focus-visible {
  border-color: var(--tomato);
  background: var(--tomato);
  color: white;
  transform: translateY(-2px);
}

.header-phone svg {
  width: 15px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: min(900px, calc(100svh - 30px));
  overflow: hidden;
  background: var(--forest-900);
  color: white;
  isolation: isolate;
}

.hero-image,
.hero-overlay,
.hero-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  transform: scale(1.045);
  transition: transform 1.7s var(--ease-out), filter 1.2s ease;
}

.page-loaded .hero-image {
  transform: scale(1);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 29, 22, 0.86) 0%, rgba(6, 29, 22, 0.5) 42%, rgba(6, 29, 22, 0.05) 68%, rgba(6, 29, 22, 0.2) 100%),
    linear-gradient(0deg, rgba(6, 29, 22, 0.44) 0%, transparent 40%);
}

.hero-grain {
  z-index: -1;
  opacity: 0.2;
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 7px),
    radial-gradient(circle at 70% 35%, transparent 0, rgba(6, 29, 22, 0.12) 55%, rgba(6, 29, 22, 0.62) 100%);
  mix-blend-mode: soft-light;
}

.hero-layout {
  position: relative;
  display: flex;
  min-height: min(900px, calc(100svh - 30px));
  align-items: center;
  padding-top: 122px;
  padding-bottom: 120px;
}

.hero-copy {
  width: min(620px, 55%);
  min-width: 0;
  padding-top: 22px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.145em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: var(--tomato);
}

.eyebrow-dark {
  color: var(--forest-700);
}

.hero h1,
.chapter h2 {
  font-family: "Don Display", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(65px, 7.6vw, 116px);
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(50px) rotate(1deg);
  transition: opacity 0.9s ease 0.08s, transform 1.05s var(--ease-out) 0.08s;
}

.title-line + .title-line {
  transition-delay: 0.17s;
}

.page-loaded .title-line {
  opacity: 1;
  transform: none;
}

.title-accent,
.chapter h2 em {
  color: var(--yellow);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.055em;
  text-transform: none;
}

.hero h1 .title-accent {
  margin-top: 0.08em;
  font-size: 0.56em;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-lead {
  max-width: 570px;
  margin-bottom: 31px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  transition: transform 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button:hover svg,
.button:focus-visible svg {
  transform: translateX(4px);
}

.button-primary {
  background: var(--tomato);
  box-shadow: 0 14px 34px rgba(231, 67, 39, 0.3);
  color: white;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #f04c30;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: white;
  background: white;
  color: var(--forest-900);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-proof span + span::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.hero-proof strong {
  color: white;
  font-weight: 900;
}

.hero-seal {
  position: absolute;
  right: 2%;
  bottom: 76px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  color: var(--forest-900);
  transform: rotate(-9deg) scale(0.82);
  opacity: 0;
  transition: opacity 0.8s ease 0.65s, transform 1s var(--ease-out) 0.65s;
}

.page-loaded .hero-seal {
  opacity: 1;
  transform: rotate(-4deg) scale(1);
}

.hero-seal svg {
  width: 100%;
  height: 100%;
}

.hero-seal text {
  fill: currentColor;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.hero-seal .seal-leaf {
  fill: none;
  stroke: var(--forest-800);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.scroll-cue {
  position: absolute;
  bottom: 33px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 28px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 99px;
}

.scroll-cue i::after {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 99px;
  background: var(--yellow);
  content: "";
  transform: translateX(-50%);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%, 100% { opacity: 0.25; transform: translate(-50%, 0); }
  45% { opacity: 1; }
  70% { opacity: 0; transform: translate(-50%, 16px); }
}

.produce-ticker {
  position: relative;
  z-index: 8;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--tomato);
  color: white;
  transform: rotate(-1.2deg) scale(1.03);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 26px;
  padding: 15px 0;
  font-family: "Don Display", Impact, sans-serif;
  font-size: 18px;
  letter-spacing: 0.07em;
  animation: ticker 24s linear infinite;
}

.ticker-track i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.chapter {
  position: relative;
  z-index: 10;
  margin-top: -5px;
  overflow: clip;
  border-radius: 52px 52px 0 0;
  isolation: isolate;
}

.chapter + .chapter {
  margin-top: -48px;
}

.chapter-tab {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  padding: 8px 18px 10px;
  border-radius: 0 0 16px 16px;
  background: var(--forest-900);
  color: white;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  transform: translateX(-50%);
}

.chapter-inner {
  padding-top: 118px;
  padding-bottom: 145px;
}

.offer-chapter {
  z-index: 12;
  background:
    radial-gradient(circle at 88% 16%, rgba(243, 203, 98, 0.34), transparent 23%),
    linear-gradient(var(--paper), var(--cream));
}

.offer-chapter::before,
.process-chapter::before {
  position: absolute;
  z-index: -1;
  top: 82px;
  right: -0.04em;
  color: rgba(16, 33, 25, 0.035);
  content: "RODZINA";
  font-family: "Don Display", Impact, sans-serif;
  font-size: clamp(110px, 18vw, 270px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.75;
  pointer-events: none;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.chapter-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 64px;
}

.chapter h2 {
  margin-bottom: 0;
  font-size: clamp(52px, 6.2vw, 88px);
}

.chapter-heading h2 em,
.process-intro h2 em {
  color: var(--tomato);
}

.chapter-heading > p {
  max-width: 430px;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 17px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.offer-card {
  position: relative;
  min-height: 330px;
  padding: 29px 29px 32px;
  overflow: hidden;
  border: 1px solid rgba(16, 33, 25, 0.13);
  border-radius: 27px;
  box-shadow: 0 16px 45px rgba(8, 40, 30, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s var(--ease-out);
}

.offer-card:hover {
  z-index: 2;
  box-shadow: 0 25px 60px rgba(8, 40, 30, 0.15);
  transform: translateY(-7px) rotate(0deg);
}

.card-vegetables {
  background: var(--lime);
  transform: rotate(-1.2deg);
}

.card-fruit {
  background: var(--tomato);
  color: white;
  transform: translateY(-14px);
}

.card-season {
  background: var(--yellow);
  transform: rotate(1.2deg);
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 54px;
}

.card-number {
  font-family: Georgia, serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
}

.card-top svg {
  width: 78px;
  height: 78px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
  opacity: 0.88;
  transition: transform 0.45s var(--ease-out);
}

.offer-card:hover .card-top svg {
  transform: rotate(-7deg) scale(1.07);
}

.offer-card h3 {
  margin-bottom: 12px;
  font-family: "Don Display", Impact, sans-serif;
  font-size: 37px;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.offer-card p {
  max-width: 310px;
  margin-bottom: 0;
  opacity: 0.78;
}

.offer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
}

.audience-chips,
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.audience-chips span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest-700);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.text-link {
  position: relative;
  font-size: 14px;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.process-chapter {
  z-index: 14;
  background:
    radial-gradient(circle at 12% 75%, rgba(255, 255, 255, 0.26), transparent 28%),
    var(--lime);
}

.process-chapter::before {
  top: auto;
  right: auto;
  bottom: 55px;
  left: -0.02em;
  content: "UKŁAD";
  color: rgba(16, 33, 25, 0.045);
  transform: rotate(2deg);
}

.process-chapter .chapter-tab {
  background: var(--tomato);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: clamp(70px, 9vw, 140px);
  padding-top: 128px;
  padding-bottom: 155px;
}

.process-intro > p:not(.eyebrow) {
  max-width: 440px;
  margin: 27px 0 0;
  color: rgba(16, 33, 25, 0.69);
  font-size: 17px;
}

.since-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 33px;
  padding: 10px 18px 10px 12px;
  border: 1px solid rgba(16, 33, 25, 0.24);
  border-radius: 999px;
}

.since-badge strong {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--forest-900);
  color: white;
  font-size: 13px;
}

.since-badge span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.process-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-rail::before,
.process-rail::after {
  position: absolute;
  z-index: -1;
  top: 32px;
  right: 12%;
  left: 12%;
  height: 4px;
  border-radius: 99px;
  content: "";
}

.process-rail::before {
  background: rgba(16, 33, 25, 0.18);
}

.process-rail::after {
  background: var(--tomato);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.4s var(--ease-out) 0.32s;
}

.process-chapter.is-active .process-rail::after {
  transform: scaleX(1);
}

.process-rail li {
  text-align: center;
}

.step-dot {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  margin: 0 auto 28px;
  border: 5px solid var(--lime);
  border-radius: 50%;
  background: var(--forest-900);
  box-shadow: 0 0 0 1px rgba(16, 33, 25, 0.18), 0 10px 22px rgba(8, 40, 30, 0.13);
  color: white;
  font-family: Georgia, serif;
  font-size: 22px;
  font-style: italic;
  transform: scale(0.7);
  transition: transform 0.65s var(--ease-out);
}

.process-chapter.is-active li:nth-child(1) .step-dot { transition-delay: 0.45s; }
.process-chapter.is-active li:nth-child(2) .step-dot { transition-delay: 0.7s; }
.process-chapter.is-active li:nth-child(3) .step-dot { transition-delay: 0.95s; }

.process-chapter.is-active .step-dot {
  transform: scale(1);
}

.process-rail h3 {
  margin-bottom: 9px;
  font-family: "Don Display", Impact, sans-serif;
  font-size: 23px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

.process-rail p {
  margin-bottom: 0;
  color: rgba(16, 33, 25, 0.67);
  font-size: 14px;
}

.contact-chapter {
  z-index: 16;
  background:
    radial-gradient(circle at 80% 20%, rgba(231, 67, 39, 0.2), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 8px),
    var(--forest-950);
  color: white;
}

.contact-chapter .chapter-tab {
  background: var(--yellow);
  color: var(--forest-950);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
  padding-top: 135px;
  padding-bottom: 128px;
}

.contact-copy h2 {
  max-width: 670px;
  font-size: clamp(49px, 5.4vw, 78px);
}

.contact-copy h2 em {
  color: var(--yellow);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 550px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 16px;
}

.contact-actions {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.contact-actions small {
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.giant-phone {
  position: relative;
  padding-bottom: 9px;
  font-family: "Don Display", Impact, sans-serif;
  font-size: clamp(42px, 5vw, 74px);
  letter-spacing: -0.045em;
  line-height: 1;
  white-space: nowrap;
}

.giant-phone::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  border-radius: 99px;
  background: var(--tomato);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s var(--ease-out) 0.35s;
}

.contact-chapter.is-active .giant-phone::after {
  transform: scaleX(1);
}

.giant-phone:hover,
.giant-phone:focus-visible {
  color: var(--yellow);
}

.email-link {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  transition: color 0.2s ease;
}

.email-link:hover,
.email-link:focus-visible {
  color: white;
}

.social-row {
  margin-top: 34px;
}

.social-row a {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-row a:hover,
.social-row a:focus-visible {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--forest-950);
  transform: translateY(-2px);
}

.contact-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.07);
  font-family: "Don Display", Impact, sans-serif;
  font-size: clamp(62px, 9vw, 135px);
  letter-spacing: -0.025em;
  line-height: 0.9;
  white-space: nowrap;
}

.contact-marquee span {
  display: inline-block;
  padding: 20px 0 10px;
  animation: contact-marquee 32s linear infinite;
}

@keyframes contact-marquee {
  to { transform: translateX(-35%); }
}

.site-footer {
  position: relative;
  z-index: 17;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--forest-950);
  color: rgba(255, 255, 255, 0.5);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-top: 32px;
  padding-bottom: 35px;
  font-size: 11px;
}

.footer-inner p {
  margin-bottom: 0;
}

.footer-inner p:last-child {
  max-width: 470px;
  text-align: right;
}

.footer-inner strong {
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
}

/* Content remains visible without JavaScript. Motion only activates after app.js runs. */
.motion-ready [data-reveal] {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.9s var(--ease-out);
}

.motion-ready [data-reveal="up"] { transform: translateY(46px); }
.motion-ready [data-reveal="left"] { transform: translateX(-44px); }
.motion-ready [data-reveal="right"] { transform: translateX(44px); }
.motion-ready [data-reveal="split"] { transform: translateY(45px) scale(0.985); }
.motion-ready [data-reveal="card-left"] { transform: translate(-48px, 58px) rotate(-4deg); }
.motion-ready [data-reveal="card-up"] { transform: translateY(70px) rotate(1deg); }
.motion-ready [data-reveal="card-right"] { transform: translate(48px, 58px) rotate(4deg); }
.motion-ready [data-reveal="step"] { transform: translateY(35px); }

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.motion-ready .offer-card:nth-child(2),
.motion-ready .process-rail li:nth-child(2) { transition-delay: 0.11s; }

.motion-ready .offer-card:nth-child(3),
.motion-ready .process-rail li:nth-child(3) { transition-delay: 0.22s; }

@supports (animation-timeline: view()) {
  .chapter-tab {
    animation: tab-drift linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 35%;
  }

  @keyframes tab-drift {
    from { transform: translate(-50%, -22px) scale(0.9); }
    to { transform: translate(-50%, 0) scale(1); }
  }
}

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

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 36px, 820px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 120px max(24px, calc((100vw - 780px) / 2));
    background:
      radial-gradient(circle at 78% 25%, rgba(231, 67, 39, 0.25), transparent 24%),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 8px),
      var(--forest-950);
    color: white;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: visibility 0s linear 0.4s, opacity 0.35s ease, transform 0.5s var(--ease-out);
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition-delay: 0s;
  }

  .site-nav a {
    font-family: "Don Display", Impact, sans-serif;
    font-size: clamp(42px, 10vw, 72px);
    letter-spacing: -0.035em;
    line-height: 1.05;
    text-transform: uppercase;
  }

  .site-nav a::after {
    height: 4px;
  }

  .header-phone {
    display: none;
  }

  .menu-toggle {
    z-index: 2;
    display: block;
    justify-self: end;
  }

  .menu-active {
    color: white !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
  }

  .menu-active .menu-toggle > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-active .menu-toggle > span:nth-child(2) { opacity: 0; }
  .menu-active .menu-toggle > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero,
  .hero-layout {
    min-height: max(720px, calc(100svh - 30px));
  }

  .hero-image {
    object-position: 60% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 29, 22, 0.93) 0%, rgba(6, 29, 22, 0.67) 54%, rgba(6, 29, 22, 0.15) 100%),
      linear-gradient(0deg, rgba(6, 29, 22, 0.45), transparent 55%);
  }

  .hero-copy {
    width: min(610px, 72%);
  }

  .hero-seal {
    right: 0;
    bottom: 70px;
    width: 100px;
    height: 100px;
  }

  .chapter-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .chapter-heading > p {
    max-width: 600px;
  }

  .offer-card {
    min-height: 310px;
    padding: 25px;
  }

  .offer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .process-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .process-intro {
    max-width: 680px;
  }

  .contact-copy {
    max-width: 750px;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 30px);
    --header-h: 70px;
  }

  html {
    scroll-padding-top: 75px;
  }

  .demo-bar {
    min-height: 27px;
    padding-inline: 12px;
    font-size: 9px;
    letter-spacing: 0.045em;
  }

  .scroll-progress,
  .site-header {
    top: 27px;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .hero,
  .hero-layout {
    min-height: max(700px, calc(100svh - 27px));
  }

  .hero-image {
    object-position: 67% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 29, 22, 0.92) 0%, rgba(6, 29, 22, 0.68) 68%, rgba(6, 29, 22, 0.35) 100%),
      linear-gradient(0deg, rgba(6, 29, 22, 0.6) 0%, transparent 60%);
  }

  .hero-layout {
    align-items: flex-start;
    padding-top: 124px;
    padding-bottom: 112px;
  }

  .hero-copy {
    width: 100%;
    padding-top: 0;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 9px;
  }

  .hero h1 {
    max-width: 500px;
    margin-bottom: 22px;
    font-size: clamp(52px, 15.5vw, 62px);
  }

  .hero h1 .title-accent {
    max-width: 350px;
    font-size: 0.52em;
  }

  .hero-lead {
    max-width: 92%;
    margin-bottom: 25px;
    font-size: 16px;
  }

  .hero-actions {
    max-width: 310px;
  }

  .button {
    width: 100%;
  }

  .button-ghost {
    display: none;
  }

  .hero-proof {
    max-width: 300px;
    gap: 8px 12px;
    margin-top: 26px;
    font-size: 9px;
  }

  .hero-proof span + span::before {
    display: none;
  }

  .hero-seal {
    right: -12px;
    bottom: 28px;
    width: 86px;
    height: 86px;
  }

  .scroll-cue {
    bottom: 28px;
  }

  .scroll-cue span {
    display: none;
  }

  .produce-ticker {
    transform: rotate(-1.8deg) scale(1.05);
  }

  .ticker-track {
    gap: 19px;
    padding: 12px 0;
    font-size: 15px;
  }

  .chapter {
    border-radius: 31px 31px 0 0;
  }

  .chapter + .chapter {
    margin-top: -28px;
  }

  .chapter-tab {
    padding: 7px 14px 8px;
    border-radius: 0 0 12px 12px;
    font-size: 8px;
  }

  .chapter-inner {
    padding-top: 86px;
    padding-bottom: 105px;
  }

  .chapter-heading {
    margin-bottom: 42px;
  }

  .chapter h2,
  .contact-copy h2 {
    font-size: clamp(43px, 14vw, 65px);
    line-height: 0.9;
  }

  .chapter-heading > p,
  .process-intro > p:not(.eyebrow),
  .contact-copy > p:not(.eyebrow) {
    font-size: 15px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .offer-card,
  .card-vegetables,
  .card-fruit,
  .card-season {
    min-height: 235px;
    transform: none;
  }

  .card-top {
    margin-bottom: 28px;
  }

  .card-top svg {
    width: 60px;
    height: 60px;
  }

  .offer-card h3 {
    font-size: 33px;
  }

  .offer-bottom {
    margin-top: 35px;
  }

  .text-link {
    max-width: 290px;
  }

  .process-layout {
    gap: 52px;
    padding-top: 92px;
    padding-bottom: 120px;
  }

  .process-rail {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .process-rail::before,
  .process-rail::after {
    top: 30px;
    right: auto;
    bottom: 31px;
    left: 31px;
    width: 4px;
    height: auto;
  }

  .process-rail::after {
    transform: scaleY(0);
    transform-origin: top;
  }

  .process-chapter.is-active .process-rail::after {
    transform: scaleY(1);
  }

  .process-rail li {
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: center;
    gap: 20px;
    text-align: left;
  }

  .step-dot {
    width: 64px;
    height: 64px;
    margin: 0;
  }

  .process-rail h3 {
    font-size: 21px;
  }

  .contact-layout {
    gap: 49px;
    padding-top: 94px;
    padding-bottom: 90px;
  }

  .giant-phone {
    font-size: clamp(40px, 13vw, 62px);
  }

  .email-link {
    font-size: 15px;
  }

  .social-row a {
    padding: 8px 11px;
    font-size: 9px;
  }

  .contact-marquee {
    font-size: 58px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 18px;
  }

  .footer-inner p:last-child {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready [data-reveal],
  .title-line,
  .hero-seal {
    opacity: 1;
    transform: none;
  }

  .process-rail::after,
  .giant-phone::after {
    transform: none;
  }
}
