/* ==============================================
   Main Layout
   Section-specific layouts + responsive rules
   ============================================== */


/* ============================================
   GRID BACKGROUND REGION
   ============================================ */

.grid-bg-region {
  position: relative;
}

.grid-bg-region::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--color-surface));
  pointer-events: none;
  z-index: 1;
}

/* Fade-in variant: fades in at top, fades out at bottom */
.grid-bg-region--fade-in::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, transparent, var(--color-background));
  pointer-events: none;
  z-index: 1;
}

.grid-bg-region--fade-in::after {
  background: linear-gradient(to bottom, transparent, var(--color-background));
}


/* ============================================
   ANIMATIONS — Keyframes
   ============================================ */

/* Gentle floating bob for decorative food images
   --parallax-y is set by JS on scroll for subtle depth */
@keyframes float-slow {
  0%, 100% { transform: translateY(var(--parallax-y, 0px)) rotate(var(--deco-rotate, 0deg)); }
  50% { transform: translateY(calc(var(--parallax-y, 0px) - 14px)) rotate(var(--deco-rotate, 0deg)); }
}

@keyframes float-slow-alt {
  0%, 100% { transform: translateY(var(--parallax-y, 0px)) rotate(var(--deco-rotate, 0deg)); }
  50% { transform: translateY(calc(var(--parallax-y, 0px) + 12px)) rotate(var(--deco-rotate, 0deg)); }
}

/* Hero entrance */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-scale {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll reveal — elements start hidden, animate in */
@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animated grid pattern — square pulse */
@keyframes gridSquarePulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.12; }
}


