:root {
  --dark: #0e2318;
  --dark2: #162e1e;
  --dark3: #1c3a26;
  --gold: #c9a84c;
  --gold2: #e8c96a;
  --gold-light: #f0d98a;
  --cream: #f8f2e8;
  --cream2: #f0e8d8;
  --brown: #1a1a1a;
  --brown2: #2a2a2a;
  --red: #8b2020;
  --text-dark: #000000;
  --text-mid: #1a1a1a;
  --white: #ffffff;
  --star: #d4af37;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { 
  scroll-behavior: smooth; 
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-overflow-scrolling: touch;
}

/* ===== PARTICLES CANVAS ===== */
#particles-dark, #particles-light {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ===== SECTION BASE ===== */
section { position: relative; overflow: hidden; }

/* === Universal photo without frame === */
.photo-transparent-wrap {
  position: relative;
  width: 100%;
  border: none;
  box-shadow: none;
  background: transparent;
  overflow: visible;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.photo-transparent-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 65%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.18) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(25px);
  z-index: 0;
}

.photo-transparent-wrap img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  filter: none;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, #1e4a2e 0%, #0e2318 50%, #050f0a 100%);
}

.hero-lines {
  position: absolute; inset: 0;
  background-image: 
    linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 50%),
    linear-gradient(-45deg, rgba(201,168,76,0.04) 0%, transparent 60%);
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 90px 50px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-badge {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 8px 24px;
  margin-bottom: 32px;
  animation: fadeInDown 1s ease both;
}

.hero-name {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 900;
  color: var(--white);
  line-height: 0.92;
  letter-spacing: -2px;
  margin-bottom: 0;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-name span {
  display: block;
  color: var(--gold);
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 300;
  letter-spacing: 6px;
  margin-top: 14px;
}

.hero-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-style: italic;
  color: rgba(255,255,255,0.75);
  margin: 26px 0 18px;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-divider {
  width: 80px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0 0 28px;
  animation: expandWidth 1.2s ease 0.6s both;
}

.hero-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 44px;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-role {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border-bottom: 1px solid rgba(201,168,76,0.4);
  padding-bottom: 3px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.8s both;
}

/* === Hero Photo Side === */
.hero-photo-side {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 500px;
  animation: fadeInRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.hero-photo-frame::before {
  content: '';
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  max-width: 360px;
  height: 360px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.28) 0%, rgba(201,168,76,0.1) 40%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  filter: blur(30px);
  animation: glowPulse 4s ease infinite;
}

.hero-photo-frame img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: contain;
  display: block;
  filter: none;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-photo-frame:hover img {
  transform: translateY(-8px);
}

.hero-photo-shadow,
.hero-photo-decor { display: none; }

.hero-photo-stamp {
  position: absolute;
  bottom: 80px;
  left: 0;
  background: linear-gradient(135deg, #b8912a, #e0c060, #c9a84c);
  color: var(--brown);
  padding: 12px 18px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 4;
  animation: stampFloat 3s ease infinite;
  white-space: nowrap;
}

@keyframes stampFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-6px) rotate(-4deg); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-portrait { display: none; }

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #c9a84c, #e8c96a, #c9a84c);
  background-size: 200%;
  color: var(--brown);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-gold:hover { background-position: right; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,168,76,0.4); }
.btn-gold:hover::after { transform: translateX(100%); }

.btn-outline {
  display: inline-block;
  padding: 15px 38px;
  background: transparent;
  color: var(--gold);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(201,168,76,0.5);
  cursor: pointer;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: all 0.3s ease;
}

.btn-outline:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }

.btn-cream {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #c9a84c, #e8c96a);
  color: var(--brown);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 40px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}

.btn-cream:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.5); }

.btn-dark {
  display: inline-block;
  padding: 14px 32px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  border-radius: 40px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-dark:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); }

/* ===== NAVIGATION STRIP ===== */
.nav-strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201,168,76,0.2);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  z-index: 10;
}

.nav-strip a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 28px;
  border-right: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.nav-strip a:hover { color: var(--gold); background: rgba(201,168,76,0.08); }

/* ===== ABOUT DARK ===== */
.about-dark {
  background: var(--dark2);
  padding: 100px 0;
}

/* Красная полоса стоит первым элементом секции и должна примыкать
   к первому экрану вплотную — гасим верхний отступ секции. */
.about-dark > .alert-banner:first-child { margin-top: -100px; }

.about-dark .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}

.about-photo-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: transparent;
  position: relative;
  overflow: visible;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about-photo::before {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(25px);
  z-index: 0;
}

.about-photo img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  filter: none;
}

.about-photo-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  opacity: 0.3;
}

.about-gold-line {
  position: absolute;
  left: -20px; top: 40px;
  width: 3px; height: calc(100% - 80px);
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.alert-banner {
  background: linear-gradient(135deg, #7a1515, #a01f1f);
  color: white;
  text-align: center;
  padding: 16px 30px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 50px;
  position: relative;
}

.alert-banner::before, .alert-banner::after {
  content: '✦';
  margin: 0 15px;
  color: rgba(255,255,255,0.5);
}

.section-eyebrow {
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title-dark {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 30px;
}

.about-text {
  font-family: 'Roboto', sans-serif;
  font-size: 19px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}

.about-text strong {
  color: var(--gold);
  font-weight: 600;
}

.about-highlight {
  background: rgba(201,168,76,0.08);
  border-left: 3px solid var(--gold);
  padding: 20px 25px;
  margin: 30px 0;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 24px;
  border: 1px solid rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.04);
}

.stat-num {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

/* ===== ABOUT LIGHT ===== */
.about-light {
  background: var(--cream);
  padding: 100px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-light-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.about-light-photo {
  position: relative;
  border: none;
  box-shadow: none;
  background: transparent;
  overflow: visible;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about-light-photo::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 65%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.18) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(25px);
  z-index: 0;
}

.about-light-photo img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  filter: none;
}

.about-light-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(180deg, #d4c5b0, #c0b09a);
  display: flex; align-items: center; justify-content: center;
  font-size: 60px;
}

.section-title-light {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 30px;
}

.checklist {
  list-style: none;
  margin-bottom: 40px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(20,20,20,0.08);
  font-family: 'Roboto', sans-serif;
  font-size: 19px;
  color: var(--text-mid);
  line-height: 1.5;
}

.checklist li::before {
  content: '✓';
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--brown), var(--brown2));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  margin-top: 2px;
  border-radius: 50%;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.skill-tag {
  border: 1px solid var(--brown);
  color: var(--brown);
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
  padding: 10px 8px;
  transition: all 0.3s ease;
  cursor: default;
}

.skill-tag:hover {
  background: var(--brown);
  color: white;
}

/* ===== EVENTS ===== */
.events-section {
  background: var(--dark3);
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header-dark .section-eyebrow { color: var(--gold); }

.section-title-center {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
  text-align: center;
  position: relative;
  display: inline-block;
}

.section-title-center::after {
  content: '';
  display: block;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto 0;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.event-card {
  border: 1px solid rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.03);
  padding: 60px 40px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.event-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.event-card:hover::before { opacity: 1; }

.event-card-title {
  font-family: 'Roboto', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.3;
}

.event-link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s;
}

.event-card:hover .event-link { color: var(--gold); }

/* ===== LINKS NAV ===== */
.links-nav {
  background: var(--dark);
  padding: 80px 0;
}

.links-tagline {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-style: italic;
  color: rgba(255,255,255,0.8);
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.5;
  padding: 0 40px;
}

.links-tagline span { color: var(--gold); }

.links-grid {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link-btn {
  display: block;
  background: linear-gradient(135deg, #b8912a, #e0c060, #c9a84c);
  background-size: 200%;
  color: var(--brown);
  text-decoration: none;
  text-align: center;
  padding: 20px 40px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.link-btn .link-sub {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(20,20,20,0.7);
  margin-top: 4px;
}

.link-btn:hover {
  background-position: right;
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}

.side-quotes {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(255, 245, 220, 0.9);
  line-height: 1.7;
  max-width: 180px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  pointer-events: none;
}

.side-quotes::before, .side-quotes::after {
  content: '✦';
  display: block;
  font-size: 14px;
  color: var(--gold);
  margin: 8px 0;
  opacity: 0.9;
}

.side-quote-left { left: 20px; }
.side-quote-right { right: 20px; text-align: center; }

@media (max-width: 1200px) {
  .side-quotes { display: none; }
}

/* ===== GROUP SESSIONS ===== */
.group-sessions {
  background: var(--cream);
  padding: 100px 0;
}

.sessions-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 70px;
  align-items: start;
}

.sessions-photo {
  position: relative;
  border: none;
  box-shadow: none;
  background: transparent;
  overflow: visible;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.sessions-photo::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 65%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.18) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(25px);
  z-index: 0;
}

.sessions-photo img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  filter: none;
}

.sessions-photo-placeholder {
  background: linear-gradient(180deg, #c0b09a, #a09080);
  display: flex; align-items: center; justify-content: center;
  font-size: 60px;
}

.gold-badge {
  background: linear-gradient(135deg, #b8912a, #e0c060);
  color: var(--brown);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  display: inline-block;
  margin-bottom: 20px;
}

.sessions-content h2 {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 12px;
}

.sessions-text {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.sessions-text strong { color: var(--brown); }

.sessions-announce {
  background: rgba(20,20,20,0.06);
  border-left: 3px solid var(--brown);
  padding: 20px 24px;
  margin: 24px 0;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.6;
}

.btn-row {
  display: flex; gap: 16px; flex-wrap: wrap; margin-top: 30px;
}

.sessions-stars {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.star-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.6;
}

.star-point::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 4px;
}

/* ===== HERO PORTRAIT ===== */
.hero-portrait {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(201,168,76,0.4);
  box-shadow: 0 0 60px rgba(201,168,76,0.15), 0 0 0 8px rgba(201,168,76,0.04);
  animation: portraitGlow 3s ease infinite;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-portrait-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  z-index: -1;
  animation: float 4s ease infinite;
}

@keyframes portraitGlow {
  0%, 100% { box-shadow: 0 0 60px rgba(201,168,76,0.15), 0 0 0 8px rgba(201,168,76,0.04); }
  50% { box-shadow: 0 0 80px rgba(201,168,76,0.3), 0 0 0 14px rgba(201,168,76,0.06); }
}

/* ===== REVIEW SCREENS ===== */
.review-screen {
  flex: 0 0 320px;
  height: 480px;
  background: #ffffff;
  border: 1px solid rgba(201,168,76,0.25);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.review-screen-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  border-radius: 4px;
  overflow: hidden;
}

.review-screen-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.review-screen:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.5);
  border-color: var(--gold);
}

.review-screen:hover .review-screen-img img {
  transform: scale(1.04);
}

.review-screen-overlay {
  position: absolute;
  inset: 12px;
  background: linear-gradient(180deg, rgba(14,35,24,0) 50%, rgba(14,35,24,0.95));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 30px 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 4px;
}

.review-screen:hover .review-screen-overlay {
  opacity: 1;
}

.review-zoom-icon {
  font-size: 32px;
  margin-bottom: 12px;
  animation: float 2s ease infinite;
}

.review-zoom-text {
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}

/* ===== IMAGE MODAL ===== */
.modal-image-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image-wrap img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  border: 2px solid rgba(201,168,76,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  background: white;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold);
  font-size: 28px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.modal-nav:hover {
  background: rgba(201,168,76,0.3);
  transform: translateY(-50%) scale(1.1);
}

.modal-prev { left: -70px; }
.modal-next { right: -70px; }

.modal-counter {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
}

/* ===== DIPLOMAS ===== */
.diplomas-section {
  background: var(--cream);
  padding: 100px 0;
  position: relative;
}

.diplomas-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(201,168,76,0.04), transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(201,168,76,0.04), transparent 50%);
  pointer-events: none;
}

