/* ─── Marina Lodvikova · «Сфера» — private banking edition ─── */

:root {
  /* Тёмная палитра hero */
  --ink:        #0E0E0E;
  --ink-deep:   #050505;
  --carbon:     #1A1816;
  --carbon-2:   #2A2520;
  --gold:       #B69968;
  --gold-soft:  #8C7649;
  --gold-glow:  rgba(182, 153, 104, 0.18);

  /* Светлая палитра секций */
  --ivory:      #FAF7F0;
  --paper:      #F4EFE3;
  --paper-deep: #ECE5D2;
  --graphite:   #2A2520;
  --graphite-2: #56504A;
  --graphite-soft: #756E66;
  --hairline:   rgba(42, 37, 32, 0.16);
  --hairline-soft: rgba(42, 37, 32, 0.08);

  /* Акценты */
  --terracotta: #8E4936;

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  --w-container: 1200px;
  --w-narrow:    760px;
}

/* ─── SPLASH — «вход в клуб» ─── */
.splash {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  transition:
    opacity 1.6s cubic-bezier(0.55, 0, 0.15, 1),
    transform 1.8s cubic-bezier(0.55, 0, 0.15, 1),
    filter   1.4s cubic-bezier(0.55, 0, 0.15, 1);
}
.splash::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.45 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.splash--exit {
  opacity: 0;
  transform: scale(1.18);
  filter: blur(10px);
  pointer-events: none;
}
/* На exit эмблема «улетает» крупнее остального — ощущение полёта сквозь сферу */
.splash--exit .splash-mark {
  animation: splash-mark-zoom 1.6s cubic-bezier(0.55, 0, 0.15, 1) forwards;
}
@keyframes splash-mark-zoom {
  to { transform: scale(1.9); opacity: 0; filter: blur(2px); }
}
.splash--exit .splash-word,
.splash--exit .splash-tagline,
.splash--exit .splash-hint {
  animation: splash-text-out 0.7s cubic-bezier(0.55, 0, 0.15, 1) forwards;
}
@keyframes splash-text-out {
  to { opacity: 0; transform: translateY(-6px); }
}
.splash-mark {
  display: block;
  width: clamp(220px, 30vw, 340px);
  height: clamp(220px, 30vw, 340px);
  color: var(--gold);
  margin: 0;
  position: relative;
  z-index: 1;
  animation: splash-breathe 4.5s ease-in-out infinite;
  transform-origin: center;
  transition: filter 0.4s ease;
}

/* «Дыхание» — более выраженный, живой пульс */
@keyframes splash-breathe {
  0%, 100% { transform: scale(1);    }
  50%      { transform: scale(1.085); }
}

/* Пульс свечения за кольцами — чуть в противофазе с breath */
.splash-glow {
  transform-origin: 100px 100px;
  animation: splash-glow-pulse 5s ease-in-out infinite;
}
@keyframes splash-glow-pulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.06); }
}

/* Орбитальные точки — каждая своя скорость и направление */
.orbit {
  transform-origin: 100px 100px;
  transform-box: view-box;
}
.orbit-outer  { animation: orbit-cw  42s linear infinite; }
.orbit-middle { animation: orbit-ccw 28s linear infinite; }
.orbit-inner  { animation: orbit-cw  18s linear infinite; }

@keyframes orbit-cw {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}
@keyframes orbit-ccw {
  from { transform: rotate(0deg);    }
  to   { transform: rotate(-360deg); }
}