/* ============================================
   SCROLL REVEAL — Base states
   Elements with .reveal start invisible,
   get .is-visible when they scroll into view
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for child items (opacity only — preserves existing transforms) */
.reveal-stagger > * {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.reveal-stagger.is-visible > * {
  opacity: 1;
}

.reveal-stagger.is-visible > *:nth-child(1)  { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2)  { transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(3)  { transition-delay: 0.25s; }
.reveal-stagger.is-visible > *:nth-child(4)  { transition-delay: 0.35s; }
.reveal-stagger.is-visible > *:nth-child(5)  { transition-delay: 0.45s; }
.reveal-stagger.is-visible > *:nth-child(6)  { transition-delay: 0.55s; }
.reveal-stagger.is-visible > *:nth-child(7)  { transition-delay: 0.65s; }
.reveal-stagger.is-visible > *:nth-child(8)  { transition-delay: 0.75s; }
.reveal-stagger.is-visible > *:nth-child(9)  { transition-delay: 0.85s; }
.reveal-stagger.is-visible > *:nth-child(10) { transition-delay: 0.95s; }


/* ============================================
   HERO ENTRANCE
   ============================================ */
.hero__content {
  animation: fade-in-up 0.9s ease both;
}

.hero__image {
  animation: fade-in-scale 1s ease 0.25s both;
}

/* ============================================
   DECORATIVE FLOATING FOOD IMAGES
   Hidden on mobile, visible on desktop only
   ============================================ */
/* Decorative images — visible at all sizes, animated */
.deco {
  display: block;
  position: absolute;
  pointer-events: none;
  opacity: 0.22;
  z-index: 0;
  will-change: transform;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

/* Mobile: small and subtle */
.deco--hero-1 {
  width: 90px;
  top: 5%;
  right: -10px;
  --deco-rotate: 12deg;
  animation: float-slow 5s ease-in-out infinite;
}

.deco--hero-2 {
  width: 70px;
  bottom: 8%;
  left: -8px;
  --deco-rotate: -8deg;
  animation: float-slow-alt 6s ease-in-out infinite;
}

.deco--cta-1 {
  width: 80px;
  top: 10%;
  left: -5px;
  --deco-rotate: 10deg;
  animation: float-slow 7s ease-in-out infinite;
}

.deco--cta-2 {
  width: 70px;
  bottom: 10%;
  right: -5px;
  --deco-rotate: -12deg;
  animation: float-slow-alt 5.5s ease-in-out infinite;
}

/* What's Inside section */
.deco--inside-1 {
  width: 75px;
  top: 8%;
  right: -8px;
  --deco-rotate: 15deg;
  animation: float-slow 6.5s ease-in-out infinite;
}

.deco--inside-2 {
  width: 65px;
  bottom: 12%;
  left: -6px;
  --deco-rotate: -10deg;
  animation: float-slow-alt 5.8s ease-in-out infinite;
}

/* Testimonials section */
.deco--testimonials-1 {
  width: 80px;
  top: 6%;
  left: -10px;
  --deco-rotate: -14deg;
  animation: float-slow-alt 7s ease-in-out infinite;
}

.deco--testimonials-2 {
  width: 70px;
  bottom: 8%;
  right: -8px;
  --deco-rotate: 9deg;
  animation: float-slow 5.2s ease-in-out infinite;
}

/* About Laura section */
.deco--about-1 {
  width: 70px;
  top: 12%;
  left: -6px;
  --deco-rotate: 11deg;
  animation: float-slow 6s ease-in-out infinite;
}

.deco--about-2 {
  width: 85px;
  bottom: 6%;
  right: -10px;
  --deco-rotate: -16deg;
  animation: float-slow-alt 6.8s ease-in-out infinite;
}

/* TOC section */
.deco--toc-1 {
  width: 75px;
  top: 5%;
  right: -8px;
  --deco-rotate: -7deg;
  animation: float-slow-alt 5.5s ease-in-out infinite;
}

.deco--toc-2 {
  width: 65px;
  bottom: 10%;
  left: -5px;
  --deco-rotate: 13deg;
  animation: float-slow 7.2s ease-in-out infinite;
}

/* FAQ section */
.deco--faq-1 {
  width: 70px;
  top: 10%;
  right: -6px;
  --deco-rotate: 8deg;
  animation: float-slow 5.8s ease-in-out infinite;
}

.deco--faq-2 {
  width: 60px;
  bottom: 15%;
  left: -8px;
  --deco-rotate: -11deg;
  animation: float-slow-alt 6.3s ease-in-out infinite;
}

/* Tablet: a bit bigger */
@media (min-width: 768px) {
  .deco { opacity: 0.26; }

  .deco--hero-1 { width: 130px; top: 6%; right: 2%; }
  .deco--hero-2 { width: 110px; bottom: 10%; left: 1%; }
  .deco--cta-1 { width: 120px; top: 15%; left: 2%; }
  .deco--cta-2 { width: 100px; bottom: 12%; right: 2%; }

  .deco--inside-1 { width: 115px; top: 6%; right: 1%; }
  .deco--inside-2 { width: 95px; bottom: 10%; left: 1%; }
  .deco--testimonials-1 { width: 120px; top: 5%; left: 1%; }
  .deco--testimonials-2 { width: 105px; bottom: 6%; right: 1%; }
  .deco--about-1 { width: 100px; top: 10%; left: 1%; }
  .deco--about-2 { width: 125px; bottom: 5%; right: 1%; }
  .deco--toc-1 { width: 110px; top: 4%; right: 1%; }
  .deco--toc-2 { width: 95px; bottom: 8%; left: 1%; }
  .deco--faq-1 { width: 105px; top: 8%; right: 1%; }
  .deco--faq-2 { width: 90px; bottom: 12%; left: 1%; }
}

/* Desktop: full size, higher opacity */
@media (min-width: 1024px) {
  .deco { opacity: 0.32; }

  .deco--hero-1 {
    width: 180px;
    top: 8%;
    right: 3%;
  }

  .deco--hero-2 {
    width: 150px;
    bottom: 10%;
    left: 2%;
  }

  .deco--cta-1 {
    width: 160px;
    top: 50%;
    left: 3%;
  }

  .deco--cta-2 {
    width: 140px;
    top: 50%;
    right: 3%;
  }

  .deco--inside-1 { width: 155px; top: 8%; right: 2%; }
  .deco--inside-2 { width: 130px; bottom: 12%; left: 2%; }
  .deco--testimonials-1 { width: 165px; top: 6%; left: 2%; }
  .deco--testimonials-2 { width: 140px; bottom: 8%; right: 2%; }
  .deco--about-1 { width: 135px; top: 15%; left: 2%; }
  .deco--about-2 { width: 170px; bottom: 8%; right: 2%; }
  .deco--toc-1 { width: 150px; top: 5%; right: 2%; }
  .deco--toc-2 { width: 125px; bottom: 10%; left: 2%; }
  .deco--faq-1 { width: 140px; top: 10%; right: 2%; }
  .deco--faq-2 { width: 115px; bottom: 15%; left: 2%; }
}

@media (min-width: 1440px) {
  .deco--hero-1 { width: 220px; right: 5%; }
  .deco--hero-2 { width: 180px; left: 4%; }
  .deco--cta-1 { width: 200px; left: 5%; }
  .deco--cta-2 { width: 170px; right: 5%; }

  .deco--inside-1 { width: 190px; right: 4%; }
  .deco--inside-2 { width: 155px; left: 3%; }
  .deco--testimonials-1 { width: 200px; left: 4%; }
  .deco--testimonials-2 { width: 170px; right: 4%; }
  .deco--about-1 { width: 160px; left: 3%; }
  .deco--about-2 { width: 200px; right: 4%; }
  .deco--toc-1 { width: 180px; right: 4%; }
  .deco--toc-2 { width: 150px; left: 3%; }
  .deco--faq-1 { width: 170px; right: 4%; }
  .deco--faq-2 { width: 140px; left: 3%; }
}


/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xl);
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.hero__title {
  margin-bottom: var(--space-md);
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 480px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}

.hero__cta {
  margin-bottom: var(--space-xs);
}

.hero__delivery {
  color: var(--color-text-light);
}

.hero__cover {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.15));
}

