/* ============================================================
   Athos Visuals — design tokens & styles
   Cream & Sun palette, navy screening-room bands.
   ============================================================ */

/* self-hosted variable fonts (no Google CDN — GDPR + speed) */
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("../assets/fonts/space-grotesk-var.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../assets/fonts/inter-var.woff2") format("woff2");
}

:root {
  /* color */
  --paper: #fbf3e4;
  --surface: #fffdf7;
  --ink: #22304a;
  --ink-2: #4a5872;
  --accent: #ffb800;
  --accent-ink: #8a5a00;
  --dark: #1c2740;
  --dark-2: #29385c;
  --paper-on-dark: #f7efdd;
  --muted-on-dark: #a9b2c8;
  --line: #eadfc6;

  /* type */
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --step--1: clamp(0.83rem, 0.80rem + 0.15vw, 0.94rem);
  --step-0: clamp(1rem, 0.96rem + 0.22vw, 1.13rem);
  --step-1: clamp(1.2rem, 1.13rem + 0.34vw, 1.42rem);
  --step-2: clamp(1.44rem, 1.33rem + 0.55vw, 1.77rem);
  --step-3: clamp(1.73rem, 1.55rem + 0.86vw, 2.22rem);
  --step-4: clamp(2.07rem, 1.81rem + 1.30vw, 2.78rem);
  --step-5: clamp(2.49rem, 2.10rem + 1.95vw, 3.47rem);
  --step-6: clamp(2.6rem, 1.9rem + 3.4vw, 4.6rem);

  /* space */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-s: 0.75rem;
  --space-m: 1.25rem;
  --space-l: 2rem;
  --space-xl: 3.25rem;
  --space-2xl: clamp(4rem, 3rem + 4vw, 6.5rem);
  --space-3xl: clamp(5.5rem, 4rem + 6vw, 8rem);

  --radius: 16px;
  --radius-s: 10px;
  --max-w: 72rem;
  --shadow: 0 1px 2px rgb(34 48 74 / 0.06), 0 8px 24px rgb(34 48 74 / 0.08);
  --shadow-lift: 0 2px 4px rgb(34 48 74 / 0.09), 0 16px 40px rgb(34 48 74 / 0.16);
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, iframe { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  margin: 0 0 var(--space-m);
  letter-spacing: -0.015em;
}
h1 { font-size: var(--step-6); font-weight: 700; }
h2 { font-size: var(--step-4); font-weight: 700; }
h3 { font-size: var(--step-2); font-weight: 500; }
p { margin: 0 0 var(--space-m); max-width: 65ch; }
a { color: var(--accent-ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }
/* yellow reads too faint against cream, so focus rings use the dark amber on
   light sections and flip to yellow on dark ones */
:focus-visible { outline: 3px solid var(--accent-ink); outline-offset: 3px; border-radius: 2px; }
.on-dark :focus-visible, .site-footer :focus-visible { outline-color: var(--accent); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.skip-link {
  position: absolute; left: var(--space-m); top: -100px;
  background: var(--ink); color: var(--paper-on-dark);
  padding: var(--space-xs) var(--space-m); border-radius: var(--radius-s);
  z-index: 100; transition: top 0.15s;
}
.skip-link:focus { top: var(--space-m); }

.wrap { max-width: var(--max-w); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.section { padding-block: var(--space-2xl); }

.eyebrow {
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-ink);
  margin-bottom: var(--space-s);
}
.on-dark .eyebrow { color: var(--accent); }
.section-head { margin-bottom: var(--space-xl); }
.section-head .lead { color: var(--ink-2); font-size: var(--step-1); }
.on-dark .section-head .lead { color: var(--paper-on-dark); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-0);
  color: var(--ink);
  background: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 999px;
  padding: 0.7em 1.6em;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-ghost { background: transparent; border-color: currentColor; color: var(--ink); }
.on-dark .btn-ghost { color: var(--paper-on-dark); }
.btn-ghost:hover { color: inherit; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-m); min-height: 4.25rem;
}
.logo {
  font-family: var(--font-display); font-weight: 700; font-size: var(--step-1);
  color: var(--ink); text-decoration: none; letter-spacing: -0.02em;
  display: inline-flex; align-items: center; gap: 0.55rem;
}
.logo .dot { color: var(--accent); }
.logo-mark { display: block; flex-shrink: 0; }
.nav-toggle {
  display: none;
  background: none; border: 0; padding: var(--space-xs);
  font: inherit; cursor: pointer; color: var(--ink);
}
.nav-toggle svg { display: block; }
.site-nav ul {
  display: flex; align-items: center; gap: var(--space-l);
  list-style: none; margin: 0; padding: 0;
}
.site-nav a {
  font-family: var(--font-display); font-weight: 500;
  color: var(--ink); text-decoration: none; font-size: var(--step-0);
}
.site-nav a:hover { color: var(--accent-ink); }
.site-nav a[aria-current="page"] {
  color: var(--accent-ink);
  text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px;
}
.site-nav .btn { padding: 0.45em 1.2em; }
.site-nav .lang-switch {
  border: 2px solid var(--line); border-radius: 999px;
  padding: 0.25em 0.8em; font-size: var(--step--1); font-weight: 700;
}
.site-nav .lang-switch:hover { border-color: var(--ink); color: var(--ink); }
.site-nav a.btn:hover { color: var(--ink); }

@media (max-width: 959px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: block; }
  .site-nav ul {
    flex-direction: column; align-items: flex-start;
    padding: var(--space-m) clamp(1.25rem, 4vw, 2.5rem) var(--space-l);
    gap: var(--space-m);
  }
}

/* ---------- hero ---------- */
.on-dark { background: var(--dark); color: var(--paper-on-dark); }
.on-dark p { color: var(--muted-on-dark); }
.on-dark a { color: var(--paper-on-dark); }
/* Demo Duck proportions: title block on top, big cinema-band video below,
   both fitting the first viewport together on desktop. */
.hero { padding-block: var(--space-xl); display: grid; align-items: center; }
.hero-grid { display: grid; gap: var(--space-l); }
.hero-copy { text-align: center; margin-inline: auto; max-width: 62rem; }
.hero h1 { margin-bottom: var(--space-m); }
.hero h1 .accent { color: var(--accent); }
.hero .sub { font-size: var(--step-1); max-width: 48ch; line-height: 1.5; margin-inline: auto; }
.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-m); margin-top: var(--space-l); }
.hero-video { width: 100%; }
.hero-note { font-size: var(--step--1); color: var(--muted-on-dark); margin-top: var(--space-s); text-align: center; }
.hero .video-thumb .play { width: 5rem; height: 5rem; }
.hero .video-thumb .play svg { width: 1.8rem; height: 1.8rem; }
@media (min-width: 960px) {
  /* side-by-side, video dominates (~60% of a wider-than-normal wrap) */
  .hero { min-height: calc(100svh - 4.25rem); }
  .hero .wrap { max-width: 80rem; width: 100%; }
  .hero-grid { grid-template-columns: 2fr 3fr; align-items: center; gap: var(--space-xl); }
  .hero-copy { text-align: left; margin-inline: 0; max-width: none; }
  .hero .sub { margin-inline: 0; max-width: 36ch; }
  .hero-ctas { justify-content: flex-start; }
  .hero-note { text-align: left; }
}

