/* ============================================================
   NATTY FARMS — pasture-raised eggs
   Eggshell cream · deep pasture green · yolk gold
   Fraunces (display) + Karla (body)
   ============================================================ */

:root {
  --paper:      #FBF6EB;
  --paper-deep: #F4ECDA;
  --green-900:  #1B2E1F;
  --green-700:  #2C4A33;
  --green-500:  #49684F;
  --sage:       #DEE6D2;
  --yolk:       #EFA528;
  --yolk-deep:  #EA953C;
  --terracotta: #C2552F;
  --line:       rgba(27, 46, 31, .14);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Karla", "Avenir Next", "Segoe UI", sans-serif;
  --font-brand: "Baloo 2", "Arial Rounded MT Bold", var(--font-body);

  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --container: 1160px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--green-900);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: url("assets/cursor.png") 24 8, auto;
  cursor: -webkit-image-set(url("assets/cursor.png") 1x, url("assets/cursor-2x.png") 2x) 24 8, auto;
  cursor: image-set(url("assets/cursor.png") 1x, url("assets/cursor-2x.png") 2x) 24 8, auto;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
em { font-style: italic; }

/* grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

.skip-link {
  position: absolute;
  left: -200vw;
  top: 0;
  background: var(--green-900);
  color: var(--paper);
  padding: .75rem 1.25rem;
  z-index: 200;
}
.skip-link:focus { left: 0; }

.container {
  width: min(var(--container), 92vw);
  margin-inline: auto;
}
.container--narrow { width: min(760px, 92vw); }

.section { padding: clamp(4.5rem, 10vw, 7.5rem) 0; }
.section--green { background: var(--green-900); color: var(--paper); }
.section--cream { background: var(--paper-deep); }

/* ---------- type ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 1.4rem;
}
.eyebrow--light { color: var(--sage); }
.eyebrow__dot {
  width: .9em; height: 1.1em;
  background: var(--yolk);
  border-radius: 50% 50% 50% 50% / 60% 60% 42% 42%;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin-bottom: 1.5rem;
}
.section__title em { color: var(--yolk-deep); }
.section__title--light { color: var(--paper); }
.section__title--light em { color: var(--yolk); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: .95rem 1.7rem;
  min-height: 44px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), background-color .2s;
}
.btn .ico { width: 1.2em; height: 1.2em; fill: currentColor; flex: none; }
.btn--gold {
  background: var(--yolk);
  color: var(--green-900);
  box-shadow: 0 2px 0 rgba(27,46,31,.25), 0 10px 28px -12px rgba(201,127,21,.65);
}
.btn--gold:hover { transform: translateY(-2px); background: #F5B13A; box-shadow: 0 3px 0 rgba(27,46,31,.25), 0 16px 32px -12px rgba(201,127,21,.75); }
.btn--gold:active { transform: translateY(0); }
.btn--ghost {
  border: 1.5px solid var(--line);
  color: var(--green-900);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--green-700); background: rgba(44,74,51,.06); transform: translateY(-2px); }
.btn--sm { padding: .55rem 1.15rem; font-size: .9rem; }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.0625rem; }
.btn:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible {
  outline: 3px solid var(--yolk-deep);
  outline-offset: 3px;
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background-color .3s, box-shadow .3s, backdrop-filter .3s;
}
.nav.is-scrolled {
  background: rgba(251, 246, 235, .86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner {
  width: min(var(--container), 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 0;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: .01em;
  text-transform: lowercase;
  color: var(--yolk-deep);
}
.nav__logo {
  display: block;
  height: clamp(2.1rem, 4vw, 2.6rem);
  width: auto;
  transition: transform .3s var(--ease-out);
}
.nav__brand:hover .nav__logo { transform: scale(1.04); }
.nav__links { display: flex; gap: 1.8rem; }
.nav__links a {
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  position: relative;
  padding: .4rem 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--yolk);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease-out);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

/* hamburger toggle (mobile only) */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  border-radius: 2px;
  background: var(--green-900);
  transition: transform .3s var(--ease-out), opacity .2s var(--ease-out);
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav__toggle { display: flex; }
  .nav__order { display: none; }
  .nav.is-open { background: rgba(251, 246, 235, .96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    padding: .4rem 4vw 1.1rem;
    background: rgba(251, 246, 235, .98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 16px 30px -22px rgba(27, 46, 31, .55);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .26s var(--ease-out), transform .26s var(--ease-out);
  }
  .nav.is-open .nav__links { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links a {
    padding: .95rem .2rem;
    font-size: 1.08rem;
    border-bottom: 1px solid var(--line);
  }
  .nav__links a::after { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(6rem, 12vh, 9rem);
  overflow: hidden;
  background: linear-gradient(180deg, #FDF9F0 0%, var(--paper) 55%);
}
.ticker--hero { position: relative; z-index: 2; }
.hero__glow {
  position: absolute;
  top: -22vw; right: -14vw;
  width: 60vw; height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,165,40,.22) 0%, rgba(239,165,40,0) 65%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: min(var(--container), 92vw);
  margin-inline: auto;
  margin-block: auto;
  padding-block: clamp(.2rem, .5vw, .4rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(300px, 40vw, 560px);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}
.hero__copy { max-width: 40rem; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.7rem, 7.2vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -.015em;
  margin: .4rem 0 1.6rem;
  max-width: 14ch;
}
.hero__line { display: block; }
.hero__title em { color: var(--yolk-deep); }
.hero__sub {
  max-width: 46ch;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--green-700);
  margin-bottom: 2.2rem;
}
.hero__sub strong { color: var(--green-900); font-weight: 700; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }

/* hero entrance */
.hero__rise {
  opacity: 0;
  transform: translateY(26px);
  animation: rise .9s var(--ease-out) forwards;
  animation-delay: calc(var(--d, 0) * 120ms + 100ms);
}
@keyframes rise { to { opacity: 1; transform: none; } }

/* product shot */
.hero__carton {
  position: relative;
  z-index: 2;
  width: 100%;
  justify-self: end;
  pointer-events: none;
  margin-block: .9rem;
}
.hero__carton-tilt { transform: rotate(-7deg); }
.hero__carton-tilt img {
  width: 100%;
  height: auto;
  animation: cartonFloat 5.5s ease-in-out infinite alternate;
  filter: drop-shadow(0 22px 26px rgba(27, 46, 31, .28));
}

/* ---------- ticker ---------- */
.ticker {
  background: var(--green-900);
  color: var(--paper);
  overflow: hidden;
  padding: .8rem 0;
  border-block: 1px solid rgba(251,246,235,.12);
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: ticker 28s linear infinite;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker__track i {
  width: .65em; height: .8em;
  background: var(--yolk);
  border-radius: 50% 50% 50% 50% / 60% 60% 42% 42%;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 110ms);
}
[data-reveal].in-view { opacity: 1; transform: none; }

/* ---------- story ---------- */
.story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.4rem, 3vw, 2.2rem);
  align-items: start;
}
.story__statement {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.12;
  letter-spacing: -.01em;
  max-width: 22ch;
}
.story__body { max-width: 62ch; }
.story__statement em { color: var(--yolk-deep); }
.story__body p + p { margin-top: 1.1rem; }
.story__body strong { color: var(--green-700); }

.stats {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.stat { padding: 1.6rem 1.2rem 0 0; }
.stat + .stat { border-left: 1px solid var(--line); padding-left: 1.6rem; }
.stat dd {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--green-700);
  line-height: 1;
}
.stat .stat__suffix { color: var(--yolk-deep); font-size: .6em; vertical-align: .35em; margin: 0 .1em; }
.stat dt { margin-top: .5rem; font-size: .88rem; letter-spacing: .06em; text-transform: uppercase; color: var(--green-500); }

/* ---------- farming ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}
.card {
  background: rgba(251,246,235,.05);
  border: 1px solid rgba(251,246,235,.16);
  border-radius: 18px;
  padding: 2rem 1.8rem;
  transition: transform .35s var(--ease-out), background-color .35s, border-color .35s;
}
.card:hover {
  transform: translateY(-6px);
  background: rgba(251,246,235,.09);
  border-color: rgba(239,165,40,.5);
}
.card__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.4rem;
}
.card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  margin-bottom: .7rem;
}
.card p { color: var(--sage); font-size: .98rem; }

/* ---------- order ---------- */
.order__card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: 0 30px 60px -38px rgba(27,46,31,.45);
}
.order__info { order: 1; }
.order__art { order: 2; }
.order__product {
  position: relative;
  max-width: 430px;
  margin-inline: auto;
}
.order__product::before {
  content: "";
  position: absolute;
  inset: -8% -12%;
  background: radial-gradient(circle, rgba(239,165,40,.28) 0%, rgba(239,165,40,0) 65%);
  pointer-events: none;
}
.order__photo {
  position: relative;
  width: 100%;
  height: auto;
  animation: cartonFloat 5.5s ease-in-out infinite alternate;
  filter: drop-shadow(0 26px 22px rgba(27,46,31,.16));
}
.order__shadow {
  width: 68%;
  height: 24px;
  margin: -8px auto 0;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(27,46,31,.28), rgba(27,46,31,0) 70%);
  animation: cartonShadow 5.5s ease-in-out infinite alternate;
}
@keyframes cartonFloat {
  from { transform: translateY(0) rotate(-1deg); }
  to { transform: translateY(-12px) rotate(1.4deg); }
}
@keyframes cartonShadow {
  from { transform: scaleX(1); opacity: .9; }
  to { transform: scaleX(.8); opacity: .5; }
}
.order__badge {
  position: absolute;
  top: -20px;
  right: -8px;
  width: clamp(88px, 12vw, 116px);
  filter: drop-shadow(0 8px 16px rgba(201,127,21,.4));
  transition: transform .3s var(--ease-out);
}
.order__product:hover .order__badge { transform: rotate(-8deg) scale(1.06); }
.order__badge-ring {
  animation: spin 16s linear infinite;
  transform-box: view-box;
  transform-origin: center;
}
.order__badge-ring text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .14em;
  fill: var(--green-900);
  opacity: .85;
}
.order__badge-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  fill: var(--green-900);
}
.order__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 1.2rem;
}
.order__title em { color: var(--yolk-deep); }
.order__options { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.4rem; }
.order__option {
  position: relative;
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 1.3rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  background: #fff;
}
.order__option--sub {
  border-color: var(--green-900);
  background: var(--green-900);
  color: var(--paper);
}
.order__option-badge {
  position: absolute;
  top: -12px; left: 1rem;
  background: var(--yolk);
  color: var(--green-900);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 20px;
}
.order__option-header { display: flex; flex-direction: column; gap: .15rem; margin-bottom: .1rem; }
.order__option-name { font-weight: 700; font-size: .95rem; }
.order__option--sub .order__option-name { color: var(--paper); }
.order__option-price {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--green-700);
  line-height: 1;
}
.order__option--sub .order__option-price { color: var(--yolk); }
.order__option-unit { font-size: .85rem; font-weight: 400; font-family: var(--font-body); color: var(--green-500); }
.order__option--sub .order__option-unit { color: rgba(251,246,235,.6); }
.order__option-subdesc { font-size: .8rem; font-weight: 600; color: var(--green-500); margin-top: -.2rem; }
.order__option--sub .order__option-subdesc { color: var(--yolk); opacity: .85; }
.order__option-desc { font-size: .85rem; color: var(--green-500); flex: 1; }
.order__option--sub .order__option-desc { color: rgba(251,246,235,.7); }
.order__option .btn { margin-top: .4rem; justify-content: center; font-size: .9rem; padding: .6rem 1rem; }
.btn--dark {
  background: var(--yolk);
  color: var(--green-900);
  border-color: var(--yolk);
}
.btn--dark:hover { background: #FFC65C; border-color: #FFC65C; }
.order__note { margin-top: .9rem; font-size: .9rem; color: var(--green-500); }
@media (max-width: 480px) {
  .order__options { grid-template-columns: 1fr; }
}

/* ---------- faq ---------- */
.faq__list { margin-top: 1.5rem; border-top: 1px solid var(--line); }
.faq__list details { border-bottom: 1px solid var(--line); }
.faq__list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1.3rem .2rem;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 500;
  transition: color .2s;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary:hover { color: var(--yolk-deep); }
.faq__chev {
  flex: none;
  width: 12px; height: 12px;
  border-right: 2.5px solid var(--yolk-deep);
  border-bottom: 2.5px solid var(--yolk-deep);
  transform: rotate(45deg);
  transition: transform .3s var(--ease-out);
}
.faq__list details[open] .faq__chev { transform: rotate(-135deg); }
.faq__list details p {
  padding: 0 .2rem 1.4rem;
  color: var(--green-700);
  max-width: 62ch;
}

/* ---------- footer ---------- */
.footer { background: #142318; color: var(--yolk); padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(239,165,40,.22);
}
.footer__brandcol { display: flex; flex-direction: column; gap: 1.7rem; }
.footer__brand {
  display: block;
  width: clamp(120px, 15vw, 160px);
  height: auto;
}
.footer__social { display: flex; gap: .9rem; }
.footer__social a {
  display: grid;
  place-items: center;
  transition: transform .25s var(--ease-out), opacity .25s var(--ease-out);
}
.footer__social a:hover {
  transform: translateY(-3px) rotate(-5deg);
  opacity: .82;
}
.footer__social img { width: 56px; height: 56px; }

.footer__col { display: flex; flex-direction: column; }
.footer__col h3 {
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yolk);
  margin: 0 0 .7rem;
}
.footer__col h3 ~ h3 { margin-top: 1.7rem; }
.footer__col p { margin: 0; font-size: .95rem; line-height: 1.5; color: rgba(239,165,40,.78); }
.footer__col a {
  width: fit-content;
  text-decoration: none;
  color: var(--yolk);
  padding: .2rem 0;
  font-size: .98rem;
  transition: opacity .2s;
}
.footer__col a:hover { opacity: .68; }

