/* ============================================================
   UNLIMITED MOBILE SCREEN AND SERVICES
   Composition: clashing warm neons · collage headline ·
   index-card stack · dictated quote · patterned SVG ground
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --bg-raise: #131313;
  --ink: #ffffff;
  --ink-dim: #b9b3ad;
  --ink-faint: #7d7772;
  --accent-a: #ff2f92;   /* magenta */
  --accent-b: #ff8a00;   /* acid orange */
  --accent-c: #f4ff33;   /* electric yellow */
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);
  --card: #f6f1e6;
  --card-ink: #0a0a0a;
  --card-ink-dim: #4a443d;
  --shadow-hard: 6px 6px 0 rgba(0, 0, 0, 0.85);
  --pad: clamp(1.15rem, 4vw, 3.5rem);
  --maxw: 1180px;
  --font-display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.55vw + 0.9rem, 1.075rem);
  line-height: 1.62;
  font-variation-settings: "wdth" 100, "wght" 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- patterned SVG ground ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 8%, rgba(255, 47, 146, 0.16), transparent 42%),
    radial-gradient(circle at 88% 78%, rgba(255, 138, 0, 0.14), transparent 46%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><g fill='none' stroke='%23ffffff' stroke-opacity='0.055' stroke-width='1'><path d='M0 12h24M12 0v24'/></g><circle cx='12' cy='12' r='1.4' fill='%23ffffff' fill-opacity='0.09'/></svg>");
  background-size: auto, auto, 24px 24px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.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;
}
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--accent-c); color: #0a0a0a; padding: 0.6rem 1rem;
  font-family: var(--font-mono); font-size: 0.8rem; text-decoration: none;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }

:focus-visible {
  outline: 3px solid var(--accent-c);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.7rem var(--pad);
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none; margin-right: auto;
}
.brand-mark {
  display: grid; place-items: center;
  width: 40px; height: 40px; flex: none;
  background: var(--accent-a); color: #0a0a0a;
  font-family: var(--font-mono); font-weight: 700; font-size: 0.85rem;
  letter-spacing: -0.04em;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.8);
  transform: rotate(-3deg);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-size: 0.95rem; letter-spacing: 0.06em;
  font-variation-settings: "wdth" 88, "wght" 800;
}
.brand-text em {
  font-style: normal; font-size: 0.68rem; color: var(--ink-faint);
  font-family: var(--font-mono); letter-spacing: 0.02em;
}

.nav { display: flex; gap: 1.1rem; flex-wrap: wrap; }
.nav a {
  text-decoration: none; font-size: 0.86rem; color: var(--ink-dim);
  font-variation-settings: "wdth" 92, "wght" 500;
  padding: 0.35rem 0; border-bottom: 2px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.nav a:hover { color: var(--ink); border-bottom-color: var(--accent-b); }

.call-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  min-height: 44px; padding: 0.55rem 1rem;
  background: var(--accent-c); color: #0a0a0a;
  text-decoration: none; font-family: var(--font-mono);
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.01em;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.85);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.call-btn:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.85); background: #ffffff; }
.call-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #0a0a0a; animation: blink 1.6s steps(2, end) infinite;
}
@keyframes blink { 0%, 60% { opacity: 1; } 61%, 100% { opacity: 0.25; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4.5rem) var(--pad) clamp(2rem, 5vw, 3.5rem);
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .hero { grid-template-columns: 1.15fr 0.85fr; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-b); margin: 0 0 1.1rem;
  border: 1px solid rgba(255, 138, 0, 0.4);
  padding: 0.35rem 0.7rem;
  background: rgba(255, 138, 0, 0.07);
}
.pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent-a);
  box-shadow: 0 0 0 0 rgba(255, 47, 146, 0.7);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 47, 146, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 47, 146, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 47, 146, 0); }
}

