/* ============================================================
   WHO'S YOUR DEV — whosyour.dev
   "Premium dark studio"
   Palette: deep blue-black, bone, champagne gold
   Type: Instrument Sans (headings/body) / Instrument Serif (italic accents)
         Geist Mono (labels)
   ============================================================ */

/* self-hosted fonts (latin subsets) */
@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/InstrumentSans.woff2") format("woff2");
}
@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/InstrumentSerif-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("assets/fonts/GeistMono.woff2") format("woff2");
}

:root {
  --bg: #0b0e13;
  --bg-elev: #11151d;
  --bg-card: #12161f;
  --line: rgba(236, 231, 218, 0.1);
  --line-strong: rgba(236, 231, 218, 0.2);
  --text: #ece7da;
  --muted: #a39e90;
  --gold: #e3b341;
  --gold-soft: rgba(227, 179, 65, 0.14);
  --teal: #1d4a56;

  --font-sans: "Instrument Sans", "Segoe UI", sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-mono: "Geist Mono", Consolas, monospace;

  --pad-x: clamp(1.25rem, 5vw, 5rem);
  --maxw: 78rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

/* anchored sections land below the sticky topbar */
section[id], main[id] { scroll-margin-top: 4.5rem; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

::selection { background: var(--gold); color: var(--bg); }

/* skip link — visually hidden until focused */
.skip-link {
  position: absolute;
  top: 0.6rem; left: 0.6rem;
  z-index: 1000;
  padding: 0.6rem 1.2rem;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 99px;
  transform: translateY(-300%);
}
.skip-link:focus-visible { transform: none; }

/* film grain */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* aurora backdrop (hero region) */
.aurora {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 110vh;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to bottom, black 55%, transparent);
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}
.a1 { width: 44rem; height: 44rem; top: -18rem; right: -10rem; background: radial-gradient(circle, rgba(29, 74, 86, 0.9), transparent 65%); animation: drift1 26s ease-in-out infinite alternate; }
.a2 { width: 30rem; height: 30rem; top: 4rem; left: -12rem; background: radial-gradient(circle, rgba(227, 179, 65, 0.22), transparent 65%); animation: drift2 32s ease-in-out infinite alternate; }
.a3 { width: 26rem; height: 26rem; top: 26rem; left: 38%; background: radial-gradient(circle, rgba(64, 38, 24, 0.55), transparent 65%); animation: drift1 38s ease-in-out infinite alternate-reverse; }

@keyframes drift1 { to { transform: translate(-6rem, 4rem) scale(1.12); } }
@keyframes drift2 { to { transform: translate(5rem, -3rem) scale(1.08); } }

/* faint twinkling stars over the aurora */
.stars { position: absolute; inset: 0; width: 100%; height: 100%; fill: var(--gold); }
.stars .tw1 { opacity: 0.5; animation: twinkle 5s ease-in-out infinite; }
.stars .tw2 { opacity: 0.32; animation: twinkle 7s ease-in-out infinite 2.2s; }
@keyframes twinkle { 50% { opacity: 0.1; } }

/* a shooting star, once in a while */
.shoot {
  position: absolute;
  top: 16%; left: -10%;
  width: 8rem; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 60%, #fff);
  opacity: 0;
  transform: rotate(16deg);
  animation: shoot 19s linear infinite 4s;
}
@keyframes shoot {
  0%, 91% { opacity: 0; transform: translate(0, 0) rotate(16deg); }
  93% { opacity: 0.85; }
  100% { opacity: 0; transform: translate(82vw, 24vh) rotate(16deg); }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--bg);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 99px;
  padding: 0.85rem 1.8rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(227, 179, 65, 0.3);
  background: #ecc25c;
}
.btn:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: rgba(236, 231, 218, 0.06); box-shadow: none; border-color: var(--text); }

.btn-small { padding: 0.5rem 1.2rem; font-size: 0.9rem; }
.btn-big { font-size: 1.15rem; padding: 1.05rem 2.4rem; font-family: var(--font-mono); font-weight: 500; }

/* ---------- type helpers ---------- */
.kicker {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.kicker-gold { color: var(--gold); }

h2 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.06em;
  color: var(--gold);
  letter-spacing: 0;
}

.section-head { text-align: center; max-width: 48rem; margin: 0 auto 3.5rem; position: relative; z-index: 1; }
.section-sub { margin-top: 1.2rem; color: var(--muted); font-size: 1.08rem; }

/* ---------- reveal (scroll-triggered; hidden state only when JS is running) ---------- */
.reveal { transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
html.js .reveal { opacity: 0; transform: translateY(26px); }
html.js .reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }

