/* galeport.com — the public pages. Written by hand; pages come from scripts/build-site.py.
   Rules: SITE-DESIGN.md.
   Spacing uses the scale 4 · 8 · 12 · 14 · 20 · 26 · 40 · 64, plus 96 / 112 / 128 between sections.
   Two-column sections share one split (5 : 7) so right-hand columns line up down the page. */

@font-face {
  font-family: Instrument;
  src: url("/assets/fonts/instrument-sans-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}

/* ---------- tokens ---------- */

:root {
  color-scheme: light;
  --bg: #faf9f5;
  --bg-sunk: #f2f0e9;
  --surface: #ffffff;
  --ink: #12100c;
  --ink-2: #45413a;
  --ink-3: #6f6a60;
  --line: #e3dfd4;
  --line-2: #d3cec0;
  --accent: #1b4d3e;
  --bubble-out: #e6eee9;
  --button-hover: #2b2620;
  --field-border: #8f897d;
  --danger: #a1321f;
  --shadow: 0 1px 2px rgb(18 16 12 / 0.04), 0 24px 48px -24px rgb(18 16 12 / 0.18);
  --split: 5fr 7fr;

  --radius: 14px;
  --radius-lg: 22px;
  --wrap: 1280px;
  --gutter: 40px;
  --section: 128px;

  --dur-1: 150ms;
  --dur-2: 200ms;
  --ease-std: cubic-bezier(0.4, 0, 0.2, 1);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #08090a;
  --bg-sunk: #131417;
  --surface: #17191c;
  --ink: #f7f7f5;
  --ink-2: #c3c0ba;
  --ink-3: #a3a09a;
  --line: #23252a;
  --line-2: #3a3c41;
  --accent: #a9c9b8;
  --bubble-out: #1d2a24;
  --button-hover: #e4e2dc;
  --field-border: #7c7f86;
  --danger: #e59a8a;
  --shadow: 0 1px 2px rgb(0 0 0 / 0.3), 0 24px 48px -24px rgb(0 0 0 / 0.6);
}

@media (max-width: 900px) {
  :root { --gutter: 20px; --section: 80px; }
}

/* ---------- base ---------- */

* { box-sizing: border-box; }

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

/* Below 320px the page keeps its phone layout and is cut off on the right, as apple.com does,
   rather than reflowing into one word per line. */
body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Instrument, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

[id] { scroll-margin-top: 88px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea { font: inherit; color: inherit; }

h1, h2 { font-weight: 600; letter-spacing: -0.035em; line-height: 1.05; text-wrap: balance; }
h1 { font-size: clamp(40px, 5.2vw, 64px); }
h2 { font-size: clamp(30px, 3.4vw, 44px); }
h3 { font-size: 20px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.25; }
p { max-width: 60ch; color: var(--ink-2); text-wrap: pretty; }

.lead { font-size: clamp(18px, 1.6vw, 20px); line-height: 1.55; color: var(--ink-2); }
.note, .side-note { font-size: 14px; color: var(--ink-3); }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; border-radius: 4px; }

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--ink); color: var(--bg); padding: 8px 14px; border-radius: 100px;
}
.skip:focus { top: 12px; }

/* ---------- buttons and links ---------- */

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 100px; border: 1px solid transparent;
  background: var(--ink); color: var(--bg);
  font-size: 0.94rem; font-weight: 500; line-height: 1.4; text-decoration: none; cursor: pointer;
  transition: background-color var(--dur-2) var(--ease-std), transform var(--dur-1) var(--ease-std);
}
.button:hover { background: var(--button-hover); }
.button:active { transform: scale(0.975); }
.button[disabled] { opacity: 0.6; cursor: progress; }
.button-large { padding: 14px 26px; font-size: 1rem; }
.button-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.button-ghost:hover { background: var(--bg-sunk); }

.arrow-link {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
  font-weight: 500; text-decoration: none; color: var(--ink);
}
.arrow-link span { transition: transform var(--dur-2) var(--ease-std); }
.arrow-link:hover span { transform: translateX(3px); }
.arrow-link:hover { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }

