/* ─────────────────────────────────────────────────────────────
   Platinum Luxury Auto Spa
   Tokens
   ───────────────────────────────────────────────────────────── */
:root {
  /* Warm-tinted dark neutrals, hue 60 */
  --bg:           oklch(0.15 0.005 60);
  --bg-deep:      oklch(0.12 0.004 60);
  --surface-1:    oklch(0.19 0.005 60);
  --surface-2:    oklch(0.23 0.006 60);
  --line:         oklch(0.32 0.006 60);
  --line-soft:    oklch(0.26 0.006 60);
  --ink:          oklch(0.97 0.003 60);
  --ink-2:        oklch(0.78 0.005 60);
  --ink-3:        oklch(0.56 0.005 60);
  --platinum:     oklch(0.88 0.012 80);
  --platinum-2:   oklch(0.76 0.012 80);
  --platinum-deep:oklch(0.60 0.010 75);

  --display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --body:    "Inter Tight", system-ui, -apple-system, "Segoe UI", sans-serif;

  --t-fast: 220ms cubic-bezier(0.22, 1, 0.36, 1);
  --t-med:  450ms cubic-bezier(0.22, 1, 0.36, 1);
  --t-slow: 720ms cubic-bezier(0.16, 1, 0.3, 1);

  --pad-x: clamp(1.5rem, 5vw, 4rem);
  --gutter: clamp(2rem, 5vw, 5rem);
  --max:   84rem;
}

/* ─────────────────────────────────────────────────────────────
   Reset
   ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
em { font-style: italic; font-variation-settings: "opsz" 96; color: var(--platinum); }
h1, h2, h3, p { margin: 0; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; top: -100px; left: 1rem; z-index: 100;
  background: var(--surface-2); color: var(--ink);
  padding: .6rem 1rem; border: 1px solid var(--line);
  transition: top var(--t-fast);
}
.skip:focus { top: 1rem; }
:focus-visible {
  outline: 2px solid var(--platinum);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ─────────────────────────────────────────────────────────────
   Type primitives
   ───────────────────────────────────────────────────────────── */
.micro {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-3);
}
h2 {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.25rem, 5vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
}
h3 {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 72;
  font-size: 1.55rem;
  letter-spacing: -0.015em;
  line-height: 1.1;
}

/* ─────────────────────────────────────────────────────────────
   Topbar
   ───────────────────────────────────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem var(--pad-x);
  background: color-mix(in oklch, var(--bg) 82%, transparent);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  border-bottom: 1px solid color-mix(in oklch, var(--line) 30%, transparent);
}
.brand-mark {
  display: inline-flex; align-items: center; gap: 0.65rem;
  color: var(--ink);
}
.brand-mark img {
  width: 36px; height: 36px;
  display: block;
}
.brand-word {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 72;
  font-size: 1.25rem;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.topbar nav {
  display: flex; align-items: center; gap: 1.8rem;
  font-family: var(--body);
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--ink-2);
}
.topbar nav a { transition: color var(--t-fast); }
.topbar nav a:hover { color: var(--ink); }
.nav-cta {
  position: relative;
  color: var(--ink) !important;
  padding-bottom: 3px;
}
.nav-cta::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--platinum);
  transform-origin: left;
  transition: transform var(--t-med);
}
.nav-cta:hover::after { transform: scaleX(0.6); }

@media (max-width: 880px) {
  .topbar nav a:not(.nav-cta) { display: none; }
}

/* ─────────────────────────────────────────────────────────────
   Hero (mors-style: centered, status pill, big editorial title,
   text-link CTAs)
   ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4rem, 12vh, 8rem) var(--pad-x);
  overflow: hidden;
  isolation: isolate;
}

/* Crossfading background photo layer */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0;
  filter: grayscale(0.25) saturate(0.85) contrast(0.95) blur(1.5px);
  animation: hero-cycle 28s ease-in-out infinite;
  will-change: opacity;
}
.hero-bg img:nth-child(1) { animation-delay:  0s; }
.hero-bg img:nth-child(2) { animation-delay:  7s; }
.hero-bg img:nth-child(3) { animation-delay: 14s; }
.hero-bg img:nth-child(4) { animation-delay: 21s; }

@keyframes hero-cycle {
  0%   { opacity: 0; }
  4%   { opacity: 0.18; }
  22%  { opacity: 0.18; }
  26%  { opacity: 0; }
  100% { opacity: 0; }
}

/* Vignette overlay so headline stays readable */
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, transparent 0%, color-mix(in oklch, var(--bg) 75%, transparent) 70%, var(--bg) 100%),
    linear-gradient(180deg, var(--bg) 0%, transparent 18%, transparent 82%, var(--bg) 100%);
}