/* ---------- page-load choreography (first paint, ~1.1s total) ---------- */
@media (prefers-reduced-motion: no-preference) {
  html.js .topbar { opacity: 0; transform: translateY(-10px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
  html.js.loaded .topbar { opacity: 1; transform: none; }

  html.js .lo { opacity: 0; transform: translateY(18px); transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
  html.js.loaded .lo { opacity: 1; transform: none; }
  .lo-1 { transition-delay: 0.08s; }
  .lo-4 { transition-delay: 0.18s; }
  .lo-5 { transition-delay: 0.38s; }

  /* eyebrow tick draws in */
  html.js .tick { transform: scaleX(0); transform-origin: left; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.18s; }
  html.js.loaded .tick { transform: scaleX(1); }

  /* headline line-mask rise */
  html.js .hl-inner { transform: translateY(112%); transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
  html.js.loaded .hl-inner { transform: none; }
  .hl-a { transition-delay: 0.12s; }
  .hl-b { transition-delay: 0.22s; }

  /* "earn" settles late with a tiny rotation */
  html.js .hero-em { transform: rotate(-2.5deg); transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.6s; }
  html.js.loaded .hero-em { transform: none; }

  /* star puff beside "earn" */
  html.js .em-star { opacity: 0; transform: scale(0) rotate(-40deg); transition: opacity 0.4s ease 0.78s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.78s, filter 0.55s ease 0.78s; }
  html.js.loaded .em-star { opacity: 1; transform: none; filter: drop-shadow(0 0 10px rgba(227, 179, 65, 0.65)); }

  /* aurora + stars fade up under the content */
  html.js .aurora { opacity: 0; transition: opacity 1.6s ease 0.45s; }
  html.js.loaded .aurora { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track, .aurora-blob, .rotator-word, .stars g, .shoot { animation: none !important; }
  .shoot { display: none; }
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 2.2rem;
  padding: 0.95rem var(--pad-x);
  background: rgba(11, 14, 19, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: flex; align-items: center; gap: 0.55rem;
  text-decoration: none; color: var(--text);
  margin-right: auto;
}
.wordmark-star { width: 1rem; height: 1rem; fill: var(--gold); }
.wordmark-text { font-family: var(--font-sans); font-size: 1.2rem; font-weight: 600; letter-spacing: -0.01em; }
.wordmark-text em { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 1.12em; color: var(--gold); }

.topnav { display: flex; gap: 1.8rem; }
.topnav a {
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.15s ease;
}
.topnav a:hover { color: var(--text); }

@media (max-width: 760px) { .topnav { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4.5rem, 10vw, 8.5rem) var(--pad-x) clamp(3.5rem, 7vw, 6rem);
}

.eyebrow {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.8rem;
}
.tick { width: 2.2rem; height: 1px; background: var(--gold); display: inline-block; }

.hero h1 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(3rem, 8.5vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  max-width: 18ch;
}
.hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.06em;
  color: var(--gold);
  letter-spacing: -0.01em;
}

/* headline line masks */
.hl { display: block; overflow: clip; }
.hl-inner { display: block; }
.hero-em { position: relative; display: inline-block; }
.em-star {
  position: absolute;
  top: -0.18em; right: -0.42em;
  width: 0.28em; height: 0.28em;
  fill: var(--gold);
}

.hero-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2.8rem;
}

.lede {
  font-size: clamp(1.08rem, 1.5vw, 1.22rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 36rem;
}
.lede strong { color: var(--text); font-weight: 600; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* rotator */
.hero-rotator {
  display: flex; align-items: baseline; gap: 1rem;
  margin-top: 3.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.rotator-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.rotator-label::after { content: ""; display: inline-block; width: 0.45em; height: 0.45em; border-radius: 50%; background: var(--gold); margin-left: 0.7em; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: 0.3; } }

.rotator-words { position: relative; display: block; height: 1.6em; flex: 1; min-width: 16rem; overflow: hidden; }
.rotator-word {
  position: absolute; left: 0; top: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--text);
  opacity: 0;
  transform: translateY(110%);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}
.rotator-word.is-on { opacity: 1; transform: none; }
.rotator-word.is-off { opacity: 0; transform: translateY(-110%); }

@media (max-width: 480px) {
  .hero-rotator { flex-direction: column; gap: 0.4rem; }
  .rotator-word { font-size: 1.15rem; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(17, 21, 29, 0.5);
  overflow: hidden;
  padding: 0.85rem 0;
}
.marquee-track { display: flex; width: max-content; animation: scroll 40s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--muted);
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============================================================
   SHOWCASE — BEFORE/AFTER
   ============================================================ */
.work {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 7.5rem) var(--pad-x) clamp(2rem, 4vw, 3rem);
}

.ba {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  --cut: 50%;
}

.ba-pane { position: absolute; inset: 0; }
.ba-after { clip-path: inset(0 0 0 var(--cut)); }

/* live, scaled previews of the real demo sites */
.ba-frame { position: absolute; inset: 0; overflow: hidden; background: #14171b; }
.ba-iframe {
  position: absolute;
  top: 0; left: 0;
  width: 1200px; height: 750px;       /* 16:10 design viewport; scaled to fit by JS */
  border: 0;
  transform-origin: top left;
  pointer-events: none;                /* let the slider own drag/clicks */
  background: #14171b;
}

/* "open the full demo" link under the slider */
.ba-cta { text-align: center; margin-top: 1.6rem; }
.ba-fulllink {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold);
  padding: 0.6rem 1.1rem;
  border: 1px solid rgba(227, 179, 65, 0.35);
  border-radius: 99px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.ba-fulllink svg { width: 0.85rem; height: 0.85rem; transition: transform 0.2s ease; }
.ba-fulllink:hover { background: rgba(227, 179, 65, 0.1); border-color: var(--gold); }
.ba-fulllink:hover svg { transform: translate(2px, -2px); }
.ba-fulllink:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.ba-chip {
  position: absolute;
  top: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
}
.ba-chip-before { left: 0.9rem; background: rgba(0, 0, 0, 0.55); color: #fff; }
.ba-chip-after { right: 0.9rem; top: auto; bottom: 0.9rem; background: var(--gold); color: var(--bg); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35); }

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--cut);
  width: 0;
  z-index: 5;
}
.ba-line { position: absolute; top: 0; bottom: 0; left: -1px; width: 2px; background: var(--gold); box-shadow: 0 0 14px rgba(227, 179, 65, 0.7); }
.ba-knob {
  position: absolute;
  top: 50%; left: 0;
  transform: translate(-50%, -50%);
  width: 2.7rem; height: 2.7rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  display: grid; place-items: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}
.ba-knob svg { width: 1.15rem; height: 1.15rem; }
.ba-handle:focus-visible .ba-knob { outline: 2px solid #fff; outline-offset: 2px; }

.ba-note {
  text-align: center;
  margin-top: 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
}

/* --- BEFORE mini-site (lovingly dated) --- */
.old-site {
  position: absolute; inset: 0;
  background: #d6d2c8;
  font-family: "Times New Roman", Times, serif;
  color: #222;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.old-header {
  background: linear-gradient(#3a55a4, #6c83c8);
  color: #ffff66;
  text-align: center;
  padding: 0.8rem 0.5rem 0.6rem;
  text-shadow: 2px 2px 0 #222;
}
.old-title { display: block; font-size: clamp(0.95rem, 2.4vw, 1.5rem); font-weight: 700; letter-spacing: 0.04em; }
.old-sub { display: block; font-size: clamp(0.6rem, 1.4vw, 0.85rem); color: #fff; font-style: italic; margin-top: 0.2rem; }
.old-nav {
  display: flex; justify-content: center; gap: 0.45rem;
  background: #9aa4be;
  padding: 0.35rem;
  flex-wrap: wrap;
}
.old-nav span {
  background: linear-gradient(#f4f4f4, #c9c9c9);
  border: 2px outset #eee;
  font-family: Verdana, sans-serif;
  font-size: clamp(0.52rem, 1.2vw, 0.72rem);
  padding: 0.18rem 0.55rem;
  color: #00c;
  text-decoration: underline;
}
.old-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4%;
  padding: 4% 5%;
  align-content: start;
}
.old-p { font-size: clamp(0.62rem, 1.6vw, 0.95rem); margin-bottom: 0.7em; }
.old-red { color: #c00; font-weight: 700; }
.old-counter {
  display: inline-block;
  font-family: "Courier New", monospace;
  font-size: clamp(0.55rem, 1.2vw, 0.75rem);
  background: #000; color: #0f0;
  padding: 0.15rem 0.5rem;
  border: 2px inset #888;
}
.old-img {
  position: relative;
  border: 2px inset #999;
  background: repeating-conic-gradient(#eee 0% 25%, #fff 0% 50%) 0 / 16px 16px;
  min-height: 5rem;
  display: grid; place-items: center;
}
.old-img span { font-family: Verdana, sans-serif; font-size: clamp(0.5rem, 1.1vw, 0.7rem); color: #777; }
.old-x { position: absolute; top: 4px; left: 6px; color: #c00; font-size: 0.8rem !important; }
.old-footer {
  background: #9aa4be;
  font-family: Verdana, sans-serif;
  font-size: clamp(0.5rem, 1.1vw, 0.68rem);
  text-align: center;
  padding: 0.3rem;
  color: #333;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--pad-x);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.stat { padding: 2rem 1.6rem 0.5rem; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; padding-left: 0; }
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.stat-label { display: block; margin-top: 0.8rem; font-size: 0.88rem; color: var(--muted); max-width: 16rem; }

@media (max-width: 880px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: none; padding-left: 0; }
  .stat { padding-top: 1.6rem; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2.2rem 2rem 1.9rem;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.card:hover { border-color: var(--line-strong); transform: translateY(-3px); }

/* cursor spotlight (driven by JS via --mx/--my) */
.card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), var(--gold-soft), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.card:hover::before { opacity: 1; }

.card-no {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.card h3 {
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0.7rem 0 0.7rem;
}

.card p { color: var(--muted); font-size: 0.97rem; }

.card ul {
  list-style: none;
  margin-top: 1.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.card ul li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.93rem;
  color: var(--text);
  margin-bottom: 0.45rem;
}
.card ul li::before {
  content: "\2192";
  position: absolute; left: 0;
  color: var(--gold);
}

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

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  position: relative;
  z-index: 1;
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
}

.phases {
  list-style: none;
  max-width: 52rem;
  margin: 0 auto;
}

.phase {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1.5rem;
  padding: 2.2rem 0;
  border-top: 1px solid var(--line);
}
.phase:last-child { border-bottom: 1px solid var(--line); }

.phase-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold);
}

.phase h3 { font-size: 1.4rem; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 0.5rem; }
.phase p { color: var(--muted); max-width: 40rem; }

@media (max-width: 640px) {
  .phase { grid-template-columns: 1fr; gap: 0.6rem; }
  .phase-num { font-size: 1.8rem; }
}

/* ============================================================
   STUDIO / LOCAL
   ============================================================ */
.studio {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
}

.kicker-left { text-align: left; }

.indiana {
  width: 100%;
  max-width: 17rem;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 28px rgba(227, 179, 65, 0.12));
}
.indiana-caption {
  margin: 1.1rem 0 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.studio h2 { margin-bottom: 1.2rem; }
.studio-copy > p { color: var(--muted); font-size: 1.08rem; max-width: 38rem; }
.studio-copy strong { color: var(--text); }

.studio-list { list-style: none; margin-top: 1.7rem; }
.studio-list li {
  position: relative;
  padding: 0.8rem 0 0.8rem 1.9rem;
  border-top: 1px solid var(--line);
  font-size: 1rem;
  color: var(--muted);
}
.studio-list li:last-child { border-bottom: 1px solid var(--line); }
.studio-list li::before {
  content: "\2605";
  position: absolute; left: 0; top: 0.85rem;
  font-size: 0.8em;
  color: var(--gold);
}
.studio-list b { color: var(--text); }

@media (max-width: 880px) {
  .studio { grid-template-columns: 1fr; }
  .studio-art { order: 2; }
  .indiana { max-width: 12rem; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(5rem, 10vw, 8.5rem) var(--pad-x);
  background:
    radial-gradient(60rem 30rem at 50% 120%, rgba(227, 179, 65, 0.13), transparent 60%),
    radial-gradient(40rem 20rem at 80% -20%, rgba(29, 74, 86, 0.35), transparent 60%);
  border-top: 1px solid var(--line);
}

.contact h2 { max-width: 22ch; margin: 0 auto; font-size: clamp(2.2rem, 4.8vw, 3.8rem); }

.contact-sub {
  margin: 1.4rem auto 0;
  max-width: 34rem;
  font-size: 1.1rem;
  color: var(--muted);
}

.contact-actions { margin-top: 2.6rem; }

.contact-fine {
  margin-top: 1.7rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 2.2rem var(--pad-x);
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.8rem 1.5rem;
}
.footer-mark { font-weight: 600; font-size: 1.15rem; }
.footer-mark em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--gold); }
.footer-pun { font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted); }
.footer-meta { margin-left: auto; font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted); }

@media (max-width: 640px) { .footer-meta { margin-left: 0; } }

/* ============================================================
   MICROINTERACTIONS
   ============================================================ */

/* nav: animated underline + scroll-spy current state */
.topnav a { position: relative; }
.topnav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -5px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.topnav a:hover::after,
.topnav a:focus-visible::after,
.topnav a[aria-current]::after { transform: scaleX(1); transform-origin: left; }
.topnav a[aria-current] { color: var(--text); }

/* buttons: sheen sweep + consistent focus rings */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.32) 50%, transparent 58%);
  transform: translateX(-101%);
  pointer-events: none;
}
.btn:hover::after { transform: translateX(101%); transition: transform 0.55s ease; }

.btn:focus-visible,
.topnav a:focus-visible,
.wordmark:focus-visible,
.footer a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { border-radius: 99px; }

/* magnetic CTAs (JS sets --tx/--ty; harmless default 0) */
.btn { translate: var(--tx, 0) var(--ty, 0); transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, translate 0.18s ease; }

/* card tilt (desktop pointers only) */
@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .card { transition: border-color 0.25s ease, transform 0.25s ease; }
  .card:hover {
    transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-3px);
  }
}

/* slider knob: grab affordance */
.ba { cursor: grab; }
.ba:active { cursor: grabbing; }
.ba-knob { transition: transform 0.18s ease; }
.ba:hover .ba-knob,
.ba-handle:focus-visible .ba-knob { transform: translate(-50%, -50%) scale(1.08); }

/* ============================================================
   SCROLL-DRIVEN DEPTH (progressive enhancement — Chrome/Edge/Safari)
   ============================================================ */
.progress { display: none; }

@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {

    /* gold reading-progress hairline */
    .progress {
      display: block;
      position: fixed;
      top: 0; left: 0; right: 0;
      height: 2px;
      z-index: 60;
      background: linear-gradient(90deg, var(--gold), #ecc25c);
      transform: scaleX(0);
      transform-origin: left;
      animation: progress-grow linear both;
      animation-timeline: scroll(root);
    }

    /* aurora blobs drift apart as you scroll (translate composes with the transform drift) */
    .a1 { animation: drift1 26s ease-in-out infinite alternate, par-a linear both; animation-timeline: auto, scroll(root); animation-range: normal, 0 150vh; }
    .a2 { animation: drift2 32s ease-in-out infinite alternate, par-b linear both; animation-timeline: auto, scroll(root); animation-range: normal, 0 150vh; }
    .a3 { animation: drift1 38s ease-in-out infinite alternate-reverse, par-c linear both; animation-timeline: auto, scroll(root); animation-range: normal, 0 150vh; }

    /* section headlines settle as they enter */
    .section-head h2 {
      animation: h2-settle linear both;
      animation-timeline: view();
      animation-range: entry 10% entry 75%;
    }

    /* Indiana art floats + glows as it crosses the viewport */
    .indiana {
      animation: indiana-par linear both;
      animation-timeline: view();
      animation-range: cover 0% cover 100%;
    }
  }
}

@keyframes progress-grow { to { transform: scaleX(1); } }
@keyframes par-a { to { translate: 0 -8rem; } }
@keyframes par-b { to { translate: 0 -14rem; } }
@keyframes par-c { to { translate: 0 -20rem; } }
@keyframes h2-settle {
  from { opacity: 0.35; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes indiana-par {
  from { translate: 0 1.6rem; filter: drop-shadow(0 0 18px rgba(227, 179, 65, 0.08)); }
  50% { filter: drop-shadow(0 0 34px rgba(227, 179, 65, 0.22)); }
  to { translate: 0 -1.6rem; filter: drop-shadow(0 0 18px rgba(227, 179, 65, 0.08)); }
}

/* ============================================================
   SHOWROOM — industry tabs + scenes
   ============================================================ */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.ba-tabs { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 1.4rem; flex-wrap: wrap; }
.ba-tab {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 99px;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.ba-tab:hover { color: var(--text); border-color: var(--text); }
.ba-tab:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.ba-tab[aria-selected="true"] { background: var(--gold); color: var(--bg); border-color: var(--gold); }

.ba-scene { position: absolute; inset: 0; }
.ba-scene[hidden] { display: none; }

/* --- BEFORE: restaurant (lovingly dated) --- */
.or-site {
  position: absolute; inset: 0;
  background: #f3e6c0;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  color: #3a2a16;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.or-header {
  background: linear-gradient(#9e1f17, #c83a2b);
  color: #ffe65c;
  text-align: center;
  padding: 0.75rem 0.5rem 0.55rem;
  text-shadow: 2px 2px 0 #4d0c08;
}
.or-title { display: block; font-size: clamp(0.9rem, 2.3vw, 1.45rem); font-weight: 700; letter-spacing: 0.03em; }
.or-sub { display: block; font-size: clamp(0.58rem, 1.3vw, 0.8rem); color: #fff; margin-top: 0.15rem; }
.or-nav {
  display: flex; justify-content: center; gap: 0.4rem; flex-wrap: wrap;
  background: #1c7a1c;
  padding: 0.3rem;
}
.or-nav span {
  background: linear-gradient(#fffbe8, #e7d88f);
  border: 2px outset #f4ecc7;
  font-family: Verdana, sans-serif;
  font-size: clamp(0.5rem, 1.1vw, 0.7rem);
  padding: 0.16rem 0.5rem;
  color: #b3251e;
  font-weight: 700;
}
.or-body { flex: 1; padding: clamp(0.6rem, 2vw, 1.2rem); display: flex; flex-direction: column; gap: 0.55rem; }
.or-cols { display: flex; gap: clamp(0.6rem, 2vw, 1.4rem); }
.or-cols > div { flex: 1; display: flex; flex-direction: column; gap: 0.55rem; align-items: flex-start; }
.or-hours {
  border-collapse: collapse;
  font-size: clamp(0.55rem, 1.3vw, 0.78rem);
  background: #fffbe8;
}
.or-hours td { border: 1px solid #8a8a5c; padding: 0.15rem 0.6rem; }
.or-hours td:first-child { font-weight: 700; color: #9e1f17; }
.or-counter {
  font-family: Verdana, sans-serif;
  font-size: 0.55rem;
  background: #000; color: #3f3;
  padding: 0.2rem 0.5rem;
  border: 1px inset #888;
}
.or-p { font-size: clamp(0.6rem, 1.5vw, 0.85rem); line-height: 1.45; }
.or-red { color: #c00; font-weight: 700; }
.or-special { color: #1c7a1c; font-weight: 700; }
.or-img {
  width: clamp(7rem, 30%, 11rem);
  aspect-ratio: 4 / 3;
  border: 1px solid #999;
  background: #fff;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.3rem 0.45rem;
  font-family: Verdana, sans-serif;
  font-size: 0.55rem;
  color: #555;
  align-self: flex-start;
  transform: rotate(1.5deg);
}
.or-x { color: #c00; font-weight: 700; }
.or-footer {
  background: #9e1f17;
  color: #ffe65c;
  font-size: clamp(0.5rem, 1.1vw, 0.66rem);
  text-align: center;
  padding: 0.35rem 0.5rem;
}

/* --- BEFORE: contractor (lovingly dated) --- */
.oc-site {
  position: absolute; inset: 0;
  background: #fdfdf2;
  font-family: "Times New Roman", Times, serif;
  color: #111;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.oc-header {
  background: linear-gradient(#13347a, #2b56b5);
  color: #fff;
  text-align: center;
  padding: 0.8rem 0.5rem 0.6rem;
}
.oc-title { display: block; font-size: clamp(0.85rem, 2.2vw, 1.4rem); font-weight: 700; letter-spacing: 0.02em; }
.oc-sub { display: block; font-style: italic; font-size: clamp(0.6rem, 1.4vw, 0.85rem); color: #ffd34d; margin-top: 0.2rem; }
.oc-band {
  background: repeating-linear-gradient(45deg, #f5c400 0 14px, #1a1a1a 14px 28px);
  color: #fff;
  font-family: Verdana, sans-serif;
  font-weight: 700;
  font-size: clamp(0.5rem, 1.2vw, 0.7rem);
  text-align: center;
  padding: 0.35rem 0.4rem;
  text-shadow: 1px 1px 2px #000, -1px -1px 2px #000;
}
.oc-body { flex: 1; padding: clamp(0.7rem, 2.2vw, 1.3rem); display: flex; flex-direction: column; gap: 0.6rem; }
.oc-list {
  columns: 2;
  list-style: square inside;
  font-size: clamp(0.6rem, 1.45vw, 0.85rem);
  color: #222;
  padding-left: 0.3rem;
}
.oc-list li { margin-bottom: 0.2rem; }
.oc-imgs { display: flex; gap: 0.7rem; }
.oc-img {
  width: clamp(5.5rem, 22%, 9rem);
  aspect-ratio: 4 / 3;
  border: 2px inset #aaa;
  background: #fff;
  font-family: Verdana, sans-serif;
  font-size: 0.52rem;
  color: #777;
  padding: 0.3rem 0.4rem;
  line-height: 2;
}
.oc-p { font-size: clamp(0.62rem, 1.55vw, 0.9rem); line-height: 1.5; }
.oc-blue { color: #00c; font-weight: 700; }
.oc-counter {
  margin-top: auto;
  align-self: center;
  font-family: Verdana, sans-serif;
  font-size: 0.55rem;
  background: #000; color: #3f3;
  padding: 0.2rem 0.5rem;
  border: 1px inset #888;
}

/* --- BEFORE: salon (early-2000s girly) --- */
.sb-site {
  position: absolute; inset: 0;
  background: #fff0f6;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  color: #4a1140;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.sb-header {
  background: linear-gradient(#ff63b8, #b13ec9 70%, #7d2da0);
  text-align: center;
  padding: 0.7rem 0.5rem 0.6rem;
  border-bottom: 2px ridge #ffd0ec;
}
.sb-title { display: block; color: #fff; font-size: clamp(0.8rem, 2.1vw, 1.35rem); font-weight: 700; text-shadow: 1px 1px 0 #7d2da0; }
.sb-sub { display: block; color: #ffe14d; font-size: clamp(0.58rem, 1.4vw, 0.85rem); margin-top: 0.2rem; }
.sb-nav {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.3rem;
  background: #efb;
  background: #eccff2;
  padding: 0.4rem;
  font-size: clamp(0.56rem, 1.4vw, 0.82rem);
}
.sb-nav span { color: #00c; text-decoration: underline; padding: 0 0.3rem; }
.sb-body { flex: 1; padding: clamp(0.6rem, 2vw, 1.2rem); display: flex; flex-direction: column; gap: 0.55rem; }
.sb-marq { text-align: center; color: #d6149a; font-weight: 700; font-size: clamp(0.62rem, 1.55vw, 0.92rem); }
.sb-cols { display: flex; gap: clamp(0.7rem, 2.5vw, 1.4rem); flex: 1; }
.sb-cols > div:first-child { flex: 1; }
.sb-p { font-size: clamp(0.6rem, 1.5vw, 0.88rem); line-height: 1.5; }
.sb-pink { color: #d6149a; font-weight: 700; }
.sb-price { border-collapse: collapse; margin: 0.5rem 0; font-size: clamp(0.58rem, 1.45vw, 0.85rem); }
.sb-price td { border: 1px dotted #c77; padding: 0.12rem 0.7rem 0.12rem 0; }
.sb-price td:last-child { color: #7d2da0; font-weight: 700; text-align: right; }
.sb-img {
  width: clamp(6rem, 30%, 10rem);
  aspect-ratio: 4 / 3;
  border: 3px ridge #ff9ed8;
  background: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem;
  font-family: Verdana, sans-serif;
  font-size: 0.52rem; color: #b06;
}
.sb-x { color: #d11; font-size: 0.9rem; }
.sb-counter {
  display: inline-block; margin-top: 0.5rem;
  font-family: Verdana, sans-serif; font-size: 0.55rem;
  background: #2a0030; color: #ff7ad1; padding: 0.2rem 0.5rem; border: 1px inset #c79;
}
.sb-thanks { text-align: center; color: #b13ec9; font-size: clamp(0.58rem, 1.4vw, 0.82rem); }
.sb-footer {
  background: #7d2da0; color: #ffd0ec;
  font-family: Verdana, sans-serif; font-style: italic;
  font-size: clamp(0.48rem, 1.1vw, 0.66rem);
  text-align: center; padding: 0.35rem 0.5rem;
}

/* --- BEFORE: coffee (geocities tan) --- */
.cb-site {
  position: absolute; inset: 0;
  background: #efe4cf;
  font-family: "Times New Roman", Times, serif;
  color: #2a1c0c;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.cb-header {
  background: #5a3a18;
  color: #f4e3c1;
  text-align: center;
  padding: 0.7rem 0.5rem 0.55rem;
  border-bottom: 3px double #c79a52;
}
.cb-title { display: block; font-size: clamp(0.82rem, 2.1vw, 1.35rem); font-weight: 700; letter-spacing: 0.04em; }
.cb-sub { display: block; font-style: italic; font-size: clamp(0.58rem, 1.4vw, 0.85rem); color: #e9c98b; margin-top: 0.2rem; }
.cb-nav {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.2rem 0.8rem;
  background: #c79a52;
  color: #2a1c0c;
  padding: 0.35rem;
  font-size: clamp(0.56rem, 1.4vw, 0.82rem);
  font-weight: 700;
}
.cb-nav span { text-decoration: underline; }
.cb-band {
  background: repeating-linear-gradient(45deg, #7a3b10 0 14px, #b5701e 14px 28px);
  color: #fff;
  font-family: Verdana, sans-serif; font-weight: 700;
  font-size: clamp(0.5rem, 1.2vw, 0.7rem);
  text-align: center; padding: 0.35rem 0.4rem;
  text-shadow: 1px 1px 1px #000;
}
.cb-body { flex: 1; padding: clamp(0.6rem, 2vw, 1.2rem); display: flex; flex-direction: column; gap: 0.5rem; }
.cb-cols { display: flex; gap: clamp(0.7rem, 2.5vw, 1.4rem); flex: 1; }
.cb-cols > div:first-child { flex: 1; }
.cb-p { font-size: clamp(0.62rem, 1.55vw, 0.9rem); line-height: 1.5; }
.cb-red { color: #b5170f; font-weight: 700; }
.cb-hours { border-collapse: collapse; margin-top: 0.5rem; font-size: clamp(0.58rem, 1.45vw, 0.85rem); }
.cb-hours td { border: 1px solid #b39055; padding: 0.12rem 0.8rem; }
.cb-img {
  width: clamp(5.5rem, 26%, 9rem);
  aspect-ratio: 4 / 3;
  border: 2px inset #a98; background: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem;
  font-family: Verdana, sans-serif; font-size: 0.52rem; color: #876;
}
.cb-x { color: #d11; font-size: 0.9rem; }
.cb-counter {
  align-self: center; margin-top: auto;
  font-family: Verdana, sans-serif; font-size: 0.55rem;
  background: #000; color: #3f3; padding: 0.2rem 0.5rem; border: 1px inset #888;
}
.cb-footer {
  background: #5a3a18; color: #e9c98b;
  font-family: Verdana, sans-serif; font-size: clamp(0.48rem, 1.1vw, 0.66rem);
  text-align: center; padding: 0.35rem 0.5rem;
}

/* ============================================================
   WORKING DEMO — booking widget
   ============================================================ */
.demo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
}
.demo-copy h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 0.8rem; }
.demo-copy p:not(.kicker) { color: var(--muted); font-size: 1.02rem; max-width: 30rem; }

.demo-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.bk-head {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1.3rem;
  border-bottom: 1px solid var(--line);
}
.bk-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--gold); animation: pulse 2s ease-in-out infinite; }
.bk-title { font-weight: 600; font-size: 0.98rem; }
.bk-step { margin-left: auto; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.bk-body { padding: 1.4rem 1.3rem; min-height: 14.5rem; display: grid; }
.bk-pane { grid-area: 1 / 1; }
.bk-pane[hidden] { display: none; }
.bk-q {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.bk-opts { display: flex; flex-direction: column; gap: 0.55rem; }
.bk-opts button,
.bk-times button {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  color: var(--text);
  background: rgba(236, 231, 218, 0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
  min-height: 48px;
}
.bk-opts button:hover,
.bk-times button:hover { border-color: var(--gold); background: var(--gold-soft); transform: translateY(-1px); }
.bk-opts button:focus-visible,
.bk-times button:focus-visible,
.bk-days button:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.bk-days { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.9rem; }
.bk-days button {
  display: flex; flex-direction: column; align-items: center; gap: 0.05rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  min-width: 3.1rem;
  min-height: 48px;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}
.bk-days button b { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.bk-days button.on { border-color: var(--gold); color: var(--gold); background: var(--gold-soft); }
.bk-times { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.55rem; }
.bk-times button { text-align: center; }
#bkName {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  background: rgba(236, 231, 218, 0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin-bottom: 0.8rem;
  min-height: 48px;
}
#bkName::placeholder { color: var(--muted); }
#bkName:focus-visible { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.bk-confirm {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  cursor: pointer;
  transition: opacity 0.18s ease, transform 0.18s ease;
  min-height: 48px;
}
.bk-confirm:disabled { opacity: 0.35; cursor: not-allowed; }
.bk-confirm:not(:disabled):hover { transform: translateY(-1px); }
.bk-done { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 0.4rem; }
.bk-star { width: 2.6rem; height: 2.6rem; fill: var(--gold); filter: drop-shadow(0 0 14px rgba(227, 179, 65, 0.55)); }
@media (prefers-reduced-motion: no-preference) {
  .bk-pane.bk-done:not([hidden]) .bk-star { animation: bk-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
}
@keyframes bk-pop { from { transform: scale(0) rotate(-40deg); } to { transform: none; } }
.bk-msg { font-size: 1.25rem; font-weight: 600; }
.bk-sub { color: var(--muted); font-size: 0.92rem; }
.bk-reset {
  margin-top: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.bk-reset:hover { color: var(--text); border-color: var(--text); }
.bk-back {
  margin-top: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  background: none;
  border: 0;
  padding: 0.3rem 0;
  cursor: pointer;
  transition: color 0.18s ease;
}
.bk-back:hover { color: var(--text); }
.bk-back:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
.bk-foot {
  padding: 0.7rem 1.3rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

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

/* ============================================================
   CONTACT FORM + TRUST ROWS
   ============================================================ */
.trust-row {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 1rem;
}
.trust-row::first-letter { color: var(--gold); }
.hero-cta-col { display: flex; flex-direction: column; align-items: flex-start; }

.contact-form {
  max-width: 38rem;
  margin: 2.4rem auto 0;
  text-align: left;
}
.cf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.2rem;
}
.cf-wide { grid-column: 1 / -1; }
.cf-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
.cf-field label span { text-transform: none; letter-spacing: 0.06em; }
.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.95rem;
  min-height: 48px;
  transition: border-color 0.18s ease;
}
.cf-field textarea { resize: vertical; min-height: 7rem; }
.cf-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%23a39e90' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 1rem;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: rgba(163, 158, 144, 0.6); }
.cf-field input:hover,
.cf-field select:hover,
.cf-field textarea:hover { border-color: var(--line-strong); }
.cf-field input:focus-visible,
.cf-field select:focus-visible,
.cf-field textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}
.cf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.cf-turnstile { margin-top: 1rem; }
.cf-turnstile:empty { display: none; }
.contact-form .btn-big { width: 100%; margin-top: 1.4rem; border: 0; cursor: pointer; }
.contact-form .trust-row { text-align: center; }
.cf-status {
  margin-top: 1.4rem;
  font-size: 1.05rem;
  color: var(--gold);
  min-height: 1.6em;
}
.contact-fine a { color: var(--text); }

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