/* bold uppercase link list */
.footer__links { gap: .15rem; }
.footer__links a {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 1.06rem;
  padding: .42rem 0;
}

.footer__legal { padding-top: 1.6rem; font-size: .85rem; color: rgba(239,165,40,.58); }

/* ---------- floating whatsapp ---------- */
.wa-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--yolk);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px -8px rgba(201,127,21,.8);
  opacity: 0;
  transform: translateY(16px) scale(.9);
  pointer-events: none;
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.wa-float.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.wa-float svg { width: 28px; height: 28px; fill: var(--green-900); }
.wa-float:hover { transform: translateY(-3px) scale(1.05); }

@media (max-width: 820px) {
  /* small floating WhatsApp button, bottom-left (no full-width order dock) */
  .wa-float {
    left: 1.2rem;
    right: auto;
    bottom: 1.2rem;
    width: 52px; height: 52px;
  }
  .wa-float svg { width: 26px; height: 26px; }
  /* keep the hero free of early ordering pressure */
  .hero__cta { display: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  /* flatten copy so the carton can sit between the heading and the subtext */
  .hero__copy { display: contents; }
  .hero__carton {
    order: 2;
    justify-self: center;
    width: min(340px, 74vw);
    margin: -.1rem auto 0;
  }
  .hero__sub { order: 3; }
  .hero__cta { order: 4; }
  .story__grid, .order__card { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; max-width: 540px; }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: .5rem; }
  .stat:nth-child(odd) { border-left: none; padding-left: 0; }
  .stat:nth-child(3) { border-top: 1px solid var(--line); }
  .stat:nth-child(4) { border-top: 1px solid var(--line); }
  .order__art { order: -1; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .footer__links { display: none; }
}

/* ---------- phones: bolder hero, tighter rhythm ---------- */
@media (max-width: 640px) {
  /* tighter vertical rhythm between sections */
  .section { padding: clamp(3rem, 11vw, 4rem) 0; }

  /* bigger, punchier hero — fit content so the ticker sits just under the subtext */
  .hero { min-height: auto; padding-top: clamp(5rem, 22vw, 7rem); }
  .hero__inner {
    width: 100%;
    padding-inline: 5vw;
    padding-bottom: clamp(1.4rem, 5vw, 2.2rem);
    gap: .9rem;
  }
  .hero__title { font-size: clamp(3rem, 13vw, 4.2rem); max-width: 100%; margin-bottom: .3rem; }
  .hero__sub { font-size: 1.08rem; }
  /* large centred product shot, just under the heading */
  .hero__carton { width: min(360px, 82vw); margin: .35rem auto .45rem; }
  .hero__carton-tilt { transform: rotate(-4deg); }
}

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

/* ---------- playful chicken-foot cursors (pointer devices only) ---------- */
@media (hover: hover) and (pointer: fine) {
  a, button, summary, label[for], [role="button"], .btn,
  .nav__toggle, .footer__social a, .faq__list summary {
    cursor: url("assets/cursor-click.png") 22 9, pointer;
    cursor: -webkit-image-set(url("assets/cursor-click.png") 1x, url("assets/cursor-click-2x.png") 2x) 22 9, pointer;
    cursor: image-set(url("assets/cursor-click.png") 1x, url("assets/cursor-click-2x.png") 2x) 22 9, pointer;
  }
}