/* Уважаем prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .splash-mark,
  .splash-glow,
  .orbit { animation: none !important; }
}
.splash-word {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5.4vw, 3.8rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  padding-left: 0.42em; /* оптический центр при letter-spacing */
  margin: 0;
  position: relative;
  z-index: 1;
}
.splash-tagline {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  line-height: 1.45;
  max-width: 560px;
  color: rgba(234, 230, 220, 0.85);
  margin: 0 0 clamp(48px, 7vw, 72px);
  position: relative;
  z-index: 1;
}
.splash-tagline em {
  font-style: italic;
  color: var(--gold);
}
/* Кнопка-обёртка вокруг сферы — клик по эмблеме = вход */
.splash-mark-btn {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: clamp(20px, 3vw, 32px) 0;
  cursor: pointer;
  position: relative;
  z-index: 1;
  outline: none;
  transition: filter 0.4s ease;
  border-radius: 50%;
}
.splash-mark-btn:hover .splash-mark,
.splash-mark-btn:focus-visible .splash-mark {
  filter: drop-shadow(0 0 24px rgba(182, 153, 104, 0.35));
}
.splash-mark-btn:focus-visible {
  outline: 1px solid rgba(182, 153, 104, 0.5);
  outline-offset: 12px;
}
.splash-mark-btn:active {
  opacity: 0.92;
}

/* Подсказка под tagline — что сфера кликабельна */
.splash-hint {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: rgba(182, 153, 104, 0.6);
  margin: clamp(24px, 3vw, 36px) 0 0;
  position: relative;
  z-index: 1;
  animation: hint-pulse 3.5s ease-in-out infinite;
}
@keyframes hint-pulse {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 0.9; }
}

@media (max-width: 560px) {
  .splash { padding: 30px; }
  .splash-word { font-size: 2rem; letter-spacing: 0.36em; padding-left: 0.36em; }
  .splash-tagline { font-size: 1.05rem; max-width: 320px; }
  .splash-hint { font-size: 0.85rem; margin-top: 28px; }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--serif);
  color: var(--graphite);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

.container {
  width: min(100% - 40px, var(--w-container));
  margin: 0 auto;
}
.narrow { max-width: var(--w-narrow); margin-left: auto; margin-right: auto; }

/* ─── Топ-бар ─── */
.topbar {
  position: relative;
  z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 32px;
  font-family: var(--sans);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.brand:hover { opacity: 0.85; }
.brand-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  color: var(--gold);
}
.brand-word {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 2px;  /* оптическое выравнивание с центром круга */
}
.topnav {
  display: flex; gap: 28px; align-items: center;
}
.topnav a {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  transition: color 0.2s ease;
}
.topnav a:hover { color: var(--gold); }
.topnav .nav-cta {
  border: 1px solid var(--gold-soft);
  padding: 9px 18px;
  color: var(--gold);
}
.topnav .nav-cta:hover {
  background: var(--gold-glow);
}

/* ─── HERO (тёмный) ─── */
.hero {
  background: var(--ink);
  color: #EAE6DC;
  padding: 0 0 clamp(80px, 12vw, 140px);
  border-bottom: 1px solid rgba(182, 153, 104, 0.18);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 20%, var(--gold-glow), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.025), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
/* Зернистость — бархат на ink */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.42;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.45 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Видимая дышащая сфера в hero — центральный визуальный элемент */
.hero-sphere {
  display: block;
  width: clamp(180px, 26vw, 280px);
  height: clamp(180px, 26vw, 280px);
  margin: clamp(36px, 5vw, 56px) auto;
  color: var(--gold);
  position: relative;
  z-index: 2;
  animation: splash-breathe 4.5s ease-in-out infinite;
  transform-origin: center;
}
.hero-sphere-glow {
  transform-origin: 100px 100px;
  animation: splash-glow-pulse 5s ease-in-out infinite;
}
/* Обёртка сферы — нейтральная, центрирование на SVG */
.hero-sphere-wrap { display: block; }
/* Кольца вращаются по скроллу (JS) — свечение остаётся на месте */
.hero-rings {
  transform-box: view-box;
  transform-origin: 100px 100px;
  will-change: transform;
}
.hero-inner {
  position: relative;
  z-index: 3;
  padding-top: clamp(40px, 8vw, 100px);
  text-align: center;
}
/* ─── Pill «Приём по рекомендации» — закрытый клуб vibe ─── */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  margin-bottom: clamp(28px, 4vw, 44px);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(234, 230, 220, 0.82);
  border: 1px solid rgba(182, 153, 104, 0.38);
  border-radius: 999px;
  background: rgba(182, 153, 104, 0.05);
}
.hero-pill-ico { color: var(--gold); flex: 0 0 auto; }
.hero-pill-sep { color: rgba(182, 153, 104, 0.5); }

