/* Elast Website v2 — techy beauty redesign
   Tokens come from ../colors_and_type.css.
   This file adds layout + variation styling on top. */

@import url("../colors_and_type.css");

/* ---------- Tweak-driven CSS variables (set on <html data-*>) ---------- */
:root {
  --pad-section: clamp(60px, 9vw, 130px);
  --gap-grid: 24px;
  --type-scale: 1;
}
html[data-density="loose"]   { --pad-section: clamp(90px, 12vw, 180px); --gap-grid: 32px; }
html[data-density="normal"]  { --pad-section: clamp(60px, 9vw, 130px);  --gap-grid: 24px; }
html[data-density="dense"]   { --pad-section: 48px;                      --gap-grid: 16px; }

html[data-typescale="compact"]   { --type-scale: 0.88; }
html[data-typescale="standard"]  { --type-scale: 1; }
html[data-typescale="monument"]  { --type-scale: 1.18; }

/* ---------- Page chrome ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg-page);
  color: var(--fg-primary);
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--brand); color: #fff; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container, .nav__inner { padding-left: 20px; padding-right: 20px; } }
.container--wide { max-width: 1400px; }
.container--narrow { max-width: 960px; }

/* ---------- Top nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(249, 250, 251, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-hairline);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; padding: 0 32px;
  max-width: 1400px; margin: 0 auto;
}
@media (max-width: 720px) {
  .nav__inner { padding: 0 16px; height: 56px; }
  .nav__links { gap: 12px; }
  .nav__link { display: none; }
  .nav__lang button { padding: 5px 9px; font-size: 10px; }
  .nav__cta { padding: 10px 14px; font-size: 10px; letter-spacing: 0.08em; }
}
.nav__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav__brand-mark {
  width: 22px; height: 22px;
  display: inline-flex; align-items: flex-end; justify-content: center;
}
.nav__brand-mark svg { width: 100%; height: 100%; }
.nav__brand-name {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 14px;
  color: var(--ink-900);
}
.nav__links { display: flex; gap: 32px; align-items: center; }
.nav__link {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; color: var(--ink-700);
  text-decoration: none; padding: 8px 0;
  position: relative;
}
.nav__link:hover { color: var(--brand); }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--brand);
}
.nav__cta {
  background: var(--brand); color: #fff; border: none;
  padding: 12px 22px; border-radius: 9999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; box-shadow: 0 8px 18px rgba(0,174,239,0.30);
  transition: background var(--dur-base);
}
.nav__cta:hover { background: var(--brand-hover); }
.nav__lang {
  display: inline-flex; align-items: center; border: 1px solid var(--ink-200);
  border-radius: 9999px; overflow: hidden;
}
.nav__lang button {
  background: none; border: none; padding: 6px 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--ink-500);
}
.nav__lang button.is-on { background: var(--ink-900); color: #fff; }

/* ---------- HERO base ---------- */
.hero {
  padding: clamp(40px, 7vw, 90px) 0 var(--pad-section);
  position: relative; overflow: hidden;
}
.hero__eyebrow {
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
  font-weight: 600; color: var(--brand);
  display: inline-flex; align-items: center; gap: 12px;
}
.hero__eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--brand);
}
.hero__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: calc(clamp(56px, 11vw, 168px) * var(--type-scale));
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin: 28px 0 24px 0;
}
.hero__title em {
  font-style: italic; font-weight: 400; color: var(--brand);
}
.hero__sub {
  font-family: var(--font-body); font-size: calc(17px * var(--type-scale));
  line-height: 1.55; color: var(--ink-600);
  max-width: 540px;
}
.hero__meta-row {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 32px; align-items: center;
}
.hero__cta {
  background: var(--brand); color: #fff; border: none;
  padding: 18px 38px; border-radius: 9999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(0,174,239,0.30);
  transition: transform var(--dur-base), background var(--dur-base);
}
.hero__cta:hover { transform: translateY(-2px); background: var(--brand-hover); }
.hero__cta-ghost {
  background: none; border: 1px solid var(--ink-200); color: var(--ink-900);
  padding: 17px 30px; border-radius: 9999px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero__cta-ghost:hover { border-color: var(--ink-900); }

/* HERO variation A — Editorial grid (default): split with kinetic numbers */
.hero-a__grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: end;
}
@media (max-width: 900px) { .hero-a__grid { grid-template-columns: 1fr; gap: 32px; } .hero-a__photo { margin-top: 32px; aspect-ratio: 4/3; } }
.hero-a__numbers {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--ink-200); border: 1px solid var(--ink-200);
}
.hero-a__num {
  background: #fff; padding: 26px 24px; min-height: 130px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hero-a__num-val {
  font-family: var(--font-heading); font-size: 56px; line-height: 1;
  color: var(--ink-900); font-weight: 600; font-variant-numeric: tabular-nums;
}
.hero-a__num-lbl {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink-500); font-weight: 600;
}
.hero-a__photo {
  margin-top: 60px;
  border-radius: 32px; overflow: hidden;
  aspect-ratio: 16 / 7;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.hero-a__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.hero-a__photo:hover img { transform: scale(1.04); }

/* HERO variation B — Cinematic LIGHT (clean photo right, magazine stats below) */
.hero-b {
  background: var(--bg-page); color: var(--ink-900);
  position: relative; padding: 0; overflow: hidden;
}
.hero-b__bg {
  position: absolute; right: 0; top: 0; bottom: 0; width: 42%; z-index: 0;
  background-position: center; background-size: cover;
  border-bottom-left-radius: 32px;
}
.hero-b__bg::after { content: none; }
.hero-b__inner {
  position: relative; z-index: 1; max-width: 1400px; margin: 0 auto;
  padding: clamp(48px, 7vw, 90px) 32px clamp(60px, 8vw, 110px);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center;
  min-height: min(72vh, 720px);
}
.hero-b__copy { padding-right: 24px; }
.hero-b .hero__title { color: var(--ink-900); font-size: calc(clamp(48px, 10vw, 160px) * var(--type-scale)); }
.hero-b .hero__title em { color: var(--brand); }
.hero-b .hero__sub { color: var(--ink-600); }
.hero-b__rail {
  border-left: 1px solid var(--ink-200); padding-left: 28px;
  display: flex; flex-direction: column; gap: 18px;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(10px);
  padding: 24px 24px 24px 28px; border-radius: 16px;
}
.hero-b__rail-item {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--ink-700); padding: 10px 0;
  border-bottom: 1px solid var(--ink-100);
}
.hero-b__rail-item:last-child { border-bottom: none; }
.hero-b__rail-item span:first-child { letter-spacing: 0.05em; }

