:root {
  --navy-50: #f0f4f8;
  --navy-100: #d9e2ec;
  --navy-200: #bcccdc;
  --navy-300: #9fb3c8;
  --navy-400: #829ab1;
  --navy-500: #627d98;
  --navy-600: #486581;
  --navy-700: #334e68;
  --navy-800: #243b53;
  --navy-900: #102a43;
  --navy-950: #0a1c2e;

  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-200: #bae6fd;
  --sky-300: #7dd3fc;
  --sky-400: #38bdf8;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --sky-700: #0369a1;

  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-500: #f43f5e;

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Source Serif Pro', Georgia, Cambria, serif;

  --shadow-sm: 0 1px 2px rgba(16, 42, 67, 0.05), 0 1px 3px rgba(16, 42, 67, 0.06);
  --shadow-md: 0 4px 12px rgba(16, 42, 67, 0.08);
  --shadow-lg: 0 12px 28px rgba(16, 42, 67, 0.12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: #fff;
  color: var(--navy-900);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 { font-family: var(--font-serif); margin: 0; line-height: 1.2; }

a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout ---------- */
.container-wide { max-width: 72rem; margin: 0 auto; width: 100%; padding-left: 1.25rem; padding-right: 1.25rem; }
.container-narrow { max-width: 48rem; margin: 0 auto; width: 100%; padding-left: 1.25rem; padding-right: 1.25rem; }
@media (min-width: 640px) {
  .container-wide, .container-narrow { padding-left: 1.5rem; padding-right: 1.5rem; }
}

.section { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.section--tint { background: var(--navy-50); border-top: 1px solid var(--navy-100); border-bottom: 1px solid var(--navy-100); }
.section--dark { background: var(--navy-900); color: #fff; }
@media (min-width: 640px) {
  .section { padding-top: 5rem; padding-bottom: 5rem; }
}

[id] { scroll-margin-top: 6rem; }

/* ---------- Section heads ---------- */
.section-head { }
.section-eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sky-700); }
.section-eyebrow--light { color: var(--sky-300); }
.section-title { margin-top: 0.5rem; font-size: 1.5rem; font-weight: 700; letter-spacing: -0.01em; color: var(--navy-900); }
.section-title--light { color: #fff; }
@media (min-width: 640px) { .section-title { font-size: 1.875rem; } }
.section-rule { margin-top: 1rem; height: 0.25rem; width: 3.5rem; border-radius: 9999px; background: linear-gradient(to right, var(--sky-500), var(--sky-300)); }
.section-rule--light { background: linear-gradient(to right, var(--sky-400), var(--sky-200)); }

.lead { margin-top: 1rem; max-width: 42rem; font-size: 1rem; color: var(--navy-600); }
.lead--light { color: var(--navy-200); }
.note { margin-top: 2rem; font-size: 0.875rem; color: var(--navy-500); max-width: 42rem; }
.prose { margin-top: 1.5rem; }
.prose p { font-size: 1rem; line-height: 1.75; color: var(--navy-700); margin: 0 0 1rem; }
.prose p:last-child { margin-bottom: 0; }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--navy-50); border-bottom: 1px solid var(--navy-100); }
.trust-bar__inner { display: flex; align-items: center; justify-content: center; gap: 1.25rem; padding-top: 0.625rem; padding-bottom: 0.625rem; font-size: 0.75rem; font-weight: 500; color: var(--navy-600); }
@media (min-width: 640px) { .trust-bar__inner { gap: 2rem; font-size: 0.75rem; } }
.trust-item { display: inline-flex; align-items: center; gap: 0.375rem; }
.trust-item .icon { width: 1rem; height: 1rem; color: var(--sky-600); }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid transparent; transition: background 0.3s, border-color 0.3s, box-shadow 0.3s; }
.header.is-scrolled { background: rgba(255,255,255,0.96); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-bottom-color: var(--navy-100); box-shadow: 0 1px 8px rgba(16,42,67,0.04); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 4rem; }

.logo { display: flex; align-items: center; gap: 0.625rem; flex-shrink: 0; }
.logo__mark { display: flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border-radius: 0.5rem; background: var(--navy-900); color: var(--sky-300); }
.logo__mark .icon { width: 1.25rem; height: 1.25rem; }
.logo__text { font-family: var(--font-serif); font-size: 1.125rem; font-weight: 700; letter-spacing: -0.01em; color: var(--navy-900); line-height: 1; }
.logo__accent { color: var(--sky-600); }