.hero-center {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: clamp(2rem, 5vh, 3.5rem);
  justify-items: center;
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg img {
    animation: none;
    opacity: 0;
  }
  .hero-bg img:nth-child(1) { opacity: 0.16; }
}

.status {
  display: inline-flex; align-items: center; gap: 0.65rem;
  padding: 0.55rem 1rem 0.55rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in oklch, var(--surface-1) 60%, transparent);
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  color: var(--ink-2);
}
.status-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: oklch(0.78 0.16 145);
  box-shadow: 0 0 0 0 oklch(0.78 0.16 145 / 0.6);
  animation: dot-pulse 2.4s ease-out infinite;
}
@keyframes dot-pulse {
  0%   { box-shadow: 0 0 0 0 oklch(0.78 0.16 145 / 0.55); }
  70%  { box-shadow: 0 0 0 10px oklch(0.78 0.16 145 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.78 0.16 145 / 0); }
}

.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(3rem, 9vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: -0.038em;
  color: var(--ink);
  max-width: 18ch;
}
.hero-title span { display: block; }
.hero-title .ital {
  font-style: italic;
  font-variation-settings: "opsz" 144, "wght" 350;
  color: var(--platinum);
}

.hero-actions {
  display: flex; align-items: center; flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem 2.5rem;
  margin-top: 0.5rem;
}

.link-cta {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-family: var(--body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.005em;
  color: var(--ink-2);
  position: relative;
  padding-bottom: 6px;
  transition: color var(--t-fast);
}
.link-cta::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--line);
  transform-origin: left;
  transition: background var(--t-fast), transform var(--t-med);
}
.link-cta svg { width: 16px; height: 16px; transition: transform var(--t-med); }
.link-cta:hover { color: var(--ink); }
.link-cta:hover::after { background: var(--platinum); transform: scaleX(0.7); }
.link-cta:hover svg { transform: translateX(4px); }

.link-cta-primary {
  color: var(--ink);
  font-size: 1.05rem;
}
.link-cta-primary::after { background: var(--platinum-deep); }

.hero-foot {
  font-family: var(--body);
  font-size: 0.82rem;
  color: var(--ink-3);
  letter-spacing: -0.005em;
  margin-top: 0.75rem;
}

/* CTA-band keeps the framed cta-primary used at bottom of page */
.cta-primary {
  display: inline-flex; align-items: center; gap: 0.85rem;
  font-family: var(--body);
  font-weight: 500;
  letter-spacing: 0.06em;
  font-size: 0.93rem;
  text-transform: uppercase;
  color: var(--ink);
  padding: 1rem 0;
  border-top: 1px solid var(--platinum-deep);
  border-bottom: 1px solid var(--platinum-deep);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.cta-primary svg { width: 18px; height: 18px; transition: transform var(--t-med); }
.cta-primary:hover { color: var(--platinum); border-color: var(--platinum); }
.cta-primary:hover svg { transform: translateX(6px); }
.cta-large {
  font-size: 1.02rem;
  padding: 1.35rem 0;
}

.cta-secondary {
  font-family: var(--body);
  font-size: 0.93rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  position: relative; padding-bottom: 4px;
  transition: color var(--t-fast);
}
.cta-secondary::after {
  content: ""; position: absolute; left: 0; right: 40%; bottom: 0;
  height: 1px; background: var(--line);
  transition: right var(--t-med), background var(--t-fast);
}
.cta-secondary:hover { color: var(--ink); }
.cta-secondary:hover::after { right: 0; background: var(--platinum); }

@media (max-width: 720px) {
  .hero { min-height: auto; padding-top: clamp(3rem, 9vh, 5rem); padding-bottom: clamp(4rem, 10vh, 6rem); }
  .hero-title { font-size: clamp(2.5rem, 13vw, 4rem); }
  .hero-actions { gap: 1rem 1.5rem; }
  .link-cta { font-size: 0.95rem; }
}

/* ─────────────────────────────────────────────────────────────
   Section heads
   ───────────────────────────────────────────────────────────── */
.section-head {
  max-width: 46rem;
  margin: 0 0 3.5rem;
}
.section-head .micro { display: inline-block; margin-bottom: 1rem; color: var(--platinum-2); }
.section-head h2 { margin-bottom: 1rem; }
.section-head .section-lede {
  color: var(--ink-2);
  max-width: 36rem;
  font-size: 1.02rem;
  line-height: 1.55;
}

/* ─────────────────────────────────────────────────────────────
   Services menu
   ───────────────────────────────────────────────────────────── */
.services {
  padding: clamp(5rem, 10vh, 8rem) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}

.tier-menu {
  border-top: 1px solid var(--line-soft);
}
.tier-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: clamp(2.25rem, 4vw, 3rem) 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
  position: relative;
  transition: background var(--t-med);
}
.tier-row:hover {
  background: linear-gradient(90deg, color-mix(in oklch, var(--surface-1) 50%, transparent), transparent 90%);
}

