/* shiningartnet — luxury hearing aids site
   Maritime palette: warm cream + deep navy + rust. */

:root {
  /* Default palette: Maritime (cream + navy + rust) */
  --bg: #F1ECDF;
  --bg-2: #E5DDC9;
  --surface: #F8F4E9;
  --surface-2: #E8E1CC;
  --ink: #11131C;
  --ink-2: #1E2540;
  --muted: #6B6F7E;
  --line: #D9D1BB;
  --accent: #B85842;
  --accent-deep: #8E3F2F;
  --accent-soft: #E7B5A4;
  --hi: #F2E7D2;

  --shadow-sm: 0 1px 2px rgba(20, 25, 40, 0.06), 0 1px 0 rgba(20, 25, 40, 0.04);
  --shadow-md: 0 12px 30px -16px rgba(20, 25, 40, 0.25), 0 2px 8px rgba(20, 25, 40, 0.05);

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-xl: 22px;

  --serif: "Bricolage Grotesque", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --sans: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1280px;
  --gut: clamp(20px, 4vw, 56px);
}

/* Palette: Forest (ivory + deep green) */
html[data-palette="forest"] {
  --bg: #EEEAE0;
  --bg-2: #DDD5C5;
  --surface: #F5F1E6;
  --surface-2: #DBD3BF;
  --ink: #0F1410;
  --ink-2: #1E2A1F;
  --muted: #5F6B58;
  --line: #C9C2AE;
  --accent: #3F5B3A;
  --accent-deep: #213A1F;
  --accent-soft: #9BB28F;
  --hi: #E2E6CC;
}

/* Palette: Editorial (grey + brick) */
html[data-palette="editorial"] {
  --bg: #ECECEC;
  --bg-2: #DEDEDE;
  --surface: #F5F5F5;
  --surface-2: #DCDCDC;
  --ink: #0F0F11;
  --ink-2: #1A1A1D;
  --muted: #66666B;
  --line: #C7C7C7;
  --accent: #C75A3C;
  --accent-deep: #963F26;
  --accent-soft: #E6B19E;
  --hi: #E0DBD3;
}

/* Palette: Midnight (dark + gold) */
html[data-palette="midnight"] {
  --bg: #0F1419;
  --bg-2: #161B23;
  --surface: #1B2530;
  --surface-2: #243140;
  --ink: #E8E2D5;
  --ink-2: #C9C2B0;
  --muted: #8A8E96;
  --line: #2D3A48;
  --accent: #C9A66B;
  --accent-deep: #B89055;
  --accent-soft: #6F5A38;
  --hi: #1F2A35;
}