.nav-desktop { display: none; align-items: center; gap: 1.75rem; }
@media (min-width: 768px) { .nav-desktop { display: flex; } }
.nav-link { font-size: 0.875rem; font-weight: 500; color: var(--navy-700); position: relative; transition: color 0.2s; }
.nav-link::after { content: ''; position: absolute; left: 0; bottom: -0.25rem; height: 2px; width: 0; background: var(--sky-500); transition: width 0.3s; }
.nav-link:hover { color: var(--sky-600); }
.nav-link:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 0.375rem; }
.icon-btn { display: flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: 9999px; border: none; background: transparent; color: var(--navy-700); cursor: pointer; transition: background 0.2s, color 0.2s; }
.icon-btn:hover { background: var(--navy-50); color: var(--sky-600); }
.icon-btn svg { width: 1.25rem; height: 1.25rem; }
.icon-btn--menu { display: flex; }
@media (min-width: 768px) { .icon-btn--menu { display: none; } }
.icon-btn--menu .icon-close { display: none; }
.icon-btn--menu.is-open .icon-menu { display: none; }
.icon-btn--menu.is-open .icon-close { display: block; }

.header__cta { display: none; }
@media (min-width: 640px) { .header__cta { display: inline-flex; } }

/* search panel */
.search-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, border-color 0.3s; border-top: 1px solid transparent; background: #fff; }
.search-panel.is-open { max-height: 4.5rem; border-top-color: var(--navy-100); }
.search-wrap { position: relative; padding-top: 0.625rem; padding-bottom: 0.625rem; }
.search-wrap__icon { position: absolute; left: 0.875rem; top: 50%; transform: translateY(-50%); width: 1rem; height: 1rem; color: var(--navy-400); }
.search-wrap input { width: 100%; border-radius: 9999px; border: 1px solid var(--navy-200); background: rgba(240,244,248,0.5); padding: 0.625rem 1rem 0.625rem 2.5rem; font-size: 0.875rem; color: var(--navy-900); font-family: inherit; }
.search-wrap input::placeholder { color: var(--navy-400); }
.search-wrap input:focus { outline: none; border-color: var(--sky-400); box-shadow: 0 0 0 2px var(--sky-300); }