/* ---------- collage headline ---------- */
.collage {
  margin: 0 0 1.25rem;
  font-size: clamp(2.4rem, 8.5vw, 5.1rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
  display: flex; flex-wrap: wrap;
  gap: 0 0.32em;
}
.collage span { display: inline-block; }
.collage .w1 { font-variation-settings: "wdth" 100, "wght" 800; color: var(--ink); }
.collage .w2 { font-variation-settings: "wdth" 78, "wght" 300; color: var(--accent-a); font-style: italic; }
.collage .w3 { font-variation-settings: "wdth" 100, "wght" 700; color: var(--ink); }
.collage .w4 { font-variation-settings: "wdth" 88, "wght" 800; color: var(--accent-b); }
.collage .w5 { font-variation-settings: "wdth" 75, "wght" 250; color: var(--ink-dim); }
.collage .w6 { font-variation-settings: "wdth" 100, "wght" 800; color: var(--ink); }
.collage .w7 { font-variation-settings: "wdth" 82, "wght" 400; color: var(--ink-faint); font-size: 0.72em; }
.collage .w8 { font-variation-settings: "wdth" 100, "wght" 800; color: var(--accent-c); }

.lede {
  font-size: clamp(1.02rem, 0.5vw + 0.95rem, 1.2rem);
  color: var(--ink-dim); max-width: 46ch; margin: 0 0 1.6rem;
  font-variation-settings: "wdth" 96, "wght" 380;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0.75rem 1.4rem;
  text-decoration: none; font-family: var(--font-mono);
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.02em;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn-a {
  background: var(--accent-a); color: #0a0a0a;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.85);
}
.btn-a:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.85); background: #ffffff; }
.btn-b {
  background: var(--accent-b); color: #0a0a0a;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.85);
  margin-top: 0.9rem;
}
.btn-b:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.85); background: #ffffff; }
.btn-ghost {
  border-color: var(--line-strong); color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--accent-c); color: var(--accent-c); }

.hero-stats {
  display: grid; gap: 0.9rem 1.5rem; margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  border-top: 1px solid var(--line); padding-top: 1.3rem;
}
.hero-stats div { display: flex; flex-direction: column; gap: 0.15rem; }
.hero-stats dt {
  font-family: var(--font-mono); font-size: 0.66rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-b);
}
.hero-stats dd {
  margin: 0; font-size: 0.92rem; color: var(--ink);
  font-variation-settings: "wdth" 94, "wght" 600;
}

.hero-figure { margin: 0; position: relative; }
.hero-figure img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border: 2px solid var(--line-strong);
  box-shadow: 8px 8px 0 rgba(255, 47, 146, 0.55);
  filter: saturate(1.08) contrast(1.05);
}
.hero-figure figcaption {
  margin-top: 0.7rem; font-family: var(--font-mono);
  font-size: 0.7rem; color: var(--ink-faint); letter-spacing: 0.02em;
}

/* ============================================================
   SIGNATURE — dictated quote
   ============================================================ */
.dictation {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) var(--pad);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 47, 146, 0.07), rgba(255, 138, 0, 0.05) 55%, transparent);
}
.dictation-line {
  margin: 0;
  font-size: clamp(1.25rem, 2.6vw, 2.1rem);
  line-height: 1.34;
  letter-spacing: -0.015em;
  font-variation-settings: "wdth" 92, "wght" 500;
  max-width: 34ch;
  color: var(--ink);
}
.dictation-line .dw {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.35em);
  animation: dictate 0.42s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}
.dictation-line .dw:nth-child(3n) { color: var(--accent-a); }
.dictation-line .dw:nth-child(5n) { color: var(--accent-b); }
.dictation-line .dw:nth-child(7n) { font-variation-settings: "wdth" 100, "wght" 800; }
@keyframes dictate {
  to { opacity: 1; transform: translateY(0); }
}
.dictation-line .caret {
  display: inline-block; width: 0.09em; height: 1em;
  background: var(--accent-c); vertical-align: -0.12em;
  margin-left: 0.06em;
  animation: caret 1s steps(2, end) infinite;
}
@keyframes caret { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2.75rem, 7vw, 5.5rem) var(--pad);
}
.section-alt {
  max-width: none;
  background: rgba(255, 255, 255, 0.022);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-alt > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }

.section-head { margin-bottom: clamp(1.75rem, 4vw, 3rem); max-width: 62ch; }
.kicker {
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-a); margin: 0 0 0.7rem;
}
.section-head h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.75rem, 4.4vw, 3rem);
  line-height: 1.02; letter-spacing: -0.03em;
  font-variation-settings: "wdth" 88, "wght" 800;
}
.section-note { margin: 0; color: var(--ink-dim); font-size: 1rem; }

/* ============================================================
   INDEX-CARD STACK
   ============================================================ */
.card-stack {
  display: grid;
  gap: clamp(1.1rem, 2.4vw, 1.75rem);
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  padding: 0.5rem 0.75rem 1.25rem 0.25rem;
}