/* Stats row at the bottom of the cinematic hero — same look as StatsStrip */
.hero-b__stats {
  position: relative; z-index: 2;
  padding: 56px 0 80px;
  background: var(--bg-page);
  border-top: 1px solid var(--ink-200);
}
@media (max-width: 1024px) {
  .hero-b__bg { position: relative; width: 100%; height: 56vw; max-height: 520px;
    border-bottom-left-radius: 0; border-radius: 0; }
  .hero-b__inner { grid-template-columns: 1fr; padding: 40px 24px 60px; min-height: 0; gap: 24px; align-items: start; }
  .hero-b__copy { padding-right: 0; order: 2; }
  .hero-b .hero__title { font-size: clamp(44px, 11vw, 88px); }
  .hero-b__stats { padding: 40px 0 56px; }
  .hero-b__stats .stats__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .hero-b__bg { height: 70vw; }
  .hero-b__stats .stat__num { font-size: 56px; }
}
.hero-b__rail-item .num {
  font-family: var(--font-heading); font-size: 22px; color: var(--brand); font-weight: 600;
}

/* HERO variation C — Magazine split (asymmetric serif statement) */
.hero-c__grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: stretch;
}
@media (max-width: 900px) { .hero-c__grid { grid-template-columns: 1fr; gap: 28px; } .hero-c__photo { min-height: 380px; order: -1; } }
.hero-c__left { padding: 30px 0; display: flex; flex-direction: column; justify-content: space-between; gap: 60px; }
.hero-c__photo { border-radius: 24px; overflow: hidden; min-height: 540px; position: relative; }
.hero-c__photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero-c__title-italic {
  font-family: var(--font-heading); font-style: italic; font-weight: 400;
  font-size: calc(clamp(48px, 8.5vw, 130px) * var(--type-scale));
  color: var(--ink-900); line-height: 0.95; letter-spacing: -0.015em;
}
.hero-c__title-italic .accent { color: var(--brand); font-style: normal; font-weight: 600; }
.hero-c__pull {
  border-top: 1px solid var(--ink-200); padding-top: 24px;
  font-family: var(--font-heading); font-size: 22px; line-height: 1.4; color: var(--ink-700);
  font-style: italic;
}

/* HERO variation D — Catalogue (dense + animated marquee) */
.hero-d { padding-bottom: 0; }
.hero-d__grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px;
  margin-top: 50px;
  background: var(--ink-200);
  border-top: 1px solid var(--ink-200); border-bottom: 1px solid var(--ink-200);
}
.hero-d__cell {
  background: #fff; padding: 22px 22px 28px; min-height: 220px;
  display: flex; flex-direction: column; justify-content: space-between;
  cursor: pointer; transition: background var(--dur-base);
}
.hero-d__cell:hover { background: var(--brand-50); }
.hero-d__cell-num {
  font-size: 11px; letter-spacing: 0.25em; color: var(--brand); font-weight: 700;
}
.hero-d__cell-title {
  font-family: var(--font-heading); font-size: 30px; font-weight: 600;
  color: var(--ink-900); line-height: 1.05;
}
.hero-d__cell-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--ink-100); display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-base), color var(--dur-base);
  align-self: flex-end;
}
.hero-d__cell:hover .hero-d__cell-arrow { background: var(--brand); color: #fff; }

.marquee {
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid var(--ink-200); border-bottom: 1px solid var(--ink-200);
  background: #fff; padding: 18px 0;
}
.marquee__track {
  display: inline-flex; gap: 48px; animation: marquee 38s linear infinite;
  font-family: var(--font-heading); font-style: italic;
  font-size: 22px; color: var(--ink-700);
}
.marquee__track > span { display: inline-flex; align-items: center; gap: 48px; }
.marquee__track .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--brand);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 900px) {
  .hero-b__inner { grid-template-columns: 1fr; padding: 60px 20px 80px; gap: 32px; min-height: auto; }
  .hero-b__bg { width: 100%; height: 280px; bottom: auto; border-bottom-left-radius: 0; opacity: 0.4; }
  .hero-d__grid { grid-template-columns: 1fr 1fr; }
  .hero-d__cell { min-height: 160px; padding: 16px; }
  .hero-d__cell-title { font-size: 22px; }
  .marquee__track { font-size: 16px; gap: 24px; }
  .hero__title { font-size: calc(clamp(40px, 13vw, 80px) * var(--type-scale)) !important; }
  .hero__meta-row { gap: 12px; }
  .hero__cta, .hero__cta-ghost { padding: 14px 22px; font-size: 11px; }
}
@media (max-width: 600px) {
  .hero-d__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr !important; gap: 24px; }
  .stat__num { font-size: clamp(40px, 12vw, 72px); }
  .section-head { margin-bottom: 32px; }
  .section-head__title { font-size: clamp(32px, 9vw, 56px) !important; }
  .book__grid { padding: 24px !important; gap: 24px; }
  .field--inline { grid-template-columns: 1fr !important; }
  .team__grid { grid-template-columns: 1fr 1fr !important; gap: 12px; }
  .fab { padding: 12px 18px; font-size: 10px; bottom: 16px; right: 16px; }
  .nav { top: 0 !important; }
  .vswitch { top: 8px !important; padding: 4px !important; }
  .vswitch a { padding: 5px 8px !important; font-size: 9px !important; }
}

