/* ============================================================
   All Recipe Diet — warm, food-magazine palette
   ============================================================ */

:root {
  /* Warm cream + terracotta + olive — derived from healthy-food imagery */
  --cream: #fbf6ee;
  --cream-2: #f4ecdd;
  --cream-3: #ebe0c9;
  --ink: #211a14;
  --ink-2: #3a2e22;
  --muted: #6b5b4a;
  --line: #e6dcc7;

  --terracotta: #c8623d;
  --terracotta-dark: #a64d2c;
  --terracotta-soft: #f1d6c7;

  --olive: #6e7f3a;
  --olive-dark: #4f5f25;
  --olive-soft: #dde4c1;

  --honey: #d49a3b;

  --bg: var(--cream);
  --surface: #ffffff;
  --surface-2: var(--cream-2);
  --surface-3: var(--cream-3);
  --text: var(--ink);
  --text-muted: var(--muted);
  --border: var(--line);
  --primary: var(--terracotta);
  --primary-hover: var(--terracotta-dark);
  --primary-soft: var(--terracotta-soft);
  --accent: var(--olive);
  --accent-soft: var(--olive-soft);

  --shadow-sm: 0 1px 2px rgba(45, 28, 12, .06), 0 1px 3px rgba(45, 28, 12, .04);
  --shadow-md: 0 4px 12px rgba(45, 28, 12, .06), 0 12px 28px rgba(45, 28, 12, .07);
  --shadow-lg: 0 10px 30px rgba(45, 28, 12, .10), 0 30px 60px rgba(45, 28, 12, .10);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --container: 1180px;
  --gap: clamp(16px, 2vw, 24px);

  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --easing: cubic-bezier(.2, .7, .2, 1);
}

[data-theme="dark"] {
  --bg: #1a140e;
  --surface: #211a13;
  --surface-2: #2a2118;
  --surface-3: #322618;
  --text: #f4ecdd;
  --text-muted: #b9a98e;
  --border: #3b2e1f;
  --primary: #e57a55;
  --primary-hover: #f08e6c;
  --primary-soft: #4a2317;
  --accent: #b8c878;
  --accent-soft: #2c3315;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 6px 20px rgba(0,0,0,.45);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.55);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #1a140e;
    --surface: #211a13;
    --surface-2: #2a2118;
    --surface-3: #322618;
    --text: #f4ecdd;
    --text-muted: #b9a98e;
    --border: #3b2e1f;
    --primary: #e57a55;
    --primary-hover: #f08e6c;
    --primary-soft: #4a2317;
    --accent: #b8c878;
    --accent-soft: #2c3315;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
    --shadow-md: 0 6px 20px rgba(0,0,0,.45);
    --shadow-lg: 0 20px 60px rgba(0,0,0,.55);
  }
}

/* ---------------- Reset / base ---------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--primary-soft); color: var(--ink); }
[data-theme="dark"] ::selection { background: var(--primary); color: #1a140e; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

/* ---------------- Typography ---------------- */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-variation-settings: "opsz" 96, "SOFT" 30;
  margin: 0 0 .4em;
}
h1.display { font-size: clamp(2.4rem, 5.2vw, 4.4rem); }
h2.display { font-size: clamp(2rem, 3.8vw, 3.1rem); }
h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 .4em;
}
.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.lede, .section-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: var(--text-muted);
  max-width: 60ch;
  line-height: 1.6;
}
.muted { color: var(--text-muted); }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 85%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid color-mix(in oklab, var(--border) 70%, transparent);
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--terracotta);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
}
[data-theme="dark"] .logo { color: var(--primary); }
.logo-mark { flex: 0 0 auto; }
.logo-word { color: var(--text); }

.primary-nav {
  display: flex;
  gap: 22px;
  margin-inline: auto;
  font-size: .95rem;
  font-weight: 500;
}
.primary-nav a {
  color: var(--text);
  position: relative;
  padding: 6px 0;
  opacity: .8;
  transition: opacity .2s var(--easing);
}
.primary-nav a:hover { opacity: 1; }
.primary-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1.5px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--easing);
}
.primary-nav a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  transition: all .2s var(--easing);
}
.icon-btn:hover { border-color: var(--primary); color: var(--primary); }
.icon-btn .ico-moon { display: none; }
[data-theme="dark"] .icon-btn .ico-sun { display: none; }
[data-theme="dark"] .icon-btn .ico-moon { display: block; }

@media (max-width: 820px) {
  .primary-nav { display: none; }
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.1;
  border: 1.5px solid transparent;
  transition: transform .15s var(--easing), background-color .2s var(--easing), box-shadow .25s var(--easing), color .2s var(--easing);
  text-align: center;
  white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: .92rem; }