/* ─── HERO Title (private banking, не монументальный) ─── */
.hero-title--private {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  letter-spacing: -0.005em;
  line-height: 1.08;
  margin: 0 0 clamp(28px, 4vw, 44px);
  color: #F2EEE4;
  text-transform: none;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.hero-title--private em {
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0;
  font-weight: 300;
}

/* ─── Lede — короткий и сильный ─── */
.hero-lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.45;
  max-width: 680px;
  margin: 0 auto 18px;
  color: rgba(234, 230, 220, 0.92);
}
.hero-lede em {
  font-style: italic;
  color: var(--gold);
}
.hero-sublede {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.55;
  max-width: 620px;
  margin: 0 auto clamp(40px, 5vw, 56px);
  color: rgba(234, 230, 220, 0.62);
}

/* ─── Главный CTA ─── */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 44px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold);
  border-radius: 999px;
  box-shadow: 0 8px 28px -10px rgba(182, 153, 104, 0.45);
  transition: background 0.3s ease, color 0.3s ease, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, letter-spacing 0.3s ease;
}
.hero-cta:hover {
  background: #C9A977;
  border-color: #C9A977;
  transform: translateY(-2px);
  letter-spacing: 0.36em;
  box-shadow: 0 14px 36px -10px rgba(182, 153, 104, 0.55);
}
.hero-cta .arrow {
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0;
}
.hero-sub-cta {
  display: block;
  margin: 18px 0 0;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(234, 230, 220, 0.45);
}

/* ─── Scroll-down indicator — «узнать о группе ↓» ─── */
.hero-scroll-down {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: clamp(44px, 6vw, 68px) auto 0;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(182, 153, 104, 0.62);
  text-decoration: none;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}
.hero-scroll-down:hover { color: var(--gold); }
.scroll-arrow {
  display: block;
  color: rgba(182, 153, 104, 0.5);
  animation: scroll-arrow-bounce 2.4s ease-in-out infinite;
}
.hero-scroll-down:hover .scroll-arrow { color: var(--gold); }
@keyframes scroll-arrow-bounce {
  0%, 100% { transform: translateY(0);   opacity: 0.45; }
  50%      { transform: translateY(8px); opacity: 1;    }
}

/* ─── 3 stats — hairlines + caption (closed-club tone) ─── */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 760px;
  margin: clamp(54px, 7vw, 84px) auto 0;
  border-top: 1px solid rgba(182, 153, 104, 0.22);
  border-bottom: 1px solid rgba(182, 153, 104, 0.22);
}
.hero-stat {
  padding: 26px 18px;
  text-align: center;
  border-left: 1px solid rgba(182, 153, 104, 0.12);
}
.hero-stat:first-child { border-left: 0; }
.hero-stat-num {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.1;
  color: var(--gold);
  margin-bottom: 8px;
}
.hero-stat-cap {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(234, 230, 220, 0.55);
  line-height: 1.4;
}

