/* ==========================================================================
   Booked AI
   Warm off-white ground, deep evergreen ink, amber highlight.
   Display: Bricolage Grotesque · Text/UI: Manrope
   ========================================================================== */

@font-face {
  font-family: 'Bricolage';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('./fonts/bricolage.woff2') format('woff2');
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('./fonts/manrope.woff2') format('woff2');
}

/* ---------- tokens ---------- */
:root {
  --bg: #f4f2ec;
  --bg-tint: #eceade;
  --paper: #ffffff;
  --ink: #16241e;
  --ink-dim: #55655d;
  --ink-faint: #647065;
  --accent: #1b6b54;
  --accent-hover: #14523f;
  --accent-wash: #e7efea;
  --amber: #d98f26;
  --amber-wash: #f8efdd;
  --line: #e0dbd0;
  --on-accent: #f6faf7;
  --shadow-sm: 0 1px 2px rgba(22, 36, 30, 0.05), 0 4px 12px -4px rgba(22, 36, 30, 0.07);
  --shadow-md: 0 2px 4px rgba(22, 36, 30, 0.05), 0 16px 32px -12px rgba(22, 36, 30, 0.13);

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;

  --font-display: 'Bricolage', 'Trebuchet MS', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;

  --page: 1220px;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #14191a;
    --bg-tint: #1b2223;
    --paper: #1e2627;
    --ink: #eef2ef;
    --ink-dim: #a5b2ac;
    --ink-faint: #82918a;
    --accent: #5cc39c;
    --accent-hover: #7ad3b1;
    --accent-wash: #21322c;
    --amber: #e8b45f;
    --amber-wash: #302819;
    --line: #2d3739;
    --on-accent: #0c1a15;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3), 0 4px 12px -4px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.3), 0 16px 32px -12px rgba(0, 0, 0, 0.55);
    color-scheme: dark;
  }
}

:root[data-theme='dark'] {
  --bg: #14191a;
  --bg-tint: #1b2223;
  --paper: #1e2627;
  --ink: #eef2ef;
  --ink-dim: #a5b2ac;
  --ink-faint: #82918a;
  --accent: #5cc39c;
  --accent-hover: #7ad3b1;
  --accent-wash: #21322c;
  --amber: #e8b45f;
  --amber-wash: #302819;
  --line: #2d3739;
  --on-accent: #0c1a15;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3), 0 4px 12px -4px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.3), 0 16px 32px -12px rgba(0, 0, 0, 0.55);
  color-scheme: dark;
}

:root[data-theme='light'] {
  --bg: #f4f2ec;
  --bg-tint: #eceade;
  --paper: #ffffff;
  --ink: #16241e;
  --ink-dim: #55655d;
  --ink-faint: #647065;
  --accent: #1b6b54;
  --accent-hover: #14523f;
  --accent-wash: #e7efea;
  --amber: #d98f26;
  --amber-wash: #f8efdd;
  --line: #e0dbd0;
  --on-accent: #f6faf7;
  --shadow-sm: 0 1px 2px rgba(22, 36, 30, 0.05), 0 4px 12px -4px rgba(22, 36, 30, 0.07);
  --shadow-md: 0 2px 4px rgba(22, 36, 30, 0.05), 0 16px 32px -12px rgba(22, 36, 30, 0.13);
  color-scheme: light;
}