/* ---------- header ---------- */

.header {
  position: sticky; top: 0; z-index: 30;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 40px; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 600; font-size: 19px; letter-spacing: -0.02em; }
.brand .mark { width: 28px; height: 28px; }
.dark-mark { display: none; }
[data-theme="dark"] .light-mark { display: none; }
[data-theme="dark"] .dark-mark { display: block; }

.nav-links { display: flex; gap: 28px; }
.nav-links a, .mobile-nav a { text-decoration: none; color: var(--ink-2); font-size: 15px; transition: color var(--dur-1) var(--ease-std); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"] { text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1px; }
.nav-end { margin-left: auto; display: flex; align-items: center; gap: 12px; }

.menu-button {
  display: none; min-height: 44px; padding: 0 4px; border: 0; background: none; cursor: pointer;
  font-size: 15px; font-weight: 500;
}
.mobile-nav { display: flex; flex-direction: column; padding-block: 8px 20px; }
.mobile-nav[hidden] { display: none; }
.mobile-nav a { padding: 12px 0; font-size: 18px; color: var(--ink); border-top: 1px solid var(--line); }

@media (max-width: 900px) {
  .header { background: var(--bg); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-links, .nav-cta { display: none; }
  .menu-button { display: inline-flex; align-items: center; }
}

/* ---------- theme switch: one tap flips light and dark ---------- */

.theme-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; padding: 0; border: 0; border-radius: 100px;
  background: none; color: var(--ink-2); cursor: pointer;
  transition: background-color var(--dur-1) var(--ease-std), color var(--dur-1) var(--ease-std);
}
.theme-toggle:hover { background: var(--bg-sunk); color: var(--ink); }
.appearance-orb {
  display: block; width: 18px; height: 18px; border: 1.5px solid currentColor; border-radius: 50%;
  position: relative; overflow: hidden;
}
.appearance-orb::after { content: ""; position: absolute; inset: -1px -1px -1px 50%; background: currentColor; }
[data-theme="dark"] .appearance-orb::after { inset: -1px 50% -1px -1px; }
html:not(.js) .theme-toggle { display: none; }

/* ---------- page opening ---------- */

.intro {
  display: grid; grid-template-columns: var(--split); gap: 64px; align-items: end;
  padding-top: 112px; padding-bottom: 64px;
}
.intro h1 { max-width: 13ch; }
.intro + .section { padding-top: 64px; }
.intro-side { padding-bottom: 8px; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 26px; margin-top: 40px; }

@media (max-width: 900px) {
  .intro { grid-template-columns: 1fr; gap: 26px; padding-top: 64px; padding-bottom: 40px; }
  .intro-side { padding-bottom: 0; }
  .actions { margin-top: 26px; }
}

/* ---------- hero figure: one practice, its website and its messages ---------- */

.hero-figure { margin-bottom: 0; }
.stage {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--bg-sunk); aspect-ratio: 16 / 8; min-height: 440px;
}
.browser {
  position: absolute; left: 6%; top: 12%; bottom: -40px; width: 66%;
  display: flex; flex-direction: column;
  border-radius: var(--radius); overflow: hidden; background: var(--surface);
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.browser-bar { display: flex; gap: 6px; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.browser-bar i { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); }
.browser img { width: 100%; flex: 1; min-height: 0; object-fit: cover; object-position: top; }
.hero-figure .phone { position: absolute; right: 7%; top: 8%; width: 300px; }
figcaption { margin-top: 14px; font-size: 14px; color: var(--ink-3); max-width: 72ch; }

.phone {
  background: var(--surface); border: 1px solid var(--line); border-radius: 32px;
  box-shadow: var(--shadow); overflow: hidden; font-size: 14px; line-height: 1.45;
}
.phone-head { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.phone-head strong { display: block; font-weight: 500; font-size: 14px; }
.phone-head small { display: block; font-size: 12px; color: var(--ink-3); }
.avatar {
  display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-sunk); font-size: 13px; font-weight: 600;
}
.phone-body { display: flex; flex-direction: column; gap: 8px; padding: 16px 14px 20px; background: var(--bg); }
.chat-day { align-self: center; font-size: 11px; color: var(--ink-3); background: var(--surface); padding: 2px 10px; border-radius: 100px; margin-bottom: 4px; }
.bubble { max-width: 84%; padding: 8px 12px 6px; border-radius: 14px; }
.bubble p { color: var(--ink); font-size: 14px; }
.bubble span { display: block; text-align: right; font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.bubble.in { align-self: flex-start; background: var(--surface); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.bubble.out { align-self: flex-end; background: var(--bubble-out); border-bottom-right-radius: 4px; }

@media (max-width: 900px) {
  .stage { aspect-ratio: auto; min-height: 0; display: flex; flex-direction: column; padding: 20px 20px 0; }
  .browser { position: relative; left: auto; top: auto; bottom: auto; width: 100%; height: 220px; }
  .hero-figure .phone { position: relative; right: auto; top: auto; align-self: flex-end;
    width: min(300px, 88%); margin-top: -64px; margin-bottom: -40px; }
  .stage { padding-bottom: 60px; }
}

/* ---------- sections ---------- */

.section { padding-top: var(--section); }
.section-head { margin-bottom: 40px; }
.section-head p { margin-top: 12px; font-size: 18px; }
.section-foot { margin-top: 26px; }

/* Two tiles, Apple-style: a name, one line, a link, and the thing itself. */
.tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.tile {
  position: relative; display: flex; flex-direction: column; padding: 40px 40px 0;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--dur-2) var(--ease-std);
}
.tile:hover { border-color: var(--line-2); }
.tile-title { text-decoration: none; }
.tile-title::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.tile-title:focus-visible { outline: none; }
.tile:has(.tile-title:focus-visible) { outline: 2px solid var(--ink); outline-offset: 2px; }
.tile-label { font-size: 14px; font-weight: 500; color: var(--ink-3); margin-bottom: 12px; }
.tile h3 { font-size: clamp(26px, 2.6vw, 34px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; max-width: 16ch; }
.tile > p:not(.tile-label) { margin-top: 12px; }
.tile-link { display: inline-flex; gap: 8px; margin-top: 20px; font-weight: 500; }
.tile-link span { transition: transform var(--dur-2) var(--ease-std); }
.tile:hover .tile-link span { transform: translateX(3px); }

.events { margin-top: auto; margin-bottom: 40px; display: grid; gap: 8px; }
.events li {
  display: flex; align-items: center; gap: 12px; padding: 14px 20px;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); font-size: 15px;
}
.events time { margin-left: auto; color: var(--ink-3); font-size: 14px; white-space: nowrap; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

.tile-shot { margin-top: auto; padding-top: 40px; }
.tile-shot img {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: top left;
  border-radius: var(--radius) var(--radius) 0 0; border: 1px solid var(--line); border-bottom: 0;
  box-shadow: var(--shadow);
}
[data-theme="dark"] .tile-shot img, [data-theme="dark"] .shot img, [data-theme="dark"] .browser img { filter: brightness(0.88); }

@media (max-width: 900px) {
  .tiles { grid-template-columns: 1fr; }
  .tile { padding: 26px 26px 0; }
  .events { margin-top: 26px; margin-bottom: 26px; }
  .tile-shot { padding-top: 26px; }
}

/* Heading on the left, a list with hairlines on the right (Anthropic's pattern). */
.split-list { display: grid; grid-template-columns: var(--split); gap: 64px; align-items: start; }
.split-list h2 { max-width: 14ch; }
.split-list .side-note { display: block; margin-top: 20px; }
.rows { border-bottom: 1px solid var(--line); }
.rows li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  padding: 20px 0; border-top: 1px solid var(--line); font-size: 18px; font-weight: 500; letter-spacing: -0.01em;
}
.tags { font-size: 14px; font-weight: 400; color: var(--ink-3); text-align: right; letter-spacing: 0; }
.prose-side p + p { margin-top: 14px; }
.prose-side .lead + .arrow-link { margin-top: 20px; }
.plain { margin-top: 20px; border-top: 1px solid var(--line); }
.plain li { padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--ink-2); }

@media (max-width: 900px) {
  .split-list { grid-template-columns: 1fr; gap: 26px; }
  .rows li { flex-direction: column; gap: 4px; font-size: 17px; }
  .tags { text-align: left; }
}

/* Steps in a row. */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px; }
.steps li { border-top: 1px solid var(--line-2); padding-top: 20px; }
.num { display: block; font-size: 13px; color: var(--ink-3); margin-bottom: 20px; font-variant-numeric: tabular-nums; }
.steps p { margin-top: 8px; font-size: 15px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; gap: 40px 20px; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; gap: 26px; } }