/* ─── Общая секция (светлая) ─── */
.section {
  padding: clamp(80px, 11vw, 160px) 0;
  position: relative;
}
.section--paper { background: var(--paper); }
.section--ivory { background: var(--ivory); }
.section--ink   { background: var(--ink); color: #EAE6DC; }

.section-head {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 84px);
}
.section-kicker {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 22px;
}
.section--ink .section-kicker { color: rgba(182, 153, 104, 0.85); }
.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
  color: var(--graphite);
}
.section--ink .section-title { color: #F2EEE4; }
.section-title em {
  font-style: italic;
  color: var(--gold-soft);
}
.section--ink .section-title em { color: var(--gold); }
.title-alias {
  font-style: italic;
  font-size: 0.5em;
  color: var(--gold-soft);
  letter-spacing: 0.02em;
  vertical-align: baseline;
}
.section-lede {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-style: italic;
  font-weight: 300;
  color: var(--graphite-2);
  margin: 24px auto 0;
  max-width: 680px;
  line-height: 1.55;
}
.section--ink .section-lede { color: rgba(234, 230, 220, 0.78); }

/* ─── ДЛЯ КОГО ─── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, 4vw, 60px) clamp(40px, 5vw, 80px);
  max-width: 920px; margin: 0 auto;
}
.audience-item {
  border-left: 1px solid var(--hairline);
  padding-left: clamp(20px, 2.5vw, 30px);
}
.audience-item h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-soft);
  margin: 0 0 12px;
}
.audience-item p {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--graphite);
  margin: 0;
}

/* ─── ТРИ СФЕРЫ ─── */
.spheres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
.sphere {
  padding: clamp(36px, 4vw, 56px) clamp(28px, 3vw, 40px);
  background: var(--ivory);
  border-top: 1px solid var(--gold-soft);
  position: relative;
  overflow: hidden;
}
/* Большой полупрозрачный номер на фоне карточки */
.sphere::before {
  content: attr(data-num);
  position: absolute;
  top: -0.18em;
  right: 0.1em;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 11rem;
  line-height: 1;
  color: var(--gold-soft);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.sphere > * { position: relative; z-index: 1; }
.sphere-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-soft);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.sphere h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  letter-spacing: -0.005em;
  margin: 0 0 18px;
  color: var(--graphite);
}
.sphere h3 em {
  font-style: italic;
  color: var(--gold-soft);
}
.sphere p {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--graphite-2);
  margin: 0 0 14px;
}
.sphere ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.sphere ul li {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--graphite-soft);
  padding: 7px 0;
  border-top: 1px solid var(--hairline-soft);
}

/* ─── ЧТО ВНУТРИ (программа) ─── */
.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 60px);
  max-width: 1000px;
  margin: 0 auto;
}
.program-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--hairline);
}
.program-num {
  flex: 0 0 64px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.program-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.45rem;
  margin: 0 0 10px;
  color: var(--graphite);
}
.program-body p {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--graphite-2);
  margin: 0;
}

/* ─── ФОРМАТ РАЗБОРА ─── */
.format-list {
  max-width: 760px;
  margin: 0 auto;
}
.format-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 36px;
  padding: 28px 0;
  border-top: 1px solid var(--hairline);
}
.format-item:last-child { border-bottom: 1px solid var(--hairline); }
.format-time {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  padding-top: 4px;
}
.format-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 1.35rem;
  margin: 0 0 8px;
  color: var(--graphite);
}
.format-body p {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--graphite-2);
  margin: 0;
}

/* ─── ТОП-ЭКСПЕРТ (ink секция) ─── */
.expert {
  text-align: center;
}
.expert-quote {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.4;
  color: rgba(234, 230, 220, 0.92);
  max-width: 820px;
  margin: 0 auto 36px;
}
.expert-quote em {
  font-style: italic;
  color: var(--gold);
}
.expert-examples {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
  margin-top: 16px;
  padding: 24px 36px;
  border: 1px solid rgba(182, 153, 104, 0.28);
}
.expert-example {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(234, 230, 220, 0.74);
}
.expert-example::before {
  content: '·';
  color: var(--gold);
  margin-right: 10px;
}
.expert-example:first-child::before { content: none; }

/* ─── МАРИНА ─── */
.marina-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.marina-photo {
  margin: 0;
  background: var(--paper);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  filter: saturate(0.97);
  box-shadow: 0 1px 0 rgba(42, 37, 32, 0.05), 0 30px 60px -40px rgba(42, 37, 32, 0.22);
}
.marina-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.marina-name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  letter-spacing: -0.005em;
  margin: 0 0 8px;
  color: var(--graphite);
}
.marina-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-soft);
  margin: 0 0 18px;
}
.marina-intro {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--graphite-2);
  margin: 0 0 28px;
}
.marina-creds {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}
.cred-block {
  border-top: 1px solid var(--hairline);
  padding-top: 22px;
}
.cred-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 10px;
}
.cred-block p {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--graphite);
  margin: 0;
}