/* ---------- video facade ---------- */
.video-frame { border-radius: var(--radius); overflow: hidden; background: #000; }
.video-thumb {
  position: relative; display: block; width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0; border: 0; cursor: pointer; background: #000;
}
.video-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.25s ease, opacity 0.25s;
}
.video-thumb:hover img { transform: scale(1.03); opacity: 0.85; }
.video-thumb .play {
  position: absolute; inset: 0; margin: auto;
  width: 4rem; height: 4rem;
  display: grid; place-items: center;
  background: var(--accent); color: var(--ink);
  border-radius: 50%;
  transition: transform 0.15s;
}
.video-thumb:hover .play { transform: scale(1.1); }
.video-thumb .play svg { width: 1.4rem; height: 1.4rem; margin-left: 3px; }
.video-frame iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; }

/* ---------- client wall ---------- */
.clients { border-bottom: 1px solid var(--line); padding-block: var(--space-xl); }
.clients p.label {
  text-align: center; font-size: var(--step--1); text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--ink-2); margin-bottom: var(--space-l);
  max-width: none;
}
.client-list {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: var(--space-l) var(--space-xl);
  list-style: none; margin: 0; padding: 0;
}
.client-list img {
  height: 1.75rem; width: auto; max-width: 11rem;
  object-fit: contain;
  filter: grayscale(1); opacity: 0.55;
  transition: filter 0.2s, opacity 0.2s;
}
.client-list img.lg { height: 2.4rem; } /* square-ish marks need more height to read equal */
.client-list li:hover img { filter: grayscale(0); opacity: 1; }
.client-text {
  font-family: var(--font-display); font-weight: 700; font-size: var(--step-1);
  color: var(--ink-2); opacity: 0.7; white-space: nowrap;
}

