:root {
  --bg: #050505;
  --bg2: #0e0e0e;
  --panel: #141414;
  --fg: #f0f0f0;
  --muted: rgba(240, 240, 240, 0.6);
  --dim: rgba(240, 240, 240, 0.38);
  --accent: #f5c518;
  --accent2: #d4a40e;
  --line: rgba(240, 240, 240, 0.14);
  --font-d: "Unbounded", system-ui, sans-serif;
  --font-b: "Inter Tight", system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1400px;
  --pad: clamp(1.25rem, 3vw, 2rem);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3 { margin: 0; font-family: var(--font-d); font-weight: 800; letter-spacing: -0.02em; line-height: 0.95; }
::selection { background: var(--accent); color: #111; }
.wrap { width: min(var(--max), calc(100% - var(--pad) * 2)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

html.has-cursor, html.has-cursor a, html.has-cursor button { cursor: none; }
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998;
  border-radius: 50%; transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-dot { width: 6px; height: 6px; background: #fff; }
.cursor-ring {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.55);
  transition: width .25s var(--ease), height .25s var(--ease), border-color .25s;
}
.cursor-ring.hover { width: 56px; height: 56px; border-color: var(--accent); }
.cursor-label {
  position: fixed; z-index: 9999; pointer-events: none;
  font-family: var(--font-d); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: #111; background: var(--accent); padding: .35rem .55rem; border-radius: 999px;
  opacity: 0; transform: translate(-50%, -130%); transition: opacity .2s;
}
.cursor-label.on { opacity: 1; }
@media (max-width: 900px), (pointer: coarse) {
  .cursor-dot, .cursor-ring, .cursor-label { display: none !important; }
  html.has-cursor, html.has-cursor a, html.has-cursor button { cursor: auto; }
}

#preloader {
  position: fixed; inset: 0; z-index: 10000; background: #050505;
  display: grid; place-items: center; overflow: hidden;
}
#preloader.done { pointer-events: none; }
.pre-inner { text-align: center; position: relative; z-index: 2; }
.pre-logo {
  width: 110px; height: 110px; border-radius: 50%; margin: 0 auto 1.2rem;
  border: 2px solid var(--accent); box-shadow: 0 0 0 10px rgba(245,197,24,.08);
  animation: prePulse 1.1s var(--ease) infinite;
}
@keyframes prePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 10px rgba(245,197,24,.08); }
  50% { transform: scale(1.04); box-shadow: 0 0 0 18px rgba(245,197,24,.04); }
}
.pre-name { font-family: var(--font-d); font-size: .72rem; letter-spacing: .28em; color: var(--accent); }
.pre-count {
  margin-top: 1.4rem; font-family: var(--font-d); font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800; color: var(--fg); font-variant-numeric: tabular-nums;
}
.pre-flash { position: absolute; inset: 0; background: var(--accent); opacity: 0; z-index: 3; pointer-events: none; }
.pre-flash.bang { animation: flashBang .35s ease-out forwards; }
@keyframes flashBang { 0% { opacity: 0; } 30% { opacity: .85; } 100% { opacity: 0; } }
.pre-curtain {
  position: absolute; left: 0; right: 0; bottom: 0; height: 100%;
  background: #050505; z-index: 4; transform-origin: top;
}
#preloader.exit .pre-curtain { animation: curtainUp .7s var(--ease) forwards; }
#preloader.exit .pre-inner { animation: fadeOut .35s ease forwards; }
@keyframes curtainUp { to { transform: translateY(-105%); } }
@keyframes fadeOut { to { opacity: 0; } }

.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s, border-color .35s, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(5,5,5,.82);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 1rem;
}
.brand {
  font-family: var(--font-d); font-weight: 800; font-size: .78rem;
  letter-spacing: .06em; text-transform: uppercase;
  display: flex; align-items: center; gap: .65rem;
}
.brand img {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--accent); object-fit: cover;
}
.brand span { display: none; }
@media (min-width: 640px) { .brand span { display: inline; } }
.nav-desk { display: none; gap: 1.5rem; align-items: center; }
@media (min-width: 980px) { .nav-desk { display: flex; } }
.nav-desk a { font-size: .82rem; font-weight: 500; color: var(--muted); transition: color .2s; }
.nav-desk a:hover { color: var(--fg); }
.header-actions { display: flex; align-items: center; gap: .55rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  font-family: var(--font-d); font-weight: 700; font-size: .7rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .85rem 1.3rem; border-radius: 999px;
  transition: transform .18s var(--ease), background .2s, color .2s, border-color .2s, box-shadow .25s;
}
.btn:active { transform: scale(.97); }
.btn-gold {
  background: var(--accent); color: #111;
  box-shadow: 0 12px 32px -12px rgba(245,197,24,.55);
}
.btn-gold:hover { background: #ffd84a; }
.btn-ghost { border: 1px solid var(--line); color: var(--fg); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 1.05rem 1.65rem; font-size: .76rem; }
.menu-btn {
  width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line);
  display: grid; place-items: center;
}
@media (min-width: 980px) { .menu-btn { display: none; } }
.menu-btn i {
  display: block; width: 18px; height: 1.5px; background: var(--fg); position: relative;
}
.menu-btn i::before, .menu-btn i::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--fg);
}
.menu-btn i::before { top: -6px; width: 12px; }
.menu-btn i::after { top: 6px; }
.mobile-nav {
  display: none; position: fixed; inset: 72px 0 0; z-index: 99;
  background: rgba(5,5,5,.97); backdrop-filter: blur(14px);
  padding: 1.5rem var(--pad); flex-direction: column; gap: .25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-d); font-size: 1.35rem; font-weight: 700;
  padding: .85rem 0; border-bottom: 1px solid var(--line);
}