/* ─── ФИЛОСОФИЯ ─── */
.philosophy {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.philosophy p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--graphite);
  margin: 0 0 20px;
}
.philosophy p em {
  color: var(--gold-soft);
  font-style: italic;
}
.philosophy-sign {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 28px;
}

/* ─── ЦЕНА ─── */
.price {
  text-align: center;
  background: var(--ink);
  color: #EAE6DC;
  padding: clamp(80px, 10vw, 130px) 0;
  border-top: 1px solid rgba(182,153,104,0.2);
  border-bottom: 1px solid rgba(182,153,104,0.2);
}
.price-kicker {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(182, 153, 104, 0.85);
  margin-bottom: 28px;
}
.price-amount {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(4rem, 9vw, 7rem);
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--gold);
}
.price-amount .ruble {
  font-size: 0.55em;
  color: rgba(182, 153, 104, 0.7);
  margin-left: 14px;
  vertical-align: middle;
}
.price-frame {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.55;
  color: rgba(234, 230, 220, 0.82);
  margin: 36px auto 0;
  max-width: 600px;
}
.price-frame em {
  color: var(--gold);
  font-style: italic;
}

/* ─── КАК ПОПАСТЬ ─── */
/* ─── Старт двух групп ─── */
.launch {
  max-width: 620px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 48px);
  border: 1px solid var(--hairline);
  background: var(--ivory);
}
.launch-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 22px;
}
.launch-dates {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 56px);
}
.launch-date-num {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.launch-date-cap {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--graphite-2);
}
.launch-sep {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold-soft);
  opacity: 0.5;
}

.apply {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.apply-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 56px 0 64px;
}
.apply-step {
  text-align: center;
}
.apply-step-num {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.apply-step h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: var(--graphite);
}
.apply-step p {
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--graphite-2);
  margin: 0;
}
.apply-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 44px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--graphite);
  text-decoration: none;
  border: 1px solid var(--graphite);
  transition: background 0.25s ease, transform 0.2s ease;
}
.apply-cta:hover {
  background: var(--ink);
  transform: translateY(-1px);
}
.apply-note {
  display: block;
  margin-top: 22px;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--graphite-soft);
}

/* ─── FAQ ─── */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid var(--hairline);
  padding: 26px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--hairline); }
.faq-item h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: var(--graphite);
}
.faq-item p {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--graphite-2);
  margin: 0;
}

/* ─── Футер ─── */
.footer {
  background: var(--ink);
  color: rgba(234, 230, 220, 0.62);
  padding: 60px 0 40px;
  border-top: 1px solid rgba(182, 153, 104, 0.18);
  text-align: center;
}
.footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  color: var(--gold);
}
.footer-mark {
  width: 60px;
  height: 60px;
  color: var(--gold);
}
.footer-word {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  padding-left: 0.4em;  /* компенсация letter-spacing для оптического центра */
}
.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  margin-bottom: 28px;
}
.footer-links a {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(234, 230, 220, 0.62);
  text-decoration: none;
}
.footer-links a:hover { color: var(--gold); }
.footer-fine {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(234, 230, 220, 0.4);
}