@media (min-width: 768px) {
  .hero__cover {
    max-width: 340px;
  }

  .hero__subtitle {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    text-align: left;
    align-items: center;
    gap: var(--space-2xl);
  }

  .hero__subtitle {
    margin-left: 0;
    margin-right: 0;
  }

  .hero__cover {
    max-width: 400px;
    justify-self: end;
  }
}


/* ============================================
   HERO COUNTDOWN (compact, inside hero)
   ============================================ */
.hero-countdown {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-md);
}

.hero-countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hero-countdown__number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  line-height: 1;
}

.hero-countdown__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
}

@media (min-width: 1024px) {
  .hero-countdown {
    justify-content: flex-start;
  }

  .hero-countdown__number {
    font-size: 1.75rem;
  }
}


/* ============================================
   PROBLEM / PAIN POINTS
   ============================================ */
.problem {
  background-color: var(--color-background);
}

.problem__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 560px;
  margin: 0 auto var(--space-lg);
}

.problem__item {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text);
  padding-left: var(--space-md);
  position: relative;
}

.problem__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: var(--radius-round);
  background-color: var(--color-primary);
  opacity: 0.6;
}

.problem__bridge {
  text-align: center;
  font-size: 1.15rem;
  font-weight: var(--weight-medium);
  color: var(--color-primary);
}


/* ============================================
   RECIPE CAROUSEL — Scroll-linked horizontal scroll
   ============================================ */

/* --- Mobile: native horizontal swipe --- */
.recipes {
  overflow: visible;
}

.recipes__scroll-area {
  position: relative;
}

.recipes__sticky {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: var(--space-sm) 0;
}

.recipes__sticky::-webkit-scrollbar {
  display: none;
}

.recipes__track {
  display: flex;
  gap: var(--space-md);
  padding: 0 var(--gutter);
}

.recipes__card {
  flex: 0 0 auto;
  width: 260px;
  scroll-snap-align: center;
  position: relative;
}

.recipes__card-inner {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  position: relative;
  transition: transform var(--transition-base);
}

.recipes__card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12));
}

/* Protein badge positioned inside card */
.recipes__card .protein-badge {
  bottom: calc(var(--space-md) + var(--space-xs));
  left: calc(var(--space-md) + var(--space-xs));
}

/* Subtle alternating rotations */
.recipes__card:nth-child(odd) .recipes__card-inner {
  transform: rotate(-1.5deg);
}

.recipes__card:nth-child(even) .recipes__card-inner {
  transform: rotate(1.5deg);
}

/* Hover: gentle lift */
.recipes__card:nth-child(odd) .recipes__card-inner:hover {
  transform: rotate(-1.5deg) scale(1.04) translateY(-4px);
}

.recipes__card:nth-child(even) .recipes__card-inner:hover {
  transform: rotate(1.5deg) scale(1.04) translateY(-4px);
}

.recipes__card-inner:hover img {
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.18));
}


/* --- Tablet: scroll-linked carousel --- */
@media (min-width: 768px) {
  .recipes__scroll-area {
    height: 250vh;
  }

  .recipes__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    scroll-snap-type: none;
  }

  .recipes__track {
    gap: var(--space-lg);
    padding: 0 var(--space-2xl);
    will-change: transform;
  }

  .recipes__card {
    width: 340px;
    scroll-snap-align: unset;
  }

  .recipes__card-inner {
    padding: var(--space-lg);
  }
}


/* --- Desktop: larger cards --- */
@media (min-width: 1024px) {
  .recipes__card {
    width: 380px;
  }

  .recipes__track {
    gap: var(--space-xl);
    padding: 0 calc(50vw - 190px);
  }
}