.btn-lg { padding: 18px 28px; font-size: 1.05rem; }
.btn-primary {
  background: var(--primary);
  color: #fff7ec;
  box-shadow: 0 6px 18px rgba(200, 98, 61, .35);
}
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(200, 98, 61, .45); }
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); }
.btn-block { width: 100%; }
.btn-sub {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .02em;
  opacity: .8;
}
.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 6px;
}
.link-arrow span { transition: transform .2s var(--easing); }
.link-arrow:hover span { transform: translateX(4px); }

/* ---------------- HERO ---------------- */
.hero {
  position: relative;
  padding: clamp(40px, 6vw, 72px) 0 0;
  background:
    radial-gradient(1200px 500px at 80% -10%, color-mix(in oklab, var(--terracotta) 14%, transparent), transparent 60%),
    radial-gradient(900px 400px at -10% 30%, color-mix(in oklab, var(--olive) 10%, transparent), transparent 60%);
}
.hero-grid {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: 1fr;
  align-items: center;
  padding-bottom: clamp(40px, 5vw, 64px);
}
@media (min-width: 920px) {
  .hero-grid { grid-template-columns: 1fr 1.05fr; }
}
.hero-copy { max-width: 60ch; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-trust {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  color: var(--text-muted);
  font-size: .92rem;
}
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { color: var(--olive); }
[data-theme="dark"] .hero-trust svg { color: var(--accent); }

.hero-image {
  margin: 0;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(.4deg);
}
.hero-image img { display: block; width: 100%; height: auto; }
.hero-caption {
  position: absolute;
  bottom: 16px; left: 16px;
  background: color-mix(in oklab, #fff 88%, transparent);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: .85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(6px);
}
.hero-caption .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--olive);
  display: inline-block;
}

/* Marquee */
.marquee {
  border-block: 1px solid var(--border);
  background: var(--surface-2);
  overflow: hidden;
  padding: 16px 0;
  margin-top: 12px;
}
.marquee-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-muted);
  font-style: italic;
  font-weight: 500;
}
.marquee-track span:nth-child(2n) { color: var(--primary); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------------- Sections ---------------- */
.section {
  padding: clamp(56px, 8vw, 110px) 0;
}
.section-cream { background: var(--surface-2); }
.section-warm  {
  background:
    linear-gradient(180deg, transparent, color-mix(in oklab, var(--terracotta) 7%, transparent)),
    var(--surface-2);
}
.section-head {
  max-width: 720px;
  margin: 0 auto clamp(32px, 4vw, 56px);
  text-align: center;
}
.section-head .eyebrow { color: var(--accent); }

/* ---------------- Cards ---------------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--easing), box-shadow .3s var(--easing), border-color .25s var(--easing);
}

/* ---------------- Packages ---------------- */
.packages {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 760px) {
  .packages { grid-template-columns: 1fr 1fr; }
}
.pkg { display: flex; flex-direction: column; position: relative; padding: 32px; }
.pkg-starter:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.pkg-premium {
  background: linear-gradient(165deg, var(--surface), color-mix(in oklab, var(--terracotta) 8%, var(--surface)));
  border-color: color-mix(in oklab, var(--primary) 35%, var(--border));
  box-shadow: var(--shadow-md);
}
.pkg-premium:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pkg-ribbon {
  position: absolute;
  top: -12px; right: 24px;
  background: var(--primary);
  color: #fff7ec;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(200,98,61,.4);
}
.pkg-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pkg-name { font-size: 1.7rem; margin: 0; }
.badge {
  font-size: .75rem;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.badge-soft { background: var(--accent-soft); color: var(--olive-dark); }
[data-theme="dark"] .badge-soft { color: var(--accent); }
.badge-strong { background: var(--primary); color: #fff7ec; }

.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 16px 0 4px;
  font-family: var(--font-display);
  color: var(--text);
}
.price-currency { font-size: 1.6rem; font-weight: 500; opacity: .7; }
.price-amount { font-size: 4rem; font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.price-meta { font-family: var(--font-body); font-size: .9rem; color: var(--text-muted); margin-left: 4px; }

.pkg-tag { color: var(--text-muted); margin: 0 0 22px; }
.pkg-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
  flex: 1;
}
.pkg-list li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
.check {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--olive-dark);
  font-weight: 700;
  font-size: .9rem;
  margin-top: 1px;
}
[data-theme="dark"] .check { color: var(--accent); }

.pkg-foot {
  font-size: .82rem;
  color: var(--text-muted);
  text-align: center;
  margin: 12px 0 0;
}

.pkg-disclaimer {
  margin: clamp(24px, 4vw, 36px) auto 0;
  max-width: 760px;
  text-align: center;
  font-size: .88rem;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 16px 22px;
}

/* ---------------- Recipes ---------------- */
.recipe-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .recipe-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .recipe-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.recipe-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.recipe-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: color-mix(in oklab, var(--primary) 35%, var(--border)); }

