/* Dogyoga homepage. Same palette and faces as the app (css/styles.css). */

:root {
  --bg: #f2f4ee;
  --surface: #fbfcf8;
  --surface-2: #e7ece2;
  --ink: #17221c;
  --muted: #56645b;
  --line: #dfe5d9;
  --accent: #2e6a55;
  --accent-strong: #245545;
  --accent-ink: #ffffff;
  --accent-soft: #dcebe3;
  --fur: #c98643;
  --fur-soft: #f5e6d4;
  --fur-ink: #7a4a1c;

  /* dawn landscape */
  --sky-top: #dfeae3;
  --sky-low: #f6e0c6;
  --sun: #f3c58c;
  --sun-glow: rgba(243, 197, 140, 0.55);
  --word: rgba(46, 106, 85, 0.09);
  --hill-far: #bfd6c7;
  --hill-mid: #8fb8a3;
  --tree: #5f9780;
  --hill-near: var(--bg);

  /* deep bands */
  --deep: #12291f;
  --deep-2: #1b3a2d;
  --deep-ink: #eaf2ec;
  --deep-muted: #a9c2b4;

  /* pose illustrations (shared with js/figures.js) */
  --figure: #2e6a55;
  --figure-far: #9cc3b3;
  --dog: #c98643;
  --dog-far: #e2b98c;
  --mat: #cfd8c8;
  --plate: var(--surface);
  --night-figure: #9ed3bc;
  --night-figure-far: #4d7a68;

  --display: 'Bricolage Grotesque', 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
  --font: 'Figtree', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --radius: 22px;
  --gutter: clamp(16px, 4vw, 40px);
  --max: 1160px;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #101612;
    --surface: #172019;
    --surface-2: #1f2a22;
    --ink: #e8efe9;
    --muted: #9fb0a5;
    --line: #26332a;
    --accent: #86c8ac;
    --accent-strong: #a3d8c1;
    --accent-ink: #0d1a14;
    --accent-soft: #1c3329;
    --fur: #e3ab70;
    --fur-soft: #3a2b1b;
    --fur-ink: #f0c797;
    --sky-top: #0c1511;
    --sky-low: #22302a;
    --sun: #e9dcc0;
    --sun-glow: rgba(233, 220, 192, 0.16);
    --word: rgba(134, 200, 172, 0.07);
    --hill-far: #1d2d25;
    --hill-mid: #17251e;
    --tree: #22382d;
    --deep: #0b1510;
    --deep-2: #14231b;
    --figure: #86c8ac;
    --figure-far: #3f6b5a;
    --dog: #e3ab70;
    --dog-far: #8a6644;
    --mat: #2c3830;
    --plate: #e9eee5;
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --bg: #101612;
  --surface: #172019;
  --surface-2: #1f2a22;
  --ink: #e8efe9;
  --muted: #9fb0a5;
  --line: #26332a;
  --accent: #86c8ac;
  --accent-strong: #a3d8c1;
  --accent-ink: #0d1a14;
  --accent-soft: #1c3329;
  --fur: #e3ab70;
  --fur-soft: #3a2b1b;
  --fur-ink: #f0c797;
  --sky-top: #0c1511;
  --sky-low: #22302a;
  --sun: #e9dcc0;
  --sun-glow: rgba(233, 220, 192, 0.16);
  --word: rgba(134, 200, 172, 0.07);
  --hill-far: #1d2d25;
  --hill-mid: #17251e;
  --tree: #22382d;
  --deep: #0b1510;
  --deep-2: #14231b;
  --figure: #86c8ac;
  --figure-far: #3f6b5a;
  --dog: #e3ab70;
  --dog-far: #8a6644;
  --mat: #2c3830;
  --plate: #e9eee5;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 400 17px/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--display); font-weight: 650; line-height: 1.08; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
h2 { font-size: clamp(2rem, 1.3rem + 2.6vw, 3.2rem); font-variation-settings: 'opsz' 96; }
h3 { font-size: 1.2rem; letter-spacing: -0.01em; }
p { margin: 0; }
:focus-visible { outline: 3px solid var(--fur); outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.wrap.narrow { max-width: 820px; }
.eyebrow { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; z-index: 50; background: var(--surface); padding: 10px 14px; border-radius: 10px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 26px; border-radius: 999px;
  background: var(--accent); color: var(--accent-ink);
  font: 700 1rem var(--font); text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}
.btn:hover { background: var(--accent-strong); }
.btn:active { transform: scale(0.98); }
.btn-small { min-height: 42px; padding: 0 18px; font-size: 0.92rem; }
.btn-quiet { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--ink) 25%, transparent); }
.btn-quiet:hover { background: color-mix(in srgb, var(--surface) 70%, transparent); }
.btn-light { background: var(--fur); color: #21150a; }
.btn-light:hover { background: color-mix(in srgb, var(--fur) 85%, white); }

/* ───── Header ───── */
.site-header {
  position: sticky; top: env(safe-area-inset-top, 0px); z-index: 20;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
}
.bar { max-width: var(--max); margin-inline: auto; padding: 12px var(--gutter); display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 8px; font: 700 1.3rem var(--display); letter-spacing: -0.02em; text-decoration: none; }
.brand-mark { width: 26px; height: 26px; fill: var(--fur); }
.links { display: flex; gap: 22px; margin-inline: auto; }
.links a { text-decoration: none; font-weight: 600; font-size: 0.95rem; color: var(--muted); }
.links a:hover { color: var(--ink); }
.bar-actions { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.links + .bar-actions { margin-left: 0; }
.link-login { font-weight: 700; text-decoration: none; font-size: 0.95rem; }
@media (max-width: 900px) { .links { display: none; } }
@media (max-width: 380px) { .link-login { display: none; } }

/* ───── Hero ───── */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  background: linear-gradient(180deg, var(--sky-top) 0%, var(--sky-low) 78%);
  padding-top: clamp(40px, 7vw, 96px);
}
.sky { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.sun {
  position: absolute; right: 12%; top: 16%;
  width: clamp(120px, 17vw, 230px); aspect-ratio: 1; border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 140px 70px var(--sun-glow);
  animation: rise 1.6s cubic-bezier(.2,.7,.2,1) both;
}
.giant-word {
  position: absolute; left: 50%; bottom: 17%; translate: -50% 0;
  font: 800 clamp(9rem, 30vw, 26rem)/0.8 var(--display);
  font-variation-settings: 'opsz' 96; letter-spacing: -0.06em;
  color: var(--word); white-space: nowrap; user-select: none;
}
.hill { position: absolute; left: 0; width: 100%; display: block; }
.hill-far { bottom: 0; height: 40%; fill: var(--hill-far); }
.hill-mid { bottom: 0; height: 28%; fill: var(--hill-mid); }
.hill-mid .trees { fill: var(--tree); }
.hill-near { position: absolute; bottom: -1px; height: clamp(40px, 7vw, 90px); fill: var(--hill-near); z-index: 1; }
@keyframes rise { from { transform: translateY(40px); } }

.hero-inner {
  max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter);
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(20px, 4vw, 56px); align-items: end;
  position: relative; z-index: 2;
}
.hero-copy { display: flex; flex-direction: column; gap: 20px; padding-bottom: clamp(56px, 9vw, 120px); }
.hero h1 {
  font-size: clamp(3rem, 1.6rem + 6vw, 6.4rem); font-weight: 700; line-height: 0.92; letter-spacing: -0.045em;
  font-variation-settings: 'opsz' 96;
}
.hero h1 span { display: inline-block; color: var(--accent); font-weight: 500; font-size: 0.62em; letter-spacing: -0.03em; margin-top: 0.12em; }
.lead { font-size: clamp(1.05rem, 1rem + 0.3vw, 1.25rem); color: var(--muted); max-width: 34ch; }
:root .hero .lead { color: color-mix(in srgb, var(--ink) 72%, transparent); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.facts { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 28px; font-size: 0.95rem; color: color-mix(in srgb, var(--ink) 70%, transparent); }
.facts strong { font: 700 1.5rem/1 var(--display); color: var(--ink); margin-right: 6px; font-variant-numeric: tabular-nums; }

.hero-stage { margin: 0; align-self: end; position: relative; padding-bottom: clamp(18px, 3vw, 40px); }
.hero-stage .scene { width: 100%; height: auto; display: block; overflow: visible; }
.hero-stage figcaption {
  display: inline-flex; align-items: center; gap: 8px; margin: 6px 0 0 8%;
  font-size: 0.85rem; font-weight: 600; color: color-mix(in srgb, var(--ink) 70%, transparent);
  background: color-mix(in srgb, var(--surface) 70%, transparent); padding: 6px 12px; border-radius: 999px;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--fur); animation: pulse 8s ease-in-out infinite; }
@keyframes pulse { 50% { transform: scale(1.7); opacity: 0.6; } }

@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 0; }
  .hero-stage { max-width: 560px; width: 100%; justify-self: center; }
  .giant-word { bottom: 30%; }
  .sun { top: -50px; right: -50px; width: 170px; }
  .hill-far { height: 34%; }
  .hill-mid { height: 24%; }
}