.tier-num {
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--platinum-2);
  padding-top: 1.05rem;
}

.tier-body { min-width: 0; max-width: 48rem; }
.tier-tag {
  display: inline-block;
  font-family: var(--body);
  text-transform: uppercase;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  color: var(--platinum);
  margin-bottom: 1.1rem;
  border: 1px solid var(--platinum-deep);
  padding: 0.35rem 0.7rem;
}
.tier-name {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 96;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 0.75rem;
  color: var(--ink);
}
.tier-desc {
  color: var(--ink-2);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  max-width: 36rem;
}
.tier-incl {
  color: var(--ink-3);
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 54rem;
}
.tier-incl .free {
  color: var(--platinum);
  font-style: italic;
}

.tier-price-block {
  text-align: right;
  padding-top: 0.85rem;
  white-space: nowrap;
}
.tier-price-block .micro {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--ink-3);
}
.tier-price {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.tier-row-featured {
  background: linear-gradient(90deg, color-mix(in oklch, var(--surface-1) 70%, transparent), color-mix(in oklch, var(--surface-1) 30%, transparent));
  padding-top: clamp(2.75rem, 4.5vw, 3.75rem);
  padding-bottom: clamp(2.75rem, 4.5vw, 3.75rem);
}
.tier-row-featured .tier-num { color: var(--platinum); padding-top: 1.55rem; }
.tier-row-featured .tier-price { color: var(--platinum); }
.tier-row-featured .tier-price-block { padding-top: 3.45rem; }

@media (max-width: 820px) {
  .tier-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2.25rem 0;
  }
  .tier-num { padding-top: 0; }
  .tier-price-block,
  .tier-row-featured .tier-price-block { text-align: left; padding-top: 0.5rem; }
  .tier-row-featured { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .tier-row-featured .tier-num { padding-top: 0; }
}

.fineprint {
  margin-top: 3rem;
  font-size: 0.82rem;
  color: var(--ink-3);
  font-style: italic;
  max-width: 40rem;
}

/* ─────────────────────────────────────────────────────────────
   Gallery
   ───────────────────────────────────────────────────────────── */
.gallery {
  padding: clamp(5rem, 10vh, 8rem) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: clamp(0.75rem, 1.4vw, 1.25rem);
}
.g {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--surface-1);
  border: 1px solid var(--line-soft);
  transition: border-color var(--t-med);
}
.g img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}
.g:hover { border-color: var(--platinum-deep); }
.g:hover img { transform: scale(1.04); }
.g figcaption {
  position: absolute;
  left: 1.1rem; bottom: 1.1rem;
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink);
  background: color-mix(in oklch, var(--bg) 70%, transparent);
  padding: 0.45rem 0.7rem;
  border: 1px solid color-mix(in oklch, var(--platinum-deep) 60%, transparent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.g-hero { grid-column: span 12; grid-row: span 3; }
.g-a    { grid-column: span 7;  grid-row: span 2; }
.g-b    { grid-column: span 5;  grid-row: span 2; }
.g-c    { grid-column: span 5;  grid-row: span 2; }
.g-d    { grid-column: span 7;  grid-row: span 2; }
.g-e    { grid-column: span 6;  grid-row: span 2; }
.g-f    { grid-column: span 6;  grid-row: span 2; }

@media (max-width: 820px) {
  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: minmax(140px, auto); }
  .g-hero { grid-column: span 6; grid-row: span 3; }
  .g-a, .g-b, .g-c, .g-d, .g-e, .g-f { grid-column: span 6; grid-row: span 2; }
}

/* ─────────────────────────────────────────────────────────────
   Process
   ───────────────────────────────────────────────────────────── */
.process {
  padding: clamp(5rem, 10vh, 8rem) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  border-top: 1px solid var(--line-soft);
  padding-top: 2.5rem;
}
.steps li {}
.step-num {
  display: block;
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--platinum-2);
  margin-bottom: 1.5rem;
}
.steps h3 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}
.steps p {
  color: var(--ink-2);
  font-size: 0.95rem;
  max-width: 22rem;
  line-height: 1.55;
}

@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr 1fr; gap: 2rem 2.5rem; }
}
@media (max-width: 540px) {
  .steps { grid-template-columns: 1fr; gap: 2rem; }
}