.rv { opacity: 0; transform: translateY(36px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.in { opacity: 1; transform: none; }

.hero { position: relative; overflow: hidden; background: #050505; padding-top: 72px; }
.hero-stage {
  position: relative; min-height: 92svh; max-width: var(--max);
  margin: 0 auto; padding: 0 var(--pad);
}
.hero-photo {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  will-change: transform;
}
@media (min-width: 768px) { .hero-photo { justify-content: flex-end; } }
.hero-photo-inner {
  position: relative; height: 78%; width: 100%; max-width: 900px;
  animation: heroPhotoIn 1.4s var(--ease) both;
}
@media (min-width: 768px) { .hero-photo-inner { height: 94%; } }
@keyframes heroPhotoIn {
  from { opacity: 0; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1); }
}
.hero-photo-inner img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: brightness(.72) contrast(1.05);
}
@media (min-width: 768px) { .hero-photo-inner img { object-position: right center; } }
.hero-photo-fade {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 70% at 55% 45%, transparent 50%, #050505 100%);
}
.hero-content {
  position: relative; z-index: 2;
  min-height: 92svh; display: flex; flex-direction: column; justify-content: space-between;
  padding: 2.5rem 0 5rem; will-change: transform;
}
.hero-serif {
  text-align: right;
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: clamp(24px, 4vw, 52px); line-height: 1.05; color: rgba(255,255,255,.9);
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.hero-serif.on { opacity: 1; transform: none; transition-delay: .9s; }
.hero-title {
  font-family: var(--font-d); font-weight: 900; text-transform: uppercase;
  font-size: clamp(52px, 12vw, 168px); line-height: 0.88; letter-spacing: -0.03em;
  color: #fff; user-select: none;
  max-width: 100%;
  padding-right: .05em;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span {
  display: block; transform: translateY(110%);
  transition: transform .9s var(--ease);
  white-space: nowrap;
}
.hero.entered .hero-title .line > span { transform: translateY(0); }
.hero.entered .hero-title .line:nth-child(1) > span { transition-delay: .15s; }
.hero.entered .hero-title .line:nth-child(2) > span { transition-delay: .3s; }
.hero-title .line.shift { color: var(--accent); }
@media (min-width: 768px) { .hero-title .line.shift { padding-left: 12%; } }
@media (max-width: 480px) {
  .hero-title { font-size: clamp(44px, 14vw, 72px); }
  .hero-title .line.shift { padding-left: 0; }
}
.hero-mid {
  position: relative; z-index: 2;
  margin-top: 1.25rem; max-width: 34rem;
  opacity: 0; transform: translateY(16px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.hero.entered .hero-mid { opacity: 1; transform: none; transition-delay: .75s; }
.hero-mid p {
  margin: 0 0 1.15rem; color: rgba(255,255,255,.72);
  font-size: clamp(.95rem, 2vw, 1.1rem); line-height: 1.5;
}
.hero-mid .actions { display: flex; flex-wrap: wrap; gap: .65rem; }
.coach {
  background: var(--bg); border-block: 1px solid var(--line);
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.coach-grid {
  display: grid; gap: 2rem; align-items: center;
}
@media (min-width: 800px) { .coach-grid { grid-template-columns: 1fr 1.2fr; } }
.coach-shot {
  border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 4/3; background: var(--panel);
}
.coach-shot img { width: 100%; height: 100%; object-fit: cover; }
.coach h2 { font-size: clamp(1.8rem, 4vw, 3rem); text-transform: uppercase; margin-bottom: .85rem; }
.coach h2 em {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  text-transform: none; color: var(--accent);
}
.coach p { color: var(--muted); margin: 0 0 1rem; max-width: 36rem; line-height: 1.65; }
.contact-facts {
  display: grid; gap: .85rem; margin: 1.25rem 0 1.5rem;
}
.contact-facts .fact {
  display: grid; gap: .2rem;
  padding: .85rem 1rem; border: 1px solid var(--line); border-radius: 12px;
  background: rgba(255,255,255,.02);
}
.contact-facts .fact b {
  font-family: var(--font-d); font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent); font-weight: 700;
}
.contact-facts .fact span { font-weight: 600; font-size: .95rem; }
.hero-bottom {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.hero.entered .hero-bottom { opacity: 1; transform: none; transition-delay: 1.05s; }
.hero-rating .stars { color: #ffb324; letter-spacing: .15em; font-size: 15px; }
.hero-rating .score { font-size: 1.15rem; font-weight: 700; margin-left: .35rem; }
.hero-rating .sub { margin-top: .25rem; font-size: .9rem; color: rgba(255,255,255,.5); }
.hero-rating .since { margin-top: 1.4rem; font-size: .875rem; color: rgba(255,255,255,.4); }
.hero-dirs {
  text-align: right;
  font-size: clamp(18px, 2.6vw, 32px); font-weight: 500;
  line-height: 1.3; color: rgba(255,255,255,.85); list-style: none; margin: 0; padding: 0;
}

.marquee {
  border-block: 1px solid rgba(255,255,255,.1);
  background: #050505; padding: 1.15rem 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 2.5rem; width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-d); font-weight: 700; font-size: .85rem;
  letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.55);
}
.marquee-track span::after {
  content: "✦"; margin-left: 2.5rem; color: var(--accent); opacity: .7;
}
@keyframes marquee { to { transform: translateX(-50%); } }

.sec-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap;
}
.sec-eyebrow { font-size: .9rem; color: var(--muted); }
.sec-title {
  font-size: clamp(36px, 6vw, 84px); font-weight: 900; text-transform: uppercase; color: var(--fg);
}
.sec-title .dot { color: var(--accent); }

.acc-section { border-bottom: 1px solid var(--line); background: var(--bg); }
.acc-row { border-top: 1px solid var(--line); position: relative; }
.acc-btn { display: block; width: 100%; text-align: left; position: relative; }
.acc-btn-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  max-width: var(--max); margin: 0 auto; padding: 1.5rem var(--pad);
}
@media (min-width: 768px) { .acc-btn-inner { padding: 2.5rem var(--pad); } }
.acc-left { display: flex; flex: 1; align-items: baseline; gap: 1rem; }
@media (min-width: 768px) { .acc-left { gap: 2.5rem; } }
.acc-n { font-family: ui-monospace, monospace; font-size: .8rem; color: var(--accent); flex-shrink: 0; }
.acc-name {
  font-family: var(--font-d); font-weight: 900; text-transform: uppercase;
  font-size: clamp(22px, 5.2vw, 84px); line-height: 0.95; letter-spacing: -0.02em;
  color: var(--fg); transition: color .3s;
}
.acc-btn:hover .acc-name, .acc-row.open .acc-name { color: var(--accent); }
.acc-plus {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 1.35rem; color: var(--muted);
  flex-shrink: 0; transition: transform .3s, border-color .3s, color .3s;
}
@media (min-width: 768px) { .acc-plus { width: 56px; height: 56px; } }
.acc-row.open .acc-plus, .acc-btn:hover .acc-plus { border-color: var(--accent); color: var(--accent); }
.acc-row.open .acc-plus { transform: rotate(45deg); }
.acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.acc-row.open .acc-panel { grid-template-rows: 1fr; }
.acc-panel > div { overflow: hidden; }
.acc-panel-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad) 2.5rem;
  display: grid; gap: 1.5rem;
}
@media (min-width: 768px) {
  .acc-panel-inner { grid-template-columns: 1fr 1.2fr; padding-bottom: 3.5rem; }
}
.acc-en {
  font-family: var(--font-d); font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 500; text-transform: uppercase; color: var(--muted);
}
.acc-shot {
  margin-top: 1.25rem; aspect-ratio: 16/10; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line); background: var(--panel);
  opacity: 0; transform: translateY(24px) scale(.96);
  transition: opacity .6s var(--ease) .12s, transform .6s var(--ease) .12s;
}
.acc-row.open .acc-shot { opacity: 1; transform: none; }
.acc-shot img { width: 100%; height: 100%; object-fit: cover; }
.acc-desc { color: var(--muted); font-size: .95rem; line-height: 1.65; margin: 0; }
.acc-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.acc-tags span {
  border: 1px solid var(--line); border-radius: 999px;
  padding: .4rem .9rem; font-size: .75rem; color: var(--muted);
}
.acc-preview {
  pointer-events: none; position: absolute; top: 50%; z-index: 10;
  width: 280px; overflow: hidden; border-radius: 12px;
  border: 1px solid var(--line); box-shadow: 0 24px 48px rgba(0,0,0,.5);
  opacity: 0; transform: translateY(-50%) scale(.85) rotate(-4deg);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  display: none;
}
@media (min-width: 1024px) {
  .acc-preview { display: block; }
  .acc-btn:hover .acc-preview:not(.hide) {
    opacity: 1; transform: translateY(-50%) scale(1) rotate(3deg);
  }
}
.acc-preview img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

.programs { background: var(--bg); }
.prog-card {
  position: relative; min-height: 70vh; display: flex; align-items: flex-end;
  overflow: hidden; border-bottom: 1px solid var(--line);
}
.prog-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transform: scale(1.04);
  transition: transform 1.2s var(--ease);
}
.prog-card:hover img { transform: scale(1); }
.prog-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,.92) 0%, rgba(5,5,5,.35) 45%, rgba(5,5,5,.2) 100%);
}
.prog-body {
  position: relative; z-index: 1; width: 100%;
  max-width: var(--max); margin: 0 auto; padding: 3rem var(--pad) 3.5rem;
}
.prog-meta {
  display: flex; gap: 1rem; align-items: center;
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent);
  font-family: var(--font-d); font-weight: 600; margin-bottom: 1rem;
}
.prog-body h3 {
  font-size: clamp(2.4rem, 7vw, 5.5rem); text-transform: uppercase; margin-bottom: .75rem;
}
.prog-body p { max-width: 36rem; color: rgba(255,255,255,.7); margin: 0 0 1.25rem; font-size: 1.05rem; }