/* ---------- Services index ---------- */
.services { padding: var(--pad-section) 0; }
.section-head {
  display: flex; justify-content: space-between; align-items: end; gap: 32px;
  margin-bottom: 56px; flex-wrap: wrap;
}
.section-head__title {
  font-family: var(--font-heading);
  font-size: calc(clamp(36px, 5vw, 72px) * var(--type-scale));
  font-weight: 600; color: var(--ink-900); letter-spacing: -0.015em;
  line-height: 1; margin: 0;
}
.section-head__title em { color: var(--brand); font-style: italic; font-weight: 400; }
.section-head__rhs { color: var(--ink-500); font-size: 14px; max-width: 320px; line-height: 1.5; }

.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-grid);
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card {
  background: #fff; border: 1px solid var(--ink-200);
  border-radius: 24px; padding: 28px; min-height: 280px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 18px;
  transition: all var(--dur-base) var(--ease-default);
  text-decoration: none; color: inherit; cursor: pointer;
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ""; position: absolute; inset: auto -1px -1px -1px;
  height: 0; background: var(--brand); transition: height var(--dur-base);
  z-index: 0;
}
.svc-card:hover { border-color: var(--brand); transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,174,239,0.18); }
.svc-card > * { position: relative; z-index: 1; }
.svc-card__head { display: flex; justify-content: space-between; align-items: start; gap: 12px; }
.svc-card__num {
  font-family: var(--font-heading); font-size: 38px; color: var(--brand); font-weight: 600;
  line-height: 0.9;
}
.svc-card__chip {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
  color: var(--ink-500);
}
.svc-card__title {
  font-family: var(--font-heading); font-size: 32px; line-height: 1.05;
  font-weight: 600; color: var(--ink-900); margin: 0;
}
.svc-card__meta {
  display: flex; justify-content: space-between; align-items: end;
  border-top: 1px solid var(--ink-200); padding-top: 16px;
  font-size: 12px; color: var(--ink-600);
}
.svc-card__meta b { color: var(--brand); font-weight: 700; font-size: 14px; }

/* Density variants on svc-grid */
html[data-density="dense"] .svc-grid { grid-template-columns: repeat(4, 1fr); }
html[data-density="loose"] .svc-grid { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1100px) {
  html[data-density="dense"] .svc-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Stats strip ---------- */
.stats {
  padding: 80px 0;
  border-top: 1px solid var(--ink-200);
  border-bottom: 1px solid var(--ink-200);
  background: #fff;
}
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 48px; align-items: end;
}
@media (max-width: 900px) { .stats__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.stat__num {
  font-family: var(--font-heading); font-size: clamp(56px, 7vw, 96px);
  line-height: 0.9; color: var(--ink-900); font-weight: 600; font-variant-numeric: tabular-nums;
  white-space: nowrap;
  display: flex; align-items: baseline; gap: 6px;
}
.stat__suffix { font-size: 0.5em; color: var(--brand); }
.stat__lbl {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-500); font-weight: 600; margin-top: 12px;
  white-space: nowrap;
}
.stat__rule { height: 1px; background: var(--ink-200); margin: 14px 0 0; position: relative; }
.stat__rule::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 30%; background: var(--brand);
}

/* ---------- About / philosophy ---------- */
.about { padding: var(--pad-section) 0; }
.about__grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center;
}
@media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; gap: 40px; } }
.about__photo {
  border-radius: 24px; overflow: hidden; aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl); position: relative;
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__copy h2 {
  font-family: var(--font-heading);
  font-size: calc(clamp(36px, 4.5vw, 64px) * var(--type-scale));
  font-weight: 600; color: var(--ink-900); margin: 24px 0;
  line-height: 1.05; letter-spacing: -0.01em;
}
.about__copy h2 em { color: var(--brand); font-style: italic; font-weight: 400; }
.about__copy p {
  font-size: calc(16px * var(--type-scale)); line-height: 1.7; color: var(--ink-600);
  margin: 0 0 18px 0;
}
.about__list {
  list-style: none; padding: 0; margin: 32px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px;
}
.about__list li {
  font-size: 13px; color: var(--ink-700); padding-left: 20px;
  position: relative; line-height: 1.5;
}
.about__list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; background: var(--brand); transform: rotate(45deg);
}