.diplomas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.diploma-card {
  background: white;
  border: 1px solid rgba(20,20,20,0.1);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  position: relative;
}

.diploma-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brown), var(--gold), var(--brown));
  background-size: 200%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.diploma-card:hover::before {
  transform: scaleX(1);
}

.diploma-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(20,20,20,0.15);
  border-color: var(--gold);
}

.diploma-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5efe5, #ebe0d0);
  position: relative;
  border-bottom: 1px solid rgba(20,20,20,0.08);
}

.diploma-img-wrap::after {
  content: '🔍';
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.diploma-card:hover .diploma-img-wrap::after { opacity: 1; }

.diploma-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.diploma-card:hover .diploma-img-wrap img {
  transform: scale(1.08);
}

.diploma-info {
  padding: 20px 22px;
  position: relative;
}

.diploma-num {
  position: absolute;
  top: -24px;
  right: 18px;
  background: linear-gradient(135deg, var(--brown), var(--brown2));
  color: var(--gold-light);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 8px 14px;
  box-shadow: 0 4px 12px rgba(20,20,20,0.3);
}

.diploma-title {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.5px;
  line-height: 1.4;
  margin-bottom: 8px;
}

.diploma-sub {
  display: none;
}

/* ===== POSTERS ===== */
.posters-section {
  background: var(--cream2);
  padding: 80px 0;
}

.posters-title {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brown);
  text-align: center;
  margin-bottom: 50px;
}

.posters-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.poster-card {
  border: 2px solid;
  border-image: linear-gradient(135deg, #c9a84c, #e8c96a, #c9a84c) 1;
  background: white;
  padding: 60px 30px;
  text-align: center;
  position: relative;
}

.poster-placeholder {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.4;
  margin-bottom: 12px;
}

.poster-note {
  font-size: 12px;
  color: rgba(0,0,0,0.6);
  letter-spacing: 1px;
}

.poster-btn { margin-top: 30px; }

/* ===== HUTTA ===== */
.hutta-section {
  background: var(--cream);
  padding: 100px 0;
}

.hutta-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

.hutta-gold-banner {
  background: linear-gradient(135deg, #c9a84c, #e8c96a);
  color: var(--brown);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  padding: 16px 30px;
  margin-bottom: 40px;
  line-height: 1.5;
}

.hutta-list {
  list-style: none;
  columns: 1;
}

.hutta-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.5;
  border-bottom: 1px solid rgba(20,20,20,0.06);
}

.hutta-list li .num {
  flex-shrink: 0;
  width: 24px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  margin-top: 3px;
}

.chakra-diagram {
  position: sticky;
  top: 100px;
  background: linear-gradient(180deg, #1a0a00, #2d1505);
  padding: 40px 30px;
  border: 1px solid rgba(201,168,76,0.2);
}

.chakra-title {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 30px;
}

.chakra-list {
  list-style: none;
}

.chakra-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.chakra-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 10px currentColor;
}

.chakra-info { flex: 1; }

.chakra-name {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.chakra-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1px;
}

/* ===== REASONS ===== */
.reasons-section {
  background: var(--cream2);
  padding: 100px 0;
}

.reasons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.reasons-col-title {
  background: linear-gradient(135deg, #7a1515, #a01f1f);
  color: white;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 18px 24px;
  margin-bottom: 30px;
}

.reasons-col-title.gold-title {
  background: linear-gradient(135deg, #b8912a, #e0c060);
  color: var(--brown);
}

.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(20,20,20,0.07);
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.6;
}

.reason-item::before {
  content: '✦';
  color: var(--star);
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 5px;
}

.helps-list {
  list-style: none;
}

.helps-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(20,20,20,0.07);
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  color: var(--text-mid);
}

.helps-item::before {
  content: '✦';
  color: var(--star);
  flex-shrink: 0;
  font-size: 12px;
}

.reasons-cta {
  text-align: right;
  margin-top: 20px;
}

/* ===== BIG CLEANUP ===== */
.cleanup-section {
  background: var(--cream);
  padding: 100px 40px;
  text-align: center;
}

.cleanup-text {
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 500;
  color: var(--brown);
  line-height: 1.8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 50px;
}

.cleanup-text span { color: var(--red); font-weight: 700; }

/* ===== COURSES ===== */
.courses-section {
  background: var(--cream2);
  padding: 100px 0;
  position: relative;
}

.courses-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--dark), #3a1a05, var(--brown), #3a1a05, var(--dark));
}

.courses-intro {
  text-align: center;
  max-width: 1040px;
  margin: 0 auto 70px;
  padding: 0 40px;
}

.courses-intro-text {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  color: var(--text-dark);
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 16px;
}

.courses-intro-sub {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
}