.schedule { background: var(--bg2); border-block: 1px solid var(--line); padding: clamp(4rem, 9vw, 7rem) 0; }
.tabs {
  display: inline-flex; gap: .3rem; padding: .3rem; margin: 2rem 0 1.5rem;
  background: var(--panel); border: 1px solid var(--line); border-radius: 999px;
}
.tab {
  padding: .7rem 1.3rem; border-radius: 999px;
  font-family: var(--font-d); font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
  transition: background .2s, color .2s;
}
.tab[aria-selected="true"] { background: var(--accent); color: #111; }
.sched-panel { display: none; }
.sched-panel.active { display: block; }
.sched-wrap {
  overflow-x: auto; border: 1px solid var(--line); border-radius: 14px;
  background: #0a0a0a; -webkit-overflow-scrolling: touch;
}
table.sched { width: 100%; border-collapse: collapse; min-width: 740px; font-size: .82rem; }
.sched th, .sched td {
  border-bottom: 1px solid var(--line);
  border-right: 1px dashed rgba(245,197,24,.2);
  padding: .75rem .55rem; vertical-align: top; text-align: left;
}
.sched th:last-child, .sched td:last-child { border-right: 0; }
.sched thead th {
  background: var(--accent); color: #111; text-align: center;
  font-family: var(--font-d); font-size: .68rem; letter-spacing: .06em;
  text-transform: uppercase; font-weight: 700;
}
.sched thead th:first-child { background: #1a1a1a; color: var(--accent); text-align: left; }
.sched tbody td:first-child {
  font-family: var(--font-d); font-weight: 700; color: var(--accent);
  white-space: nowrap; background: #121212;
}
.sched .cell { font-weight: 500; line-height: 1.35; }
.sched .cell small { display: block; color: var(--dim); font-size: .72rem; margin-top: .15rem; font-weight: 400; }
.sched tr:last-child td { border-bottom: 0; }
.sched-note { margin-top: 1rem; color: var(--dim); font-size: .85rem; }

.prices { padding: clamp(4rem, 9vw, 7rem) 0; background: var(--bg); }
.price-grid { display: grid; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 800px) { .price-grid { grid-template-columns: 1fr 1fr; } }
.price-card {
  border: 1px solid var(--line); border-radius: 16px;
  background: linear-gradient(165deg, #141414, #0d0d0d);
  padding: 1.75rem 1.5rem; position: relative; overflow: hidden;
}
.price-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.price-card h3 {
  font-size: .95rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--accent); margin-bottom: 1.25rem; font-weight: 700;
}
.price-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem; padding: .7rem 0; border-bottom: 1px solid var(--line);
}
.price-row:last-child { border-bottom: 0; }
.price-row .label { font-weight: 500; }
.price-row .label small {
  display: block; color: var(--accent); font-size: .72rem; margin-top: .15rem; font-weight: 500;
}
.price-row .val { font-family: var(--font-d); font-weight: 800; font-size: 1.05rem; white-space: nowrap; }
.price-row.featured {
  background: rgba(245,197,24,.12); margin: .4rem -.55rem; padding: .9rem .55rem;
  border-radius: 10px; border: 0;
}
.price-row.featured .val { color: var(--accent); }

.gallery-sec { background: var(--bg2); border-block: 1px solid var(--line); padding: clamp(4rem, 9vw, 7rem) 0; }
.gal-grid { display: grid; gap: .75rem; margin-top: 2.5rem; grid-template-columns: 1fr 1fr; }
@media (min-width: 800px) {
  .gal-grid { grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 240px 240px; }
  .gal-grid .g1 { grid-row: span 2; }
}
.gal-grid figure {
  margin: 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
  min-height: 160px; position: relative;
}
.gal-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gal-grid figure:hover img { transform: scale(1.05); }

.why { background: #f0f0f0; color: #0e1016; padding: clamp(4rem, 9vw, 7rem) 0; }
.why h2 { text-align: center; font-size: clamp(28px, 4.5vw, 56px); text-transform: uppercase; line-height: 1.1; }
.why h2 em {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  text-transform: none; color: #b8860b;
}
.why .lead {
  text-align: center; max-width: 36rem; margin: 1.25rem auto 0;
  color: rgba(14,16,22,.6); font-size: .95rem;
}
.why-grid { display: grid; gap: 1rem; margin-top: 3rem; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  background: #fff; border: 1px solid rgba(14,16,22,.12); border-radius: 16px;
  padding: 1.5rem 1.6rem; height: 100%;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184,134,11,.45);
  box-shadow: 0 20px 40px -20px rgba(184,134,11,.25);
}
.why-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: .65rem; }
.why-card p { margin: 0; color: rgba(14,16,22,.6); font-size: .9rem; line-height: 1.6; }