/* ───── Pose illustrations (live scenes) ───── */
.scene line { fill: none; }
.person-body, .person-limb { stroke: var(--figure); }
.person-far { stroke: var(--figure-far); }
.person-head { fill: var(--figure); }
.dog-body, .dog-limb, .dog-ear { stroke: var(--dog); }
.dog-far { stroke: var(--dog-far); }
.dog-head { fill: var(--dog); }
.dog-eye { fill: var(--surface); }
.fig-dog.behind { opacity: 0.85; }
.fig-mat { fill: var(--mat); }
.fig-wall { fill: var(--line); }

/* ───── Sections ───── */
.section { padding-block: clamp(64px, 9vw, 128px); }
.section > .wrap { display: flex; flex-direction: column; gap: 20px; }
.section h2 { max-width: 20ch; }
.split { display: grid !important; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px) !important; align-items: center; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.prose { display: flex; flex-direction: column; gap: 18px; max-width: 60ch; }
.prose p { color: var(--muted); }
.prose strong { color: var(--ink); }
.section-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 16px 40px; }
.section-head > div { display: flex; flex-direction: column; gap: 14px; }
.section-note { color: var(--muted); max-width: 36ch; }

.aka { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.aka li { padding: 6px 14px; border-radius: 999px; background: var(--fur-soft); color: var(--fur-ink); font-weight: 700; font-size: 0.9rem; }

.plate { margin: 0; display: flex; flex-direction: column; gap: 14px; }
.plate img { width: 100%; border-radius: var(--radius); background: var(--plate); padding: 6% 4% 2%; }
.plate figcaption { color: var(--muted); font-size: 0.92rem; }

/* How it works: a real sequence, so it's numbered. */
.how { background: var(--surface); }
.steps { list-style: none; counter-reset: step; margin: 24px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
.steps li { counter-increment: step; display: flex; flex-direction: column; gap: 10px; padding-top: 18px; border-top: 2px solid var(--line); }
.steps li::before { content: counter(step); font: 700 2.6rem/1 var(--display); color: var(--fur); font-variant-numeric: tabular-nums; }
.steps p { color: var(--muted); font-size: 0.98rem; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* Deep bands with parallax backgrounds */
.band { position: relative; overflow: hidden; isolation: isolate; background: var(--deep); color: var(--deep-ink); padding-block: clamp(72px, 10vw, 140px); }
.band-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.band p { color: var(--deep-muted); }
.band h2 { color: var(--deep-ink); }

.ring { position: absolute; border-radius: 50%; border: 1px solid color-mix(in srgb, var(--deep-ink) 12%, transparent); left: 18%; top: 50%; translate: -50% -50%; }
.ring.r1 { width: 860px; height: 860px; }
.ring.r2 { width: 600px; height: 600px; border-color: color-mix(in srgb, var(--deep-ink) 9%, transparent); }
.ring.r3 { width: 1180px; height: 1180px; border-color: color-mix(in srgb, var(--deep-ink) 6%, transparent); }
.band-inner { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: clamp(32px, 6vw, 88px); align-items: center; }
.band-inner > div:last-child { display: flex; flex-direction: column; gap: 18px; max-width: 58ch; }
.breath { position: relative; width: clamp(200px, 26vw, 300px); aspect-ratio: 1; display: grid; place-items: center; }
.breath-disc {
  position: absolute; inset: 14%; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, color-mix(in srgb, var(--fur) 55%, var(--deep-2)), var(--deep-2) 72%);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--fur) 40%, transparent), 0 0 80px color-mix(in srgb, var(--fur) 25%, transparent);
  animation: breathe 8s ease-in-out infinite;
}
.breath-count { position: relative; font: 600 1.05rem var(--display); letter-spacing: 0.02em; color: var(--deep-ink); }
.breath-count b { font-size: 2.4rem; display: block; text-align: center; line-height: 1; font-variant-numeric: tabular-nums; }
@keyframes breathe { 0%, 100% { transform: scale(0.82); } 50% { transform: scale(1.06); } }
@media (max-width: 720px) { .band-inner { grid-template-columns: 1fr; justify-items: start; } }

