/* ==========================================================================
   BW Keys Auto Locksmith
   Design system — dark automotive theme built around the brand's neon violet.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Surfaces */
  --ink:        #05050a;
  --ink-2:      #08080f;
  --panel:      #0e0e17;
  --panel-hi:   #14141f;
  --line:       rgba(168, 142, 255, 0.14);
  --line-hi:    rgba(168, 142, 255, 0.32);

  /* Brand */
  --violet:     #a855f7;
  --violet-dk:  #7c3aed;
  --orchid:     #d946ef;
  --lilac:      #c4b5fd;
  --glow:       rgba(168, 85, 247, 0.45);

  /* Type */
  --text:       #eceafa;
  --text-soft:  #b9b5d4;
  --muted:      #8d89a8;

  /* Metrics */
  --radius:     18px;
  --radius-lg:  26px;
  --radius-sm:  12px;
  --shell:      1240px;
  --gutter:     clamp(20px, 5vw, 40px);
  --header-h:   88px;

  /* Motion */
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: 'Sora', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Inter', 'Segoe UI', system-ui, sans-serif;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  /* Room for the fixed mobile action bar. */
  padding-bottom: env(safe-area-inset-bottom);
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

::selection { background: var(--violet); color: #fff; }

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

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.shell--narrow { max-width: 860px; }

.section { padding-block: clamp(72px, 9vw, 128px); position: relative; }
.section--tight { padding-block: clamp(52px, 6vw, 84px); }

.section-head { max-width: 720px; margin-bottom: clamp(38px, 5vw, 60px); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.735rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lilac);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet));
}

.section-head--center .eyebrow::after {
  content: '';
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--violet), transparent);
}

.h1 { font-size: clamp(2.5rem, 6.4vw, 4.35rem); }
.h2 { font-size: clamp(1.95rem, 4.1vw, 3rem); }
.h3 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); }

.lede {
  font-size: clamp(1.03rem, 1.5vw, 1.18rem);
  color: var(--text-soft);
  margin-top: 20px;
}

.muted { color: var(--muted); }

/* Gradient headline treatment. */
.grad {
  background: linear-gradient(105deg, #fff 8%, var(--lilac) 45%, var(--orchid) 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --------------------------------------------------------------------------
   4. Ambient background layers
   -------------------------------------------------------------------------- */

.aura {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.aura--violet { background: radial-gradient(circle, rgba(124, 58, 237, 0.55), transparent 70%); }
.aura--orchid { background: radial-gradient(circle, rgba(217, 70, 239, 0.35), transparent 70%); }

/* Fine film grain keeps large dark areas from banding. */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary {
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-dk) 55%, var(--orchid) 130%);
  color: #fff;
  box-shadow: 0 10px 34px -10px var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px -12px var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--line-hi);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  background: rgba(168, 85, 247, 0.12);
  border-color: var(--violet);
  transform: translateY(-2px);
}

.btn--wa {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.4);
  color: #7bf0a8;
}

.btn--wa:hover {
  background: rgba(37, 211, 102, 0.18);
  border-color: rgba(37, 211, 102, 0.7);
  transform: translateY(-2px);
}

.btn--lg { padding: 18px 34px; font-size: 1.02rem; }
.btn--sm { padding: 11px 20px; font-size: 0.86rem; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* Text link with an animated underline. */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--lilac);
  font-family: var(--font-display);
  font-size: 0.94rem;
}

.tlink svg { width: 16px; height: 16px; transition: transform 0.35s var(--ease); }
.tlink:hover svg { transform: translateX(5px); }

/* Off-screen until focused by keyboard. */
.skip {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1100;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--violet);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  transform: translateY(-160%);
  transition: transform 0.25s var(--ease);
}

.skip:focus-visible { transform: none; }

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
              backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.header.is-stuck {
  background: rgba(5, 5, 10, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}

.header__inner {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand { display: flex; align-items: center; flex: none; }

.brand img {
  height: 56px;
  width: auto;
  transition: filter 0.4s var(--ease);
}

.brand:hover img { filter: brightness(1.15) drop-shadow(0 0 14px var(--glow)); }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }

.nav a {
  position: relative;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}

.nav a:hover { color: #fff; background: rgba(255, 255, 255, 0.05); }

.nav a.is-active { color: #fff; }

.nav a.is-active::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--violet), var(--orchid));
}

.header__cta { display: flex; align-items: center; gap: 10px; flex: none; }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-hi);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  padding: 0;
  place-items: center;
}

.burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}

.burger span + span { margin-top: 5px; }

body.nav-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 890;
  background: rgba(5, 5, 10, 0.97);
  backdrop-filter: blur(20px);
  padding: 28px var(--gutter) 40px;
  overflow-y: auto;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}

body.nav-open .drawer { opacity: 1; visibility: visible; transform: none; }

.drawer a.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.drawer a.drawer__link svg { width: 18px; height: 18px; color: var(--violet); }

.drawer__actions { display: grid; gap: 12px; margin-top: 28px; }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(34px, 5vw, 64px));
  padding-bottom: clamp(56px, 6vw, 88px);
  overflow: hidden;
  isolation: isolate;
}

.hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }

.hero__bg .aura--violet {
  width: 60vw; height: 60vw;
  max-width: 780px; max-height: 780px;
  top: -18%; right: -14%;
}

.hero__bg .aura--orchid {
  width: 44vw; height: 44vw;
  max-width: 560px; max-height: 560px;
  bottom: -26%; left: -12%;
  opacity: 0.4;
}