.courses-list {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Карточки продуктов — стиль «Библиотеки полезных продуктов» */
.course-card {
  display: flex;
  align-items: center;
  gap: 34px;
  background: #fbf9f3;
  border: 1px solid #e4ddce;
  border-radius: 26px;
  padding: 26px 40px 26px 26px;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.course-card::before { display: none; }

.course-card:hover {
  transform: translateY(-3px);
  border-color: #3f6a4d;
  box-shadow: 0 18px 40px rgba(63,106,77,0.12);
}

.course-thumb {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #e9e3d6, #d8cdbb);
  display: flex; align-items: center; justify-content: center;
}
.course-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.course-emoji { font-size: 52px; line-height: 1; }

.course-info {
  flex: 1;
  min-width: 0;
  padding: 0;
}

.course-title {
  font-family: 'Roboto', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: #6f4f2c;
  letter-spacing: .2px;
  text-transform: none;
  line-height: 1.25;
  margin-bottom: 8px;
}

.course-sub {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #3f382e;
  line-height: 1.45;
  font-weight: 600;
}

.course-desc {
  font-size: 15px;
  color: #7d7466;
  margin-top: 6px;
  font-style: normal;
  line-height: 1.5;
}

.course-link {
  flex-shrink: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: #3f6a4d;
  white-space: nowrap;
  align-self: center;
}

.course-card:hover .course-link { color: #2f5d40; }

/* ===== REVIEWS CAROUSEL ===== */
.reviews-section {
  background: var(--dark);
  padding: 100px 0;
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card {
  flex: 0 0 340px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.review-card:hover {
  border-color: rgba(201,168,76,0.4);
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.review-card::after {
  content: '🔍';
  position: absolute;
  top: 10px; right: 12px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s;
}

.review-card:hover::after { opacity: 0.5; }

.review-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-author {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.carousel-btn {
  width: 50px; height: 50px;
  border: 1px solid rgba(201,168,76,0.4);
  background: transparent;
  color: var(--gold);
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}

.carousel-btn:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 6px; height: 6px;
  background: rgba(201,168,76,0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active { background: var(--gold); width: 24px; border-radius: 3px; }

.thanks-section {
  text-align: center;
  padding: 60px 40px;
  border-top: 1px solid rgba(201,168,76,0.1);
  margin-top: 60px;
}

.thanks-title {
  font-family: 'Roboto', sans-serif;
  font-size: 28px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 30px;
  font-style: italic;
}

.thanks-title strong {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 36px;
  color: var(--gold);
  font-style: normal;
  display: block;
  margin-top: 8px;
}

.disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  line-height: 1.8;
  max-width: 700px;
  margin: 40px auto 0;
  font-style: italic;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--cream);
  padding: 100px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.faq-item {
  border-bottom: 1px solid rgba(20,20,20,0.1);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--brown); }

.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid rgba(20,20,20,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--brown);
  transition: all 0.3s ease;
  line-height: 1;
}

.faq-item.open .faq-icon { background: var(--brown); color: white; transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.8;
  padding: 0;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(8px);
}

.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal-inner {
  max-width: 800px;
  width: 100%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: -50px; right: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 42px; height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  z-index: 3;
}

.modal-close:hover { background: rgba(255,255,255,0.18); transform: rotate(90deg); }

.modal-content-review {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 50px;
}

.modal-review-stars {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 4px;
}

.modal-review-text {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 24px;
}

.modal-review-author {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== FOOTER ===== */
footer {
  background: #050f0a;
  padding: 60px 40px 30px;
  text-align: center;
}

.footer-name {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-tagline {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 40px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.social-btn {
  width: 50px; height: 50px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: 22px;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
  border-radius: 50%;
}

.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.1); }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-links a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.15);
  letter-spacing: 1px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes expandWidth {
  from { width: 0; }
  to { width: 80px; }
}

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

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== STICKY HEADER ===== */
.sticky-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(14, 35, 24, 0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
  padding: 0;
}

.sticky-header.scrolled {
  background: rgba(14, 35, 24, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-name {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
}

.logo-sub {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1;
  margin-top: 3px;
}

.header-nav {
  flex: 1;
  display: flex;
  gap: 0;
  justify-content: center;
}

.header-nav a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  transition: color 0.3s;
  white-space: nowrap;
}

.header-nav a:hover { color: var(--gold); }

.header-cta {
  flex-shrink: 0;
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--brown);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 15px rgba(201,168,76,0.3);
}

.header-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(201,168,76,0.5); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 300px;
  background: #0a1a10;
  border-left: 1px solid rgba(201,168,76,0.2);
  z-index: 1100;
  padding: 40px 30px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 36px; height: 36px;
  cursor: pointer;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.mobile-close:hover { background: rgba(255,255,255,0.1); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 50px;
}

.mobile-nav a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.3s;
}

.mobile-nav a:hover { color: var(--gold); }

.mobile-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold2)) !important;
  color: var(--brown) !important;
  font-weight: 700 !important;
  text-align: center;
  padding: 16px !important;
  margin-top: 20px;
  border-bottom: none !important;
  border-radius: 2px;
}

.mobile-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}

.mobile-social a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.mobile-social a:hover { color: var(--gold); }

.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(4px);
}

.mobile-overlay.active { opacity: 1; pointer-events: all; }

/* ===== HERO SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 90px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeInUp 1s ease 1.2s both;
}

.scroll-text {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(201,168,76,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ===== BOOKING FORM ===== */
.booking-section {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.booking-section::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.time-value-btn { display: inline-block; margin-top: 34px; }

/* Ссылка на отзывы в Telegram под каруселью отзывов. */
.reviews-tg { text-align: center; margin: 26px 0 4px; }
.reviews-tg a {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 24px; border-radius: 40px; text-decoration: none;
  min-height: 44px; box-sizing: border-box;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201, 168, 76, 0.45);
  transition: all 0.3s ease;
}
.reviews-tg svg { width: 18px; height: 18px; flex-shrink: 0; }
.reviews-tg a:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--brown); border-color: transparent; transform: translateY(-2px);
}

/* Золотая рамка вокруг колонки «Как будут проходить сеансы». */
.session-info-framed {
  border: 1px solid rgba(201, 168, 76, 0.55);
  border-radius: 18px;
  padding: 34px 30px;
  background: linear-gradient(160deg, rgba(201,168,76,0.07), rgba(201,168,76,0.02));
  box-shadow: 0 10px 34px rgba(201, 168, 76, 0.12);
}

/* Заголовки блоков про консультации — крупнее (как у «Индивидуальных сеансов»,
   clamp(26px,3.5vw,44px)) и коричневым градиентом. Инлайновые размеры у этих
   заголовков убраны в PHP, иначе они перебивали бы правило. */
.consult-title,
.consult-section h2,
.time-value-section .time-value-title,
.formats-section h2,
.astro-section h2,
.group-sessions h2,
.indiv-sessions-section h2 {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: clamp(26px, 3.5vw, 44px);
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #5a3a1c, #9c6f33 55%, #c9a84c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  /* на мобильном у секции отступ 60px — гасим ровно его */
  .about-dark > .alert-banner:first-child { margin-top: -60px; }
  .session-info-framed { padding: 24px 18px; border-radius: 14px; }
}

/* Левый промо-блок скрыт — форма одна, выравниваем по центру. */
.booking-inner.is-single {
  grid-template-columns: minmax(0, 620px);
  justify-content: center;
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.booking-promo {
  padding-top: 20px;
}

.booking-promo-eyebrow {
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.booking-promo h2 {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 30px;
}

.booking-promo h2 span { color: var(--gold); }

.booking-promo-text {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 40px;
}

.booking-services {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-service {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid rgba(201,168,76,0.15);
  background: rgba(201,168,76,0.03);
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking-service:hover {
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.07);
  transform: translateX(6px);
}

.booking-service.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
}

.service-radio {
  width: 18px; height: 18px;
  border: 2px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}

.booking-service.selected .service-radio {
  border-color: var(--gold);
  background: var(--gold);
}

.booking-service.selected .service-radio::after {
  content: '';
  width: 6px; height: 6px;
  background: var(--brown);
  border-radius: 50%;
}

.service-info {}

.service-name {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}

.service-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 3px;
  letter-spacing: 1px;
}

/* FORM */
.booking-form-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 50px 40px;
}

.form-title {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.form-subtitle {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1px;
  margin-bottom: 36px;
  text-transform: uppercase;
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 0;
  appearance: none;
}

.form-input::placeholder { color: rgba(255,255,255,0.2); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: rgba(201,168,76,0.5); }
.form-select { cursor: pointer; }
.form-select option { background: #0e2318; color: white; }
.form-textarea { resize: vertical; min-height: 100px; line-height: 1.6; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 30px;
}

.form-check input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}

.form-check-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  letter-spacing: 0.5px;
}

.form-check-label a { color: var(--gold); text-decoration: none; }

.form-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #b8912a, #e0c060, #c9a84c);
  background-size: 200%;
  color: var(--brown);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
}

.form-submit:hover { background-position: right; box-shadow: 0 8px 30px rgba(201,168,76,0.4); }

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success.show { display: block; }

.success-icon { font-size: 60px; margin-bottom: 20px; }

.success-title {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.success-text {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ===== FLOATING BUTTON ===== */
.float-btn {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.float-tg {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #229ed9, #1a8bc4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(34,158,217,0.5);
  transition: all 0.3s ease;
  animation: float 3s ease infinite;
}

.float-tg:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(34,158,217,0.7); }

.float-record {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--brown);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 40px;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.float-record:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.6); }

/* ===== PROGRESS BAR ===== */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s ease;
}

/* ===== SECTION SEPARATORS ===== */
.sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.25), transparent);
}

.sep-dark {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
}

/* ===== COUNTER ANIMATION ===== */
.counter { display: inline-block; }

/* ===== КУРС ОБУЧЕНИЕ ===== */
.training-section {
  background: var(--cream2);
  padding: 80px 0;
  position: relative;
}

.training-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.training-banner {
  display: flex;
  align-items: center;
  gap: 0;
  background: white;
  border: 1px solid rgba(20,20,20,0.12);
  box-shadow: 0 10px 40px rgba(20,20,20,0.08);
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.training-banner:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(20,20,20,0.15); }

