: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;
  --accent-ink: #f5c518;
  --line: rgba(240, 240, 240, 0.14);
  --header-bg: rgba(5, 5, 5, 0.82);
  --nav-bg: rgba(5, 5, 5, 0.97);
  --input-bg: #0a0a0a;
  --surface-deep: #0a0a0a;
  --surface-mid: #1a1a1a;
  --hero-scrim: #050505;
  --hero-on-photo: rgba(255, 255, 255, 0.9);
  --hero-on-photo-muted: rgba(255, 255, 255, 0.72);
  --hero-on-photo-dim: rgba(255, 255, 255, 0.5);
  --marquee-fg: rgba(255, 255, 255, 0.55);
  --marquee-border: rgba(255, 255, 255, 0.1);
  --footer-bg: #050505;
  --footer-fg: #f0f0f0;
  --footer-muted: rgba(255, 255, 255, 0.5);
  --footer-dim: rgba(255, 255, 255, 0.5);
  --footer-link: rgba(255, 255, 255, 0.85);
  --gift-grad-a: #0a0a0a;
  --gift-grad-b: #12100a;
  --price-card-from: #141414;
  --price-card-to: #0d0d0d;
  --theme-color: #050505;
  --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);
  color-scheme: dark;
}
html[data-theme="light"] {
  --bg: #f6f4ef;
  --bg2: #ebe7de;
  --panel: #ffffff;
  --fg: #141414;
  --muted: rgba(20, 20, 20, 0.72);
  --dim: rgba(20, 20, 20, 0.55);
  --accent: #f5c518;
  --accent2: #d4a40e;
  --accent-ink: var(--accent);
  --line: rgba(20, 20, 20, 0.22);
  --header-bg: rgba(246, 244, 239, 0.88);
  --nav-bg: rgba(246, 244, 239, 0.98);
  --input-bg: #ffffff;
  --surface-deep: #f0ece4;
  --surface-mid: #e8e2d6;
  --hero-scrim: #f6f4ef;
  --hero-on-photo: #141414;
  --hero-on-photo-muted: rgba(20, 20, 20, 0.72);
  --hero-on-photo-dim: rgba(20, 20, 20, 0.55);
  --marquee-fg: rgba(20, 20, 20, 0.65);
  --marquee-border: rgba(20, 20, 20, 0.18);
  --footer-bg: #ebe7de;
  --footer-fg: #141414;
  --footer-muted: rgba(20, 20, 20, 0.72);
  --footer-dim: rgba(20, 20, 20, 0.55);
  --footer-link: #141414;
  --gift-grad-a: #ebe7de;
  --gift-grad-b: #f6f4ef;
  --price-card-from: #ffffff;
  --price-card-to: #f0ece4;
  --theme-color: #f6f4ef;
  color-scheme: light;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; overflow-x: clip; }
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: clip;
}
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; max-width: 100%; }
@media (max-width: 480px) {
  :root { --pad: 1rem; }
}
.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;
  transition: opacity .55s var(--ease), visibility .55s;
}
#preloader.done {
  pointer-events: none; opacity: 0; visibility: hidden;
}
.pre-inner {
  text-align: center; position: relative; z-index: 2;
  transition: opacity .45s ease, transform .55s var(--ease);
}
#preloader.exit .pre-inner {
  opacity: 0; transform: scale(1.06);
}
.pre-count {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(3rem, 12vw, 6rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: #f0f0f0;
  line-height: 1;
}
.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: .75; }
  100% { 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: var(--header-bg);
  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; }
.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-ghost-on-dark {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}
.btn-ghost-on-dark: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; transition: border-color .25s; flex-shrink: 0;
}
.menu-btn i {
  display: block; width: 18px; height: 1.5px; background: var(--fg); position: relative;
  transition: background .25s;
}
.menu-btn i::before, .menu-btn i::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--fg);
  transition: transform .28s var(--ease), top .28s var(--ease), width .28s;
}
.menu-btn i::before { top: -6px; width: 12px; }
.menu-btn i::after { top: 6px; }
.menu-btn.is-open { border-color: var(--accent); }
.menu-btn.is-open i { background: transparent; }
.menu-btn.is-open i::before {
  top: 0; width: 18px; transform: rotate(45deg);
}
.menu-btn.is-open i::after {
  top: 0; width: 18px; transform: rotate(-45deg);
}
.mobile-nav {
  display: none; position: fixed; inset: 72px 0 0; z-index: 99;
  background: var(--nav-bg); 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);
  transition: color .25s, padding-left .25s, border-color .25s;
}
.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: var(--accent);
  padding-left: .65rem;
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  outline: none;
}