/* Three quiet statements. */
.promises { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding-top: 40px; border-top: 1px solid var(--line); }
.promises h3 { font-size: 18px; }
.promises p { margin-top: 8px; font-size: 15px; }
@media (max-width: 900px) { .promises { grid-template-columns: 1fr; gap: 26px; } }

/* Cards. */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  padding: 26px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
}
.card h3 { margin-bottom: 14px; }
.card ul li { padding: 8px 0; border-top: 1px solid var(--line); color: var(--ink-2); font-size: 15px; }
.card .arrow-link { margin-top: auto; padding-top: 20px; }
.cards-3 .card h3 { font-size: 22px; }
@supports (grid-template-rows: subgrid) {
  .cards-3 .card { display: grid; grid-row: span 4; grid-template-rows: subgrid; gap: 0; }
}
@media (max-width: 900px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } }

/* A day, handled. */
.day { display: grid; grid-template-columns: var(--split); gap: 64px; align-items: start; }
.day ol { grid-column: 2; grid-row: 1; }
.day .phone { grid-column: 1; grid-row: 1; max-width: 360px; }
.day ol { border-bottom: 1px solid var(--line); }
.day ol li { display: grid; grid-template-columns: 104px 1fr; gap: 20px; padding: 20px 0; border-top: 1px solid var(--line); }
.day time { font-size: 15px; color: var(--ink-3); font-variant-numeric: tabular-nums; padding-top: 1px; }
.day h3 { font-size: 18px; }
.day p { margin-top: 4px; font-size: 15px; }
.day .phone { position: sticky; top: 108px; }
.section > .note { margin-top: 20px; }
@media (max-width: 900px) {
  .day { grid-template-columns: 1fr; gap: 40px; }
  .day ol, .day .phone { grid-column: 1; grid-row: auto; }
  .day .phone { position: static; max-width: 340px; }
  .day ol li { grid-template-columns: 80px 1fr; gap: 14px; }
}