/* ---------- Team ---------- */
.team { padding: var(--pad-section) 0; background: #fff; border-top: 1px solid var(--ink-200); }
.team__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 48px;
}
@media (max-width: 1024px) { .team__grid { grid-template-columns: 1fr 1fr; } }
.team__card {
  border-radius: 16px; overflow: hidden; background: var(--ink-50);
  position: relative; aspect-ratio: 3/4;
}
.team__card-photo {
  position: absolute; inset: 0; background: linear-gradient(155deg, #1a1a1a, #2a2a2a);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.25);
  font-family: var(--font-heading); font-size: 96px; font-weight: 600;
}
.team__card-info {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(6px);
  padding: 14px; border-radius: 12px;
}
.team__name {
  font-family: var(--font-heading); font-size: 20px; font-weight: 600;
  color: var(--ink-900); margin: 0 0 4px 0;
}
.team__role {
  font-size: 10px; color: var(--brand); letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600;
}

/* ---------- Booking form ---------- */
.book {
  padding: var(--pad-section) 0;
  background: linear-gradient(180deg, var(--ink-50) 0%, #fff 100%);
}
.book__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  background: #fff; border: 1px solid var(--ink-200); border-radius: 32px;
  padding: 56px; box-shadow: var(--shadow-md);
}
@media (max-width: 900px) { .book__grid { grid-template-columns: 1fr; padding: 32px; gap: 32px; } }
.book__copy h2 {
  font-family: var(--font-heading); font-size: clamp(40px, 5vw, 64px); font-weight: 600;
  color: var(--ink-900); margin: 8px 0 16px; line-height: 1.05;
}
.book__copy h2 em { color: var(--brand); font-style: italic; font-weight: 400; }
.book__copy p { color: var(--ink-600); line-height: 1.7; margin: 0 0 24px; }
.book__copy ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.book__copy ul li { display: flex; gap: 12px; font-size: 14px; color: var(--ink-700); }
.book__copy ul li svg { color: var(--brand); flex-shrink: 0; margin-top: 2px; }

.book__form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-500); font-weight: 600;
}
.field input, .field select, .field textarea {
  appearance: none; -webkit-appearance: none; width: 100%;
  background: #fff; border: 1px solid var(--ink-200); border-radius: 14px;
  padding: 18px 20px; font-size: 16px; line-height: 1.4;
  font-family: inherit; color: var(--ink-900);
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-400); }
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(0,174,239,0.12);
}
.field--inline { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field--inline > div { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field--inline > div input { width: 100%; }
@media (max-width: 720px) { .field--inline { grid-template-columns: 1fr; } }
.book__submit {
  background: var(--brand); color: #fff; border: none; border-radius: 9999px;
  padding: 18px 32px; font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; box-shadow: 0 14px 28px rgba(0,174,239,0.30);
  transition: transform var(--dur-base), background var(--dur-base);
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.book__submit:hover { background: var(--brand-hover); transform: translateY(-2px); }
.book__hint { font-size: 11px; color: var(--ink-500); text-align: center; }
.book__success {
  text-align: center; padding: 40px 20px;
  border: 1px dashed var(--brand); border-radius: 16px; background: var(--brand-50);
}
.book__success h3 { font-family: var(--font-heading); font-size: 28px; color: var(--ink-900); margin: 0 0 8px; font-weight: 600; }
.book__success p { color: var(--ink-700); margin: 0; }

/* ---------- Footer ---------- */
.foot { padding: 80px 0 40px; background: #0a0a0a; color: rgba(255,255,255,0.7); }
.foot__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 900px) { .foot__top { grid-template-columns: 1fr 1fr; } }
.foot__brand-name { font-family: var(--font-body); font-weight: 600; letter-spacing: 0.18em; color: #fff; font-size: 14px; }
.foot__lead { font-family: var(--font-heading); font-size: 28px; line-height: 1.2; color: #fff; margin: 18px 0 24px; max-width: 360px; font-weight: 600; }
.foot__col h4 { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.4); font-weight: 600; margin: 0 0 18px; }
.foot__col a { display: block; color: rgba(255,255,255,0.85); text-decoration: none; padding: 6px 0; font-size: 14px; }
.foot__col a:hover { color: var(--brand); }
.foot__bottom { display: flex; justify-content: space-between; padding-top: 28px; font-size: 12px; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 12px; }
.foot__bottom a { color: rgba(255,255,255,0.6); text-decoration: none; }

/* ---------- Floating booking pill (kept from v1) ---------- */
.fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  background: var(--brand); color: #fff; border: none; border-radius: 9999px;
  padding: 14px 22px; box-shadow: 0 14px 30px rgba(0,174,239,0.40);
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  transition: transform var(--dur-base);
}
.fab:hover { transform: scale(1.05); }
.fab__pulse {
  position: absolute; inset: -1px; border-radius: 9999px;
  border: 2px solid var(--brand); opacity: 0.5;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 100px; right: 24px; z-index: 70;
  background: #0a0a0a; color: #fff; padding: 14px 22px; border-radius: 9999px;
  box-shadow: var(--shadow-xl); font-size: 13px;
  animation: toastIn 0.3s ease-out;
}
.toast b { color: var(--brand); margin-right: 6px; }
@keyframes toastIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }


/* ============ EXTRAS ============ */

/* Cursor glow */
.cursor-glow {
  position: fixed; left: 0; top: 0; width: 400px; height: 400px;
  border-radius: 50%; pointer-events: none; z-index: 1;
  background: radial-gradient(circle, rgba(0,174,239,0.20) 0%, rgba(0,174,239,0.06) 35%, transparent 70%);
  mix-blend-mode: multiply; transform: translate3d(-50%, -50%, 0);
}

/* Promo strip */
.promo-strip {
  background: #0a0a0a; color: #fff; padding: 10px 20px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-size: 12px; letter-spacing: 0.06em;
  font-weight: 500;
}
.promo-strip__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); animation: pulseDot 2s ease-out infinite; }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(0,174,239,0.8); } 70% { box-shadow: 0 0 0 8px rgba(0,174,239,0); } 100% { box-shadow: 0 0 0 0 rgba(0,174,239,0); } }
.promo-strip__sep { color: rgba(255,255,255,0.3); }
.promo-strip__count b { font-family: var(--font-heading); font-size: 14px; color: var(--brand); font-weight: 600; }
@media (max-width: 700px) { .promo-strip { font-size: 11px; padding: 8px 14px; gap: 8px; } .promo-strip__sep { display: none; } }