.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: var(--hero-scrim); 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%, var(--hero-scrim) 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: var(--hero-on-photo);
  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: var(--hero-on-photo); 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: 768px) {
  .hero-stage { min-height: auto; }
  .hero-content { min-height: auto; padding: 2.5rem 0 2rem; gap: 1.5rem; }
  .hero-photo-inner { height: 55vw; max-height: 420px; min-height: 240px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .hero-dirs { text-align: left; font-size: clamp(16px, 5vw, 22px); }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(32px, 11vw, 48px); max-width: 100%; }
  .hero-title .line { max-width: 100%; overflow: hidden; }
  .hero-title .line > span { white-space: normal; word-break: keep-all; }
  .hero-title .line.shift { padding-left: 0; }
  .hero-serif { font-size: clamp(18px, 5vw, 28px); }
  .hero-mid .actions { flex-direction: column; align-items: stretch; }
  .hero-mid .actions .btn { width: 100%; text-align: center; justify-content: center; }
  .header .btn-gold { padding: .65rem 1rem; font-size: .62rem; }
}
.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: var(--hero-on-photo-muted);
  font-size: clamp(.95rem, 2vw, 1.1rem); line-height: 1.5;
}
.hero-mid .actions { display: flex; flex-wrap: wrap; gap: .65rem; }
.team {
  background: var(--bg); border-block: 1px solid var(--line);
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.team-lead {
  color: var(--muted); max-width: 36rem; margin: 1rem 0 0; line-height: 1.6;
}
.team-grid {
  display: grid; gap: 1rem; margin-top: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 14px;
  padding: 1rem 1rem 1.15rem; transition: border-color .25s, transform .25s, box-shadow .25s;
  display: block; color: inherit; text-decoration: none; cursor: pointer;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.team-card:hover { border-color: rgba(245,197,24,.35); transform: translateY(-3px); }
.team-photo {
  position: relative; aspect-ratio: 1; border-radius: 12px; overflow: hidden;
  background: linear-gradient(145deg, var(--surface-mid), var(--surface-deep));
  border: 1px solid var(--line); margin-bottom: .9rem;
  display: grid; place-items: center;
}
.team-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 12%;
  image-rendering: auto;
  z-index: 1;
}
.team-ini {
  font-family: var(--font-d); font-weight: 800; font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: .08em; color: var(--accent); z-index: 0;
  opacity: .92;
}
.team-photo::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(245,197,24,.12), transparent 55%);
  pointer-events: none;
}
.team-card h3 {
  font-size: .95rem; font-weight: 700; line-height: 1.25;
  text-transform: none; letter-spacing: -0.01em; margin-bottom: .3rem;
}
.team-card .role {
  margin: 0; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
}
.team-card .spec {
  margin: .45rem 0 0; color: var(--muted); font-size: .85rem; line-height: 1.4;
}
.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: color-mix(in srgb, var(--fg) 2%, transparent);
}
.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: var(--hero-on-photo-dim); }
.hero-rating .since { margin-top: 1.4rem; font-size: .875rem; color: var(--hero-on-photo-dim); }
.hero-dirs {
  text-align: right;
  font-size: clamp(18px, 2.6vw, 32px); font-weight: 500;
  line-height: 1.3; color: var(--hero-on-photo); list-style: none; margin: 0; padding: 0;
}

.marquee {
  border-block: 1px solid var(--marquee-border);
  background: var(--bg); 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: var(--marquee-fg);
}
.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);
  transition: background .3s;
}
.acc-btn:hover .acc-btn-inner { background: rgba(245,197,24,.04); }
@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, transform .3s var(--ease);
  display: inline-block;
}
.acc-btn:hover .acc-name, .acc-row.open .acc-name { color: var(--accent); }
.acc-btn:hover .acc-name { transform: translateX(6px); }
@media (max-width: 899px) {
  .acc-btn-inner { gap: .75rem; }
  .acc-left {
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: .35rem;
  }
  .acc-name {
    display: block;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    font-size: clamp(20px, 6.5vw, 30px);
  }
  .acc-btn:hover .acc-name { transform: none; }
  .sec-title {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(26px, 8.5vw, 40px);
  }
}
.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-scroll { display: contents; }
.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, color-mix(in srgb, var(--hero-scrim) 92%, transparent) 0%, color-mix(in srgb, var(--hero-scrim) 35%, transparent) 45%, color-mix(in srgb, var(--hero-scrim) 20%, transparent) 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;
  color: #fff;
}
.prog-body p { max-width: 36rem; color: var(--hero-on-photo-muted); margin: 0 0 1.25rem; font-size: 1.05rem; }