/* Gallery. */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.shot { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.shot img { aspect-ratio: 16 / 10; object-fit: cover; object-position: top; }
.gallery h3 { margin-top: 14px; font-size: 17px; }
.gallery p { font-size: 15px; color: var(--ink-3); }
@media (max-width: 900px) { .gallery { grid-template-columns: 1fr; gap: 26px; } }

/* Process. */
.process li {
  display: grid; grid-template-columns: var(--split); column-gap: 64px; row-gap: 8px;
  padding: 40px 0; border-top: 1px solid var(--line);
}
.process li > .num, .process li > h2 { grid-column: 1; }
.process li > div { grid-column: 2; grid-row: 1 / span 2; }
.process li:last-child { border-bottom: 1px solid var(--line); }
.process .num { margin: 8px 0 0; }
.process h2 { font-size: clamp(24px, 2.4vw, 30px); }
.result { display: inline-block; margin-top: 14px; font-size: 14px; color: var(--ink-3); }
@media (max-width: 900px) {
  .process li { grid-template-columns: 1fr; gap: 8px; padding: 26px 0; }
  .process li > div { grid-column: 1; grid-row: auto; }
  .process .num { margin: 0; }
}

/* Closing call. */
.closing { padding-top: var(--section); padding-bottom: var(--section); text-align: center; }
.closing h2 { max-width: 18ch; margin-inline: auto; }
.closing p { margin: 20px auto 0; font-size: 18px; max-width: 46ch; }
.closing .button { margin-top: 40px; }

/* ---------- contact form ---------- */

.contact { max-width: calc(560px + 2 * var(--gutter)); padding-top: 96px; padding-bottom: var(--section); }
.contact h1 { font-size: clamp(36px, 4.4vw, 52px); }
.contact > .lead { margin-top: 20px; }
.preview-note {
  margin-top: 26px; padding: 12px 16px; font-size: 14px; color: var(--ink-2);
  background: var(--bg-sunk); border-radius: var(--radius);
}
form { margin-top: 40px; }
.group { display: grid; gap: 24px; }
.group + .group { margin-top: 40px; }
.field { display: grid; gap: 8px; border: 0; padding: 0; margin: 0; min-width: 0; }
.field label, .field legend { font-size: 15px; font-weight: 500; color: var(--ink); padding: 0; }
.field legend { margin-bottom: 8px; }
.optional { font-weight: 400; color: var(--ink-3); }
.hint { font-size: 14px; color: var(--ink-3); margin-top: -4px; }
input:not([type=radio]):not([type=checkbox]), textarea {
  width: 100%; min-height: 48px; padding: 12px 16px; font-size: 16px;
  background: var(--surface); border: 1px solid var(--field-border); border-radius: var(--radius);
  transition: border-color var(--dur-1) var(--ease-std);
}
textarea { min-height: 144px; resize: vertical; line-height: 1.5; }
input:hover, textarea:hover { border-color: var(--ink-2); }
input:focus-visible, textarea:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; border-color: var(--ink); }
input::placeholder { color: var(--ink-3); }
input[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: var(--danger); }
.field-error { font-size: 14px; color: var(--danger); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.chip span {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 20px;
  border: 1px solid var(--field-border); border-radius: 100px; background: var(--surface); font-size: 15px;
  transition: background-color var(--dur-1) var(--ease-std), border-color var(--dur-1) var(--ease-std);
}
.chip:hover span { border-color: var(--ink-2); }
.chip input:checked + span { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.chip input:focus-visible + span { outline: 2px solid var(--ink); outline-offset: 2px; }

.consent { display: flex; gap: 12px; align-items: flex-start; margin-top: 40px; font-size: 15px; color: var(--ink-2); cursor: pointer; }
.consent input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--ink); flex-shrink: 0; }
.consent a { text-underline-offset: 3px; }
.submit { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 26px; }
#form-status { font-size: 15px; color: var(--danger); }
#form-status:empty { display: none; }