.training-banner-img {
  width: 140px; height: 120px;
  background: linear-gradient(135deg, #d4c5b0, #a09080);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 50px;
}

.training-banner-body {
  flex: 1;
  padding: 28px 32px;
}

.training-banner-title {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--brown);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.training-banner-sub {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: var(--text-mid);
}

.training-banner-link {
  flex-shrink: 0;
  padding: 0 30px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  font-weight: 500;
}

.training-banner:hover .training-banner-link { color: var(--brown); }

/* ===== INDIVIDUAL SESSIONS ===== */
.indiv-sessions-section {
  background: var(--cream);
  padding: 100px 0;
}

.indiv-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.indiv-point {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(201,168,76,0.04);
  border-left: 3px solid rgba(201,168,76,0.3);
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.7;
  transition: all 0.3s ease;
}

.indiv-point:hover {
  background: rgba(201,168,76,0.08);
  border-left-color: var(--gold);
  transform: translateX(4px);
}

.indiv-star {
  flex-shrink: 0;
  font-size: 20px;
  color: var(--star);
  margin-top: 2px;
  line-height: 1;
}

/* ===== SESSION INFO ===== */
.session-info-section {
  background: var(--cream2);
  padding: 100px 0;
}

.session-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.session-info-col-title {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 18px 24px;
  margin-bottom: 30px;
  text-align: center;
}

.red-title {
  background: linear-gradient(135deg, #7a1515, #a01f1f);
  color: white;
}

.session-info-points {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(20,20,20,0.07);
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
}

.info-star {
  flex-shrink: 0;
  color: var(--star);
  font-size: 14px;
  margin-top: 4px;
}

.sessions-count-block {
  margin-top: 40px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 30px;
}

.sessions-count-title {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}

/* ===== CONSULTATIONS ===== */
.consult-section {
  background: var(--cream);
  padding: 100px 0;
}

.consult-quote {
  font-family: 'Roboto', sans-serif;
  font-size: 19px;
  color: var(--text-mid);
  line-height: 1.8;
  padding: 24px 28px;
  border-left: 4px solid var(--gold);
  background: rgba(201,168,76,0.05);
  margin: 24px 0;
  font-style: italic;
}

.consult-route-quote {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-style: italic;
  color: var(--brown);
  text-align: center;
  margin: 60px auto 0;
  max-width: 700px;
  padding: 40px;
  border-top: 1px solid rgba(20,20,20,0.1);
  border-bottom: 1px solid rgba(20,20,20,0.1);
  line-height: 1.6;
}

.consult-sub-title {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 1px;
  text-align: center;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.3);
  margin-bottom: 30px;
}

/* ===== TIME VALUE ===== */
.time-value-section {
  background: var(--cream2);
  padding: 80px 0;
}

.time-value-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
}

.time-value-title {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 40px;
}

.time-value-title span { color: var(--brown); }