.card {
  position: relative;
  background: var(--card);
  color: var(--card-ink);
  padding: 1.6rem 1.4rem 1.35rem;
  border: 1px solid rgba(0, 0, 0, 0.5);
  box-shadow: var(--shadow-hard);
  transform: rotate(-1deg);
  transition: transform 0.22s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.22s ease;
}
.card:nth-child(even) { transform: rotate(1deg); }
.card:nth-child(3n) { transform: rotate(-0.4deg); }
.card:hover {
  transform: rotate(0deg) translate(-3px, -3px);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.85);
  z-index: 2;
}

/* punched hole */
.punch {
  position: absolute; top: 0.85rem; left: 50%;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--bg);
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.9), 0 1px 0 rgba(255, 255, 255, 0.35);
  transform: translateX(-50%);
}

.card-no {
  margin: 0.9rem 0 0.55rem;
  font-family: var(--font-mono); font-size: 0.66rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #8a2c5c;
}
.card h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.12; letter-spacing: -0.02em;
  font-variation-settings: "wdth" 92, "wght" 800;
}
.card p { margin: 0 0 0.9rem; font-size: 0.94rem; color: var(--card-ink-dim); line-height: 1.58; }
.card-meta {
  margin: 0 !important;
  padding-top: 0.8rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.28);
  font-family: var(--font-mono); font-size: 0.72rem !important;
  letter-spacing: 0.02em; color: #7a2a52 !important;
}

/* ============================================================
   STEPS
   ============================================================ */
.steps {
  list-style: none; margin: 0 0 clamp(2rem, 4vw, 3rem); padding: 0;
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  counter-reset: step;
}
.steps li {
  position: relative;
  padding: 1.5rem 1.3rem 1.3rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--accent-b);
}
.step-no {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px; margin-bottom: 0.8rem;
  background: var(--accent-b); color: #0a0a0a;
  font-family: var(--font-mono); font-weight: 700; font-size: 0.9rem;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.8);
}
.steps h3 {
  margin: 0 0 0.6rem; font-size: 1.1rem; letter-spacing: -0.015em;
  font-variation-settings: "wdth" 92, "wght" 700;
}
.steps p { margin: 0; color: var(--ink-dim); font-size: 0.94rem; }

.how-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.how-grid figure { margin: 0; }
.how-grid img {
  width: 100%; aspect-ratio: 16 / 11; object-fit: cover;
  border: 1px solid var(--line-strong);
  box-shadow: 6px 6px 0 rgba(255, 138, 0, 0.4);
  filter: saturate(1.06);
}
.how-grid figcaption {
  margin-top: 0.65rem; font-family: var(--font-mono);
  font-size: 0.7rem; color: var(--ink-faint);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid; gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 860px) {
  .about-grid { grid-template-columns: 0.8fr 1.2fr; }
}
.about-photo { margin: 0; }
.about-photo img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border: 2px solid var(--line-strong);
  box-shadow: 8px 8px 0 rgba(244, 255, 51, 0.35);
}
.about-copy p { margin: 0 0 1.1rem; color: var(--ink-dim); }
.about-copy p:first-child { color: var(--ink); font-size: 1.08rem; }

.creed {
  list-style: none; margin: 1.5rem 0 0; padding: 0;
  display: grid; gap: 0.7rem;
  border-top: 1px solid var(--line); padding-top: 1.3rem;
}
.creed li {
  position: relative; padding-left: 1.5rem;
  font-size: 0.94rem; color: var(--ink-dim);
}
.creed li::before {
  content: "→"; position: absolute; left: 0; top: 0;
  color: var(--accent-a); font-family: var(--font-mono); font-weight: 700;
}
.creed strong { color: var(--ink); font-variation-settings: "wdth" 94, "wght" 700; }