/* ---------- base ---------- */
* { 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(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-display); margin: 0; text-wrap: balance; line-height: 1.1; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
svg { display: block; }
::selection { background: var(--accent); color: var(--on-accent); }

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

:where(a, button, [tabindex]):focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.page { max-width: var(--page); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2.5rem); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.skip {
  position: absolute; left: 1rem; top: -4rem; z-index: 300;
  background: var(--accent); color: var(--on-accent);
  padding: 0.7rem 1.2rem; border-radius: var(--r-pill); font-weight: 700;
  text-decoration: none; transition: top 0.2s ease;
}
.skip:focus { top: 1rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--r-pill);
  font-weight: 700; font-size: 0.97rem;
  text-decoration: none; white-space: nowrap;
  border: 1.5px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease,
              transform 0.18s ease, box-shadow 0.18s ease;
}
.btn--solid { background: var(--accent); color: var(--on-accent); }
.btn--solid:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline { border-color: var(--line); color: var(--ink); background: var(--paper); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.03rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.top {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.top[data-stuck='true'] { border-bottom-color: var(--line); }
.top__in {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 4.5rem;
}
.brand {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.22rem; letter-spacing: -0.02em;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
  margin-right: auto;
}
.brand__dot {
  width: 1.6rem; height: 1.6rem; border-radius: var(--r-pill);
  background: var(--accent); color: var(--on-accent);
  display: grid; place-items: center; font-size: 0.85rem; font-weight: 800;
  flex-shrink: 0;
}
.top nav { display: flex; align-items: center; gap: 2rem; }
.top nav ul { display: flex; align-items: center; gap: 2rem; }
.top nav a:not(.btn) {
  text-decoration: none; font-weight: 600; font-size: 0.95rem; color: var(--ink-dim);
  transition: color 0.15s ease;
}
.top nav a:not(.btn):hover { color: var(--ink); }
.top__phone {
  display: inline-flex; align-items: center; gap: 0.45rem;
  text-decoration: none; font-weight: 700; font-size: 0.95rem;
  padding: 0.55rem 1.1rem; border-radius: var(--r-pill);
  background: var(--paper); border: 1px solid var(--line);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.top__phone:hover { border-color: var(--accent); color: var(--accent); }
.top__phone svg { color: var(--accent); }

.burger {
  display: none;
  width: 2.6rem; height: 2.6rem; border-radius: var(--r-pill);
  border: 1px solid var(--line); background: var(--paper);
  place-items: center;
}
.burger i {
  display: block; width: 17px; height: 2px; background: var(--ink); border-radius: 2px;
  position: relative;
}
.burger i::before, .burger i::after {
  content: ''; position: absolute; left: 0;
  width: 17px; height: 2px; background: var(--ink); border-radius: 2px;
}
.burger i::before { top: -6px; }
.burger i::after { top: 6px; }

@media (max-width: 860px) {
  .burger { display: grid; }
  .top__phone { display: none; }
  .top nav {
    position: absolute; inset: 100% 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 1rem clamp(1.25rem, 5vw, 2.5rem) 1.75rem;
    box-shadow: var(--shadow-md);
    opacity: 0; transform: translateY(-10px); pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .top nav[data-open='true'] { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .top nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .top nav ul li + li { border-top: 1px solid var(--line); }
  .top nav ul a { display: block; padding: 0.95rem 0; font-size: 1.05rem; }
  .top nav .btn { margin-top: 1.1rem; width: 100%; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding-block: clamp(3rem, 8vw, 6rem) clamp(2.5rem, 6vw, 4.5rem); }
.hero__in { text-align: center; display: grid; justify-items: center; gap: 1.6rem; }
.pill {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--amber-wash); color: var(--ink);
  padding: 0.45rem 1.1rem; border-radius: var(--r-pill);
  font-size: 0.85rem; font-weight: 700;
}
.pill b { color: var(--accent); }
.hero h1 {
  font-size: clamp(2.5rem, 6.5vw, 4.6rem);
  font-weight: 800; letter-spacing: -0.03em;
  max-width: 20ch;
}
.hero h1 span { color: var(--accent); }
.hero__sub {
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  color: var(--ink-dim); max-width: 46ch;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }
.hero__note { font-size: 0.92rem; color: var(--ink-faint); }
.hero__note a { color: var(--accent); font-weight: 700; text-decoration: none; }
.hero__note a:hover { text-decoration: underline; }

/* ==========================================================================
   About — what the business is
   ========================================================================== */
.about { background: var(--bg-tint); padding-block: clamp(3rem, 7vw, 5rem); }
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 5vw, 4rem); align-items: center;
}
.about h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 1rem; max-width: 18ch;
}
.about__copy > p { color: var(--ink-dim); font-size: 1.05rem; max-width: 46ch; }
.about__copy > p + p { margin-top: 0.9rem; }
.points { display: grid; gap: 0.8rem; }
.point {
  display: flex; gap: 0.95rem; align-items: flex-start;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 1.05rem 1.15rem;
}
.point__ico {
  width: 2.3rem; height: 2.3rem; border-radius: var(--r-sm);
  background: var(--accent-wash); color: var(--accent);
  display: grid; place-items: center; flex-shrink: 0;
}
.point__ico svg { width: 19px; height: 19px; }
.point b { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 0.15rem; }
.point span { color: var(--ink-dim); font-size: 0.93rem; }

/* ==========================================================================
   Services — full directory
   ========================================================================== */
.services { padding-block: clamp(2.5rem, 6vw, 4rem) clamp(3rem, 7vw, 5rem); }
.sec-head { text-align: center; display: grid; justify-items: center; gap: 0.85rem; margin-bottom: 2rem; }
.sec-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 800; letter-spacing: -0.02em;
  max-width: 24ch;
}
.sec-head p { color: var(--ink-dim); max-width: 50ch; }

/* search */
.finder { position: relative; max-width: 430px; margin: 0 auto; }
.finder input {
  width: 100%; font: inherit; font-size: 0.97rem;
  padding: 0.85rem 2.6rem 0.85rem 2.85rem;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--line); background: var(--paper); color: var(--ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.finder input::placeholder { color: var(--ink-faint); }
.finder input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-wash); }
.finder__ico {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--ink-faint); pointer-events: none;
}
.finder__clear {
  position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%);
  width: 1.6rem; height: 1.6rem; border-radius: var(--r-pill);
  display: none; place-items: center;
  background: var(--bg-tint); color: var(--ink-dim);
}
.finder__clear svg { width: 12px; height: 12px; }
.finder[data-filled='true'] .finder__clear { display: grid; }
.finder__clear:hover { background: var(--accent); color: var(--on-accent); }