/* Before / After */
.ba { padding: var(--pad-section) 0; background: #fff; border-top: 1px solid var(--ink-200); }
.ba__stage {
  position: relative; aspect-ratio: 16 / 9; max-height: 600px;
  border-radius: 24px; overflow: hidden; user-select: none; cursor: ew-resize;
  margin-top: 32px;
  box-shadow: var(--shadow-xl);
}
.ba__before, .ba__after { position: absolute; inset: 0; }
.ba__tag {
  position: absolute; top: 20px; padding: 8px 16px;
  font-size: 10px; letter-spacing: 0.25em; font-weight: 700;
  border-radius: 9999px; background: rgba(255,255,255,0.9); color: var(--ink-900);
}
.ba__before .ba__tag { left: 20px; }
.ba__after  .ba__tag { right: 20px; }
.ba__handle {
  position: absolute; top: 0; bottom: 0; width: 3px; background: #fff;
  transform: translateX(-50%); pointer-events: none;
  box-shadow: 0 0 24px rgba(0,0,0,0.25);
}
.ba__handle::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 48px; height: 48px; border-radius: 50%; background: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.ba__handle::after {
  content: "‹ ›"; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); color: var(--brand); font-weight: 700;
  font-size: 18px; letter-spacing: 4px;
}
.ba__meta {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 32px; align-items: end;
  margin-top: 32px;
}
.ba__meta h3 { font-family: var(--font-heading); font-size: 32px; font-weight: 600; margin: 0 0 6px; color: var(--ink-900); }
.ba__meta p  { color: var(--ink-500); margin: 0; font-size: 14px; letter-spacing: 0.05em; }
.ba__nav { display: flex; flex-direction: column; gap: 8px; }
.ba__nav button {
  background: none; border: 1px solid var(--ink-200); color: var(--ink-700);
  text-align: left; padding: 14px 20px; border-radius: 12px;
  font-size: 13px; font-weight: 500; transition: all var(--dur-base);
}
.ba__nav button:hover { border-color: var(--brand); color: var(--ink-900); }
.ba__nav button.is-on { background: var(--ink-900); color: #fff; border-color: var(--ink-900); }
@media (max-width: 800px) {
  .ba__meta { grid-template-columns: 1fr; }
  .ba__stage { aspect-ratio: 4 / 5; }
}

/* Quiz CTA */
.quiz-cta { padding: 60px 0; background: var(--ink-50); }
.quiz-cta__panel {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff; border-radius: 32px; padding: 56px;
  display: grid; grid-template-columns: 1.5fr auto; gap: 32px; align-items: center;
  position: relative; overflow: hidden;
}
.quiz-cta__panel::before {
  content: ""; position: absolute; right: -100px; top: -100px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,174,239,0.25), transparent 70%);
}
.quiz-cta__title {
  font-family: var(--font-heading); font-size: clamp(32px, 4vw, 56px);
  font-weight: 600; margin: 16px 0; line-height: 1.05; color: #fff;
}
.quiz-cta__title em { color: var(--brand); font-style: italic; font-weight: 400; }
.quiz-cta__sub { color: rgba(255,255,255,0.7); margin: 0; max-width: 460px; line-height: 1.6; font-size: 15px; }
.quiz-cta .hero__eyebrow { color: var(--brand); }
.quiz-cta .hero__eyebrow::before { background: var(--brand); }
@media (max-width: 800px) { .quiz-cta__panel { grid-template-columns: 1fr; padding: 32px; } }

.quiz-modal {
  position: fixed; inset: 0; z-index: 200; background: rgba(10,10,10,0.65);
  backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center;
  padding: 20px; animation: fadeIn 0.2s ease-out;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.quiz-modal__inner {
  background: #fff; border-radius: 24px; max-width: 640px; width: 100%;
  padding: 48px; position: relative; max-height: 90vh; overflow: auto;
  box-shadow: var(--shadow-xl);
}
.quiz-modal__close {
  position: absolute; top: 16px; right: 16px; width: 40px; height: 40px;
  border-radius: 50%; background: var(--ink-100); border: none;
  font-size: 24px; color: var(--ink-700); cursor: pointer;
}
.quiz-progress { display: flex; gap: 6px; margin-bottom: 32px; }
.quiz-progress span {
  flex: 1; height: 3px; background: var(--ink-200); border-radius: 2px;
  transition: background 0.3s;
}
.quiz-progress span.is-on { background: var(--brand); }
.quiz-step__num {
  font-size: 11px; letter-spacing: 0.3em; font-weight: 600;
  color: var(--ink-500); text-transform: uppercase;
}
.quiz-step h3 {
  font-family: var(--font-heading); font-size: 32px; font-weight: 600;
  margin: 12px 0 28px; color: var(--ink-900); line-height: 1.2;
}
.quiz-opts { display: flex; flex-direction: column; gap: 10px; }
.quiz-opt {
  background: #fff; border: 1px solid var(--ink-200); border-radius: 14px;
  padding: 18px 22px; text-align: left; font-size: 15px; color: var(--ink-900);
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; transition: all var(--dur-base);
}
.quiz-opt:hover { border-color: var(--brand); background: var(--brand-50); transform: translateX(4px); }
.quiz-opt__arrow { color: var(--brand); font-size: 18px; opacity: 0.6; }
.quiz-result h3 { font-family: var(--font-heading); font-size: 36px; font-weight: 600; margin: 12px 0 16px; color: var(--ink-900); line-height: 1.1; }
.quiz-result p  { color: var(--ink-600); line-height: 1.7; margin: 0 0 32px; font-size: 15px; }
.quiz-result__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Equipment */
.equip { padding: var(--pad-section) 0; }
.equip__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--ink-200); border: 1px solid var(--ink-200);
  margin-top: 32px;
}
@media (max-width: 900px) { .equip__grid { grid-template-columns: repeat(2, 1fr); } }
.equip__card {
  background: #fff; padding: 32px 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 140px; transition: background var(--dur-base);
}
.equip__card:hover { background: var(--brand-50); }
.equip__type {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink-500); font-weight: 600;
}
.equip__name {
  font-family: var(--font-heading); font-size: 28px; font-weight: 600;
  color: var(--ink-900); margin-top: 16px;
}