.recipe-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-3);
}
.recipe-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--easing);
}
.recipe-card:hover .recipe-img img { transform: scale(1.04); }
.badge-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: color-mix(in oklab, #fff 90%, transparent);
  color: var(--ink);
  font-size: .72rem;
  letter-spacing: .04em;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.badge-tag-premium { background: var(--primary); color: #fff7ec; }

.recipe-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.recipe-title { font-size: 1.18rem; line-height: 1.25; margin-bottom: 2px; }
.recipe-desc { color: var(--text-muted); font-size: .94rem; line-height: 1.5; margin: 0; flex: 1; }
.recipe-meta {
  list-style: none;
  margin: 14px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 18px;
  font-size: .82rem;
  color: var(--text-muted);
}
.recipe-meta li { display: flex; flex-direction: column; line-height: 1.1; }
.recipe-meta strong { color: var(--text); font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; }
.recipe-meta span { font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; opacity: .8; }

/* Locked recipe */
.recipe-locked .recipe-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(33,26,20,.05), rgba(33,26,20,.45));
}
.lock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  z-index: 1;
  pointer-events: none;
}
.lock-overlay span { font-size: .9rem; letter-spacing: .02em; }

.recipe-img-tease {
  background: linear-gradient(165deg, var(--surface-2), var(--surface-3));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.recipe-locked.recipe-teaser .recipe-img::after { display: none; }
.tease-stack { display: flex; flex-direction: column; gap: 10px; align-items: stretch; width: 100%; }
.tease-row { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.tease-pill {
  font-size: .78rem;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
}
.tease-pill:nth-child(odd) { color: var(--primary); border-color: color-mix(in oklab, var(--primary) 30%, var(--border)); }

/* ---------------- Included grid ---------------- */
.included-grid {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 920px) { .included-grid { grid-template-columns: 1fr 1fr; } }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 18px;
}
.feature-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
}
.feature-ico {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--olive-dark);
}
[data-theme="dark"] .feature-ico { color: var(--accent); }
.feature-list h3 { font-size: 1.1rem; margin-bottom: 4px; }
.feature-list p { color: var(--text-muted); margin: 0; font-size: .96rem; }

.included-image {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-.4deg);
}
.included-image img { width: 100%; }

/* ---------------- Quotes ---------------- */
.quote-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .quote-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .quote-grid { grid-template-columns: repeat(4, 1fr); } }

.quote {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.quote::before {
  content: "“";
  position: absolute;
  top: 8px; left: 22px;
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--primary);
  opacity: .2;
  pointer-events: none;
}
.quote-feature {
  background: linear-gradient(160deg, var(--surface), var(--accent-soft));
  border-color: color-mix(in oklab, var(--accent) 25%, var(--border));
}
.quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--text);
  font-weight: 500;
  padding-top: 18px;
}
.quote figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: var(--text-muted);
  margin-top: auto;
}
.quote figcaption small { color: var(--text-muted); margin-left: 4px; }
.initials {
  display: inline-grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff7ec;
  font-weight: 700;
  font-size: .85rem;
  font-family: var(--font-body);
}

/* ---------------- FAQ ---------------- */
.faq-wrap { max-width: 820px; margin-inline: auto; }
.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 22px;
  transition: border-color .2s var(--easing), box-shadow .25s var(--easing);
}
.faq details[open] { border-color: color-mix(in oklab, var(--primary) 35%, var(--border)); box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev {
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--primary);
  transition: transform .2s var(--easing);
}
.faq details[open] summary .chev { transform: rotate(45deg); }
.faq p {
  margin: 0 0 18px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------------- Final CTA ---------------- */
.final-cta { padding-bottom: clamp(64px, 8vw, 110px); }
.cta-card {
  background:
    radial-gradient(800px 320px at 80% 10%, color-mix(in oklab, var(--primary) 22%, transparent), transparent 60%),
    radial-gradient(700px 300px at 0% 90%, color-mix(in oklab, var(--olive) 18%, transparent), transparent 60%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 5vw, 64px);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-card h2 { margin-bottom: 14px; }
.cta-card p { color: var(--text-muted); margin: 0 auto 26px; max-width: 50ch; }
.cta-card .hero-cta { justify-content: center; }
.cta-fine { margin-top: 22px; font-size: .85rem; color: var(--text-muted); }

/* ---------------- Footer ---------------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface-2);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1.4fr; }
}
.footer-brand .logo { color: var(--primary); }
.footer-tag { color: var(--text-muted); margin-top: 8px; max-width: 30ch; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav h4, .footer-disclaimer h4 {
  font-family: var(--font-display);
  font-size: .9rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 10px;
  font-weight: 600;
}
.footer-nav a { color: var(--text); font-size: .95rem; opacity: .8; transition: opacity .2s var(--easing); }
.footer-nav a:hover { opacity: 1; color: var(--primary); }
.footer-disclaimer p {
  color: var(--text-muted);
  font-size: .86rem;
  line-height: 1.55;
  margin: 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .82rem;
}

/* No scroll-reveal — keep page accessible without JS dependency for visibility. */