/* --- Wide: even larger cards --- */
@media (min-width: 1440px) {
  .recipes__card {
    width: 420px;
  }

  .recipes__track {
    padding: 0 calc(50vw - 210px);
  }
}


/* ============================================
   WHAT'S INSIDE — Stats Bar (above TOC)
   ============================================ */
.toc__stats {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.toc__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.toc__stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  line-height: 1;
  min-height: 2.25rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.toc__stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background-color: var(--color-background);
  position: relative;
  overflow: hidden;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

.testimonial {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.testimonial__text {
  font-size: 1.05rem;
  flex: 1;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial__photo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-round);
  object-fit: cover;
}

.testimonial__name {
  display: block;
  font-style: normal;
  font-weight: var(--weight-semibold);
  font-size: 0.95rem;
}

.testimonial__detail {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 2px;
}

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Make the first testimonial span full width as a featured one */
  .testimonial:first-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial:first-child {
    grid-column: auto;
  }
}


/* ============================================
   ABOUT LAURA
   ============================================ */
.about {
  position: relative;
  overflow: hidden;
}

.about__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  text-align: center;
}

.about__photo {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.about__quote {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-top: var(--space-md);
}

@media (min-width: 1024px) {
  .about__grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    align-items: center;
    text-align: left;
    gap: var(--space-2xl);
  }
}


/* ============================================
   PEEK INSIDE — Table of Contents
   ============================================ */
.toc {
  background-color: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.toc__intro {
  text-align: center;
  color: var(--color-text-light);
  max-width: 500px;
  margin: calc(-1 * var(--space-md)) auto var(--space-xl);
}

.toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: none;
}

.toc__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.toc__item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.toc__number {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  min-width: 36px;
  flex-shrink: 0;
  line-height: 1.4;
}

.toc__content strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.toc__content p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin: 0;
}

/* Highlight the recipes chapter */
.toc__item--highlight {
  background: rgba(255, 134, 80, 0.06);
  border-radius: var(--radius-md);
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
  margin-left: calc(-1 * var(--space-sm));
  margin-right: calc(-1 * var(--space-sm));
  border-bottom-color: transparent;
}

.toc__item--highlight + .toc__item {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
  .toc__list {
    columns: 2;
    column-gap: var(--space-xl);
  }

  .toc__item {
    break-inside: avoid;
  }

  .toc__item:first-child {
    border-top: none;
  }
}


/* ============================================
   CTA + COUNTDOWN
   ============================================ */
.cta-section {
  background-color: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.cta-section__inner {
  text-align: center;
}

.cta-section h2 {
  margin-bottom: var(--space-sm);
}

.cta-section__button {
  font-size: 1.25rem;
  padding: var(--space-sm) var(--space-xl);
}

.cta-section__note {
  color: var(--color-text-light);
  margin-top: var(--space-sm);
}


/* ============================================
   FAQ
   ============================================ */
.faq {
  position: relative;
  overflow: hidden;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: var(--space-xl) 0;
}

.footer__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-text-light);
  transition: color var(--transition-fast);
}

.footer__social a:hover {
  color: var(--color-primary);
}

.footer__copy {
  color: var(--color-text-light);
}

.footer__legal a {
  color: var(--color-text-light);
  transition: color var(--transition-fast);
}

.footer__legal a:hover {
  color: var(--color-text);
}


/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-sm);
  background: rgba(250, 246, 241, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}

.sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta__button {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  padding: var(--space-sm) var(--space-md);
}

/* Hide on desktop — only show on mobile/tablet */
@media (min-width: 768px) {
  .sticky-cta {
    display: none;
  }
}


/* ============================================
   REDUCED MOTION — Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero__content,
  .hero__image {
    animation: none !important;
  }

  .deco {
    animation: none !important;
  }

  /* Carousel: collapse to static wrapped grid */
  .recipes__scroll-area {
    height: auto !important;
  }

  .recipes__sticky {
    position: relative !important;
    height: auto !important;
    overflow: visible !important;
  }

  .recipes__track {
    flex-wrap: wrap;
    justify-content: center;
    transform: none !important;
    will-change: auto;
    padding: var(--space-sm) var(--gutter);
    gap: var(--space-sm);
  }

  .recipes__card {
    width: calc(50% - var(--space-xs));
  }

  .recipes__card-inner {
    transition: none !important;
  }

  /* FAQ: no slide animation */
  .faq__answer {
    transition: none !important;
  }
}