/* Poses */
.pose-grid { list-style: none; margin: 20px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 36px 24px; }
.pose { display: flex; flex-direction: column; gap: 8px; }
.pose img { width: 100%; aspect-ratio: 2 / 1; object-fit: contain; background: var(--plate); border-radius: 18px; padding: 8% 6% 4%; margin-bottom: 8px; transition: transform 0.35s ease; }
.pose:hover img { transform: translateY(-4px); }
.pose h3 { font-size: 1.1rem; }
.pose p { color: var(--muted); font-size: 0.95rem; }
.pose b { color: var(--fur-ink); font-weight: 700; }
@media (max-width: 1000px) { .pose-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 460px) { .pose-grid { grid-template-columns: 1fr; } }

/* Session anatomy */
.anatomy { background: var(--surface); }
.phases { list-style: none; margin: 24px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 2.2fr 1.3fr 1fr; gap: 4px; }
.phases li { display: flex; flex-direction: column; gap: 12px; }
.phases li::before { content: ''; height: 10px; border-radius: 999px; background: var(--accent-soft); }
.phases li:nth-child(2)::before { background: var(--accent); }
.phases li:nth-child(3)::before { background: var(--figure-far); }
.phases li:nth-child(4)::before { background: var(--fur); }
.phases li p { color: var(--muted); font-size: 0.95rem; padding-right: 16px; }
.phase-name { font: 650 1.15rem var(--display); }
@media (max-width: 760px) {
  .phases { grid-template-columns: 1fr; gap: 20px; }
  .phases li { display: grid; grid-template-columns: 10px 1fr; column-gap: 16px; }
  .phases li::before { height: auto; grid-row: span 2; }
}