/* Reviews */
.rev { padding: var(--pad-section) 0; background: #fff; border-top: 1px solid var(--ink-200); }
.rev__nav {
  display: flex; align-items: center; gap: 16px;
  font-size: 12px; letter-spacing: 0.2em; color: var(--ink-500); font-weight: 600;
}
.rev__nav button {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--ink-200);
  background: #fff; font-size: 18px; color: var(--ink-700); cursor: pointer;
  transition: all var(--dur-base);
}
.rev__nav button:hover { background: var(--ink-900); color: #fff; border-color: var(--ink-900); }
.rev__card {
  background: var(--ink-50); border-radius: 24px; padding: 56px;
  display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: start;
  margin-top: 32px; animation: revIn 0.4s ease-out;
}
@keyframes revIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.rev__avatar {
  width: 96px; height: 96px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, #0090c8 100%);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 40px; font-weight: 600;
}
.rev__card blockquote {
  font-family: var(--font-heading); font-style: italic; font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px); line-height: 1.4;
  color: var(--ink-900); margin: 0 0 32px; grid-column: 2;
}
.rev__meta { grid-column: 2; display: flex; justify-content: space-between; align-items: center; }
.rev__name { font-weight: 600; color: var(--ink-900); margin-bottom: 4px; }
.rev__proc { font-size: 12px; color: var(--ink-500); letter-spacing: 0.06em; }
.rev__stars { color: var(--brand); letter-spacing: 4px; font-size: 14px; }
@media (max-width: 700px) {
  .rev__card { grid-template-columns: 1fr; padding: 32px; gap: 24px; }
  .rev__card blockquote, .rev__meta { grid-column: 1; }
  .rev__avatar { width: 64px; height: 64px; font-size: 28px; }
}

/* Magnetic button transition */
.hero__cta, .nav__cta, .book__submit { transition: transform 0.2s ease, background var(--dur-base); }


/* ============ EFFECTS ============ */

/* 1. Splash */
.splash {
  position: fixed; inset: 0; z-index: 9999; background: #0a0a0a; color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.5s ease;
}
.splash.is-on { opacity: 1; }
.splash.is-out { opacity: 0; transform: translateY(-3vh); transition: opacity 0.6s ease, transform 0.6s ease; }
.splash__inner { text-align: center; }
.splash__line {
  font-family: var(--font-heading); font-weight: 600;
  font-size: clamp(48px, 7vw, 96px); line-height: 1; letter-spacing: -0.02em;
  display: flex; gap: 0.3em; justify-content: center;
}
.splash__line span:nth-child(1) { animation: splashIn 0.8s 0.05s cubic-bezier(0.22,1,0.36,1) both; }
.splash__line span:nth-child(2) { color: var(--brand); animation: splashIn 0.8s 0.2s cubic-bezier(0.22,1,0.36,1) both; }
@keyframes splashIn { from { opacity: 0; transform: translateY(0.4em); } to { opacity: 1; transform: translateY(0); } }
.splash__sub {
  margin-top: 18px; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); animation: splashIn 0.8s 0.4s cubic-bezier(0.22,1,0.36,1) both;
}
.splash__bar {
  margin: 28px auto 0; width: 200px; height: 2px; background: rgba(255,255,255,0.1);
  overflow: hidden; border-radius: 1px;
}
.splash__bar i { display: block; height: 100%; background: var(--brand); animation: splashFill 1.4s 0.2s cubic-bezier(0.22,1,0.36,1) both; }
@keyframes splashFill { from { width: 0; } to { width: 100%; } }