/* sticky category jump bar */
.svc-nav {
  position: sticky; top: 4.5rem; z-index: 50;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  margin-top: 1.5rem;
}
.svc-nav ul {
  display: flex; gap: 0.5rem; padding-block: 0.75rem;
  overflow-x: auto; scrollbar-width: none;
}
.svc-nav ul::-webkit-scrollbar { display: none; }
.svc-nav a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1rem; border-radius: var(--r-pill);
  background: var(--paper); border: 1.5px solid var(--line);
  font-weight: 700; font-size: 0.9rem; color: var(--ink-dim);
  text-decoration: none; white-space: nowrap;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.svc-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }
.svc-nav a:hover { border-color: var(--accent); color: var(--accent); }
.svc-nav a b { font-weight: 700; opacity: 0.6; }
.svc-nav a[aria-current='true'] {
  background: var(--accent); border-color: var(--accent); color: var(--on-accent);
}

/* category group */
.group { padding-top: clamp(2.25rem, 5vw, 3.25rem); scroll-margin-top: 9rem; }
.group[data-empty='true'] { display: none; }
.group__head { display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; }
.group__head h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 800; letter-spacing: -0.015em; }
.group__n {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 0.2rem 0.6rem; border-radius: var(--r-pill);
  background: var(--accent-wash); color: var(--accent);
}
.group__lede { color: var(--ink-dim); margin: 0.5rem 0 1.6rem; max-width: 56ch; }
.no-hits {
  display: none; text-align: center; color: var(--ink-dim);
  padding: 3rem 1rem;
}
.no-hits[data-show='true'] { display: block; }
.no-hits b { display: block; font-size: 1.1rem; color: var(--ink); margin-bottom: 0.35rem; }

/* Flex + centered wrapping so a short final row centers instead of
   left-aligning. Cards don't grow, so widths stay consistent row to row. */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1.1rem;
}
.card[data-hide='true'] { display: none; }
.card {
  flex: 0 1 268px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.6rem 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); }
.card__icon {
  width: 2.6rem; height: 2.6rem; border-radius: var(--r-md);
  background: var(--accent-wash); color: var(--accent);
  display: grid; place-items: center; margin-bottom: 0.35rem;
}
.card__icon svg { width: 21px; height: 21px; }
.card h3 { font-size: 1.16rem; font-weight: 700; letter-spacing: -0.01em; }
.card p { color: var(--ink-dim); font-size: 0.95rem; }

.more {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 700; font-size: 0.9rem; color: var(--accent);
  padding: 0; margin-top: 0.15rem; align-self: flex-start;
}
.more svg { width: 15px; height: 15px; transition: transform 0.2s ease; }
.more[aria-expanded='true'] svg { transform: rotate(180deg); }
.more:hover { color: var(--accent-hover); }

.detail {
  display: none;
  border-top: 1px solid var(--line);
  padding-top: 1rem; margin-top: 0.4rem;
}
.detail[data-open='true'] { display: block; }
.detail > p {
  font-size: 0.92rem; color: var(--ink-dim);
  margin-bottom: 1rem;
}
.detail h4 {
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.6rem;
}
.detail ul { display: grid; gap: 0.5rem; }
.detail li {
  display: flex; gap: 0.6rem; align-items: flex-start;
  font-size: 0.9rem; color: var(--ink-dim);
  line-height: 1.5;
}
.detail__for {
  margin-top: 1rem; padding-top: 0.85rem;
  border-top: 1px dashed var(--line);
  font-size: 0.88rem; color: var(--ink-dim);
}
.detail__for b { color: var(--ink); font-weight: 700; }
.detail li::before {
  content: ''; flex-shrink: 0;
  width: 6px; height: 6px; margin-top: 0.55em;
  border-radius: 50%; background: var(--amber);
}