/* ─────────────────────────────────────────────────────────────
   About
   ───────────────────────────────────────────────────────────── */
.about {
  padding: clamp(4rem, 8vh, 7rem) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.about-copy .micro { display: inline-block; margin-bottom: 1rem; color: var(--platinum-2); }
.about-copy h2 { margin-bottom: 1.5rem; max-width: 22ch; }
.about-copy p {
  color: var(--ink-2);
  margin-bottom: 1.1rem;
  max-width: 38rem;
  font-size: 1.02rem;
}
.about-copy .cta-secondary { margin-top: 1rem; display: inline-block; }

.about-card {
  border: 1px solid var(--line-soft);
  padding: 1.75rem;
  display: grid;
  gap: 1.5rem;
  align-self: start;
  background: var(--surface-1);
}
.card-row { display: grid; gap: 0.35rem; }
.card-row .micro { color: var(--ink-3); }
.about-line {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 72;
  font-size: 1.2rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.3;
}
.about-line a { color: var(--platinum); }
.about-line a:hover { color: var(--ink); }
.card-note { margin-top: 0.35rem; color: var(--ink-3); }

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────────
   CTA band with big background wordmark
   ───────────────────────────────────────────────────────────── */
.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(6rem, 14vh, 11rem) var(--pad-x);
  background: var(--bg-deep);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.cta-bg {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 144, "wght" 350;
  font-size: clamp(8rem, 22vw, 22rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: oklch(0.21 0.005 60);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}
.cta-inner { position: relative; z-index: 1; }
.cta-band h2 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-bottom: 2.5rem;
}
.cta-band .cta-primary { margin-bottom: 1.2rem; }
.cta-band .micro { color: var(--ink-3); }

/* ─────────────────────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────────────────────── */
.site-foot {
  padding: clamp(3rem, 6vh, 4rem) var(--pad-x) 2rem;
  background: var(--bg-deep);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  max-width: var(--max); margin: 0 auto;
  align-items: start;
}
.foot-brand img { width: 30px; height: 30px; margin-bottom: 0.8rem; }
.foot-name {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 72;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.foot-name span {
  font-style: normal;
  color: var(--ink-3);
  font-size: 0.95rem;
  margin-left: 0.4rem;
}
.foot-nav {
  display: grid; gap: 0.6rem;
  font-size: 0.9rem; color: var(--ink-2);
}
.foot-nav a { transition: color var(--t-fast); }
.foot-nav a:hover { color: var(--ink); }
.foot-contact .micro { display: block; margin-bottom: 0.6rem; }
.foot-phone {
  font-family: var(--display);
  font-variation-settings: "opsz" 96;
  font-size: 1.5rem;
  color: var(--platinum);
  letter-spacing: -0.01em;
}
.foot-rule {
  max-width: var(--max); margin: 2.5rem auto 1.5rem;
  height: 1px;
  background: var(--line-soft);
}
.foot-legal { text-align: center; color: var(--ink-3); }

@media (max-width: 760px) {
  .foot-grid { grid-template-columns: 1fr; gap: 1.8rem; }
}

/* ─────────────────────────────────────────────────────────────
   Reveal on scroll
   ───────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ─────────────────────────────────────────────────────────────
   TOS page
   ───────────────────────────────────────────────────────────── */
.tos-page {
  padding: clamp(4rem, 8vh, 7rem) var(--pad-x);
}
.tos-wrap {
  max-width: 44rem; margin: 0 auto;
}
.tos-wrap h1 {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.tos-wrap .micro { display: inline-block; margin-bottom: 1rem; color: var(--platinum-2); }
.tos-wrap .lede { color: var(--ink-2); margin-bottom: 3rem; font-size: 1.02rem; }
.tos-section {
  padding: 2rem 0;
  border-top: 1px solid var(--line-soft);
}
.tos-section:last-of-type { border-bottom: 1px solid var(--line-soft); }
.tos-section h2 {
  display: flex; align-items: baseline; gap: 1rem;
  font-size: 1.55rem; margin-bottom: 0.9rem;
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.018em;
}
.tos-section h2 .num {
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  color: var(--platinum-2);
  min-width: 2rem;
}
.tos-section p, .tos-section li {
  color: var(--ink-2);
  font-size: 0.99rem;
  line-height: 1.65;
  max-width: 38rem;
}
.tos-section ul { margin-top: 0.6rem; display: grid; gap: 0.4rem; }
.tos-section li {
  padding-left: 1.4rem; position: relative;
}
.tos-section li::before {
  content: ""; position: absolute; left: 0; top: 0.7em;
  width: 6px; height: 1px; background: var(--platinum-deep);
}
.tos-foot {
  margin-top: 3rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