.time-value-banner {
  background: linear-gradient(135deg, #c9a84c, #e8c96a, #c9a84c);
  color: var(--brown);
  padding: 30px 40px;
  font-family: 'Roboto', sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
}

.time-value-text {
  text-align: left;
  background: white;
  border: 1px solid rgba(20,20,20,0.08);
  padding: 36px 40px;
}

.time-value-text p {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.time-value-accent {
  color: var(--brown) !important;
  font-weight: 600 !important;
  font-size: 20px !important;
  text-align: center;
  border-top: 1px solid rgba(20,20,20,0.1);
  border-bottom: 1px solid rgba(20,20,20,0.1);
  padding: 20px 0 !important;
  margin: 24px 0 !important;
}

/* ===== FORMATS ===== */
.formats-section {
  background: var(--cream);
  padding: 80px 0;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.format-card {
  background: white;
  border: 1px solid rgba(20,20,20,0.1);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.format-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brown), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.format-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(20,20,20,0.12);
  border-color: rgba(201,168,76,0.3);
}

.format-card:hover::before { transform: scaleX(1); }

.format-badge {
  display: inline-block;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  width: fit-content;
}

.format-badge.online { background: rgba(26,139,196,0.12); color: #1a6fa0; }
.format-badge.phone { background: rgba(90,160,90,0.12); color: #3a7a3a; }
.format-badge.sms { background: rgba(160,130,60,0.12); color: #7a6020; }
.format-badge.diag { background: rgba(150,60,150,0.12); color: #7a3a7a; }
.format-badge.urgent { background: rgba(180,60,60,0.12); color: #8a2020; }
.format-badge.indiv-s { background: rgba(201,168,76,0.15); color: var(--brown); }

.format-title {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.format-duration {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.format-body {
  flex: 1;
}

.format-body p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 10px;
}

.format-sub {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown);
  margin: 14px 0 8px;
}

.format-price {
  margin-top: auto;
  padding: 14px 0;
  border-top: 1px solid rgba(201,168,76,0.25);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.price-label {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
}

.price-value {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #b8912a, #c9a84c, #e8c96a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.format-btn {
  display: block;
  text-align: center;
  font-size: 10px;
}

.format-badge.astro { background: rgba(160,100,180,0.12); color: #6a2a8a; }

/* ===== ASTRO ===== */
.astro-section {
  background: var(--cream2);
  padding: 100px 0;
}

.astro-inner {
  background: white;
  border: 1px solid rgba(20,20,20,0.1);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(20,20,20,0.06);
}

.astro-header {
  background: linear-gradient(135deg, #f8f2e8, #f0e4d0);
  padding: 50px 60px 40px;
  border-bottom: 1px solid rgba(20,20,20,0.08);
  text-align: center;
  position: relative;
}

.astro-header::after {
  content: '✦ ✦ ✦';
  display: block;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 8px;
  margin-top: 16px;
}

.astro-title {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 12px;
}

.astro-subtitle {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.astro-body {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 0;
}

.astro-text-col {
  padding: 50px 60px;
  border-right: 1px solid rgba(20,20,20,0.08);
}

.astro-text {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.astro-highlight {
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.04));
  border: 1px solid rgba(201,168,76,0.25);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.7;
  margin: 24px 0 16px;
}

.astro-note {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(0,0,0,0.55);
  letter-spacing: 1px;
  font-style: italic;
}

.astro-icons-col {
  padding: 40px 30px;
  background: rgba(201,168,76,0.03);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.astro-icon-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(201,168,76,0.15);
  background: white;
  transition: all 0.3s ease;
}

.astro-icon-item:hover {
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.06);
  transform: translateX(4px);
}

.astro-icon { font-size: 24px; flex-shrink: 0; }

.astro-icon-label {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .diplomas-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1100px) {
  .header-nav a { padding: 8px 10px; font-size: 10px; }
  .diplomas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-dark .container,
  .about-light-inner,
  .sessions-inner,
  .hutta-inner,
  .reasons-grid,
  .booking-inner,
  .session-info-grid,
  .astro-body,
  .hero-inner { grid-template-columns: 1fr !important; gap: 40px !important; }

  .hero-inner { padding: 80px 24px 60px !important; text-align: center; }
  .hero-content { text-align: center; order: 2; }
  .hero-photo-side { order: 1; }
  .hero-photo-frame { max-width: 280px; }
  .hero-divider { margin-left: auto; margin-right: auto; }
  .hero-roles { justify-content: center; }
  .hero-cta { justify-content: center; }

  .events-grid, .posters-grid { grid-template-columns: 1fr; }
  .formats-grid { grid-template-columns: 1fr 1fr; }

  .side-quote-left, .side-quote-right, .side-quotes { display: none; }
  .nav-strip { display: none; }
  .chakra-diagram { position: static; }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: 1fr 1fr; }

  .header-nav, .header-cta { display: none; }
  .burger { display: flex; }

  .form-row { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 30px 20px; }

  .float-btn { bottom: 16px; right: 16px; }
  .header-inner { padding: 0 20px; height: 64px; }
  .container { padding: 0 20px; }

  .modal-prev { left: -10px; width: 40px; height: 40px; font-size: 22px; }
  .modal-next { right: -10px; width: 40px; height: 40px; font-size: 22px; }

  .astro-text-col { padding: 30px; border-right: none; border-bottom: 1px solid rgba(20,20,20,0.08); }
  .astro-header { padding: 30px; }
  .astro-icons-col { padding: 30px; flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .astro-icon-item { flex: calc(50% - 5px); }

  .indiv-sessions-section .container > div:first-child { grid-template-columns: 1fr !important; gap: 30px !important; }
  .consult-section .container > div:first-child { grid-template-columns: 1fr !important; gap: 30px !important; }
  .time-value-text { padding: 24px 20px; }

  .hero-photo-stamp { left: 50%; transform: translateX(-50%) rotate(-3deg); bottom: 20px; }
}

@media (max-width: 768px) {
  /* All sections smaller padding */
  .about-dark, .about-light, .events-section, .links-nav, .group-sessions,
  .posters-section, .hutta-section, .reasons-section, .cleanup-section,
  .courses-section, .reviews-section, .faq-section, .booking-section,
  .training-section, .indiv-sessions-section, .session-info-section,
  .consult-section, .time-value-section, .formats-section, .astro-section,
  .diplomas-section { padding: 60px 0 !important; }

  .alert-banner { padding: 12px 20px; font-size: 10px; }

  .hero-name { font-size: 44px !important; letter-spacing: -1px; }
  .hero-name span { font-size: 26px !important; letter-spacing: 4px !important; }
  .hero-cta { flex-direction: column; align-items: center; width: 100%; padding: 0 30px; }
  .hero-cta a { width: 100%; text-align: center; }
  .hero-roles { padding: 0 20px; gap: 8px; }
  .hero-role { font-size: 9px; padding-bottom: 2px; }
  .hero-subtitle { font-size: 18px; }

  .scroll-indicator { display: none; }

  .btn-row { flex-direction: column; }
  .btn-row a { width: 100%; text-align: center; }

  .about-stats { gap: 12px; }
  .stat-num { font-size: 28px; }
  .stat-item { padding: 16px 12px; }

  .skills-grid { grid-template-columns: 1fr 1fr; }

  /* Reviews mobile */
  .review-screen { flex: 0 0 280px; height: 440px; padding: 10px; }
  .reviews-track { gap: 16px; }

  /* Diplomas mobile */
  .diplomas-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .diploma-img-wrap { height: 160px; }
  .diploma-info { padding: 14px; }
  .diploma-title { font-size: 11px; }
  .diploma-sub { font-size: 12px; }
  .diploma-num { font-size: 9px; padding: 5px 10px; top: -18px; right: 12px; }

  /* Forms mobile */
  .formats-grid { grid-template-columns: 1fr !important; }

  /* Hutta list */
  .hutta-list li { font-size: 15px; padding: 6px 0; }
  .chakra-diagram { padding: 24px 20px; }

  /* Time-value */
  .time-value-banner { font-size: 16px; padding: 20px 24px; }
  .time-value-text { padding: 24px 20px; }
  .time-value-text p { font-size: 16px; }

  /* Astro */
  .astro-text-col { padding: 24px 20px; }
  .astro-icons-col { padding: 20px; }

  /* FAQ */
  .faq-question { font-size: 12px; padding: 18px 0; }
  .faq-answer { font-size: 16px; }

  /* Carousel buttons */
  .carousel-btn { width: 40px; height: 40px; font-size: 18px; }

  /* Float buttons */
  .float-tg { width: 48px; height: 48px; font-size: 20px; }
  .float-record { font-size: 9px; padding: 10px 16px; }

  /* Course cards — «Библиотека» на мобилке */
  .courses-list { padding: 0 18px; gap: 16px; }
  .course-card { flex-direction: row; align-items: center; gap: 16px; padding: 16px; border-radius: 20px; }
  .course-thumb { width: 92px; height: 92px; border-radius: 14px; }
  .course-emoji { font-size: 34px; }
  .course-info { padding: 0; }
  .course-title { font-size: 15px; margin-bottom: 5px; }
  .course-sub { font-size: 13px; }
  .course-desc { font-size: 12px; }
  .course-link { display: none; }

  /* Section titles */
  .section-title-dark, .section-title-light, .section-title-center {
    font-size: 28px !important;
  }

  /* Footer */
  .footer-name { font-size: 22px; }
  .footer-links { gap: 14px; }
  .footer-links a { font-size: 10px; }

  /* Group sessions */
  .sessions-content h2, .indiv-sessions-section h2,
  .consult-section h2 { font-size: 24px !important; }

  /* Modal */
  .modal-image-wrap img { max-height: 80vh; }
  .modal-counter { bottom: -32px; font-size: 11px; }

  /* About highlights */
  .about-highlight { padding: 16px 18px; font-size: 17px; }

  /* Format cards */
  .format-card { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .hero-name { font-size: 36px !important; }
  .hero-name span { font-size: 20px !important; letter-spacing: 3px !important; }
  .hero-roles { gap: 6px; }
  .hero-role { font-size: 8px; }

  .diplomas-grid { grid-template-columns: 1fr; }
  .review-screen { flex: 0 0 calc(100vw - 60px); max-width: 320px; height: 480px; padding: 10px; }

  .about-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-num { font-size: 22px; }
  .stat-label { font-size: 9px; letter-spacing: 0.5px; }

  .booking-form-wrap { padding: 24px 16px; }
  .form-input, .form-select, .form-textarea { padding: 12px 14px; font-size: 14px; }

  .btn-gold, .btn-cream, .btn-outline, .btn-dark { font-size: 10px; padding: 14px 24px; }

  .float-record { display: none; }

  .logo-name { font-size: 13px; }
  .logo-sub { font-size: 9px; }

  .section-title-dark, .section-title-light, .section-title-center {
    font-size: 22px !important;
  }

  .container { padding: 0 16px; }
  .reviews-carousel { padding: 0 20px; }

  .poster-card { padding: 40px 20px; }
  .poster-placeholder { font-size: 18px; }

  .cleanup-text { font-size: 12px !important; }

  .skills-grid { grid-template-columns: 1fr; }

  .indiv-point { padding: 14px 16px; font-size: 16px; gap: 14px; }
  .info-point { font-size: 15px; padding: 12px 0; }
}

/* ===== ТИПОГРАФИКА: ЗАГОЛОВКИ НА ROBOTO =====
   Roboto заметно уже прежнего заголовочного шрифта, поэтому крупным
   заголовкам поджимаем трекинг — иначе на больших кеглях буквы «рассыпаются».
   Мелкие капслок-метки (10-14px) трогать нельзя: там разрядка нужна для читаемости. */
.section-title-dark,
.section-title-light,
.sessions-content h2,
.booking-promo h2,
.thanks-title strong,
.footer-name,
.stat-num {
  letter-spacing: -0.02em;
}

/* Красная полоса первым блоком страницы: шапка position:fixed, поэтому
   отводим ей место, иначе полоса окажется под шапкой. */
.alert-banner.is-under-header { margin-top: 65px; }
@media (max-width: 768px) {
  .alert-banner.is-under-header { margin-top: 58px; }
}

/* ===== СОЦСЕТИ / СВЯЗЬ (mb_socials) ===== */
.mbb-socials { padding: 80px 40px; }
.mbb-socials.is-light { background: var(--cream); }
.mbb-socials.is-dark { background: var(--dark); }
.mbb-socials-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.mbb-socials-title {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.mbb-socials.is-light .mbb-socials-title { color: var(--text-dark); }
.mbb-socials.is-dark .mbb-socials-title { color: var(--white); }
.mbb-socials-sub { font-size: 16px; line-height: 1.6; margin-bottom: 34px; }
.mbb-socials.is-light .mbb-socials-sub { color: var(--text-mid); }
.mbb-socials.is-dark .mbb-socials-sub { color: rgba(255,255,255,0.7); }
.mbb-socials-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.mbb-social-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: 40px; text-decoration: none;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.45);
  transition: all 0.3s ease;
  /* цель нажатия не меньше 44px по высоте — требование к мобильным */
  min-height: 44px; box-sizing: border-box;
}
.mbb-social-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.mbb-socials.is-light .mbb-social-btn { color: var(--brown); background: rgba(255,255,255,0.6); }
.mbb-socials.is-dark .mbb-social-btn { color: var(--gold); background: rgba(255,255,255,0.04); }
.mbb-social-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--brown); border-color: transparent;
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

/* ===== КАРТОЧКИ ВЫБОРА (mb_choice) ===== */
.mbb-choice { background: var(--cream2); padding: 90px 40px; }
.mbb-choice-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.mbb-choice-eyebrow {
  color: var(--brown); font-family: 'Roboto', Arial, sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 14px;
}
.mbb-choice-title {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: clamp(28px, 3.5vw, 46px); font-weight: 700;
  letter-spacing: -0.02em; color: var(--text-dark); line-height: 1.15;
}
.mbb-choice-sub { max-width: 640px; margin: 16px auto 0; font-size: 16px; line-height: 1.7; color: var(--text-mid); }
.mbb-choice-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px; margin-top: 46px;
}
.mbb-choice-card {
  display: flex; flex-direction: column; text-decoration: none; overflow: hidden;
  background: #fff; border-radius: 18px; border: 1px solid rgba(201,168,76,0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mbb-choice-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0,0,0,0.14); }
.mbb-choice-thumb { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--cream); }
.mbb-choice-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mbb-choice-body { display: block; padding: 28px 26px 30px; text-align: left; }
.mbb-choice-name {
  display: block; font-family: 'Roboto', Arial, sans-serif;
  font-size: 20px; font-weight: 900; color: var(--text-dark); line-height: 1.25; margin-bottom: 10px;
}
.mbb-choice-desc { display: block; font-size: 15px; line-height: 1.65; color: var(--text-mid); margin-bottom: 20px; }
.mbb-choice-btn {
  display: inline-block; padding: 12px 24px; border-radius: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--brown);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
}

@media (max-width: 768px) {
  .mbb-socials { padding: 56px 20px; }
  .mbb-choice { padding: 60px 20px; }
  .mbb-choice-grid { gap: 18px; margin-top: 32px; }
  .mbb-choice-body { padding: 22px 20px 24px; }
}
/* ===== ХЛЕБНЫЕ КРОШКИ ===== */
.mbb-crumbs { max-width: 1200px; margin: 0 auto; padding: 18px 40px 0; }
.mbb-crumbs ol {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 12px; letter-spacing: .04em;
}
.mbb-crumbs li { display: flex; align-items: center; gap: 8px; }
.mbb-crumbs li + li::before { content: '›'; opacity: .45; }
.mbb-crumbs a { color: var(--gold); text-decoration: none; }
.mbb-crumbs a:hover { text-decoration: underline; }
.mbb-crumbs span[aria-current] { opacity: .65; }

/* На тёмных страницах крошки идут поверх тёмного фона */
.mbb-doc-page .mbb-crumbs { padding-left: 0; padding-right: 0; }

/* ===== СТРАНИЦЫ-ДОКУМЕНТЫ ===== */
.mbb-doc { background: var(--cream); padding: 40px 20px 90px; min-height: 60vh; }
.mbb-doc-inner { max-width: 860px; margin: 0 auto; }
.mbb-doc-title {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 900; letter-spacing: -.02em; line-height: 1.15;
  color: var(--text-dark); margin: 22px 0 28px;
}
.mbb-doc-body { color: var(--text-mid); font-size: 16px; line-height: 1.75; }
.mbb-doc-body h2 {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: clamp(19px, 2.2vw, 24px); font-weight: 700;
  color: var(--text-dark); margin: 34px 0 12px; letter-spacing: -.01em;
}
.mbb-doc-body p { margin: 0 0 16px; }
.mbb-doc-body ul { margin: 0 0 18px; padding-left: 22px; }
.mbb-doc-body li { margin-bottom: 8px; }
.mbb-doc-body a { color: var(--brown); text-decoration: underline; }
.mbb-doc-back {
  display: inline-block; margin-top: 40px; padding: 14px 28px; border-radius: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--brown);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; min-height: 44px; box-sizing: border-box;
}
.mbb-doc-back:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.35); }

@media (max-width: 768px) {
  .mbb-crumbs { padding: 14px 20px 0; font-size: 11px; }
  .mbb-doc { padding: 28px 16px 60px; }
  .mbb-doc-body { font-size: 15px; }
}

/* ===== ПРАВКИ ПО СКРИНАМ ИЗ ДОКУМЕНТА ===== */

/* Скрин «УВЕЛИЧИТЬ»: текст в блоке о сеансах был мелким для такого объёма. */
.info-point { font-size: 19px; line-height: 1.75; }
@media (max-width: 768px) {
  .info-point { font-size: 17px !important; }
}

/* Скрин «ВЕСЬ ТЕКСТ ЖИРНЫМ»: список возможностей блока ХУТТА. */
.hutta-list li { font-weight: 700; }

/* ============================================================
   ПЕРЕРАБОТКА ВАЖНЫХ БЛОКОВ (пометки красным на скринах)
   Анимации — только transform/opacity, 150–300 мс, с учётом
   prefers-reduced-motion. Цели нажатия не меньше 44px.
   ============================================================ */

/* ----- Чек-лист «Обо мне»: строки-карточки, золотая галочка ----- */
.checklist li {
  position: relative;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  margin-bottom: 8px;
  border-bottom: 0;
  border-radius: 14px;
  background: rgba(201, 168, 76, 0.05);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.checklist li:hover {
  transform: translateX(4px);
  background: rgba(201, 168, 76, 0.11);
  box-shadow: 0 8px 24px rgba(201, 168, 76, .14);
}
.checklist li::before {
  width: 30px; height: 30px;
  border-radius: 50%;
  margin-top: 0;
  font-size: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--brown);
  box-shadow: 0 4px 12px rgba(201, 168, 76, .35);
}

/* ----- Плашки компетенций: пилюли с золотым ховером ----- */
.skills-grid { gap: 12px; }
.skill-tag {
  display: flex; align-items: center; justify-content: center;
  min-height: 46px;                 /* палец попадает уверенно */
  padding: 12px 14px;
  border-radius: 999px;
  border-color: rgba(201, 168, 76, .55);
  font-weight: 700;
  letter-spacing: .06em;
  background: rgba(255, 255, 255, .5);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.skill-tag:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--brown);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(201, 168, 76, .35);
}

/* ----- Пункты со звёздочкой: звезда в золотом кружке ----- */
.indiv-point {
  align-items: center;
  border-left: 0;
  border-radius: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(201,168,76,.09), rgba(201,168,76,.03));
  border: 1px solid rgba(201, 168, 76, .22);
  transition: transform .25s ease, box-shadow .25s ease;
}
.indiv-point:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(201, 168, 76, .18);
}
.indiv-star {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  margin-top: 0;
  font-size: 17px;
  color: var(--brown);
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  box-shadow: 0 6px 16px rgba(201, 168, 76, .32);
}