/* ==========================================================================
   Learn more — how it works
   ========================================================================== */
.learn { background: var(--bg-tint); padding-block: clamp(3rem, 7vw, 5rem); margin-top: clamp(2.5rem, 6vw, 4rem); }
.steps { display: flex; flex-wrap: wrap; gap: 1.1rem; }
.step {
  flex: 1 1 260px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.7rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.step__n {
  width: 2.3rem; height: 2.3rem; border-radius: var(--r-pill);
  background: var(--accent); color: var(--on-accent);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  margin-bottom: 0.4rem;
}
.step h3 { font-size: 1.15rem; font-weight: 700; }
.step p { color: var(--ink-dim); font-size: 0.95rem; }

.learn__foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1rem; margin-top: 2.25rem; text-align: center;
}
.learn__foot p { color: var(--ink-dim); font-size: 0.97rem; }

/* ==========================================================================
   Booking
   ========================================================================== */
.book { padding-block: clamp(3rem, 7vw, 5rem); }
.book__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
@media (max-width: 880px) {
  .book__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
}
.book h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.9rem; }
.book__copy p { color: var(--ink-dim); font-size: 1.05rem; max-width: 40ch; margin-bottom: 1.5rem; }
.book__direct {
  display: grid; gap: 0.75rem; padding-top: 1.4rem; border-top: 1px solid var(--line);
}
.book__direct a {
  display: inline-flex; align-items: center; gap: 0.65rem;
  text-decoration: none; font-weight: 700; font-size: 1.12rem;
  width: fit-content;
}
.book__direct a:hover { color: var(--accent); }
.book__direct svg { width: 19px; height: 19px; color: var(--accent); flex-shrink: 0; }
.book__direct small { color: var(--ink-faint); font-weight: 500; font-size: 0.88rem; display: block; }

.picker {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.1rem);
  box-shadow: var(--shadow-md);
}
.picker > h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.35rem; }
.picker__hint { color: var(--ink-dim); font-size: 0.93rem; margin-bottom: 1.4rem; }
.methods { display: grid; gap: 0.7rem; margin-bottom: 1.5rem; }
.method { position: relative; }
.method input {
  position: absolute; opacity: 0; width: 1px; height: 1px;
}
.method label {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1rem 1.15rem;
  border: 1.5px solid var(--line); border-radius: var(--r-md);
  cursor: pointer; font-weight: 700; font-size: 0.98rem;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.method label:hover { border-color: var(--accent); }
.method input:checked + label { border-color: var(--accent); background: var(--accent-wash); }
.method input:focus-visible + label { outline: 2.5px solid var(--accent); outline-offset: 2px; }
.method__ico {
  width: 2.2rem; height: 2.2rem; border-radius: var(--r-sm);
  background: var(--bg-tint); color: var(--accent);
  display: grid; place-items: center; flex-shrink: 0;
}
.method input:checked + label .method__ico { background: var(--accent); color: var(--on-accent); }
.method__ico svg { width: 17px; height: 17px; }
.method span small { display: block; font-weight: 500; font-size: 0.85rem; color: var(--ink-dim); }
.method__check {
  margin-left: auto; width: 1.25rem; height: 1.25rem; border-radius: 50%;
  border: 1.5px solid var(--line); display: grid; place-items: center; flex-shrink: 0;
}
.method input:checked + label .method__check { background: var(--accent); border-color: var(--accent); }
.method__check svg { width: 11px; height: 11px; color: var(--on-accent); opacity: 0; }
.method input:checked + label .method__check svg { opacity: 1; }

.picker .btn { width: 100%; }
.picker__fine { text-align: center; color: var(--ink-faint); font-size: 0.85rem; margin-top: 0.9rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.foot { border-top: 1px solid var(--line); padding-block: 2.25rem; }
.foot__in {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem;
}
.foot nav ul { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.foot nav a { text-decoration: none; font-size: 0.92rem; color: var(--ink-dim); font-weight: 600; }
.foot nav a:hover { color: var(--accent); }
.foot small { color: var(--ink-faint); font-size: 0.85rem; }

/* ---------- reveal ---------- */
.rv { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; } }