@media (max-width: 899px) {
  .prog-scroll {
    display: flex;
    gap: .75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    padding: 0 var(--pad) 1.25rem;
    scroll-padding-inline: var(--pad);
    scrollbar-width: none;
  }
  .prog-scroll::-webkit-scrollbar { display: none; }
  .prog-card {
    flex: 0 0 min(82vw, 360px);
    min-height: 420px;
    scroll-snap-align: start;
    border-radius: 16px;
    border: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .prog-body { padding: 1.75rem 1.25rem 1.85rem; }
  .prog-body h3 { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .prog-body p { font-size: .95rem; margin-bottom: 1rem; }
}

.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: var(--surface-deep); -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
table.sched { width: 100%; border-collapse: separate; border-spacing: 0; 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;
  position: sticky; top: 0; z-index: 1;
}
.sched thead th:first-child,
.sched tbody td:first-child {
  position: sticky; left: 0; z-index: 2;
  box-shadow: 6px 0 12px -8px rgba(0,0,0,.75);
}
.sched thead th:first-child {
  z-index: 4; background: var(--surface-mid); 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: var(--surface-deep); z-index: 2;
}
.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: 900px) {
  .price-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 899px) {
  .price-grid {
    display: flex;
    gap: .75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    margin-inline: calc(var(--pad) * -1);
    padding-inline: var(--pad);
    scroll-padding-inline: var(--pad);
    scrollbar-width: none;
  }
  .price-grid::-webkit-scrollbar { display: none; }
  .price-card {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: start;
  }
}
.price-card {
  border: 1px solid var(--line); border-radius: 16px;
  background: linear-gradient(165deg, var(--price-card-from), var(--price-card-to));
  padding: 1.75rem 1.5rem; position: relative; overflow: hidden;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.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.35fr 1fr 1fr;
    grid-auto-rows: 220px;
  }
  .gal-grid .g1 { grid-row: span 2; }
}
@media (max-width: 799px) {
  .gal-grid .g1 { grid-column: 1 / -1; min-height: 280px; }
}
.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; object-position: center 20%;
  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-grid { display: grid; gap: 1rem; margin-top: 3rem; }
@media (min-width: 900px) { .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,.72); font-size: .9rem; line-height: 1.6; }
@media (max-width: 899px) {
  .why-grid {
    display: flex;
    gap: .75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    margin-inline: calc(var(--pad) * -1);
    padding-inline: var(--pad);
    scroll-padding-inline: var(--pad);
    scrollbar-width: none;
  }
  .why-grid::-webkit-scrollbar { display: none; }
  .why-card {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: start;
    height: auto;
  }
}

.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;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.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: var(--input-bg); 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;
  width: 100%;
}
.map-frame > ymaps,
.map-frame iframe,
.map-frame > div {
  width: 100% !important;
  max-width: 100%;
}
.map-frame iframe { height: 400px; border: 0; display: block; }
@media (max-width: 700px) {
  .map-frame { min-height: 260px; }
  .map-frame iframe { height: 280px; }
}

.footer {
  position: relative; overflow: hidden; background: var(--footer-bg); color: var(--footer-fg);
  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: var(--footer-link);
}
.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: var(--footer-muted); 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: var(--footer-dim); margin-bottom: 1rem;
}
.footer-cols a, .footer-cols p {
  display: block; margin: 0 0 .65rem; font-size: .95rem; color: var(--footer-link);
  transition: color .2s;
}
.footer-cols a:hover { color: var(--accent); }
.footer-copy,
.footer-bottom {
  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: var(--footer-dim);
}
.footer-bottom a:hover { color: var(--accent); }

@media (max-width: 480px) {
  .footer-giant .word,
  .footer-giant .mirror { font-size: clamp(40px, 18vw, 72px); }
  .prog-card { min-height: 420px; }
}
@media (max-width: 380px) {
  .header-actions { gap: .35rem; }
  .header-actions .btn { padding: .7rem .85rem; font-size: .65rem; }
  .theme-toggle { padding: 0 .65rem; gap: .3rem; }
  .theme-toggle-text { font-size: .62rem; letter-spacing: .06em; }
}

.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; } }

/* —— Soft prices / gift / why photo —— */
@media (min-width: 900px) {
  .price-grid-soft { grid-template-columns: repeat(3, 1fr); }
}
.price-soft { color: var(--muted); font-size: .92rem; line-height: 1.55; margin: 0 0 1rem; }
.price-bullets { margin: 0; padding-left: 1.1rem; color: var(--fg); font-size: .9rem; line-height: 1.7; }
.price-bullets li::marker { color: var(--accent); }
.price-cta-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.legal-note { color: var(--dim); font-size: .8rem; line-height: 1.5; }
.legal-note a { color: var(--accent); text-decoration: underline; }