/* Receding HUD grid — the automotive "horizon" motif. */
.hero__grid {
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background-image:
    linear-gradient(to right, rgba(168, 85, 247, 0.16) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(168, 85, 247, 0.16) 1px, transparent 1px);
  background-size: 62px 62px;
  transform: perspective(420px) rotateX(66deg);
  transform-origin: bottom center;
  mask-image: linear-gradient(to bottom, transparent, #000 42%, transparent 96%);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 42%, transparent 96%);
  animation: gridDrift 9s linear infinite;
  opacity: 0.75;
}

@keyframes gridDrift {
  to { background-position: 0 62px; }
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.hero h1 { font-size: clamp(2.15rem, 4.1vw, 3.5rem); font-weight: 800; }

.hero__sub {
  font-size: clamp(1.04rem, 1.6vw, 1.2rem);
  color: var(--text-soft);
  margin-top: 22px;
  max-width: 54ch;
}

/* Availability chip with a live pulse. */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  border: 1px solid var(--line-hi);
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.08);
  backdrop-filter: blur(8px);
  font-size: 0.815rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--lilac);
  margin-bottom: 26px;
}

.pulse {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  flex: none;
}

.pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid #34d399;
  animation: pulseRing 2.1s var(--ease-out) infinite;
}

@keyframes pulseRing {
  0%   { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* Hero trust strip */
.hero__trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 26px;
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  max-width: 540px;
}

.hero__trust div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.hero__trust svg { width: 17px; height: 17px; color: var(--violet); flex: none; }

/* Hero visual */
.hero__visual { position: relative; }

.hero__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-hi);
  box-shadow:
    0 40px 90px -30px rgba(0, 0, 0, 0.9),
    0 0 70px -30px var(--glow);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.7s var(--ease);
}

.hero__frame:hover { transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(-5px); }

.hero__frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  /* Frames the key, OBD lead and diagnostic screen rather than the dashboard. */
  object-position: center 62%;
  filter: contrast(1.06) saturate(1.05);
}

.hero__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 5, 10, 0.85) 100%);
  pointer-events: none;
}

/* Cinematic scan line sweeping the hero image. */
.scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 130px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(217, 70, 239, 0.16) 45%, rgba(255, 255, 255, 0.32) 50%, rgba(217, 70, 239, 0.16) 55%, transparent);
  animation: scan 5.5s var(--ease-out) infinite;
}

@keyframes scan {
  0%, 100% { top: -140px; opacity: 0; }
  12%      { opacity: 1; }
  76%      { opacity: 1; }
  88%      { top: 100%; opacity: 0; }
}

/* Floating badge over the hero image. */
.hero__badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border-radius: var(--radius);
  background: rgba(10, 10, 18, 0.72);
  border: 1px solid var(--line-hi);
  backdrop-filter: blur(16px);
}

.hero__badge-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--violet), var(--violet-dk));
  box-shadow: 0 8px 22px -8px var(--glow);
}

.hero__badge-icon svg { width: 21px; height: 21px; color: #fff; }

.hero__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.3;
}

.hero__badge span { font-size: 0.79rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   8. Marquee (vehicle makes)
   -------------------------------------------------------------------------- */

.marquee {
  position: relative;
  overflow: hidden;
  padding-block: 26px;
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.05), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 46s linear infinite;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-inline: 26px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}

.marquee__item:hover { color: var(--lilac); }

.marquee__item::after {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--violet);
  opacity: 0.5;
}

/* --------------------------------------------------------------------------
   9. Cards & grids
   -------------------------------------------------------------------------- */

.grid { display: grid; gap: clamp(18px, 2.4vw, 26px); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease),
              box-shadow 0.45s var(--ease);
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--line-hi);
  box-shadow: 0 28px 60px -28px rgba(0, 0, 0, 0.95), 0 0 40px -24px var(--glow);
}

/* Violet edge-light that follows the pointer across a card. */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(
    240px circle at var(--mx, 50%) var(--my, 0%),
    rgba(217, 70, 239, 0.55),
    transparent 65%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.card:hover::before { opacity: 1; }

.card__body { padding: clamp(22px, 2.6vw, 30px); position: relative; z-index: 1; }

.card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: var(--panel);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.card:hover .card__media img { transform: scale(1.06); }

.card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 5, 10, 0.9));
}

.card h3 { font-size: 1.16rem; margin-bottom: 10px; }

.card p { font-size: 0.925rem; color: var(--text-soft); }

.card__foot {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

/* Icon tile */
.itile {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  margin-bottom: 20px;
  background: linear-gradient(140deg, rgba(168, 85, 247, 0.22), rgba(217, 70, 239, 0.1));
  border: 1px solid var(--line-hi);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.itile svg { width: 24px; height: 24px; color: var(--lilac); }

.card:hover .itile {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 28px -12px var(--glow);
}

/* Service card variant with an image header. */
.svc-card { display: flex; flex-direction: column; }
.svc-card .card__body { display: flex; flex-direction: column; flex: 1; }
.svc-card .card__foot { margin-top: auto; }

.svc-card .itile {
  position: absolute;
  top: -50px;
  left: clamp(22px, 2.6vw, 30px);
  z-index: 2;
  margin-bottom: 0;
  background: rgba(10, 10, 18, 0.82);
  backdrop-filter: blur(12px);
}

.svc-card .card__body { padding-top: 34px; }

/* --------------------------------------------------------------------------
   10. Stats
   -------------------------------------------------------------------------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat {
  padding: clamp(26px, 3vw, 38px) clamp(18px, 2vw, 26px);
  background: var(--ink-2);
  text-align: center;
  transition: background 0.4s var(--ease);
}

.stat:hover { background: var(--panel-hi); }

.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(140deg, #fff, var(--lilac) 55%, var(--orchid));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.stat__label {
  margin-top: 12px;
  font-size: 0.83rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* --------------------------------------------------------------------------
   11. Process timeline
   -------------------------------------------------------------------------- */

.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; }

.step { position: relative; padding-top: 42px; }

/* Connector rail between step markers. */
.step::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 34px;
  right: -26px;
  height: 1px;
  background: linear-gradient(90deg, var(--line-hi), transparent);
}