/* ----- Цитаты: крупная золотая кавычка, мягкая подложка ----- */
.consult-route-quote,
.consult-quote {
  position: relative;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(201,168,76,.12), rgba(201,168,76,.03));
  border: 1px solid rgba(201, 168, 76, .28);
  box-shadow: 0 18px 46px rgba(201, 168, 76, .12);
}
.consult-route-quote { padding: 54px 46px 44px; }
.consult-route-quote::before,
.consult-quote::before {
  content: '“';
  position: absolute;
  top: -6px; left: 26px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 96px;
  line-height: 1;
  color: var(--gold);
  opacity: .5;
  pointer-events: none;
}

/* ----- Афиши мероприятий: крупнее и с эффектами (п. 40) ----- */
.poster-card {
  min-height: 340px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 72px 34px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(160deg, #fffdf8, #f6efe0);
  transition: transform .3s ease, box-shadow .3s ease;
}
.poster-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(201, 168, 76, .3);
}
/* мягкий блик — сигнал «здесь появится афиша» */
.poster-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,.55) 50%, transparent 62%);
  transform: translateX(-100%);
  animation: mbbShimmer 3.4s ease-in-out infinite;
  pointer-events: none;
}
.poster-placeholder { font-size: 26px; font-weight: 700; letter-spacing: -.01em; }

@keyframes mbbShimmer {
  0%, 65% { transform: translateX(-100%); }
  100%    { transform: translateX(100%); }
}

@media (prefers-reduced-motion: reduce) {
  .poster-card::after { animation: none; }
  .checklist li, .skill-tag, .indiv-point, .poster-card { transition: none; }
}

@media (max-width: 768px) {
  .consult-route-quote { padding: 44px 22px 30px; }
  .consult-route-quote::before, .consult-quote::before { font-size: 68px; left: 16px; }
  .poster-card { min-height: 250px; padding: 48px 22px; }
  .poster-placeholder { font-size: 21px; }
  .skill-tag { min-height: 44px; }
}

/* ============================================================
   БЛОК «АСТРО-РАЗБОР» — современное оформление
   Иконки переведены с эмодзи на SVG (правило no-emoji-icons).
   ============================================================ */
.astro-icons-col { display: grid; gap: 12px; align-content: start; }

.astro-icon-item {
  position: relative;
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  min-height: 64px;
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(255,255,255,.9), rgba(248,242,232,.75));
  border: 1px solid rgba(201, 168, 76, .28);
  box-shadow: 0 2px 10px rgba(28, 24, 21, .04);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
/* золотая полоска слева проявляется при наведении */
.astro-icon-item::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold2));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .25s ease;
}
.astro-icon-item:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 168, 76, .6);
  box-shadow: 0 14px 32px rgba(201, 168, 76, .22);
}
.astro-icon-item:hover::before { transform: scaleY(1); }

.astro-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  color: var(--brown);
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  box-shadow: 0 6px 16px rgba(201, 168, 76, .3);
  transition: transform .25s ease;
}
.astro-icon svg { width: 22px; height: 22px; display: block; }
.astro-icon-item:hover .astro-icon { transform: scale(1.08) rotate(-4deg); }

.astro-icon-label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1.3;
}

/* ----- Кнопка блока: градиент + блик, уезжающий при наведении ----- */
.astro-section .btn-cream {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  padding: 18px 40px;
  min-height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--brown);
  box-shadow: 0 10px 26px rgba(201, 168, 76, .32);
  transition: transform .25s ease, box-shadow .25s ease;
}
.astro-section .btn-cream::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.6) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}
.astro-section .btn-cream:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(201, 168, 76, .45);
}
.astro-section .btn-cream:hover::after { transform: translateX(120%); }

@media (prefers-reduced-motion: reduce) {
  .astro-icon-item, .astro-icon, .astro-section .btn-cream,
  .astro-section .btn-cream::after, .astro-icon-item::before { transition: none; }
}

@media (max-width: 768px) {
  .astro-icons-col { grid-template-columns: repeat(2, 1fr); }
  .astro-icon-item { min-height: 58px; padding: 12px 14px; gap: 10px; }
  .astro-icon { width: 38px; height: 38px; }
  .astro-icon svg { width: 19px; height: 19px; }
  .astro-icon-label { font-size: 11px; letter-spacing: .05em; }
}

/* Подпись в карточке астро-блока: без min-width:0 флекс-элемент не сжимается
   и длинное слово («ПРЕДНАЗНАЧЕНИЕ») вылезает за границу карточки. */
.astro-icon-label {
  min-width: 0;
  flex: 1 1 auto;
  overflow-wrap: anywhere;
  hyphens: auto;
  letter-spacing: .05em;
}
.astro-icon-item { align-items: center; }
@media (max-width: 768px) {
  .astro-icon-label { letter-spacing: .03em; font-size: 10.5px; }
}

/* ============================================================
   СТРАНИЦА ЦЕН (mb_prices)
   ============================================================ */