.gift {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: linear-gradient(180deg, var(--gift-grad-a), var(--gift-grad-b));
  border-block: 1px solid var(--line);
}
.gift-grid {
  display: grid; gap: 2rem; align-items: center;
}
@media (min-width: 860px) { .gift-grid { grid-template-columns: 1.1fr .9fr; gap: 3rem; } }
.gift-copy p { color: var(--muted); max-width: 36rem; line-height: 1.65; margin: 1rem 0 1.25rem; }
.gift-bullets { margin: 0 0 1.5rem; padding-left: 1.1rem; line-height: 1.8; }
.gift-bullets li::marker { color: var(--accent); }
.gift-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.gift-card {
  border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(212, 175, 55, .28);
  background: var(--surface-deep);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, .08),
    0 22px 48px -16px rgba(0,0,0,.75),
    0 0 40px -12px rgba(212, 175, 55, .12);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.gift-card:hover {
  border-color: rgba(212, 175, 55, .45);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, .14),
    0 26px 56px -14px rgba(0,0,0,.8),
    0 0 48px -8px rgba(212, 175, 55, .18);
}
.gift-card img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 3 / 2; object-fit: contain;
  object-position: center;
  background: var(--surface-deep);
}
.gift-card-inner { display: none; }

.why-photo {
  margin: 1.75rem auto 0; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(0,0,0,.08); aspect-ratio: 16/9;
  max-width: 920px;
}
.why-photo-solo { width: 100%; }
.why-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; }
.why-lead-row { display: none; }
.why .lead { display: none; }

.consent-check {
  display: flex; gap: .65rem; align-items: flex-start;
  font-size: .8rem; color: var(--muted); line-height: 1.45;
}
.consent-check input { margin-top: .2rem; flex-shrink: 0; }
.consent-check a { color: var(--accent); text-decoration: underline; }
.medical-disclaimer {
  margin-top: 1.75rem; color: var(--dim); font-size: .85rem; line-height: 1.55; max-width: 42rem;
}
.medical-disclaimer a { color: var(--accent); }

.cookie-bar {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 120;
  background: var(--panel); border: 1px solid var(--line); border-radius: 14px;
  padding: 1rem 1.1rem; display: flex; flex-wrap: wrap; gap: .85rem;
  align-items: center; justify-content: space-between;
  box-shadow: 0 16px 40px -12px rgba(0,0,0,.35);
}
.cookie-bar[hidden] { display: none !important; }
.cookie-bar p { margin: 0; flex: 1; min-width: 220px; font-size: .85rem; color: var(--muted); line-height: 1.5; }
.cookie-bar a { color: var(--accent); }

/* —— Subpages —— */
body.subpage { padding-top: 72px; background: var(--bg); color: var(--fg); }
.back-link {
  display: inline-block; margin: 1.5rem 0 1rem; color: var(--muted); font-size: .9rem;
}
.back-link:hover { color: var(--accent); }
.coach-page { padding-bottom: 4rem; }
.coach-hero {
  display: grid; gap: 1.75rem; align-items: start; margin-bottom: 2rem;
}
.coach-copy { order: 2; }
.coach-photo { order: 1; margin-bottom: 0 !important; width: 100%; max-width: none; }
@media (min-width: 800px) {
  .coach-hero {
    grid-template-columns: 1fr 1.15fr;
    gap: 2.5rem;
    align-items: start;
  }
  .coach-copy { order: 1; }
  .coach-photo { order: 2; min-height: 380px; max-width: none; }
}
.coach-page h1 {
  font-family: var(--font-d); font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: .35rem 0 .5rem; text-transform: uppercase;
}
.coach-bio { margin-top: 1.5rem; }
.coach-bio h2 { font-size: 1.1rem; margin: 0 0 1rem; color: var(--accent); text-transform: uppercase; letter-spacing: .06em; }
.coach-bio p { color: var(--muted); line-height: 1.7; margin: 0 0 1rem; max-width: 40rem; }
.coach-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

.legal-page { padding: 1rem 0 4rem; max-width: 48rem; }
.legal-page h1 { font-family: var(--font-d); font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 0 0 1rem; }
.legal-page h2 { font-size: 1.05rem; margin: 1.75rem 0 .75rem; color: var(--accent); }
.legal-page p, .legal-page li { color: var(--muted); line-height: 1.7; }
.legal-page ul { padding-left: 1.2rem; }
.legal-page a { color: var(--accent); }
.legal-meta { color: var(--dim); font-size: .85rem; margin-bottom: 1.5rem; }