.stats { border-bottom: 1px solid var(--line); background: var(--bg); padding: clamp(4rem, 9vw, 7rem) 0; }
.stats h2 { text-align: center; font-size: clamp(28px, 4.5vw, 56px); text-transform: uppercase; line-height: 1.1; }
.stats h2 em {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  text-transform: none; color: var(--accent);
}
.stats-grid { display: grid; gap: 1.5rem; margin-top: 3rem; grid-template-columns: 1fr 1fr; }
@media (min-width: 900px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--accent); line-height: 1;
}
.stat-unit {
  display: block; font-family: var(--font-d); font-size: .75rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: .4rem;
}
.stat-label { margin-top: .55rem; font-size: .85rem; color: var(--dim); }

.reviews { background: var(--bg2); border-bottom: 1px solid var(--line); padding: clamp(4rem, 9vw, 7rem) 0; }
.rating-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem;
  margin: 1.5rem 0 2.5rem;
}
.rating-score {
  font-family: var(--font-d); font-size: 3.5rem; font-weight: 900; color: var(--accent); line-height: 1;
}
.rating-score small {
  display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-top: .35rem;
}
.rev-grid { display: grid; gap: 1rem; }
@media (min-width: 800px) { .rev-grid { grid-template-columns: repeat(3, 1fr); } }
.rev-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 14px;
  padding: 1.4rem 1.25rem;
}
.rev-card .who {
  font-family: var(--font-d); font-size: .78rem; font-weight: 700;
  display: flex; justify-content: space-between; gap: .5rem; margin-bottom: .7rem;
}
.rev-card .who span { color: var(--dim); font-family: var(--font-b); font-weight: 500; font-size: .75rem; }
.rev-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.faq { background: var(--bg); border-bottom: 1px solid var(--line); padding: clamp(4rem, 9vw, 7rem) 0; }
.faq-badge {
  display: inline-flex; align-items: center; gap: .65rem;
  font-size: .9rem; color: var(--muted); margin-bottom: .85rem;
}
.faq-badge i {
  width: 24px; height: 24px; border-radius: 50%; background: var(--accent); color: #111;
  display: grid; place-items: center; font-style: normal; font-weight: 700;
}
.faq h2 { max-width: 52rem; font-size: clamp(28px, 4.5vw, 56px); text-transform: uppercase; line-height: 1.1; }
.faq h2 em {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  text-transform: none; color: var(--accent);
}
.faq-list { margin-top: 2.5rem; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 1.35rem 0; text-align: left;
}
.faq-q span:first-child { font-size: clamp(1.05rem, 2vw, 1.5rem); font-weight: 700; }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p {
  margin: 0; padding: 0 0 1.4rem; max-width: 40rem;
  color: var(--muted); font-size: .95rem; line-height: 1.65;
}