/* ---------- cards ---------- */
.grid { display: grid; gap: var(--space-l); }
@media (min-width: 640px) { .grid-2, .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.service-card { padding: var(--space-l); }
.service-card .icon {
  width: 3rem; height: 3rem; border-radius: var(--radius-s);
  background: var(--accent); color: var(--ink);
  display: grid; place-items: center; margin-bottom: var(--space-m);
}
.service-card .icon svg { width: 1.5rem; height: 1.5rem; }
.service-card h3 { font-size: var(--step-1); font-weight: 700; }
.service-card p { color: var(--ink-2); font-size: var(--step-0); margin-bottom: var(--space-s); }
.service-card .more { font-family: var(--font-display); font-weight: 500; }
/* on navy bands the service cards match the process panels: dark at rest,
   invert to cream on hover */
.on-dark .service-card {
  background: var(--dark-2);
  border: 1px solid rgb(247 239 221 / 0.08);
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.25s, border-color 0.25s;
}
.on-dark .service-card h3 { color: var(--paper-on-dark); transition: color 0.25s; }
.on-dark .service-card p { color: var(--muted-on-dark); transition: color 0.25s; }
.on-dark .service-card .more { color: var(--accent); transition: color 0.25s; }
.on-dark .service-card:hover { background: var(--paper); border-color: transparent; }
.on-dark .service-card:hover h3 { color: var(--ink); }
.on-dark .service-card:hover p { color: var(--ink-2); }
.on-dark .service-card:hover .more { color: var(--accent-ink); }

.work-card .video-frame { border-radius: 0; }
.work-card .meta { padding: var(--space-m) var(--space-m) var(--space-l); }
.work-card h3 { font-size: var(--step-1); font-weight: 500; margin-bottom: var(--space-2xs); }
.work-card .tag {
  font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent-ink); font-family: var(--font-display); font-weight: 500;
}

/* ---------- filters ---------- */
.filters {
  display: flex; flex-wrap: wrap; gap: var(--space-xs);
  margin-bottom: var(--space-xl); padding: 0; list-style: none;
}
.filter-btn {
  font-family: var(--font-display); font-weight: 500; font-size: var(--step-0);
  background: transparent; color: var(--ink);
  border: 2px solid var(--line); border-radius: 999px;
  padding: 0.4em 1.1em; cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.filter-btn:hover { border-color: var(--ink); }
.filter-btn[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--paper-on-dark); }
.work-item.is-hidden { display: none; }