.blog-index { padding: 2rem 0 4rem; }
.blog-intro { color: var(--muted); max-width: 36rem; line-height: 1.65; margin: 1rem 0 2rem; }
.blog-list { display: grid; gap: 1rem; }
.blog-card {
  border: 1px solid var(--line); border-radius: 14px; background: var(--panel);
  transition: border-color .25s, transform .25s;
}
.blog-card:hover { border-color: rgba(245,197,24,.35); transform: translateY(-2px); }
.blog-card a { display: block; padding: 1.35rem 1.4rem; color: inherit; text-decoration: none; }
.blog-card h2 { font-size: 1.15rem; margin: 0 0 .65rem; line-height: 1.3; }
.blog-card p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.55; }
.blog-more { display: inline-block; margin-top: .85rem; color: var(--accent); font-size: .85rem; font-weight: 600; }
.blog-post { padding: 1rem 0 4rem; max-width: 42rem; }
.blog-post h1 { font-family: var(--font-d); font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 0 0 1.25rem; line-height: 1.2; }
.blog-post h2 { font-size: 1.15rem; margin: 1.75rem 0 .75rem; color: var(--accent); }
.blog-post p { color: var(--muted); line-height: 1.75; margin: 0 0 1rem; }
.blog-post a { color: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .acc-btn:hover .acc-name { transform: none; }
  .mobile-nav a:hover { padding-left: 0; }
}


/* —— Theme toggle —— */
.theme-toggle {
  position: relative;
  width: auto; min-width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: 0 .85rem;
  color: var(--fg);
  transition: border-color .25s, color .25s, background .25s;
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }
.theme-toggle svg { width: 18px; height: 18px; display: block; flex-shrink: 0; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
html[data-theme="light"] .theme-toggle .icon-sun { display: block; }
html[data-theme="light"] .theme-toggle .icon-moon { display: none; }
.theme-toggle-text {
  font-family: var(--font-d);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.theme-toggle::after {
  content: "Переключить тему";
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  padding: .4rem .65rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--fg);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
  box-shadow: 0 8px 20px -10px rgba(0, 0, 0, .45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 80;
}
.theme-toggle:hover::after,
.theme-toggle:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 900px), (pointer: coarse) {
  .theme-toggle::after { display: none; }
}

/* Light: gift card chrome */
html[data-theme="light"] .gift-card {
  border-color: rgba(0,0,0,.22);
  box-shadow: 0 18px 40px -18px rgba(0,0,0,.35);
}
html[data-theme="light"] .gift-card:hover {
  border-color: rgba(224, 176, 16, .45);
}
html[data-theme="light"] .sched thead th:first-child,
html[data-theme="light"] .sched tbody td:first-child {
  box-shadow: 6px 0 12px -8px rgba(0,0,0,.15);
}
html[data-theme="light"] .header.scrolled {
  background: var(--header-bg);
}
/* Light hero: brighter photo, ghost CTA as normal ghost */
html[data-theme="light"] .hero-photo-inner img {
  filter: brightness(.92) contrast(1.02);
}
html[data-theme="light"] .btn-ghost-on-dark {
  border: 1px solid var(--line);
  color: var(--fg);
  background: transparent;
}
html[data-theme="light"] .btn-ghost-on-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
}
/* Programs stay dark-on-photo (white h3); don't inherit cream hero-scrim */
html[data-theme="light"] .prog-card::after {
  background: linear-gradient(
    to top,
    color-mix(in srgb, #050505 92%, transparent) 0%,
    color-mix(in srgb, #050505 35%, transparent) 45%,
    color-mix(in srgb, #050505 20%, transparent) 100%
  );
}
html[data-theme="light"] .prog-body p {
  color: rgba(255, 255, 255, 0.78);
}
/* Light footer: soft giant word */
html[data-theme="light"] .footer-giant .word {
  color: rgba(20, 20, 20, 0.12);
}
html[data-theme="light"] .btn-gold {
  box-shadow: 0 12px 28px -14px rgba(180,140,10,.45);
}
html[data-theme="light"] .blog-card {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
html[data-theme="light"] .lead-form {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

/* —— Show more (team / gallery) —— */
#team.is-collapsed .team-card:nth-child(n+5) { display: none; }
#gallery.is-collapsed .gal-grid > figure:nth-child(n+5) { display: none; }
.show-more-wrap {
  display: flex; justify-content: center; margin-top: 1.75rem;
}
.show-more-btn {
  min-width: 12rem;
}