.lead {
  background: radial-gradient(700px 280px at 50% 0%, rgba(245,197,24,.14), transparent 70%), var(--bg2);
  border-bottom: 1px solid var(--line);
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.lead-grid { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .lead-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.lead h2 { font-size: clamp(28px, 4.5vw, 52px); text-transform: uppercase; line-height: 1.08; margin-bottom: 1rem; }
.lead .sub { color: var(--muted); max-width: 28rem; margin: 0 0 1.5rem; }
.lead-form {
  display: grid; gap: .85rem;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 16px; padding: 1.5rem;
}
.lead-form label { display: grid; gap: .35rem; font-size: .8rem; color: var(--muted); }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%; background: #0a0a0a; border: 1px solid var(--line);
  border-radius: 10px; padding: .85rem 1rem; color: var(--fg);
  font: inherit; outline: none; transition: border-color .2s;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--accent); }
.lead-form textarea { min-height: 100px; resize: vertical; }
.lead-ok {
  display: none; padding: 1rem; border-radius: 10px;
  background: rgba(61,214,140,.12); color: #3dd68c; font-weight: 600;
}
.lead-ok.show { display: block; }
.map-frame {
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  min-height: 280px; background: #111; margin-top: 1.5rem;
}
.map-frame iframe { width: 100%; height: 280px; border: 0; filter: grayscale(.2) contrast(1.05); }