.step:last-child::before { display: none; }

.step__num {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  border: 1px solid var(--line-hi);
  background: var(--ink);
  font-family: var(--font-display);
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--lilac);
}

.step h3 { font-size: 1.1rem; margin-bottom: 9px; }
.step p { font-size: 0.91rem; color: var(--text-soft); }

/* --------------------------------------------------------------------------
   12. Gallery
   -------------------------------------------------------------------------- */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 34px;
}

.filter {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.filter:hover { border-color: var(--line-hi); color: #fff; }

.filter.is-active {
  background: linear-gradient(135deg, var(--violet), var(--violet-dk));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 22px -10px var(--glow);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.shot {
  position: relative;
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  cursor: zoom-in;
  aspect-ratio: 3 / 4;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease),
              box-shadow 0.45s var(--ease), opacity 0.35s var(--ease);
}

.shot:hover {
  transform: translateY(-4px);
  border-color: var(--line-hi);
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.95), 0 0 34px -20px var(--glow);
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.shot:hover img { transform: scale(1.07); }

.shot__cap {
  position: absolute;
  inset: auto 0 0;
  padding: 34px 15px 15px;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 10, 0.94));
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-display);
  transform: translateY(6px);
  opacity: 0.9;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}

.shot:hover .shot__cap { transform: none; opacity: 1; }

.shot.is-hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(3, 3, 7, 0.94);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox__fig {
  max-width: min(940px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: scale(0.97);
  transition: transform 0.4s var(--ease);
}

.lightbox.is-open .lightbox__fig { transform: none; }

.lightbox__fig img {
  max-height: 74vh;
  width: auto;
  margin-inline: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line-hi);
  box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.95);
}

.lightbox__cap { text-align: center; }
.lightbox__cap strong { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.lightbox__cap span { font-size: 0.88rem; color: var(--muted); }

.lightbox__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-hi);
  background: rgba(14, 14, 23, 0.85);
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.lightbox__btn:hover { background: var(--violet); transform: translateY(-50%) scale(1.07); }
.lightbox__btn svg { width: 20px; height: 20px; }
.lightbox__btn--prev { left: clamp(10px, 2vw, 28px); }
.lightbox__btn--next { right: clamp(10px, 2vw, 28px); }

.lightbox__close {
  position: absolute;
  top: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  transform: none;
}

.lightbox__close:hover { transform: scale(1.07); }

/* --------------------------------------------------------------------------
   13. Testimonials
   -------------------------------------------------------------------------- */

.quote {
  position: relative;
  padding: clamp(26px, 3vw, 34px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease);
}

.quote:hover { transform: translateY(-4px); border-color: var(--line-hi); }

.quote p { font-size: 0.96rem; color: var(--text-soft); flex: 1; }

.quote__who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--violet), var(--violet-dk));
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  color: #fff;
}

.quote__who strong { display: block; font-size: 0.92rem; font-family: var(--font-display); }
.quote__who span { font-size: 0.79rem; color: var(--muted); }

.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars svg { width: 15px; height: 15px; color: #fbbf24; }

/* --------------------------------------------------------------------------
   14. Accordion (FAQs)
   -------------------------------------------------------------------------- */

.acc { border-top: 1px solid var(--line); }

.acc__item { border-bottom: 1px solid var(--line); }

.acc__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s var(--ease);
}

.acc__q:hover { color: var(--lilac); }

.acc__sign {
  position: relative;
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-hi);
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}

.acc__sign::before,
.acc__sign::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  background: var(--lilac);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease), opacity 0.3s var(--ease);
}

.acc__sign::after { transform: translate(-50%, -50%) rotate(90deg); }

.acc__item.is-open .acc__sign { background: var(--violet); transform: rotate(180deg); }
.acc__item.is-open .acc__sign::after { opacity: 0; }
.acc__item.is-open .acc__sign::before { background: #fff; }

.acc__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}

.acc__item.is-open .acc__a { grid-template-rows: 1fr; }

.acc__a > div { overflow: hidden; }

.acc__a p {
  padding: 0 4px 24px;
  color: var(--text-soft);
  font-size: 0.955rem;
  max-width: 74ch;
}

/* --------------------------------------------------------------------------
   15. Panels, lists, misc content
   -------------------------------------------------------------------------- */

.panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012));
  padding: clamp(26px, 3.4vw, 44px);
}

.ticks { list-style: none; padding: 0; display: grid; gap: 13px; }

.ticks li {
  position: relative;
  padding-left: 34px;
  font-size: 0.955rem;
  color: var(--text-soft);
}

.ticks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.16);
  border: 1px solid var(--line-hi);
}

.ticks li::after {
  content: '';
  position: absolute;
  left: 7.5px;
  top: 8px;
  width: 5px;
  height: 9px;
  border: solid var(--lilac);
  border-width: 0 1.8px 1.8px 0;
  transform: rotate(45deg);
}

.prose p { color: var(--text-soft); margin-bottom: 20px; font-size: 1.005rem; }
.prose p:last-child { margin-bottom: 0; }
.prose h2 { margin: 44px 0 18px; font-size: clamp(1.4rem, 2.6vw, 1.85rem); }
.prose h3 { margin: 32px 0 14px; font-size: 1.2rem; }
.prose ul { padding-left: 22px; margin-bottom: 20px; color: var(--text-soft); }
.prose li { margin-bottom: 9px; }
.prose a { color: var(--lilac); text-decoration: underline; text-underline-offset: 3px; }