/* ---------- about / prose ---------- */
.split { display: grid; gap: var(--space-xl); align-items: start; }
@media (min-width: 960px) { .split { grid-template-columns: 1fr 1fr; } }
.portrait-placeholder {
  aspect-ratio: 4 / 5; border-radius: var(--radius);
  background: repeating-linear-gradient(-45deg, var(--line), var(--line) 1px, var(--surface) 1px, var(--surface) 12px);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink-2); font-family: var(--font-display);
  text-align: center; padding: var(--space-l);
}
/* ---------- creative passport (About intro) ----------
   Mirrors the home hero exactly: 2fr title / 3fr card in an 80rem wrap. */
.about-intro-grid { display: grid; gap: var(--space-l); align-items: center; }
@media (min-width: 960px) {
  .about-intro-grid { max-width: 80rem; grid-template-columns: 2fr 3fr; gap: var(--space-xl); }
}
.passport {
  position: relative;
  background:
    repeating-linear-gradient(115deg, rgb(34 48 74 / 0.035) 0 2px, transparent 2px 10px),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.passport-body { padding: var(--space-l); }
.passport-fields { display: grid; gap: var(--space-m) var(--space-l); margin: 0; }
@media (min-width: 640px) { .passport-fields { grid-template-columns: repeat(2, 1fr); } }
.passport-fields .wide { grid-column: 1 / -1; }
.passport-fields dt {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-2); margin-bottom: 2px;
}
.passport-fields dd {
  margin: 0;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.92rem; font-weight: 600; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.02em;
}
.passport-mrz {
  margin: 0; padding: var(--space-m) var(--space-l);
  border-top: 2px dashed var(--line);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: clamp(0.58rem, 1.5vw, 0.85rem);
  letter-spacing: 0.08em; line-height: 1.8;
  color: var(--ink-2);
  white-space: nowrap; overflow: hidden; max-width: none;
}
.passport-stamp {
  position: absolute; right: 1.4rem; bottom: 1rem;
  width: 6rem; height: 6rem; border-radius: 50%;
  border: 3px double var(--accent-ink);
  color: var(--accent-ink);
  display: grid; place-items: center; text-align: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; line-height: 1.25;
  transform: rotate(-12deg);
  opacity: 0.7;
  pointer-events: none;
}
@media (max-width: 639px) { .passport-stamp { display: none; } }

/* ---------- full story band (About): navy, bright text, yellow anchors ---------- */
.full-story p { color: var(--paper-on-dark); font-size: var(--step-1); max-width: 58ch; }
.full-story strong { color: var(--accent); font-weight: 600; }