.success { margin-top: 40px; padding: 40px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.success h2 { font-size: 30px; }
.success > p:not(.preview-note) { margin-top: 8px; }
.success .button { margin-top: 26px; }
.success:focus { outline: none; }
.contact-email { margin-top: 40px; font-size: 15px; color: var(--ink-3); }
.contact-email a { color: var(--ink); text-underline-offset: 3px; }

/* ---------- prose and policies ---------- */

.prose { max-width: calc(68ch + 2 * var(--gutter)); padding-top: 96px; padding-bottom: var(--section); }
.prose h1 { margin-bottom: 20px; font-size: clamp(32px, 3.6vw, 44px); }
.prose h2 { font-size: 22px; margin: 40px 0 12px; letter-spacing: -0.02em; }
.prose p + p { margin-top: 14px; }
.prose a { text-underline-offset: 3px; }

/* ---------- footer ---------- */

.footer { border-top: 1px solid var(--line); padding-top: 64px; padding-bottom: 40px; }
.footer-top { display: grid; grid-template-columns: 1fr 1.6fr; gap: 40px; }
.footer-brand p { margin-top: 14px; font-size: 15px; color: var(--ink-3); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.footer-title { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 12px; }
.footer-cols li + li { margin-top: 8px; }
.footer-cols a { font-size: 15px; color: var(--ink-2); text-decoration: none; }
.footer-cols a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  margin-top: 64px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-3);
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

/* ---------- motion preference ---------- */

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