/* ─── Reveal on scroll ─── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Каскадное появление (stagger) ─── */
/* контейнер сам не анимируется как блок — анимируют дети по очереди */
.reveal.stagger {
  opacity: 1;
  transform: none;
}
.reveal.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal.stagger.visible > *:nth-child(1) { transition-delay: 0.00s; }
.reveal.stagger.visible > *:nth-child(2) { transition-delay: 0.10s; }
.reveal.stagger.visible > *:nth-child(3) { transition-delay: 0.20s; }
.reveal.stagger.visible > *:nth-child(4) { transition-delay: 0.30s; }
.reveal.stagger.visible > *:nth-child(5) { transition-delay: 0.40s; }
.reveal.stagger.visible > *:nth-child(6) { transition-delay: 0.50s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.stagger > * {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ─── Адаптив ─── */
@media (max-width: 900px) {
  /* Топбар: только бренд. Nav-CTA убрана — дублирует hero-CTA */
  .topbar { padding: 16px 20px; justify-content: center; }
  .brand { gap: 10px; }
  .brand-mark { width: 26px; height: 26px; flex: 0 0 26px; }
  .brand-word { font-size: 0.95rem; letter-spacing: 0.3em; padding-top: 1px; }
  .topnav { display: none; }

  /* Hero на мобильном — минимум контента, дышит */
  .hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    padding-bottom: 60px;
  }
  .hero-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .hero-pill {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    padding: 8px 14px;
    gap: 8px;
    margin-bottom: 32px;
  }
  .hero-title--private {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 28px;
  }
  .hero-lede {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 36px;
  }
  .hero-cta {
    padding: 15px 24px;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    gap: 10px;
  }

  /* На мобильном убираем вторичные элементы — чище first-screen */
  .hero-sublede,
  .hero-sub-cta,
  .hero-stats { display: none; }

  /* Backdrop приглушённый */
  .hero-backdrop { opacity: 0.65; }

  /* Светлые секции — внутренние сетки */
  .audience-grid { grid-template-columns: 1fr; gap: 28px; }
  .program-grid { grid-template-columns: 1fr; gap: 0; }

  /* Три сферы — горизонтальная swipe-лента (нативный жест на телефоне) */
  .spheres-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* full-bleed за края контейнера */
    margin: 0 -20px;
    padding: 4px 20px 14px;
  }
  .spheres-grid::-webkit-scrollbar { display: none; }
  .spheres-grid .sphere {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }
  /* на свайп-ленте каскад не нужен — карточки появляются сразу */
  .spheres-grid.stagger > * { opacity: 1; transform: none; transition: none; }
  .sphere::before { font-size: 9rem; }
  .format-item { grid-template-columns: 1fr; gap: 8px; }
  .format-time { padding-top: 0; }
  .apply-steps { grid-template-columns: 1fr; gap: 28px; }

  .marina-grid { grid-template-columns: 1fr; gap: 32px; }
  .marina-photo { max-width: 360px; margin: 0 auto; }

  /* Topbar nav layout — wrap-friendly */
  .topbar { flex-wrap: nowrap; }

  /* Футер компактнее */
  .footer-mark { width: 50px; height: 50px; }
  .footer-word { font-size: 1rem; }
  .footer-links { gap: 12px 20px; }
  .footer-links a { font-size: 0.66rem; letter-spacing: 0.2em; }
}

@media (max-width: 560px) {
  /* Топбар на узком экране: бренд + сжатая CTA */
  .brand-word { font-size: 0.88rem; letter-spacing: 0.28em; }
  .topnav .nav-cta {
    padding: 8px 12px;
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }

  .hero-pill {
    font-size: 0.55rem;
    letter-spacing: 0.16em;
    padding: 7px 12px;
    gap: 6px;
  }
  .hero-pill-sep { display: none; }
  .hero-title--private {
    font-size: clamp(1.7rem, 8.5vw, 2.3rem);
    letter-spacing: 0;
  }
  .hero-lede { font-size: 1.05rem; }
  .hero-sublede { font-size: 0.92rem; }
  .hero-cta {
    padding: 14px 20px;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }

  /* Backdrop на телефоне — компактнее, чтобы не выходить за края */
  .hero-backdrop {
    width: 110vmin;
    height: 110vmin;
    opacity: 0.55;
  }

  .price-amount { font-size: clamp(3rem, 14vw, 5rem); }

  /* Контейнер — чуть тоньше отступы */
  .container { width: min(100% - 32px, var(--w-container)); }
}

@media (max-width: 380px) {
  /* iPhone SE / mini — самое узкое */
  .brand-word { font-size: 0.82rem; letter-spacing: 0.24em; }
  .topnav .nav-cta {
    padding: 7px 10px;
    font-size: 0.54rem;
    letter-spacing: 0.14em;
  }
  .hero-pill { font-size: 0.52rem; padding: 6px 11px; }
  .hero-title--private { font-size: 1.85rem; }
}