/* Split media + text block */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 66px);
  align-items: center;
}

.split__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 34px 70px -34px rgba(0, 0, 0, 0.9);
}

.split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* Two overlapping images for the about page. */
.stack-media { position: relative; padding-bottom: 60px; padding-right: 46px; }

.stack-media__main,
.stack-media__inset {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-hi);
  box-shadow: 0 34px 80px -34px rgba(0, 0, 0, 0.95);
}

.stack-media__main img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.stack-media__inset {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  background: var(--ink);
}

.stack-media__inset img { width: 100%; aspect-ratio: 1; object-fit: cover; }

/* Pills / tags */
.pills { display: flex; flex-wrap: wrap; gap: 9px; }

.pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.85rem;
  color: var(--text-soft);
  transition: all 0.3s var(--ease);
}

a.pill:hover {
  border-color: var(--violet);
  color: #fff;
  background: rgba(168, 85, 247, 0.14);
  transform: translateY(-2px);
}

/* Hours table */
.hours { width: 100%; border-collapse: collapse; }

.hours th, .hours td {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  text-align: left;
}

.hours th { font-weight: 500; color: var(--text-soft); }
.hours td { text-align: right; font-variant-numeric: tabular-nums; color: var(--text); }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours tr.is-today th { color: #fff; font-weight: 600; }
.hours tr.is-today td { color: var(--lilac); font-weight: 600; }

/* --------------------------------------------------------------------------
   16. Page banner (interior pages)
   -------------------------------------------------------------------------- */

.banner {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(46px, 6vw, 76px));
  padding-bottom: clamp(40px, 5vw, 66px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.banner__bg { position: absolute; inset: 0; z-index: -1; }

.banner__bg .aura--violet {
  width: 52vw; height: 42vw;
  max-width: 700px; max-height: 520px;
  top: -40%; right: -6%;
  opacity: 0.42;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  font-size: 0.81rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.crumbs a { color: var(--text-soft); transition: color 0.3s var(--ease); }
.crumbs a:hover { color: var(--lilac); }
.crumbs svg { width: 13px; height: 13px; opacity: 0.55; }

/* --------------------------------------------------------------------------
   17. Contact / forms
   -------------------------------------------------------------------------- */

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-soft);
}

.field label .req { color: var(--orchid); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.028);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
}

.field textarea { resize: vertical; min-height: 130px; }

.field input::placeholder,
.field textarea::placeholder { color: #6b6885; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--violet);
  background: rgba(168, 85, 247, 0.06);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.14);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b9b5d4' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 17px;
  padding-right: 42px;
}

.field select option { background: var(--panel); color: var(--text); }

.err { font-size: 0.8rem; color: #fb7185; }

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: #fb7185; }

/* Honeypot — hidden from people, visible to bots. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(52, 211, 153, 0.35);
  background: rgba(52, 211, 153, 0.08);
  margin-bottom: 26px;
}

.notice svg { width: 21px; height: 21px; color: #34d399; flex: none; margin-top: 1px; }
.notice strong { display: block; font-family: var(--font-display); margin-bottom: 3px; }
.notice p { font-size: 0.9rem; color: var(--text-soft); }

/* Contact detail rows */
.cdetail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.cdetail:last-child { border-bottom: 0; }

.cdetail__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 13px;
  background: linear-gradient(140deg, rgba(168, 85, 247, 0.22), rgba(217, 70, 239, 0.1));
  border: 1px solid var(--line-hi);
}

.cdetail__icon svg { width: 20px; height: 20px; color: var(--lilac); }

.cdetail span { display: block; font-size: 0.78rem; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; }
.cdetail strong { font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; word-break: break-word; }
.cdetail a:hover strong { color: var(--lilac); }

/* --------------------------------------------------------------------------
   18. CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-hi);
  padding: clamp(38px, 5.5vw, 70px);
  text-align: center;
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(124, 58, 237, 0.28), transparent 62%),
    linear-gradient(180deg, var(--panel-hi), var(--ink-2));
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(168, 85, 247, 0.09) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(168, 85, 247, 0.09) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(70% 70% at 50% 40%, #000, transparent);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 40%, #000, transparent);
}

.cta-band > * { position: relative; z-index: 1; }
.cta-band .btn-row { justify-content: center; }

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */

.footer {
  position: relative;
  border-top: 1px solid var(--line);
  background: var(--ink-2);
  padding-top: clamp(52px, 6vw, 78px);
  overflow: hidden;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr 1.25fr;
  gap: clamp(28px, 4vw, 52px);
  padding-bottom: clamp(38px, 4.5vw, 56px);
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lilac);
  margin-bottom: 20px;
}

.footer__list { list-style: none; padding: 0; display: grid; gap: 11px; }

.footer__list a {
  font-size: 0.91rem;
  color: var(--text-soft);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
  display: inline-block;
}

.footer__list a:hover { color: var(--lilac); transform: translateX(4px); }

.footer__brand img { height: 78px; width: auto; margin-bottom: 24px; }
.footer__brand p { font-size: 0.91rem; color: var(--text-soft); max-width: 34ch; }

.footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-block: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.83rem;
  color: var(--muted);
}

.footer__bar nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__bar a:hover { color: var(--lilac); }

/* --------------------------------------------------------------------------
   20. Mobile action bar
   -------------------------------------------------------------------------- */