/* 2. Scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  background: var(--brand); z-index: 999;
  transform-origin: left center; transform: scaleX(0);
  transition: transform 0.05s linear;
}

/* 3. Reveal-on-scroll */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.reveal.reveal--in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* 5. Cookie */
.cookie {
  position: fixed; left: 24px; bottom: 24px; z-index: 150; max-width: 380px;
  background: #fff; border-radius: 16px; padding: 20px;
  box-shadow: var(--shadow-xl);
  transform: translateY(120%); opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), opacity 0.4s ease;
}
.cookie.is-on { transform: translateY(0); opacity: 1; }
.cookie__txt { font-size: 12px; line-height: 1.6; color: var(--ink-700); }
.cookie__txt b { color: var(--ink-900); }
.cookie__txt a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }
.cookie__btns { display: flex; gap: 8px; margin-top: 14px; }
.cookie__btns button {
  flex: 1; padding: 10px 14px; border-radius: 10px; border: none;
  font-size: 12px; font-weight: 600; cursor: pointer; transition: all var(--dur-base);
}
.cookie__no  { background: var(--ink-100); color: var(--ink-700); }
.cookie__yes { background: var(--ink-900); color: #fff; }
.cookie__yes:hover { background: var(--brand); }
@media (max-width: 600px) { .cookie { left: 12px; right: 12px; bottom: 12px; max-width: none; } }

/* 6. Newsletter slide-in */
.news {
  position: fixed; right: 24px; bottom: 24px; z-index: 140; width: 360px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); color: #fff;
  border-radius: 20px; padding: 28px;
  transform: translateY(30px) scale(0.95); opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), opacity 0.4s ease;
  box-shadow: 0 20px 60px rgba(0,174,239,0.3);
  overflow: hidden;
}
.news::before {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,174,239,0.3), transparent 70%);
}
.news.is-on { transform: translateY(0) scale(1); opacity: 1; }
.news__x {
  position: absolute; top: 12px; right: 12px; width: 32px; height: 32px;
  border-radius: 50%; background: rgba(255,255,255,0.1); border: none;
  color: #fff; font-size: 18px; cursor: pointer; transition: background 0.2s;
}
.news__x:hover { background: rgba(255,255,255,0.2); }
.news__eyebrow {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brand); font-weight: 600; margin-bottom: 12px; position: relative;
}
.news h3 {
  font-family: var(--font-heading); font-size: 28px; font-weight: 600;
  margin: 0 0 10px; line-height: 1.1; position: relative;
}
.news p { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.7); margin: 0 0 18px; position: relative; }
.news__form { display: flex; gap: 6px; position: relative; }
.news__form input {
  flex: 1; padding: 12px 16px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05); color: #fff; font-size: 13px;
}
.news__form input::placeholder { color: rgba(255,255,255,0.4); }
.news__form input:focus { outline: none; border-color: var(--brand); }
.news__form button {
  width: 44px; height: 44px; border-radius: 10px; background: var(--brand); color: #fff;
  border: none; font-size: 18px; cursor: pointer; transition: transform 0.2s;
}
.news__form button:hover { transform: translateX(2px); }
.news__ok {
  display: none; padding: 12px 16px; border-radius: 10px;
  background: rgba(0,174,239,0.15); color: var(--brand);
  font-size: 13px; text-align: center; font-weight: 500; position: relative;
}
.news.is-done .news__form { display: none; }
.news.is-done .news__ok { display: block; }
@media (max-width: 600px) { .news { right: 12px; left: 12px; bottom: 12px; width: auto; } }

/* 7. Team card tilt */
.team__card {
  transform: perspective(1000px) rotateX(var(--rx, 0)) rotateY(var(--ry, 0));
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
  position: relative;
}
.team__card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0,174,239,0.08), transparent 50%);
  opacity: 0; transition: opacity 0.3s;
}
.team__card:hover::after { opacity: 1; }