.footer {
  position: relative; overflow: hidden; background: #050505; color: #f0f0f0;
  padding-bottom: 2rem;
}
.footer-giant { position: relative; padding-top: 3.5rem; pointer-events: none; user-select: none; }
.footer-giant .word {
  text-align: center; white-space: nowrap;
  font-family: var(--font-d); font-weight: 900; text-transform: uppercase;
  font-size: clamp(48px, 14vw, 180px); line-height: 1; letter-spacing: -0.03em;
  color: rgba(255,255,255,.9);
}
.footer-giant .mirror {
  position: absolute; inset-inline: 0; top: 3.5rem;
  text-align: center; white-space: nowrap;
  font-family: var(--font-d); font-weight: 900; text-transform: uppercase;
  font-size: clamp(48px, 14vw, 180px); line-height: 1; letter-spacing: -0.03em;
  color: var(--accent); opacity: .55; filter: blur(22px);
  transform: translateY(14%) scaleY(-1);
}
.footer-body { max-width: var(--max); margin: 0 auto; padding: 4rem var(--pad) 0; }
.footer-tag { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.footer-tag .mark {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--accent);
  display: grid; place-items: center; color: var(--accent); font-size: 1.1rem;
}
.footer-tag strong { font-size: 1.1rem; }
.footer-desc { max-width: 32rem; color: rgba(255,255,255,.5); font-size: .9rem; margin: 0; }
.footer-cols { display: grid; gap: 2rem; margin-top: 3rem; }
@media (min-width: 768px) { .footer-cols { grid-template-columns: repeat(3, 1fr); } }
.footer-cols .col-h {
  font-size: .72rem; font-weight: 700; letter-spacing: .28em;
  text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1rem;
}
.footer-cols a, .footer-cols p {
  display: block; margin: 0 0 .65rem; font-size: .95rem; color: rgba(255,255,255,.85);
  transition: color .2s;
}
.footer-cols a:hover { color: var(--accent); }
.footer-copy {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem;
  font-size: .8rem; color: rgba(255,255,255,.4);
}

.fab {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent); color: #111;
  display: grid; place-items: center;
  box-shadow: 0 12px 28px -8px rgba(245,197,24,.7);
}
.fab svg { width: 22px; height: 22px; }
@media (min-width: 980px) { .fab { display: none; } }

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