.actionbar {
  position: fixed;
  inset: auto 0 0;
  z-index: 880;
  display: none;
  gap: 10px;
  padding: 11px var(--gutter) calc(11px + env(safe-area-inset-bottom));
  background: rgba(5, 5, 10, 0.93);
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--line);
}

.actionbar .btn { flex: 1; padding-inline: 12px; }

/* --------------------------------------------------------------------------
   21. Scroll reveal
   -------------------------------------------------------------------------- */

/* Scoped to .js (set by an inline script in the head) so that with scripting
   unavailable the content simply renders, rather than staying invisible. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}

.js [data-reveal].is-in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   22. Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 940px) {
  .nav, .header__socials { display: none; }
  .burger { display: grid; }

  /* Headline leads on narrow screens; the photo follows the call to action. */
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 520px; margin-top: 8px; }
  .hero__frame { transform: none; }
  .hero__frame img { aspect-ratio: 5 / 4; }

  .split { grid-template-columns: 1fr; }
  .split--flip .split__media { order: -1; }

  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step:nth-child(2)::before { display: none; }

  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .stack-media { padding-bottom: 42px; padding-right: 32px; }
}

@media (max-width: 720px) {
  :root { --header-h: 74px; }

  body { padding-bottom: 74px; }

  .actionbar { display: flex; }

  /* The fixed action bar already carries Call and WhatsApp on small screens,
     so the header keeps only the logo and the menu control. */
  .header__cta .btn { display: none; }

  /* Too little width for the two-line badge to read well. */
  .hero__badge { display: none; }

  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
  .shot__cap { font-size: 0.73rem; padding: 26px 11px 11px; line-height: 1.35; }
  .steps { grid-template-columns: 1fr; }
  .step::before { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero__trust { grid-template-columns: 1fr; }
  .footer__bar { justify-content: center; text-align: center; }
  .footer__bar nav { justify-content: center; }
  .brand img { height: 46px; }
  .lightbox__btn { width: 42px; height: 42px; }
}

@media (max-width: 420px) {
  .stats { grid-template-columns: 1fr; }
  .btn { padding: 14px 22px; }
}

/* --------------------------------------------------------------------------
   23. Motion & print preferences
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .js [data-reveal] { opacity: 1; transform: none; }
  .hero__frame { transform: none; }
}

@media print {
  .header, .actionbar, .drawer, .cta-band, .marquee { display: none !important; }
  body { background: #fff; color: #000; }
  body::after { display: none; }
}

/* ==========================================================================
   24. Motion primitives
   ========================================================================== */

/* Reading-progress rail pinned to the top of the viewport. */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  z-index: 950;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--violet), var(--orchid));
  box-shadow: 0 0 14px var(--glow);
  pointer-events: none;
}

/* Word-by-word masked rise. JS wraps each word; without JS nothing changes. */
.js [data-words] .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  /* Breathing room so descenders are not clipped by the mask. */
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}

.js [data-words] .w > i {
  display: inline-block;
  font-style: inherit;
  transform: translateY(112%);
  transition: transform 0.85s var(--ease-out);
  transition-delay: var(--wd, 0ms);
}

.js [data-words].is-in .w > i { transform: none; }

/* Image wipe: uncovers left to right while easing off a slight zoom. */
.js [data-wipe] {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.15s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}

.js [data-wipe].is-in { clip-path: inset(0 0 0 0); }

.js [data-wipe] img {
  transform: scale(1.16);
  transition: transform 1.6s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}

.js [data-wipe].is-in img { transform: none; }

/* Parallax drift, driven by JS writing --py. */
[data-parallax] { will-change: transform; }
.js [data-parallax] > * { transform: translate3d(0, var(--py, 0px), 0); }

/* ==========================================================================
   25. Social links
   ========================================================================== */

.socials { display: flex; align-items: center; gap: 10px; }

.social-link {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  overflow: hidden;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease),
              transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.social-link svg { width: 19px; height: 19px; position: relative; z-index: 1; }

/* Gradient washes up from the bottom on hover. */
.social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, var(--violet), var(--violet-dk) 60%, var(--orchid));
  transform: translateY(101%);
  transition: transform 0.4s var(--ease);
}

.social-link:hover {
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 26px -12px var(--glow);
}

.social-link:hover::before { transform: none; }

.social-link--lg { width: 50px; height: 50px; border-radius: 15px; }
.social-link--lg svg { width: 22px; height: 22px; }

/* Labelled variant used on the contact page. */
.social-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.social-row:last-child { border-bottom: 0; }

.social-row span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.social-row strong { font-family: var(--font-display); font-size: 1rem; font-weight: 600; }
.social-row:hover strong { color: var(--lilac); }

/* ==========================================================================
   26. Editorial service list
   ========================================================================== */

.svc-list { border-top: 1px solid var(--line); }

.svc-row {
  position: relative;
  display: grid;
  grid-template-columns: 84px minmax(0, 0.9fr) minmax(0, 1.1fr) 54px;
  align-items: center;
  gap: 24px;
  padding: clamp(22px, 2.6vw, 34px) 8px;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

/* Violet wash that slides in behind the row on hover. */
.svc-row::before {
  content: '';
  position: absolute;
  inset: 0 -18px;
  z-index: -1;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(168, 85, 247, 0.13), rgba(217, 70, 239, 0.05) 55%, transparent);
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.svc-row:hover::before { opacity: 1; transform: none; }

.svc-row__num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: color 0.35s var(--ease), transform 0.45s var(--ease);
}

.svc-row:hover .svc-row__num { color: var(--orchid); transform: translateX(4px); }

.svc-row__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  transition: transform 0.45s var(--ease);
}