.mbb-prices { background: var(--cream); padding: 56px 20px 90px; }
.mbb-prices-in { max-width: 940px; margin: 0 auto; }
.mbb-prices-head { text-align: center; margin-bottom: 48px; }
.mbb-prices-eye {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--brown); margin-bottom: 14px;
}
.mbb-prices-title {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: clamp(30px, 4vw, 46px); font-weight: 900;
  letter-spacing: -.02em; line-height: 1.1; margin: 0 0 14px;
  background: linear-gradient(135deg, #5a3a1c, #9c6f33 55%, #c9a84c);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.mbb-prices-sub { max-width: 560px; margin: 0 auto; font-size: 16px; line-height: 1.65; color: var(--text-mid); }

.mbb-price-group { margin-bottom: 44px; }
.mbb-price-gt {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--brown); margin: 0 0 6px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(201,168,76,.35);
}
.mbb-price-note { font-size: 14px; color: var(--text-mid); margin: 12px 0 0; font-style: italic; }
.mbb-price-list { display: grid; gap: 10px; margin-top: 18px; }

.mbb-price-row {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 22px; min-height: 76px;
  border-radius: 16px; text-decoration: none;
  background: #fff;
  border: 1px solid rgba(201, 168, 76, .22);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.mbb-price-row:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 168, 76, .6);
  box-shadow: 0 16px 36px rgba(201, 168, 76, .2);
}
.mbb-price-main { display: block; min-width: 0; }
.mbb-price-name {
  display: block;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 17px; font-weight: 700; color: var(--text-dark);
  line-height: 1.3; overflow-wrap: anywhere;
}
.mbb-price-desc { display: block; margin-top: 5px; font-size: 14px; color: var(--text-mid); line-height: 1.5; }