/* Palette: Sage */
html[data-palette="sage"] {
  --bg: #E8E5DC;
  --bg-2: #D7D3C5;
  --surface: #F0EDE3;
  --surface-2: #D2CFC0;
  --ink: #1B1D1B;
  --ink-2: #2A2D2A;
  --muted: #66695F;
  --line: #C2BFAE;
  --accent: #7A8F7A;
  --accent-deep: #4F6450;
  --accent-soft: #B6C2A8;
  --hi: #DFDCC9;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--bg); color: var(--ink); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  font-feature-settings: "ss01";
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Typography */
.serif { font-family: var(--serif); font-weight: 400; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.02em; margin: 0; color: var(--ink); }
h1 { font-size: clamp(48px, 7.5vw, 104px); line-height: 1.0; letter-spacing: -0.035em; font-weight: 500; }
h2 { font-size: clamp(36px, 5vw, 64px); line-height: 1.05; letter-spacing: -0.03em; }
h3 { font-size: clamp(24px, 3vw, 36px); line-height: 1.15; letter-spacing: -0.02em; }
h4 { font-size: clamp(18px, 1.6vw, 22px); line-height: 1.25; font-family: var(--sans); font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0 0 1em 0; }
.lede { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.5; color: var(--ink-2); max-width: 60ch; }
.kicker { font-size: 13px; color: var(--muted); }

/* Layout */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.section { padding: clamp(64px, 9vw, 140px) 0; }
.section--tight { padding: clamp(40px, 5vw, 80px) 0; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* Top bar */
.topbar {
  font-size: 12px;
  color: var(--muted);
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; gap: 16px;
  letter-spacing: 0.02em;
}
.topbar a:hover { color: var(--ink); }

/* Header / Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklch, var(--bg) 92%, transparent);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px 0;
}
.brand {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 22px; height: 22px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.brand-mark::after {
  content: "";
  position: absolute; inset: 5px;
  border: 1.5px solid var(--bg);
  border-radius: 50%;
}
.nav-links {
  display: flex;
  gap: clamp(16px, 2vw, 32px);
  justify-content: center;
  font-size: 14px;
  letter-spacing: 0.01em;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink-2);
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: border-color .2s, color .2s;
}
.nav-links a:hover, .nav-links a.is-current { color: var(--ink); border-bottom-color: var(--accent); }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.nav-cart {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 8px 14px;
  font-size: 13px;
  background: transparent;
  color: var(--ink);
  font-weight: 500;
}
.nav-cart:hover { border-color: var(--ink); }
.nav-cart-count {
  background: var(--accent); color: #fff;
  width: 18px; height: 18px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600;
}

.nav-toggle { display: none; }
@media (max-width: 900px) {
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-links { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; border: 1px solid var(--line);
    padding: 8px 12px; border-radius: var(--r-md);
    font-size: 13px;
  }
  .nav.is-open .nav-links {
    display: flex;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--surface);
    padding: 16px var(--gut);
    border-bottom: 1px solid var(--line);
    gap: 0;
  }
  .nav.is-open .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .12s, background .2s, color .2s, border-color .2s;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  min-height: 46px;
  font-family: var(--sans);
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--ink); color: var(--bg); }
.btn--primary:hover { background: var(--ink-2); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-deep); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--text {
  background: transparent; padding: 8px 0; min-height: 0; border-radius: 0;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
}
.btn--text:hover { border-bottom-color: var(--accent); color: var(--accent); }
.btn--lg { padding: 18px 32px; font-size: 15px; min-height: 56px; }
.btn .arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(3px); }

/* Hero */
.hero {
  padding: clamp(60px, 9vw, 140px) 0 clamp(60px, 7vw, 100px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--accent); font-family: var(--serif); }
.hero-meta {
  margin-top: 36px;
  display: flex; gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.hero-meta > div { font-size: 13px; color: var(--muted); }
.hero-meta strong { display: block; color: var(--ink); font-size: 17px; font-weight: 500; margin-bottom: 2px; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

/* Image placeholder */
.placeholder {
  position: relative;
  background: linear-gradient(135deg, var(--surface-2), var(--bg-2));
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  overflow: hidden;
  font-family: var(--sans);
}
.placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, color-mix(in oklch, var(--ink-2) 12%, transparent), transparent 50%),
    radial-gradient(circle at 70% 70%, color-mix(in oklch, var(--accent) 18%, transparent), transparent 60%);
  opacity: 0.7;
}
.placeholder span {
  position: relative;
  padding: 10px 14px;
  background: color-mix(in oklch, var(--bg) 80%, transparent);
  border: 1px dashed var(--line);
  color: var(--muted);
}
.placeholder--portrait { aspect-ratio: 4/5; }
.placeholder--square { aspect-ratio: 1/1; }
.placeholder--wide { aspect-ratio: 16/10; }
.placeholder--tall { aspect-ratio: 3/4; }

/* Trust strip */
.trust {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 28px 0;
}
@media (max-width: 800px) { .trust-inner { grid-template-columns: repeat(2, 1fr); } }
.trust-item { display: flex; gap: 12px; align-items: center; font-size: 13px; color: var(--ink-2); }
.trust-item svg { color: var(--accent); flex-shrink: 0; }

/* Section header */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 800px) { .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 36px; } }
.section-head .num { font-family: var(--sans); font-weight: 500; font-size: 13px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px; }
.section-head p { margin: 0; color: var(--ink-2); }

/* Product cards */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 980px) { .products { grid-template-columns: 1fr; } }
.product {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent-soft); }
.product--featured {
  background: var(--ink-2);
  color: var(--bg);
  border-color: var(--ink-2);
}
.product--featured h3, .product--featured .product-price { color: var(--bg); }
.product--featured .product-features li { color: color-mix(in oklch, var(--bg) 80%, transparent); }
.product--featured .product-features li::before { background: var(--accent-soft); }
.product-tag {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
}
.product--featured .product-tag { color: var(--accent-soft); }
.product-image {
  aspect-ratio: 1/1; margin: 8px -4px 20px;
  border-radius: var(--r-md);
}
.product h3 { margin: 6px 0 12px; }
.product-features {
  list-style: none; padding: 0; margin: 0 0 24px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.product--featured .product-features { border-color: rgba(255,255,255,0.12); }
.product-features li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 14px;
  color: var(--ink-2);
}
.product-features li::before {
  content: ""; position: absolute; left: 0; top: 16px;
  width: 12px; height: 1px; background: var(--accent);
}
.product-foot {
  display: flex; justify-content: space-between; align-items: end;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.product--featured .product-foot { border-color: rgba(255,255,255,0.12); }
.product-price { font-family: var(--serif); font-weight: 500; font-size: 32px; line-height: 1; color: var(--ink); letter-spacing: -0.03em; }
.product-price small { font-size: 13px; color: var(--muted); font-family: var(--sans); display: block; margin-top: 4px; letter-spacing: 0; font-weight: 400; }
.product--featured .product-price small { color: color-mix(in oklch, var(--bg) 60%, transparent); }

/* Features list (big) */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 800px) { .features { grid-template-columns: 1fr; } }
.feature {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.feature-num {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.feature h4 { margin-bottom: 10px; font-family: var(--serif); font-weight: 500; font-size: 22px; letter-spacing: -0.02em; }
.feature p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* Editorial split */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
@media (max-width: 800px) { .editorial { grid-template-columns: 1fr; } }
.editorial--rev .editorial-text { order: 2; }
@media (max-width: 800px) { .editorial--rev .editorial-text { order: 0; } }

/* Quote */
.quote {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 80px);
  border: 1px solid var(--line);
}
.quote blockquote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  color: var(--ink);
}
.quote cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 0; }
.faq details {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  gap: 24px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--sans);
  font-size: 24px; color: var(--accent); font-weight: 300;
  transition: transform .25s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin: 18px 0 0; color: var(--ink-2); max-width: 70ch;
}