.svc-row:hover .svc-row__title { transform: translateX(6px); }

.svc-row__desc { font-size: 0.94rem; color: var(--text-soft); }

.svc-row__go {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--lilac);
  justify-self: end;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
              color 0.4s var(--ease), transform 0.4s var(--ease),
              box-shadow 0.4s var(--ease);
}

.svc-row__go svg { width: 18px; height: 18px; }

.svc-row:hover .svc-row__go {
  background: linear-gradient(140deg, var(--violet), var(--violet-dk));
  border-color: transparent;
  color: #fff;
  transform: rotate(-45deg) scale(1.08);
  box-shadow: 0 12px 26px -12px var(--glow);
}

/* Floating preview that tracks the pointer across the list. */
.peek {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 260px;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line-hi);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.95), 0 0 44px -22px var(--glow);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(var(--px, 0px), var(--py, 0px), 0) scale(0.86) rotate(-4deg);
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease);
}

.peek.is-on {
  opacity: 1;
  transform: translate3d(var(--px, 0px), var(--py, 0px), 0) scale(1) rotate(-3deg);
}

.peek img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   27. Pinned process flow
   ========================================================================== */

.flow {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.flow__aside { position: sticky; top: calc(var(--header-h) + 48px); }

.flow__steps { display: grid; gap: clamp(20px, 2.6vw, 30px); }

.flow__step {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: clamp(22px, 2.6vw, 30px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.008));
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease),
              background 0.5s var(--ease);
}

.flow__step:hover {
  border-color: var(--line-hi);
  transform: translateX(8px);
  background: linear-gradient(120deg, rgba(168, 85, 247, 0.1), rgba(255, 255, 255, 0.01));
}

.flow__n {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px var(--line-hi);
  transition: color 0.5s var(--ease);
}

.flow__step:hover .flow__n {
  -webkit-text-stroke-color: var(--orchid);
  color: rgba(217, 70, 239, 0.12);
}

.flow__step h3 { font-size: 1.16rem; margin-bottom: 9px; }
.flow__step p { font-size: 0.94rem; color: var(--text-soft); }

/* ==========================================================================
   28. Cinematic full-bleed band
   ========================================================================== */

.band {
  position: relative;
  min-height: clamp(420px, 62vh, 640px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-block: 1px solid var(--line);
}

.band__media { position: absolute; inset: 0; z-index: -2; }

.band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Graded toward the brand violet so it reads as art direction, not a photo. */
  filter: grayscale(0.55) contrast(1.12) brightness(0.5);
}

.band__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--ink) 8%, rgba(5, 5, 10, 0.72) 46%, rgba(124, 58, 237, 0.28) 100%);
}

/* Diagonal speed rules across the band. */
.band__rules {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  background-image: repeating-linear-gradient(
    108deg,
    transparent 0 58px,
    rgba(217, 70, 239, 0.16) 58px 59px
  );
  mask-image: linear-gradient(90deg, transparent, #000 60%);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 60%);
}

.band__inner { padding-block: clamp(56px, 7vw, 92px); max-width: 640px; }

.band h2 { font-size: clamp(1.9rem, 4vw, 3rem); }

/* ==========================================================================
   29. Feature gallery
   ========================================================================== */

.gallery--feature {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
}

/* Two tiles take double space so the grid stops reading as uniform. */
.gallery--feature .shot:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery--feature .shot:nth-child(6) { grid-column: span 2; aspect-ratio: 3 / 2; }
.gallery--feature .shot:nth-child(1) .shot__cap { font-size: 1rem; padding: 44px 20px 20px; }

/* ==========================================================================
   30. Section index label
   ========================================================================== */

.sec-no {
  position: absolute;
  top: clamp(30px, 4vw, 54px);
  right: var(--gutter);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(168, 142, 255, 0.28);
  pointer-events: none;
}

/* ==========================================================================
   31. Hero additions
   ========================================================================== */

/* Cursor-tracking spotlight over the hero. */
.hero__spot {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    420px circle at var(--sx, 70%) var(--sy, 30%),
    rgba(217, 70, 239, 0.16),
    transparent 70%
  );
}