.mbb-price-side { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.mbb-price-val { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.15; }
.mbb-price-old { font-size: 13px; color: var(--text-mid); text-decoration: line-through; opacity: .75; }
.mbb-price-new {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 21px; font-weight: 900; color: var(--text-dark);
  white-space: nowrap; font-variant-numeric: tabular-nums;
}
.mbb-price-ask { font-size: 14px; font-weight: 700; color: var(--brown); white-space: nowrap; }
.mbb-price-go {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; color: var(--brown);
  background: rgba(201, 168, 76, .14);
  transition: background .25s ease, transform .25s ease, color .25s ease;
}
.mbb-price-go svg { width: 20px; height: 20px; }
.mbb-price-row:hover .mbb-price-go {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
  .mbb-price-row, .mbb-price-go { transition: none; }
}
@media (max-width: 768px) {
  .mbb-prices { padding: 34px 16px 60px; }
  .mbb-price-row { flex-direction: column; align-items: flex-start; gap: 12px; padding: 18px; }
  .mbb-price-side { width: 100%; justify-content: space-between; }
  .mbb-price-val { align-items: flex-start; }
  .mbb-price-new { font-size: 20px; }
}

/* ============================================================
   ФОТО МАРИНЫ — КРУПНЕЕ САМО ИЗОБРАЖЕНИЕ
   Ширину колонок НЕ трогаем: текст остаётся на своём месте.
   Увеличиваем только картинку — она симметрично выходит за
   границы контейнера (у него overflow: visible), занимая
   пустое поле слева и отступ справа.
   ============================================================ */
/* Масштаб задаётся переменной --photo-scale: её ставит блок из
   поля «Размер фото» в админке, поэтому величину можно менять
   без правки кода. Отрицательные поля считаются автоматически,
   так что фото всегда остаётся по центру колонки. */
.about-photo img,
.about-light-photo img,
.sessions-photo img,
.photo-transparent-wrap img {
  width: var(--photo-scale, 150%);
  max-width: none;
  margin-left: calc((100% - var(--photo-scale, 150%)) / 2);
  margin-right: calc((100% - var(--photo-scale, 150%)) / 2);
}

@media (max-width: 1180px) {
  .about-photo img,
  .about-light-photo img,
  .sessions-photo img,
  .photo-transparent-wrap img {
    width: var(--photo-scale-md, 125%);
    margin-left: calc((100% - var(--photo-scale-md, 125%)) / 2);
    margin-right: calc((100% - var(--photo-scale-md, 125%)) / 2);
  }
}

/* ============================================================
   ИНДИВИДУАЛЬНЫЕ СЕАНСЫ — ФОТО ВО ВСЮ ВЫСОТУ БЛОКА
   Колонки растягиваем по высоте и прижимаем фото к низу:
   раньше картинка висела вверху и не добирала до низа текста.
   ============================================================ */
.indiv-top {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: stretch;
}
.indiv-top .indiv-photo { display: flex; }
.indiv-top .photo-transparent-wrap {
  flex: 1;
  display: flex;
  align-items: flex-end;
  min-height: 100%;
}
.indiv-top .photo-transparent-wrap img {
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}
@media (max-width: 1024px) {
  .indiv-top { grid-template-columns: 1fr; gap: 32px; }
  .indiv-top .photo-transparent-wrap { max-width: 460px; margin-inline: auto; }
  .indiv-top .photo-transparent-wrap img { height: auto; }
}

/* На мобильном колонка одна. Расширяем изображение
   до края экрана — фото на мобилке должны читаться крупно.
   Уменьшаем padding контейнера, чтобы фото заняло всю доступную
   ширину — и заодно оказалось строго по центру (без transform-хаков,
   которые «съезжали» из-за отрицательных margin у vc_row). */
@media (max-width: 768px) {
  .container { padding-left: 16px !important; padding-right: 16px !important; }

  /* Жёсткая рамка 3/4 на мобильном не нужна: фото Марины по пропорциям
     шире, чем 3:4, и внутри портретного бокса оставалось до 260px пустоты
     сверху. Отпускаем высоту — блок обнимает изображение. */
  .about-photo,
  .about-light-photo,
  .sessions-photo,
  .photo-transparent-wrap {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    transform: none !important;
    aspect-ratio: auto !important;
    height: auto !important;
    min-height: 0 !important;
  }
  .about-photo img,
  .about-light-photo img,
  .sessions-photo img,
  .photo-transparent-wrap img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: block;
  }

  /* PNG-вырезки (фигура на прозрачном фоне) приходят с широкими пустыми
     полями: фигура занимает ~66% ширины файла. Увеличиваем картинку и
     срезаем прозрачные поля контейнером — фигура заполняет блок. */
  .mbb-cutout { overflow: hidden !important; }
  .mbb-cutout img {
    width: 152% !important;
    max-width: none !important;
    margin-left: -26% !important;
    margin-right: -26% !important;
  }

  .hero-photo-frame {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero-photo-frame img { width: 100%; height: auto; display: block; }
}

/* ============================================================
   ПЕРВЫЙ ЭКРАН НА МОБИЛКЕ — ЗАГОЛОВОК КРУПНЕЕ
   Было 36px @480 / 44px @768 — слишком мелко для первого экрана.
   Поднимаем до 52-58px, подзаголовок с 20 до 24.
   ============================================================ */
@media (max-width: 768px) {
  .hero-name { font-size: 58px !important; letter-spacing: -1.5px !important; line-height: 0.95 !important; }
  .hero-name span { font-size: 24px !important; letter-spacing: 4px !important; margin-top: 12px !important; }
  .hero-subtitle { font-size: 20px !important; }
  .hero-tagline, .hero-quote { font-size: 18px !important; }
}
@media (max-width: 480px) {
  .hero-name { font-size: 52px !important; }
  .hero-name span { font-size: 22px !important; letter-spacing: 3px !important; }
  .hero-subtitle { font-size: 18px !important; }
}

/* ============================================================
   КОРИЧНЕВЫЙ ГРАДИЕНТ — ВСЕМ ЗАГОЛОВКАМ НА СВЕТЛОМ ФОНЕ
   Раньше градиент был только у блоков консультаций, остальные
   оставались чёрными. Заголовки на тёмных секциях (hero,
   «Обо мне», мероприятия, отзывы, запись) не трогаем — там
   белый текст, коричневый на тёмном был бы нечитаем.
   ============================================================ */
.section-title-light,
.courses-section h2,
.group-sessions h2,
.indiv-sessions-section h2,
.posters-section .posters-title,
.hutta-section .section-title-light,
.reasons-section .section-title-light,
.faq-section .section-title-light,
.training-section .section-title-light,
.mbb-xp-title {
  background: linear-gradient(135deg, #5a3a1c, #9c6f33 55%, #c9a84c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Заголовки на тёмных секциях остаются светлыми */
.about-dark .section-title-dark,
.events-section .section-title-center,
.reviews-section .section-title-center,
.booking-section .section-title-center,
.hero-name {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: var(--white);
}

/* ============================================================
   ВЫПАДАЮЩЕЕ ПОДМЕНЮ В ШАПКЕ
   Пункт «Консультации» разворачивается при наведении и содержит
   три страницы: групповые, индивидуальные, персональные.
   ============================================================ */
.header-nav .nav-item.has-submenu { position: relative; display: inline-flex; align-items: center; }
.header-nav .nav-item.has-submenu > .nav-parent { display: inline-flex; align-items: center; gap: 4px; }
.header-nav .submenu-caret { font-size: 10px; opacity: .7; transition: transform .2s ease; }
.header-nav .nav-item.has-submenu:hover .submenu-caret,
.header-nav .nav-item.has-submenu:focus-within .submenu-caret { transform: rotate(-180deg); opacity: 1; }

.header-nav .submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 260px;
  background: rgba(14, 35, 24, .98);
  border: 1px solid rgba(201, 168, 76, .35);
  border-radius: 12px;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 900;
}
.header-nav .nav-item.has-submenu:hover .submenu,
.header-nav .nav-item.has-submenu:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.header-nav .submenu a {
  display: block;
  padding: 10px 22px;
  color: #f5efe1;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.header-nav .submenu a:hover { background: rgba(201, 168, 76, .12); color: #c9a84c; }

/* Фирменные цветные логотипы соцсетей в подвале.
   Рамка и подложка убраны — логотип сам по себе узнаваем. */
.social-btn.is-brand {
  border: 0;
  background: transparent;
  width: 44px; height: 44px;
  padding: 0;
  transition: transform .25s ease, filter .25s ease;
}
.social-btn.is-brand svg { width: 100%; height: 100%; display: block; }
.social-btn.is-brand:hover {
  background: transparent;
  transform: translateY(-3px) scale(1.06);
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.35));
}

/* ============================================================
   ПЛИТКА УСЛУГ: ДОП. КНОПКА «ПОДРОБНЕЕ»
   .btn-outline срезан clip-path в виде параллелограмма — внутри
   карточки во всю ширину от него оставались только верхняя и
   нижняя линии. Здесь кнопке возвращаем нормальную форму.
   ============================================================ */
.format-btn-info {
  clip-path: none;
  border-radius: 999px;
  padding: 13px 24px;
  border: 1.5px solid rgba(90, 58, 28, .28);
  color: var(--brown, #5a3a1c);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.format-btn-info:hover {
  background: rgba(184, 145, 47, .10);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Бейджи новых карточек плитки */
.format-badge.group    { background: rgba(18, 112, 63, .12);  color: #0e5c33; }
.format-badge.products { background: rgba(184, 145, 47, .16); color: #6d5111; }

/* ============================================================
   КРАСНАЯ ПОЛОСА — ПЛАВНОЕ МАСШТАБИРОВАНИЕ
   Звёздочки были псевдоэлементами в потоке текста: на узких
   экранах строка переносилась и звезда уезжала на отдельную
   строку. Делаем полосу флекс-рядом — звёзды всегда по краям,
   переносится только текст между ними.
   Размеры на clamp: одна формула на телефон, планшет и десктоп.
   ============================================================ */
.alert-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2vw, 18px);
  padding: clamp(11px, 2.2vw, 17px) clamp(14px, 4vw, 32px);
  font-size: clamp(10px, 1.5vw, 13px);
  letter-spacing: clamp(.4px, .12vw, 1.2px);
  line-height: 1.35;
  text-wrap: balance;
}
.alert-banner::before,
.alert-banner::after {
  margin: 0;
  flex: none;
  font-size: 1.1em;
  line-height: 1;
}

/* Чёрная полоса-меню из первого экрана убрана — правила больше не нужны */
.nav-strip { display: none !important; }

/* ============================================================
   СОЦСЕТИ НА ПЕРВОМ ЭКРАНЕ (под кнопками)
   В верхней полосе места нет — меню занимает её целиком.
   Здесь ссылки заметны, не сжимают навигацию и попадают в
   норму 44px по касанию.
   ============================================================ */
.hero-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.hero-social-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(201, 168, 76, .28);
  text-decoration: none;
  transition: transform .25s ease, background .25s ease,
              border-color .25s ease, box-shadow .25s ease;
}
.hero-social-btn svg { width: 22px; height: 22px; display: block; }
.hero-social-btn:hover {
  transform: translateY(-3px);
  background: rgba(201, 168, 76, .14);
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
}
.hero-social-btn:active { transform: translateY(-1px); }

@media (max-width: 900px) {
  .hero-social { justify-content: center; margin-top: 22px; }
}
@media (max-width: 480px) {
  .hero-social { gap: 10px; }
  .hero-social-btn { width: 42px; height: 42px; }
  .hero-social-btn svg { width: 20px; height: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-social-btn:hover { transform: none; }
}

/* ============================================================
   ЗОЛОТЫЕ КНОПКИ ПЕРВОГО ЭКРАНА — КРУПНЕЕ НА ПК
   11px при разрядке 2px читались мелко на большом мониторе.
   Поднимаем только в первом экране на десктопе: в остальных
   секциях кнопки остаются прежними.
   ============================================================ */
@media (min-width: 901px) {
  .hero-cta .btn-gold,
  .hero-cta .btn-outline {
    font-size: 14px;
    letter-spacing: 2.2px;
    padding: 19px 46px;
  }
}

/* ============================================================
   РАМКА-ПРИМЕЧАНИЕ (mt_note)
   ============================================================ */
.mt-note-wrap { width: min(1220px, calc(100% - 40px)); margin: 0 auto; padding: 24px 0 72px; }
.mt-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  border: 1px solid rgba(120, 224, 184, .28);
  border-left: 4px solid #5fe6bb;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(12, 38, 30, .72), rgba(6, 22, 18, .6));
  box-shadow: 0 26px 70px rgba(0, 0, 0, .5);
}
.mt-note svg { width: 26px; height: 26px; flex: none; color: #5fe6bb; margin-top: 2px; }
.mt-note p { margin: 0; color: #c2dccf; font-size: 17px; line-height: 1.6; }
.mt-note strong { color: #f4fbf7; }
@media (max-width: 600px) {
  .mt-note { padding: 20px; gap: 12px; }
  .mt-note p { font-size: 15.5px; }
}

/* ============================================================
   АФИШИ — КРУПНЕЕ, С ИЗОБРАЖЕНИЕМ
   Карточки были узкими текстовыми плашками. Расширяем сетку,
   добавляем место под скриншот лендинга и делаем кликабельной
   всю карточку, а не только надпись «подробнее».
   ============================================================ */
.events-grid {
  max-width: 1120px;
  gap: 34px;
}
.event-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: 20px;
  text-decoration: none;
  min-height: 260px;
}
.event-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: rgba(255, 255, 255, .04);
}
.event-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .5s ease;
}
.event-card:hover .event-card-media img { transform: scale(1.04); }
.event-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex: 1;
  padding: 40px 32px;
  position: relative;
  z-index: 1;
}
/* Без картинки карточка остаётся высокой — иначе рядом с соседней
   с изображением она выглядела бы обрубком. */
.event-card:not(.has-image) .event-card-body { padding: 72px 32px; }
.event-card-title { margin-bottom: 0; }

@media (max-width: 900px) {
  .events-grid { max-width: 560px; gap: 24px; }
  .event-card { min-height: 0; }
  .event-card-body { padding: 30px 24px; }
  .event-card:not(.has-image) .event-card-body { padding: 48px 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .event-card:hover .event-card-media img { transform: none; }
}

/* ============================================================
   КРУПНЕЕ ФОТО МАРИНЫ НА БОЛЬШИХ ЭКРАНАХ
   Изображение вписано в колонку (object-fit: contain), поэтому
   увеличение процента ширины ничего не давало: размер упирался в
   высоту колонки. Расширяем саму колонку, текст занимает остаток
   строки. Планшета и телефона это не касается.
   Блок стоит в конце файла: иначе его перебивали базовые правила.
   ============================================================ */
/* Раскладка блока консультаций: раньше стояла инлайном в шорткоде,
   из-за чего её нельзя было переопределить под большой экран. */
.consult-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) {
  .consult-top { grid-template-columns: 1fr; gap: 34px; }
}

@media (min-width: 1181px) {
  .about-dark .container  { grid-template-columns: 520px minmax(0, 1fr); }
  .about-light-inner      { grid-template-columns: 460px minmax(0, 1fr); }
  .consult-top            { grid-template-columns: 460px minmax(0, 1fr); }
  /* Индивидуальные сеансы. У PNG-вырезки сверху 20% пустоты, поэтому
     фигура висела в середине, а над ней зияла дыра. Обрезаем пустой
     верх: фото прижато к низу и увеличено ровно на эти 20%, лишнее
     уходит за край ячейки. Правило только для вырезок — обычное фото
     обрезать нечего. */
  .indiv-top              { grid-template-columns: 500px minmax(0, 1fr); }
  /* Высота ячейки фиксированная: иначе длинный текст растягивал бы строку,
     фигура росла вместе с ней и её обрезало бы по бокам. */
  .indiv-top .indiv-photo {
    height: 620px;
    align-self: end;
    position: relative;
    overflow: hidden;
  }
  .indiv-top .photo-transparent-wrap.mbb-cutout { position: static; }
  .indiv-top .photo-transparent-wrap.mbb-cutout img {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 125.4%;
    width: auto;
    /* базовое правило ограничивает высоту сотней процентов — снимаем */
    max-height: none;
    max-width: none;
    margin: 0;
  }

  /* Групповые сеансы: фото квадратное, а рамка 3/4 — из-за этого оно
     вылезало по бокам и подходило вплотную к тексту. Пусть занимает
     колонку целиком. */
  .sessions-inner { grid-template-columns: 500px minmax(0, 1fr); }
  .sessions-photo { aspect-ratio: auto; }
  .sessions-photo img { width: 100%; height: auto; margin-left: 0; margin-right: 0; }
}