/* Benefits */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 72px); margin-top: 16px; }
@media (max-width: 720px) { .two-col { grid-template-columns: 1fr; } }
.benefit-list { display: flex; flex-direction: column; gap: 12px; }
.benefit-list h3 { font-size: 1.5rem; color: var(--accent); }
.benefit-list ul { list-style: none; margin: 0; padding: 0; }
.benefit-list li { padding: 16px 0; border-top: 1px solid var(--line); color: var(--muted); }
.benefit-list li b { color: var(--ink); display: block; font-size: 1.05rem; }

/* Tables */
.table-wrap { overflow-x: auto; margin-top: 12px; }
table { width: 100%; border-collapse: collapse; font-size: 0.98rem; min-width: 520px; }
th, td { text-align: left; padding: 16px 16px 16px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
tbody th { font: 650 1.05rem var(--display); }
.goal-table td:nth-child(2) { font-variant-numeric: tabular-nums; font-weight: 700; white-space: nowrap; }
.goal-table td:last-child { color: var(--muted); }
.compare-table td:last-child { color: var(--accent); font-weight: 700; }
.compare-table td:nth-child(2) { color: var(--muted); }

/* Every dog */
.every-dog { background: linear-gradient(180deg, var(--bg), var(--fur-soft) 140%); }
.dog-row { margin: 24px 0 8px; display: flex; flex-direction: column; gap: 10px; }
.dog-row img { width: 100%; max-width: 720px; background: var(--plate); border-radius: 18px; padding: 16px 24px 12px; }
.dog-row figcaption { max-width: 720px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.adapt { list-style: none; margin: 16px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.adapt li { display: flex; flex-direction: column; gap: 8px; }
.adapt p { color: var(--muted); font-size: 0.95rem; }
@media (max-width: 900px) { .adapt { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 460px) { .adapt { grid-template-columns: 1fr; } }

/* Safety */
.rules { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.rules li { padding: 18px 0 18px 36px; border-bottom: 1px solid var(--line); position: relative; font-weight: 600; }
.rules li::before { content: ''; position: absolute; left: 4px; top: 25px; width: 14px; height: 8px; border: solid var(--accent); border-width: 0 0 2.5px 2.5px; rotate: -45deg; }

/* FAQ */
.faq { background: var(--surface); }
.faq-list { margin-top: 12px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 22px 44px 22px 0; position: relative;
  font: 650 1.2rem/1.3 var(--display);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 8px; top: 50%; width: 12px; height: 12px; margin-top: -8px;
  border: solid var(--accent); border-width: 0 2.5px 2.5px 0; rotate: 45deg; transition: rotate 0.2s ease;
}
.faq details[open] summary::after { rotate: 225deg; margin-top: -2px; }
.faq details p { color: var(--muted); padding: 0 0 22px; max-width: 64ch; }

/* Night band */
.night { background: linear-gradient(180deg, var(--deep) 0%, var(--deep-2) 100%); text-align: center; padding-bottom: 0; }
.night-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.night h2 { max-width: 18ch; font-size: clamp(2.2rem, 1.4rem + 3.2vw, 3.8rem); }
.night p { max-width: 46ch; }
.night .scene { width: min(640px, 100%); height: auto; margin-top: 12px; overflow: visible; }
.night .fig-mat { fill: color-mix(in srgb, var(--deep-ink) 16%, transparent); }
.night .person-body, .night .person-limb { stroke: var(--night-figure); }
.night .person-head { fill: var(--night-figure); }
.night .person-far { stroke: var(--night-figure-far); }
.night .dog-eye { fill: var(--deep-2); }
.stars { position: absolute; inset: -20% 0 0; }
.stars.s1 {
  background-image:
    radial-gradient(1.6px 1.6px at 12% 22%, #fff9 50%, transparent 51%),
    radial-gradient(1.2px 1.2px at 28% 64%, #fff7 50%, transparent 51%),
    radial-gradient(1.8px 1.8px at 46% 14%, #fffa 50%, transparent 51%),
    radial-gradient(1.2px 1.2px at 63% 40%, #fff6 50%, transparent 51%),
    radial-gradient(1.6px 1.6px at 81% 18%, #fff9 50%, transparent 51%),
    radial-gradient(1.2px 1.2px at 92% 58%, #fff7 50%, transparent 51%);
  background-size: 520px 420px;
}
.stars.s2 {
  background-image:
    radial-gradient(1px 1px at 8% 48%, #fff5 50%, transparent 51%),
    radial-gradient(1px 1px at 36% 30%, #fff5 50%, transparent 51%),
    radial-gradient(1px 1px at 55% 72%, #fff4 50%, transparent 51%),
    radial-gradient(1px 1px at 74% 8%, #fff5 50%, transparent 51%);
  background-size: 300px 260px;
}
.moon {
  position: absolute; right: 10%; top: 14%; width: clamp(56px, 8vw, 96px); aspect-ratio: 1; border-radius: 50%;
  background: #f4ead2; box-shadow: 0 0 60px 10px rgba(244, 234, 210, 0.18);
}
.moon::after { content: ''; position: absolute; inset: -4% -4% 10% 22%; border-radius: 50%; background: var(--deep); }

/* Footer */
.site-footer { background: var(--deep-2); color: var(--deep-ink); padding-block: 48px 32px; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px 48px; }
.footer-grid > div { display: flex; flex-direction: column; gap: 10px; max-width: 42ch; }
.site-footer .brand { font-size: 1.5rem; }
.footer-note, .legal { color: var(--deep-muted); font-size: 0.92rem; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 10px 28px; align-content: start; }
.site-footer nav a { text-decoration: none; font-weight: 600; }
.site-footer nav a:hover { text-decoration: underline; }
.legal { margin-top: 32px; padding-top: 20px; border-top: 1px solid color-mix(in srgb, var(--deep-ink) 12%, transparent); }

@media (prefers-reduced-motion: reduce) {
  .sun, .dot, .breath-disc { animation: none; }
  [data-speed] { transform: none !important; }
}