/* mobile menu */
.mobile-menu { display: flex; flex-direction: column; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, border-color 0.3s, padding 0.3s; border-top: 1px solid transparent; background: #fff; }
.mobile-menu.is-open { max-height: 24rem; border-top-color: var(--navy-100); padding-top: 0.75rem; padding-bottom: 0.75rem; }
@media (min-width: 768px) { .mobile-menu { display: none; } }
.mobile-link { padding: 0.75rem 0; font-size: 0.875rem; font-weight: 500; color: var(--navy-700); border-bottom: 1px solid var(--navy-50); transition: color 0.2s; }
.mobile-link:last-of-type { border-bottom: none; }
.mobile-link:hover { color: var(--sky-600); }
.mobile-menu__cta { margin-top: 0.75rem; width: 100%; }

/* ---------- CTA button ---------- */
.cta-btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; border-radius: 9999px; background: var(--sky-600); padding: 0.875rem 1.75rem; font-size: 0.875rem; font-weight: 600; color: #fff; box-shadow: 0 10px 20px -5px rgba(2,132,199,0.4); transition: background 0.3s, box-shadow 0.3s, transform 0.3s; cursor: pointer; border: none; font-family: inherit; }
.cta-btn:hover { background: var(--sky-700); box-shadow: 0 14px 26px -6px rgba(2,132,199,0.45); transform: translateY(-2px); }
.cta-btn:active { transform: translateY(0); }
.cta-btn:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(125,211,252,0.5); }
.cta-btn__arrow { width: 1rem; height: 1rem; }
.cta-btn--sm { padding: 0.625rem 1.25rem; font-size: 0.75rem; }
.cta-btn--lg { padding: 1rem 2.25rem; font-size: 1rem; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(to bottom, var(--sky-50), #fff 70%); }
.hero__bg { position: absolute; inset: 0; z-index: 0; opacity: 0.4; pointer-events: none; }
.blob { position: absolute; border-radius: 9999px; filter: blur(64px); }
.blob--1 { top: -6rem; right: -6rem; width: 18rem; height: 18rem; background: rgba(125,211,252,0.4); }
.blob--2 { top: 10rem; left: -6rem; width: 18rem; height: 18rem; background: rgba(188,204,220,0.3); }
.blob--3 { bottom: -4rem; left: -4rem; width: 16rem; height: 16rem; background: rgba(56,189,248,0.18); }
.hero__inner { position: relative; z-index: 1; padding-top: 3rem; padding-bottom: 3.5rem; }
@media (min-width: 640px) { .hero__inner { padding-top: 4rem; padding-bottom: 5rem; } }

.eyebrow { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sky-700); }
.eyebrow__dot { display: inline-block; width: 0.5rem; height: 0.5rem; border-radius: 9999px; background: var(--sky-500); }
.eyebrow__sep { color: var(--navy-300); }
.eyebrow__date { color: var(--navy-500); }

.hero__title { margin-top: 1rem; font-size: 1.875rem; font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; color: var(--navy-900); max-width: 48rem; }
@media (min-width: 640px) { .hero__title { font-size: 2.25rem; } }
@media (min-width: 768px) { .hero__title { font-size: 3rem; } }

.hero__subtitle { margin-top: 1.25rem; font-size: 1.0625rem; line-height: 1.7; color: var(--navy-600); max-width: 42rem; }
@media (min-width: 640px) { .hero__subtitle { font-size: 1.125rem; } }

.hero__rating-row { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 640px) { .hero__rating-row { flex-direction: row; align-items: center; } }

.rating-card { display: flex; align-items: center; gap: 1rem; border-radius: 1rem; border: 1px solid var(--navy-100); background: #fff; padding: 1rem 1.25rem; box-shadow: var(--shadow-sm); }
.rating-card__label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy-500); }
.rating-card__value { margin-top: 0.25rem; font-family: var(--font-serif); font-size: 1.875rem; font-weight: 700; color: var(--navy-900); }
.rating-card__max { font-size: 1rem; font-weight: 500; color: var(--navy-400); }
.rating-card__divider { width: 1px; height: 2.5rem; background: var(--navy-100); }
.rating-card__hint { margin-top: 0.25rem; font-size: 0.75rem; color: var(--navy-500); }

.stars { display: flex; gap: 0.125rem; color: var(--sky-500); }
.stars svg { width: 1.25rem; height: 1.25rem; }
.stars--sm svg { width: 1.125rem; height: 1.125rem; }

.disclaimer { margin-top: 1.75rem; max-width: 42rem; border-left: 2px solid var(--sky-400); background: rgba(240,249,255,0.7); border-radius: 0.5rem; padding: 0.75rem 1rem; font-size: 0.8125rem; line-height: 1.65; color: var(--navy-600); }
.disclaimer strong { color: var(--navy-800); }
@media (min-width: 640px) { .disclaimer { font-size: 0.875rem; } }

/* ---------- Steps ---------- */
.steps { margin-top: 2.5rem; display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step-card { height: 100%; border-radius: 1rem; border: 1px solid var(--navy-100); background: #fff; padding: 1.5rem; box-shadow: var(--shadow-sm); transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--sky-200); }
.step-card__num { font-family: var(--font-serif); font-size: 1.875rem; font-weight: 700; color: var(--sky-200); transition: color 0.3s; }
.step-card:hover .step-card__num { color: var(--sky-400); }
.step-card__title { margin-top: 0.75rem; font-size: 1.125rem; font-weight: 600; color: var(--navy-900); }
.step-card__body { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.65; color: var(--navy-600); }

/* ---------- Ingredients ---------- */
.ingredient-grid { margin-top: 2.5rem; display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .ingredient-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ingredient-grid { grid-template-columns: repeat(3, 1fr); } }
.ingredient-card { height: 100%; border-radius: 1rem; border: 1px solid var(--navy-100); background: #fff; padding: 1.5rem; box-shadow: var(--shadow-sm); transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; }
.ingredient-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--sky-200); }
.ingredient-card__icon { display: flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border-radius: 0.75rem; background: var(--sky-50); color: var(--sky-600); transition: background 0.3s; }
.ingredient-card:hover .ingredient-card__icon { background: var(--sky-100); }
.ingredient-card__icon svg { width: 1.25rem; height: 1.25rem; }
.ingredient-card__tag { margin-top: 1rem; font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sky-700); }
.ingredient-card__name { margin-top: 0.25rem; font-size: 1.125rem; font-weight: 600; color: var(--navy-900); }
.ingredient-card__body { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.65; color: var(--navy-600); }