/* Footer */
.footer {
  background: var(--ink);
  color: color-mix(in oklch, var(--bg) 70%, transparent);
  padding: 80px 0 32px;
  margin-top: 80px;
}
.footer .brand { color: var(--bg); }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in oklch, var(--bg) 50%, transparent);
  margin: 0 0 18px;
  font-weight: 600;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-links a { color: color-mix(in oklch, var(--bg) 75%, transparent); }
.footer-links a:hover { color: var(--bg); }
.footer-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 12px;
  color: color-mix(in oklch, var(--bg) 50%, transparent);
}
.footer-newsletter {
  display: flex; gap: 0; margin-top: 12px;
  max-width: 340px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 4px;
}
.footer-newsletter input {
  flex: 1;
  background: transparent; border: 0; outline: 0;
  color: var(--bg); padding: 8px 14px; font-size: 13px; font-family: inherit;
}
.footer-newsletter input::placeholder { color: color-mix(in oklch, var(--bg) 40%, transparent); }
.footer-newsletter button {
  background: var(--bg); color: var(--ink);
  border: 0; padding: 8px 16px; font-size: 12px;
  border-radius: 4px; font-weight: 500;
}

/* Cookie banner */
.cookie {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 720px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 22px 24px;
  z-index: 200;
  display: none;
  font-size: 14px;
}
.cookie.is-open { display: block; }
.cookie h6 { font-family: var(--serif); font-size: 20px; margin: 0 0 6px; font-weight: 500; letter-spacing: -0.02em; }
.cookie p { margin: 0 0 16px; color: var(--ink-2); font-size: 13.5px; line-height: 1.5; }
.cookie p a { text-decoration: underline; color: var(--accent); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 18px; min-height: 0; font-size: 13px; }

.cookie-prefs { display: none; }
.cookie.is-prefs .cookie-prefs { display: block; margin: 0 0 16px; }
.cookie.is-prefs .cookie-intro { display: none; }
.cookie-pref {
  display: flex; justify-content: space-between; align-items: start;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  gap: 16px;
}
.cookie-pref:first-of-type { border-top: 0; }
.cookie-pref strong { display: block; font-size: 14px; }
.cookie-pref small { display: block; color: var(--muted); font-size: 12.5px; margin-top: 4px; }
.cookie-toggle {
  position: relative; width: 36px; height: 20px;
  background: var(--line); border-radius: 999px;
  flex-shrink: 0; cursor: pointer; transition: background .2s;
  border: 0;
}
.cookie-toggle::after {
  content: ""; position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px; background: #fff;
  border-radius: 50%;
  transition: left .2s;
}
.cookie-toggle.is-on { background: var(--accent); }
.cookie-toggle.is-on::after { left: 18px; }
.cookie-toggle:disabled { opacity: 0.6; cursor: not-allowed; }

/* Forms */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.field input, .field select, .field textarea {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: 0;
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.checkbox {
  display: grid; grid-template-columns: 20px 1fr; gap: 12px;
  align-items: start;
  font-size: 13.5px;
  color: var(--ink-2);
  margin-bottom: 12px;
  line-height: 1.5;
}
.checkbox input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent); }
.checkbox a { text-decoration: underline; }

/* Legal pages */
.legal { max-width: 760px; margin: 0 auto; padding: clamp(40px, 6vw, 80px) var(--gut); }
.legal h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 8px; }
.legal .updated { font-size: 13px; color: var(--muted); margin-bottom: 40px; }
.legal h2 { font-size: 24px; margin: 40px 0 12px; font-family: var(--sans); font-weight: 600; letter-spacing: -0.01em; }
.legal h3 { font-size: 17px; margin: 24px 0 8px; font-family: var(--sans); font-weight: 600; }
.legal p, .legal li { font-size: 15px; line-height: 1.65; color: var(--ink-2); }
.legal ul, .legal ol { padding-left: 22px; }
.legal a { color: var(--accent); text-decoration: underline; }
.legal table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 13.5px; }
.legal th, .legal td { text-align: left; padding: 10px 12px; border: 1px solid var(--line); }
.legal th { background: var(--surface); font-weight: 600; }

/* Page hero (interior pages) */
.pagehero {
  padding: clamp(40px, 6vw, 96px) 0 clamp(32px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}
.pagehero .eyebrow { margin-bottom: 12px; }
.pagehero h1 { font-size: clamp(40px, 6vw, 80px); margin-bottom: 16px; }
.pagehero p { color: var(--ink-2); max-width: 60ch; }

/* Utility */
.row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 12px; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 40px; }
.mt-4 { margin-top: 64px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.tiny { font-size: 12px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface); border: 1px solid var(--line);
  padding: 6px 12px; border-radius: 999px;
  font-size: 12px; letter-spacing: 0.04em;
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* Animations on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