.highlights { list-style: none; margin: 0 0 var(--space-l); padding: 0; }
.highlights li {
  padding: var(--space-s) 0 var(--space-s) var(--space-l);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.highlights li::before {
  content: ""; position: absolute; left: 0; top: 1.3em;
  width: 0.75rem; height: 0.75rem; border-radius: 50%;
  background: var(--accent);
}
.highlights strong { font-family: var(--font-display); }

/* ---------- process panels ---------- */
.process {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: var(--space-m);
  counter-reset: step;
}
@media (min-width: 640px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .process { grid-template-columns: repeat(3, 1fr); } }
.process li {
  counter-increment: step;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-l);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.25s, border-color 0.25s;
}
.process li:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.process li::before {
  /* oversized watermark numeral */
  content: "0" counter(step);
  position: absolute; top: -0.16em; right: 0.05em;
  font-family: var(--font-display); font-weight: 700;
  font-size: 5.5rem; line-height: 1;
  color: var(--accent); opacity: 0.18;
  pointer-events: none;
  transition: opacity 0.25s;
}
.process li span, .process li p { transition: color 0.25s; }
.process li span {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--step-1); color: var(--ink);
  margin-bottom: var(--space-xs);
}
.process li span::before {
  /* lens-dot echo of the logo mark */
  content: ""; width: 0.6rem; height: 0.6rem; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
.process li p { margin: 0; color: var(--ink-2); font-size: var(--step-0); max-width: 30ch; }
/* on the navy band the panels go dark and the numerals can actually glow */
.on-dark .process li {
  background: var(--dark-2);
  border-color: rgb(247 239 221 / 0.08);
}
.on-dark .process li::before { opacity: 0.4; }
.on-dark .process li span { color: var(--paper-on-dark); }
.on-dark .process li p { color: var(--muted-on-dark); }
/* hover: card inverts to cream, numeral goes full button-yellow */
.on-dark .process li:hover {
  background: var(--paper);
  border-color: transparent;
}
.on-dark .process li:hover::before { opacity: 1; }
.on-dark .process li:hover span { color: var(--ink); }
.on-dark .process li:hover p { color: var(--ink-2); }

/* ---------- page intro band: navy, white lead ---------- */
.page-intro .section-head { margin-bottom: 0; }
.page-intro .lead { color: var(--paper-on-dark); }

/* ---------- service detail ---------- */
.service-block { border-top: 1px solid var(--line); padding-block: var(--space-2xl); }
.service-block .split { align-items: center; }
.service-block ul { color: var(--ink-2); padding-left: 1.2em; margin: 0 0 var(--space-m); }
.service-block ul li { margin-bottom: var(--space-2xs); }

/* ---------- short about (home): big two-column statement, staggered ---------- */
.about-short-grid { display: grid; gap: var(--space-l); align-items: start; }
@media (min-width: 960px) {
  .about-short-grid { grid-template-columns: 1fr 1.5fr; gap: var(--space-xl); }
  /* title anchored top-left, subtext dropped lower for a diagonal read */
  .about-short-grid > div:last-child { padding-top: var(--space-2xl); }
}
.about-short h2 { font-size: var(--step-5); margin-bottom: 0; }
.about-short p { font-size: var(--step-2); line-height: 1.45; max-width: 44ch; margin-bottom: var(--space-l); }

/* ---------- stats band: navy cards on cream ---------- */
.stats-band { padding-block: var(--space-2xl); }
.stats-grid { display: grid; gap: var(--space-m); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 960px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: var(--dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-l);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.stat strong {
  display: block;
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--step-5); line-height: 1.05;
  color: var(--accent);
  font-variant-numeric: tabular-nums; /* stops width jitter while counting */
}
.stat span {
  font-family: var(--font-display); font-weight: 500;
  font-size: var(--step-0); color: var(--paper-on-dark);
}

/* ---------- testimonial cards ---------- */
.quote-card { padding: var(--space-l); margin: 0; }
.quote-card blockquote {
  margin: 0 0 var(--space-m);
  font-family: var(--font-display); font-weight: 500;
  font-size: var(--step-1); line-height: 1.35; color: var(--ink);
}
.quote-card figcaption {
  font-family: var(--font-display); font-weight: 500;
  font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-2);
}

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: var(--step-5); }
.cta-band p { margin-inline: auto; }
.cta-band .btn { margin-top: var(--space-m); }

/* ---------- forms ---------- */
.form-grid { display: grid; gap: var(--space-m); }
@media (min-width: 640px) { .form-grid .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-m); } }
label { font-family: var(--font-display); font-weight: 500; display: block; margin-bottom: var(--space-2xs); }
input, textarea, select {
  width: 100%; font: inherit; color: var(--ink);
  background: var(--surface); border: 2px solid var(--line);
  border-radius: var(--radius-s); padding: 0.65em 0.9em;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--accent); }
.form-note { font-size: var(--step--1); color: var(--ink-2); }

/* ---------- footer ---------- */
.site-footer { background: var(--dark); color: var(--paper-on-dark); padding-block: var(--space-2xl) var(--space-l); }
.footer-grid { display: grid; gap: var(--space-xl); margin-bottom: var(--space-2xl); }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.site-footer h2 { font-size: var(--step-1); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: var(--space-xs); }
.site-footer a { color: var(--paper-on-dark); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.site-footer p { color: var(--muted-on-dark); }
.footer-legal {
  border-top: 1px solid var(--dark-2); padding-top: var(--space-l);
  font-size: var(--step--1); color: var(--muted-on-dark);
  display: flex; flex-wrap: wrap; gap: var(--space-m); justify-content: space-between;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