/* ---------- Benefits ---------- */
.benefits-grid { margin-top: 2.5rem; display: grid; gap: 1rem; }
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
.benefit-card { display: flex; align-items: center; gap: 1rem; border-radius: 1rem; border: 1px solid var(--navy-700); background: rgba(36,59,83,0.6); padding: 1.25rem; transition: background 0.3s, border-color 0.3s; }
.benefit-card:hover { background: var(--navy-800); border-color: rgba(56,189,248,0.4); }
.benefit-card__check { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 2.5rem; height: 2.5rem; border-radius: 9999px; background: rgba(56,189,248,0.15); color: var(--sky-300); }
.benefit-card__check svg { width: 1.25rem; height: 1.25rem; }
.benefit-card span:last-child { font-weight: 500; color: var(--navy-50); }

/* ---------- Pros & Cons ---------- */
.proscons-grid { margin-top: 2.5rem; display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .proscons-grid { grid-template-columns: repeat(2, 1fr); } }
.proscons-card { height: 100%; border-radius: 1rem; padding: 1.5rem; }
@media (min-width: 640px) { .proscons-card { padding: 1.75rem; } }
.proscons-card--pros { border: 1px solid var(--emerald-100); background: rgba(236,253,245,0.4); }
.proscons-card--cons { border: 1px solid var(--rose-100); background: rgba(255,241,242,0.4); }
.proscons-card__head { display: flex; align-items: center; gap: 0.625rem; }
.proscons-card__badge { display: flex; align-items: center; justify-content: center; width: 2rem; height: 2rem; border-radius: 9999px; color: #fff; }
.proscons-card__badge svg { width: 1.125rem; height: 1.125rem; }
.proscons-card__badge--pros { background: var(--emerald-500); }
.proscons-card__badge--cons { background: var(--rose-500); }
.proscons-card__title { font-size: 1.25rem; font-weight: 700; color: var(--navy-900); }

.proscons-list { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.875rem; }
.proscons-list__item { display: flex; gap: 0.75rem; font-size: 0.875rem; line-height: 1.65; color: var(--navy-700); }
.proscons-list__icon { flex-shrink: 0; margin-top: 0.125rem; }
.proscons-list__icon svg { width: 1.125rem; height: 1.125rem; }
.proscons-list__item--pros .proscons-list__icon { color: var(--emerald-600); }
.proscons-list__item--cons .proscons-list__icon { color: var(--rose-500); }
.proscons-list__item em { font-style: italic; color: var(--navy-800); font-weight: 500; }

/* ---------- Who might ---------- */
.who-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.who-list__item { display: flex; gap: 0.75rem; border-radius: 0.75rem; border: 1px solid var(--navy-100); background: #fff; padding: 1rem; font-size: 1rem; line-height: 1.65; color: var(--navy-700); box-shadow: var(--shadow-sm); transition: border-color 0.3s; }
.who-list__item:hover { border-color: var(--sky-200); }
.who-list__icon { flex-shrink: 0; margin-top: 0.125rem; color: var(--sky-600); }
.who-list__icon svg { width: 1.25rem; height: 1.25rem; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border-radius: 1rem; border: 1px solid var(--navy-100); background: #fff; box-shadow: var(--shadow-sm); transition: border-color 0.3s, box-shadow 0.3s; overflow: hidden; }
.faq-item.is-open { border-color: var(--sky-300); box-shadow: var(--shadow-md); }
.faq-item__q { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-serif); font-size: 1rem; font-weight: 600; color: var(--navy-900); }
@media (min-width: 640px) { .faq-item__q { font-size: 1.125rem; } }
.faq-item__chevron { flex-shrink: 0; width: 1.25rem; height: 1.25rem; color: var(--sky-600); transition: transform 0.3s; }
.faq-item.is-open .faq-item__chevron { transform: rotate(180deg); }
.faq-item__a { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows 0.3s ease, opacity 0.3s ease; }
.faq-item.is-open .faq-item__a { grid-template-rows: 1fr; opacity: 1; }
.faq-item__a > p { overflow: hidden; padding: 0 1.25rem; margin: 0; }
.faq-item.is-open .faq-item__a > p { padding-bottom: 1.25rem; font-size: 0.9375rem; line-height: 1.7; color: var(--navy-600); }

.center-cta { margin-top: 2rem; display: flex; justify-content: center; }

/* ---------- Verdict rating ---------- */
.verdict-rating { margin-top: 2rem; display: flex; align-items: center; gap: 1rem; border-radius: 1rem; border: 1px solid var(--navy-100); background: #fff; padding: 1.25rem; box-shadow: var(--shadow-sm); }
.verdict-rating__value { font-family: var(--font-serif); font-size: 1.875rem; font-weight: 700; color: var(--navy-900); }
.verdict-rating__max { font-size: 1rem; color: var(--navy-400); }
.verdict-rating__divider { width: 1px; height: 2.5rem; background: var(--navy-100); }
.verdict-rating__hint { margin-top: 0.25rem; font-size: 0.75rem; color: var(--navy-500); }

/* ---------- Final CTA ---------- */
.final-cta { position: relative; overflow: hidden; background: linear-gradient(to bottom right, var(--navy-900), var(--navy-950)); padding-top: 4rem; padding-bottom: 6rem; }
.final-cta__bg { position: absolute; inset: 0; z-index: 0; opacity: 0.3; pointer-events: none; }
.final-cta__inner { position: relative; z-index: 1; text-align: center; }
.final-cta__title { font-size: 1.875rem; font-weight: 700; letter-spacing: -0.02em; color: #fff; }
@media (min-width: 640px) { .final-cta__title { font-size: 2.25rem; } }
.final-cta__subtitle { margin-top: 1rem; font-size: 1.0625rem; line-height: 1.7; color: var(--navy-200); max-width: 36rem; margin-left: auto; margin-right: auto; }
.final-cta__actions { margin-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.final-cta__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem; font-size: 0.75rem; color: var(--navy-300); }
.final-badge { display: inline-flex; align-items: center; gap: 0.375rem; }
.final-badge .icon { width: 0.875rem; height: 0.875rem; color: var(--sky-400); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-950); color: var(--navy-300); }
.footer__inner { padding-top: 3rem; display: grid; gap: 2rem; }
@media (min-width: 640px) { .footer__inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__inner { grid-template-columns: repeat(4, 1fr); padding-bottom: 2.5rem; } }
.footer__brand { display: flex; align-items: center; gap: 0.625rem; }
.footer__mark { display: flex; align-items: center; justify-content: center; width: 2rem; height: 2rem; border-radius: 0.5rem; background: var(--navy-800); color: var(--sky-400); }
.footer__mark .icon { width: 1rem; height: 1rem; }
.footer__brand-text { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: #fff; }
.footer__tagline { margin-top: 0.75rem; font-size: 0.75rem; line-height: 1.65; color: var(--navy-400); max-width: 20rem; }
.footer__heading { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy-400); }
.footer__links { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.footer__links a { transition: color 0.2s; }
.footer__links a:hover { color: var(--sky-400); }
.footer__links--trust li { display: flex; align-items: center; gap: 0.5rem; }
.footer__links--trust .icon { width: 1rem; height: 1rem; color: var(--sky-400); }
.footer__legal { padding-top: 1.5rem; padding-bottom: 1.5rem; border-top: 1px solid var(--navy-800); display: flex; flex-direction: column; gap: 0.75rem; }
.footer__legal p { margin: 0; font-size: 0.6875rem; line-height: 1.65; color: var(--navy-500); }
.footer__legal strong { color: var(--navy-400); }
.footer__copy { padding-top: 0.5rem; font-size: 0.75rem !important; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .cta-btn:hover, .step-card:hover, .ingredient-card:hover { transform: none; }
}