/* 8. Marquee */
.marquee {
  background: var(--ink-900); color: #fff; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.marquee__link { display: block; padding: 28px 0; color: #fff; text-decoration: none; position: relative; transition: background 0.3s; }
.marquee__link:hover { background: rgba(0,174,239,0.08); }
.marquee__cta {
  position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  background: var(--brand); color: #fff; padding: 10px 18px; border-radius: 9999px;
  font-size: 12px; letter-spacing: 0.06em; font-weight: 600; z-index: 3;
  opacity: 0; transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.marquee__link:hover .marquee__cta { opacity: 1; transform: translateY(-50%) translateX(-4px); }
.marquee__track {
  display: flex; gap: 60px; white-space: nowrap; align-items: center;
  animation: marqueeScroll 40s linear infinite;
  width: max-content;
}
.marquee__link:hover .marquee__track { animation-play-state: paused; }
.marquee__txt {
  font-family: var(--font-heading); font-size: 28px; font-weight: 500;
  font-style: italic; letter-spacing: -0.01em; color: #fff;
}
.marquee__logo { display: inline-flex; align-items: center; color: var(--brand); opacity: 0.9; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }

/* 9. Spotlight modal */
.spotlight {
  position: fixed; inset: 0; z-index: 250; background: rgba(10,10,10,0.7);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; transition: opacity 0.3s;
}
.spotlight.is-on { opacity: 1; }
.spotlight__inner {
  background: #fff; border-radius: 24px; max-width: 880px; width: 100%;
  display: grid; grid-template-columns: 1fr 1.2fr; overflow: hidden;
  transform: translateY(20px) scale(0.96); transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  max-height: 90vh;
}
.spotlight.is-on .spotlight__inner { transform: translateY(0) scale(1); }
.spotlight__photo {
  background: linear-gradient(135deg, #c8b8a8 0%, #8a7563 100%);
  min-height: 480px;
}
.spotlight__body { padding: 48px; overflow: auto; position: relative; }
.spotlight__x {
  position: absolute; top: 16px; right: 16px; width: 40px; height: 40px;
  border-radius: 50%; background: var(--ink-100); border: none;
  font-size: 24px; cursor: pointer; z-index: 2; color: var(--ink-700);
}
.spotlight__body h3 {
  font-family: var(--font-heading); font-size: 40px; font-weight: 600;
  margin: 12px 0 6px; color: var(--ink-900); line-height: 1.1;
}
.spotlight__role { color: var(--brand); font-size: 13px; font-weight: 500; letter-spacing: 0.05em; }
.spotlight__bio { color: var(--ink-600); line-height: 1.7; margin: 24px 0; font-size: 14px; }
.spotlight__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  padding: 20px 0; border-top: 1px solid var(--ink-200); border-bottom: 1px solid var(--ink-200); margin-bottom: 24px;
}
.spotlight__stats > div { display: flex; flex-direction: column; }
.spotlight__stats b { font-family: var(--font-heading); font-size: 28px; font-weight: 600; color: var(--ink-900); }
.spotlight__stats span { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-500); margin-top: 4px; }
@media (max-width: 800px) {
  .spotlight__inner { grid-template-columns: 1fr; max-height: 95vh; }
  .spotlight__photo { min-height: 240px; }
  .spotlight__body { padding: 32px; }
}

/* 10. Konami sparks */
.spark {
  position: fixed; top: 100vh; width: 14px; height: 14px;
  background: var(--brand); pointer-events: none; z-index: 9998;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: sparkUp 1.6s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes sparkUp {
  to { transform: translate(var(--dx), var(--dy)) rotate(var(--rot)); opacity: 0; }
}

/* Anchor offset for promo strip */
html { scroll-behavior: smooth; }


/* ============ EXTRAS 2 ============ */

/* A. Contacts dock */
.dock {
  position: fixed; right: 24px; top: 50%; transform: translateY(-50%);
  z-index: 110; display: flex; flex-direction: column; gap: 10px;
}
.dock__btn {
  position: relative; width: 44px; height: 44px; border-radius: 50%;
  background: #fff; color: var(--ink-900); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12); border: none; cursor: pointer;
  transition: all 0.25s cubic-bezier(0.22,1,0.36,1);
}
.dock__btn:hover { background: var(--ink-900); color: #fff; transform: translateX(-4px); }
.dock__btn::after {
  content: attr(data-tip); position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%);
  background: var(--ink-900); color: #fff; padding: 6px 12px; border-radius: 8px;
  font-size: 11px; letter-spacing: 0.05em; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.dock__btn:hover::after { opacity: 1; }
.dock__btn--tg { background: #229ED9; color: #fff; }
.dock__btn--tg:hover { background: #1a82b8; transform: translateX(-4px); }
.dock__btn--ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.dock__btn--ig:hover { filter: brightness(0.92); transform: translateX(-4px); }
.dock__btn--top { opacity: 0; pointer-events: none; transition: opacity 0.4s, transform 0.25s; transform: translateX(20px); }
.dock--up .dock__btn--top { opacity: 1; pointer-events: auto; transform: translateX(0); }
.dock__btn--top:hover { transform: translateX(-4px); }
.dock__ring { position: absolute; inset: -6px; color: var(--brand); pointer-events: none; }
@media (max-width: 800px) { .dock { right: 12px; } .dock__btn { width: 40px; height: 40px; } .dock__btn::after { display: none; } }

/* B. Sticky CTA */
.sticky-cta {
  position: fixed; left: 50%; bottom: 16px; transform: translate(-50%, 120%);
  z-index: 120; background: #fff; border-radius: 16px;
  display: flex; align-items: center; gap: 18px; padding: 12px 16px 12px 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
  max-width: calc(100% - 32px);
}
.sticky-cta.is-on { transform: translate(-50%, 0); }
.sticky-cta__txt { display: flex; flex-direction: column; line-height: 1.3; }
.sticky-cta__txt b { font-size: 14px; color: var(--ink-900); }
.sticky-cta__txt span { font-size: 11px; color: var(--ink-500); letter-spacing: 0.05em; }
.sticky-cta__btn {
  background: var(--ink-900); color: #fff; padding: 12px 20px;
  border-radius: 10px; font-size: 13px; font-weight: 600; text-decoration: none;
  transition: background var(--dur-base);
}
.sticky-cta__btn:hover { background: var(--brand); }
.sticky-cta__x {
  width: 28px; height: 28px; border-radius: 50%; background: var(--ink-100); border: none;
  font-size: 16px; cursor: pointer; color: var(--ink-700);
}
@media (max-width: 600px) { .sticky-cta { left: 12px; right: 12px; transform: translateY(120%); } .sticky-cta.is-on { transform: translateY(0); } }

/* C. Live ticker */
.live {
  position: fixed; left: 24px; bottom: 24px; z-index: 100;
  background: #fff; border-radius: 14px; padding: 14px 18px;
  display: flex; gap: 12px; align-items: center; max-width: 320px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.14);
  transform: translateX(-110%); opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), opacity 0.3s;
}
.live.is-on { transform: translateX(0); opacity: 1; }
.live__dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; flex-shrink: 0; box-shadow: 0 0 0 0 rgba(74,222,128,0.7); animation: liveDot 2s ease-out infinite; }
@keyframes liveDot { 0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.6); } 70% { box-shadow: 0 0 0 8px rgba(74,222,128,0); } }
.live__txt { font-size: 12px; line-height: 1.4; color: var(--ink-700); }
.live__txt b { color: var(--ink-900); }
.live__txt em { font-style: normal; color: var(--brand); font-weight: 500; }
.live__txt span { display: block; font-size: 10px; color: var(--ink-500); letter-spacing: 0.05em; margin-top: 2px; text-transform: uppercase; }
@media (max-width: 600px) { .live { left: 12px; bottom: 80px; max-width: calc(100% - 24px); } }

/* D. Side dots nav */
.dots-nav {
  position: fixed; left: 24px; top: 50%; transform: translateY(-50%); z-index: 90;
  display: flex; flex-direction: column; gap: 14px;
}
.dots-nav a {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  color: var(--ink-500); font-size: 11px; letter-spacing: 0.1em;
  transition: color 0.2s;
}
.dots-nav__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--ink-300);
  transition: all 0.25s;
}
.dots-nav a.is-on { color: var(--ink-900); }
.dots-nav a.is-on .dots-nav__dot { background: var(--brand); transform: scale(1.5); box-shadow: 0 0 0 4px rgba(0,174,239,0.15); }
.dots-nav__lbl { opacity: 0; transform: translateX(-6px); transition: all 0.25s; pointer-events: none; }
.dots-nav a:hover .dots-nav__lbl { opacity: 1; transform: translateX(0); }
@media (max-width: 1100px) { .dots-nav { display: none; } }

/* E. Service cards stagger on scroll-in */
.srv__card { transition-delay: var(--stagger, 0ms); }