.work-strip {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.work-strip figure { margin: 0; }
.work-strip img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border: 1px solid var(--line);
  filter: saturate(1.05);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.work-strip figure:hover img { transform: translateY(-4px); border-color: var(--accent-a); }
.work-strip figcaption {
  margin-top: 0.6rem; font-family: var(--font-mono);
  font-size: 0.68rem; color: var(--ink-faint); line-height: 1.5;
}

/* ============================================================
   VISIT
   ============================================================ */
.visit-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.visit-card {
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-top: 3px solid var(--accent-a);
}
.visit-card:nth-child(2) { border-top-color: var(--accent-b); }
.visit-card:nth-child(3) { border-top-color: var(--accent-c); }
.visit-card h3 {
  margin: 0 0 0.9rem; font-size: 1.15rem; letter-spacing: -0.015em;
  font-variation-settings: "wdth" 92, "wght" 700;
}
.visit-card p { margin: 0 0 0.9rem; color: var(--ink-dim); font-size: 0.94rem; }
.visit-card address {
  font-style: normal; color: var(--ink); font-size: 0.98rem;
  line-height: 1.7; margin-bottom: 1rem;
  font-variation-settings: "wdth" 94, "wght" 500;
}
.visit-sub {
  font-family: var(--font-mono) !important; font-size: 0.66rem !important;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-b) !important; margin-bottom: 0.4rem !important;
}
.big-phone {
  display: block; text-decoration: none;
  font-size: clamp(1.9rem, 5vw, 2.7rem);
  letter-spacing: -0.03em; line-height: 1;
  color: var(--accent-c);
  font-variation-settings: "wdth" 88, "wght" 800;
  margin-bottom: 0.5rem;
  transition: color 0.18s ease;
}
.big-phone:hover { color: #ffffff; }

.hours {
  width: 100%; border-collapse: collapse; margin-bottom: 1.1rem;
  font-family: var(--font-mono); font-size: 0.82rem;
}
.hours th, .hours td { padding: 0.42rem 0; text-align: left; }
.hours th {
  font-weight: 400; color: var(--ink-dim);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.hours td {
  text-align: right; color: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.hours tr.closed th, .hours tr.closed td { color: var(--accent-a); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--line);
  background: #060606;
  padding: clamp(2rem, 5vw, 3rem) var(--pad) 5rem;
}
.footer-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; flex-direction: column; gap: 1.1rem;
}
.footer-name {
  margin: 0 0 0.35rem; font-size: 0.95rem; letter-spacing: 0.05em;
  font-variation-settings: "wdth" 88, "wght" 800;
}
.footer-line {
  margin: 0; font-family: var(--font-mono); font-size: 0.74rem;
  color: var(--ink-faint); line-height: 1.7;
}
.footer-line a { color: var(--accent-c); text-decoration: none; }
.footer-line a:hover { text-decoration: underline; }

.footer-nav { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-nav a {
  text-decoration: none; font-size: 0.82rem; color: var(--ink-dim);
  border-bottom: 1px solid transparent; padding-bottom: 2px;
}
.footer-nav a:hover { color: var(--ink); border-bottom-color: var(--accent-b); }

.claim-banner {
  align-self: flex-start;
  display: inline-block;
  font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--ink-dim); text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  padding: 0.45rem 0.75rem;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.claim-banner:hover {
  color: var(--ink); border-color: var(--accent-b);
  background: rgba(255, 138, 0, 0.1);
}

.attribution {
  margin: 0; font-family: var(--font-mono); font-size: 0.68rem;
  color: var(--ink-faint);
}
.attribution a { color: inherit; text-decoration: none; }
.attribution a:hover { color: var(--ink); text-decoration: underline; }

/* ============================================================
   VIEW TRANSITIONS
   ============================================================ */
@view-transition { navigation: auto; }

::view-transition-old(root) {
  animation: vt-out 0.32s cubic-bezier(0.4, 0, 1, 1) both;
}
::view-transition-new(root) {
  animation: vt-in 0.42s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}
@keyframes vt-out {
  to { opacity: 0; transform: translateY(-14px) scale(0.99); }
}
@keyframes vt-in {
  from { opacity: 0; transform: translateY(18px) scale(0.99); }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .dictation-line .dw { opacity: 1; transform: none; }
  .dictation-line .caret { display: none; }
  .card, .card:nth-child(even), .card:nth-child(3n) { transform: none; }
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}

/* ============================================================
   SMALL SCREENS
   ============================================================ */
@media (max-width: 640px) {
  .topbar { gap: 0.6rem; padding: 0.6rem var(--pad); }
  .nav { order: 3; width: 100%; gap: 0.9rem; }
  .nav a { font-size: 0.8rem; }
  .call-btn { padding: 0.5rem 0.8rem; font-size: 0.76rem; }
  .brand-text em { display: none; }
  .card-stack { padding-right: 0.4rem; }
  .card { transform: none; }
  .card:hover { transform: translate(-2px, -2px); }
  .hero-figure img { box-shadow: 5px 5px 0 rgba(255, 47, 146, 0.55); }
}