/* Motion streaks behind the headline. */
.hero__streaks {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.55;
  background-image: repeating-linear-gradient(
    100deg,
    transparent 0 92px,
    rgba(168, 85, 247, 0.13) 92px 93px
  );
  mask-image: radial-gradient(70% 60% at 30% 40%, #000, transparent);
  -webkit-mask-image: radial-gradient(70% 60% at 30% 40%, #000, transparent);
}

/* Small stat cards clustered against the hero image. */
.hero__chips {
  position: absolute;
  left: -22px;
  bottom: 17%;
  z-index: 4;
  display: grid;
  gap: 10px;
}

.hero__chip {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 16px;
  border-radius: 14px;
  background: rgba(10, 10, 18, 0.82);
  border: 1px solid var(--line-hi);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 34px -20px rgba(0, 0, 0, 0.9);
  animation: bob 6s var(--ease) infinite;
}

.hero__chip:nth-child(2) { animation-delay: -3s; margin-left: 26px; }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

.hero__chip svg { width: 17px; height: 17px; color: var(--orchid); flex: none; }
.hero__chip strong { font-family: var(--font-display); font-size: 0.86rem; display: block; line-height: 1.25; }
.hero__chip span { font-size: 0.72rem; color: var(--muted); }

/* ==========================================================================
   32. Responsive for the new components
   ========================================================================== */

@media (max-width: 1080px) {
  .gallery--feature { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery--feature .shot:nth-child(6) { grid-column: span 1; aspect-ratio: 3 / 4; }
}

@media (max-width: 940px) {
  .flow { grid-template-columns: 1fr; }
  .flow__aside { position: static; }
  .peek { display: none; }

  /* Two classes so this beats the later `.socials { display: flex }` rule. */
  .header__cta .socials { display: none; }

  /* Explicit placement: number, title and arrow share the first row and the
     description spans the full width beneath them. */
  .svc-row {
    grid-template-columns: 52px minmax(0, 1fr) 42px;
    align-items: start;
    gap: 14px;
    row-gap: 8px;
  }
  .svc-row__num   { grid-column: 1; grid-row: 1; padding-top: 4px; }
  .svc-row__title { grid-column: 2; grid-row: 1; }
  .svc-row__go    { grid-column: 3; grid-row: 1; width: 40px; height: 40px; }
  .svc-row__desc  { grid-column: 2 / -1; grid-row: 2; }

  .hero__chips { position: static; margin-top: 16px; grid-auto-flow: column; justify-content: start; }
  .hero__chip:nth-child(2) { margin-left: 0; }
}

@media (max-width: 720px) {
  .gallery--feature { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery--feature .shot:nth-child(1) { grid-column: span 2; grid-row: span 1; aspect-ratio: 4 / 3; }
  .gallery--feature .shot:nth-child(1) .shot__cap { font-size: 0.82rem; padding: 30px 14px 14px; }

  .sec-no { display: none; }
  .hero__chips { display: none; }
  .socials { justify-content: center; }
  .flow__step { grid-template-columns: 52px minmax(0, 1fr); gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .js [data-words] .w > i { transform: none; }
  .js [data-wipe] { clip-path: none; }
  .js [data-wipe] img { transform: none; }
  .js [data-parallax] > * { transform: none; }
  .hero__chip { animation: none; }
  .progress { display: none; }
}

/* ==========================================================================
   33. Responsive picture wrapper
   ========================================================================== */

/* `display: contents` removes the <picture> box so every existing rule that
   targets a child img (`.shot img`, `.split__media img`, …) keeps applying. */
picture { display: contents; }

/* ==========================================================================
   34. Coverage map
   ========================================================================== */

.cmap {
  position: relative;
  /* The SVG scales with its container and font-size is in user units, so the
     rendered text size depends entirely on how wide this box is. Capping the
     width keeps that scale factor predictable (~780 / 132 viewBox units). */
  max-width: 780px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(124, 58, 237, 0.12), transparent 60%),
    linear-gradient(180deg, var(--panel-hi), var(--ink-2));
  padding: clamp(14px, 2vw, 26px);
  overflow: hidden;
}

.cmap__svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

/* Ten-mile graticule. */
.cmap__grid line {
  stroke: rgba(168, 142, 255, 0.09);
  stroke-width: 0.15;
}

.cmap__coast polyline {
  fill: none;
  stroke: rgba(196, 181, 253, 0.42);
  stroke-width: 0.35;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.cmap__area,
.cmap__core { pointer-events: none; }

/* Rings draw themselves in when the map scrolls into view. */
.cmap__rings circle {
  fill: none;
  stroke: rgba(168, 85, 247, 0.45);
  stroke-width: 0.28;
  stroke-dasharray: 1.6 1.6;
}

.cmap__rings circle.is-edge {
  stroke: var(--orchid);
  stroke-width: 0.45;
  stroke-dasharray: none;
  filter: drop-shadow(0 0 1.6px rgba(217, 70, 239, 0.75));
}

.cmap__ringlabel {
  fill: rgba(196, 181, 253, 0.6);
  font-family: var(--font-display);
  font-size: var(--cmap-ring, 1.6px);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.cmap__towns circle {
  fill: var(--lilac);
  opacity: 0.85;
}

.cmap__towns text {
  fill: var(--text-soft);
  font-family: var(--font-body);
  font-size: var(--cmap-lbl, 1.9px);
  font-weight: 500;
}

.cmap__hub .cmap__dot {
  fill: #fff;
  stroke: var(--orchid);
  stroke-width: 0.45;
  filter: drop-shadow(0 0 1.8px rgba(217, 70, 239, 0.9));
}

.cmap__hub text {
  fill: #fff;
  font-family: var(--font-display);
  font-size: var(--cmap-hub, 2.7px);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Radar ping from the base. */
.cmap__ping {
  fill: none;
  stroke: var(--orchid);
  stroke-width: 0.35;
  transform-origin: 0 0;
  opacity: 0;
}

.cmap__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: center;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}

.cmap__legend span { display: inline-flex; align-items: center; gap: 8px; }

.cmap__key {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex: none;
}

.cmap__key--core { background: rgba(217, 70, 239, 0.55); border: 1px solid var(--orchid); }
.cmap__key--area { background: rgba(168, 85, 247, 0.22); border: 1px solid rgba(168, 85, 247, 0.6); }
.cmap__key--hub  { background: #fff; border: 1px solid var(--orchid); box-shadow: 0 0 6px rgba(217, 70, 239, 0.8); }

/* --- Animation, only once the map is on screen ---------------------------- */

.js .cmap__rings circle {
  stroke-dashoffset: 340;
  /* A solid ring still needs a dash pattern to draw itself in. */
  stroke-dasharray: 340;
  transition: stroke-dashoffset 1.5s var(--ease-out);
  transition-delay: var(--ring-delay, 0ms);
}

.js .cmap.is-in .cmap__rings circle { stroke-dashoffset: 0; }

.js .cmap__rings circle:not(.is-edge) { stroke-dasharray: 2.4 2.4; stroke-dashoffset: 0; opacity: 0; transition: opacity 0.9s var(--ease); }
.js .cmap.is-in .cmap__rings circle:not(.is-edge) { opacity: 1; }

.js .cmap__area, .js .cmap__core, .js .cmap__coast, .js .cmap__ringlabel {
  opacity: 0;
  transition: opacity 1s var(--ease);
}

.js .cmap.is-in .cmap__area,
.js .cmap.is-in .cmap__core,
.js .cmap.is-in .cmap__coast,
.js .cmap.is-in .cmap__ringlabel { opacity: 1; }

.js .cmap__town {
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  transition-delay: var(--town-delay, 0ms);
}

.js .cmap.is-in .cmap__town { opacity: 1; }

.js .cmap.is-in .cmap__ping { animation: cmapPing 3.4s var(--ease-out) infinite; }
.js .cmap.is-in .cmap__ping--2 { animation-delay: 1.7s; }

@keyframes cmapPing {
  0%   { transform: scale(0.5); opacity: 0.85; }
  70%  { opacity: 0; }
  100% { transform: scale(6); opacity: 0; }
}

/* The map narrows on smaller screens, so the user-unit type has to grow to
   stay the same physical size. Each step targets roughly 11px rendered. */
@media (max-width: 1080px) {
  .cmap { --cmap-lbl: 2.3px; --cmap-hub: 3.2px; --cmap-ring: 1.9px; }
}

@media (max-width: 720px) {
  .cmap { --cmap-lbl: 4.8px; --cmap-hub: 6.6px; --cmap-ring: 4px; }
  /* Nineteen labels will not fit on a phone. The dots stay, the crowded
     inner names drop, and the written list below carries the full detail. */
  .cmap__town--minor text { display: none; }
  .cmap__towns circle { r: 1.2; }
  .cmap__hub .cmap__dot { r: 2.6; }
  .cmap__coast polyline { stroke-width: 0.7; }
  .cmap__rings circle { stroke-width: 0.6; }
  .cmap__rings circle.is-edge { stroke-width: 0.9; }
  .cmap__legend { font-size: 0.78rem; gap: 8px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .js .cmap__rings circle,
  .js .cmap__area, .js .cmap__core, .js .cmap__coast,
  .js .cmap__ringlabel, .js .cmap__town {
    opacity: 1;
    stroke-dashoffset: 0;
  }
  .js .cmap.is-in .cmap__ping { animation: none; }
}

/* ==========================================================================
   35. Coming soon
   ========================================================================== */

.soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.42);
  background: rgba(251, 191, 36, 0.12);
  color: #fcd34d;
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  vertical-align: middle;
}

.soon-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fbbf24;
  box-shadow: 0 0 7px #fbbf24;
}

/* The service row keeps its layout; the badge sits beside the title. */
.svc-row__title .soon-badge { margin-left: 10px; transform: translateY(-2px); }

.svc-row--soon .svc-row__go {
  border-style: dashed;
  color: #fcd34d;
}

.svc-row--soon:hover .svc-row__go {
  background: linear-gradient(140deg, #f59e0b, #d97706);
  border-color: transparent;
  color: #1c1207;
  box-shadow: 0 12px 26px -12px rgba(251, 191, 36, 0.6);
}

.svc-row--soon::before {
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.12), rgba(217, 70, 239, 0.04) 55%, transparent);
}

/* Amber notice, mirroring .notice but for a not-yet-available state. */
.notice--soon {
  border-color: rgba(251, 191, 36, 0.38);
  background: rgba(251, 191, 36, 0.09);
}

.notice--soon svg { color: #fbbf24; }

/* Home-page teaser strip. */
.soon-strip {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(251, 191, 36, 0.22);
  background:
    radial-gradient(110% 130% at 100% 0%, rgba(251, 191, 36, 0.12), transparent 58%),
    linear-gradient(180deg, var(--panel-hi), var(--ink-2));
  padding: clamp(26px, 3.4vw, 44px);
  overflow: hidden;
}

.soon-strip__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-hi);
}

.soon-strip__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

@media (max-width: 940px) {
  .soon-strip { grid-template-columns: 1fr; }
  .soon-strip__media { order: -1; }
}

/* ==========================================================================
   36. Facebook recommendation badge
   ========================================================================== */

/* Shown instead of stars on Facebook-sourced reviews, because Facebook uses
   recommend / do not recommend rather than a star rating. */
.rec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px;
  margin-bottom: 14px;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.38);
  background: rgba(59, 130, 246, 0.12);
  color: #93c5fd;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.rec svg { width: 14px; height: 14px; flex: none; }

/* "verify" link back to the original review. */
.quote__who a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s var(--ease);
}

.quote__who a:hover { color: var(--lilac); }

/* ==========================================================================
   37. Reviews block
   ========================================================================== */

.reviews {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 3vw, 40px);
  align-items: start;
}

.reviews__score {
  padding: clamp(24px, 3vw, 34px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(59, 130, 246, 0.12), transparent 62%),
    linear-gradient(180deg, var(--panel-hi), var(--ink-2));
  text-align: center;
  position: sticky;
  top: calc(var(--header-h) + 32px);
}

.reviews__pct {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-top: 18px;
  background: linear-gradient(140deg, #fff, #93c5fd 60%, var(--lilac));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.reviews__pct-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  margin: 8px 0 16px;
}

/* One genuine review should not look like a broken three-column grid, so the
   list flows and simply grows as more are transcribed in. */
.reviews__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(18px, 2.4vw, 26px);
}

.reviews__list .quote { font-size: 1.02rem; }
.reviews__list .quote p { font-size: 1.03rem; }

@media (max-width: 940px) {
  .reviews { grid-template-columns: 1fr; }
  .reviews__score { position: static; }
}
