/* Leto — Vidnoe summer camp landing
   Palette: deep navy bg, coral primary, sunny yellow & teal accents
   Type: Unbounded (display) + Manrope (body) */

:root {
  --bg: #1B2A4E;          /* lighter, friendlier navy */
  --bg-2: #233A66;
  --bg-3: #2D4A82;
  --ink: #0F1A2E;         /* deep ink for text on bright colors */
  --line: rgba(250, 247, 240, 0.10);
  --line-2: rgba(250, 247, 240, 0.20);
  --text: #FAF7F0;
  --text-mute: rgba(250, 247, 240, 0.68);
  --text-dim: rgba(250, 247, 240, 0.46);
  --accent: #FF6B6B;       /* cheerful coral */
  --accent-2: #FFD93D;     /* sunny golden yellow */
  --accent-3: #4ECDC4;     /* mint teal */
  --accent-4: #C792EA;     /* lavender — new */
  --accent-5: #FF93C6;     /* pink — new */
  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --container: 1200px;
  --pad: 80px;
}

/* light palette (alt) */
.theme-cream {
  --bg: #F5EFE0;
  --bg-2: #EBE2CB;
  --bg-3: #DDD0B0;
  --ink: #1A1F2E;
  --line: rgba(26, 31, 46, 0.10);
  --line-2: rgba(26, 31, 46, 0.20);
  --text: #1A1F2E;
  --text-mute: rgba(26, 31, 46, 0.68);
  --text-dim: rgba(26, 31, 46, 0.46);
  --accent: #FF5A5F;
  --accent-2: #F4A261;
  --accent-3: #06A77D;
  --accent-4: #7E57C2;
  --accent-5: #EC407A;
}

.theme-forest {
  --bg: #16382F;
  --bg-2: #1E4A3F;
  --bg-3: #266152;
  --ink: #0C1F1A;
  --line: rgba(244, 241, 232, 0.10);
  --line-2: rgba(244, 241, 232, 0.20);
  --text: #F4F1E8;
  --text-mute: rgba(244, 241, 232, 0.68);
  --text-dim: rgba(244, 241, 232, 0.46);
  --accent: #FFB400;
  --accent-2: #F25C54;
  --accent-3: #88D498;
  --accent-4: #FF93C6;
  --accent-5: #FFE066;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

/* —— typography */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-mute);
}
.eyebrow::before {
  content: ''; width: 24px; height: 1px; background: currentColor; opacity: 0.5;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}

.h-display {
  font-size: clamp(36px, 5vw, 78px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
}
.h-xl { font-size: clamp(36px, 5vw, 64px); }
.h-lg { font-size: clamp(28px, 3.4vw, 44px); }
.h-md { font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.015em; }
.h-sm { font-size: 18px; letter-spacing: -0.01em; line-height: 1.2; }

.lead {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.45;
  color: var(--text-mute);
  text-wrap: pretty;
  max-width: 60ch;
}

.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; letter-spacing: 0; }

/* —— layout */
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.section { padding: var(--pad) 0; position: relative; }
.section + .section { border-top: 1px solid var(--line); }
.section-pad { padding: var(--pad) 32px; max-width: var(--container); margin: 0 auto; }

.row { display: flex; gap: 24px; }
.between { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* —— pieces */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 12px; font-weight: 500;
  color: var(--text-mute);
  background: transparent;
}
.chip-solid {
  background: var(--accent); color: var(--ink); border-color: transparent;
}
.chip-yellow { background: var(--accent-2); color: var(--ink); border-color: transparent; }
.chip-teal { background: var(--accent-3); color: var(--ink); border-color: transparent; }
.chip-outline-strong { border-color: var(--text); color: var(--text); }

.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-3);
  display: inline-block;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  border: 1px solid var(--text);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn:hover { background: var(--text); color: var(--bg); }
.btn-arrow::after { content: '→'; display: inline-block; transition: transform 0.2s; }
.btn-arrow:hover::after { transform: translateX(3px); }

.btn-primary {
  background: var(--accent); color: var(--ink); border-color: var(--accent);
}
.btn-primary:hover { background: #ff7a78; border-color: #ff7a78; color: var(--ink); }

.btn-yellow {
  background: var(--accent-2); color: var(--ink); border-color: var(--accent-2);
}
.btn-yellow:hover { background: #fff183; border-color: #fff183; }

.btn-sm { padding: 10px 16px; font-size: 13px; }

/* —— Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px; max-width: var(--container); margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 500; font-size: 18px; letter-spacing: -0.02em; }
.logo-mark {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent);
  position: relative;
  display: inline-block;
}
.logo-mark::after {
  content: ''; position: absolute; inset: 6px;
  border-radius: 50%; background: var(--accent-2);
  transform: translate(4px, -2px);
  mix-blend-mode: multiply;
}
.nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--text-mute); }
.nav-links a { white-space: nowrap; }
.nav-links a:hover { color: var(--text); }
.nav-phone { font-size: 14px; font-weight: 600; white-space: nowrap; }

/* —— Hero */
.hero { padding: 64px 0 88px; position: relative; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}
.hero-text { min-width: 0; }
.hero-art { margin-top: 0; }
.hero h1 { max-width: none; }
.hero h1 .strike-line {
  display: inline-block; position: relative;
}
.hero h1 em {
  font-style: normal;
  font-family: 'PT Serif', 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--accent-2);
}
.hero h1 .underline {
  position: relative; display: inline-block;
}
.hero h1 .underline::after {
  content: ''; position: absolute;
  left: -4px; right: -4px; bottom: 0.05em; height: 0.18em;
  background: var(--accent);
  z-index: -1;
  border-radius: 4px;
}

.hero-meta {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px 32px;
  margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--line-2);
}
.meta-cell .meta-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-dim); margin-bottom: 8px;
}
.meta-cell .meta-val {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.5vw, 22px); letter-spacing: -0.02em; line-height: 1.15;
  text-wrap: balance;
}

/* hero collage */
/* hero collage — clean grid, no overlap with text column */
.collage {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: 1.1fr 1fr;
  gap: 12px;
  height: clamp(340px, 38vw, 460px);
  min-width: 0;
}
.collage .ph {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
  position: relative;
  border: 1px solid var(--line-2);
}
.ph-inner {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  position: relative;
}
.ph-tag {
  position: absolute; bottom: 12px; left: 12px;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.92);
  padding: 4px 10px; border-radius: 4px;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(8px);
}
.collage .c-1 { grid-column: 1 / 3; grid-row: 1; }
.collage .c-2 { grid-column: 1; grid-row: 2; }
.collage .c-3 {
  grid-column: 2; grid-row: 2;
  background: var(--accent); color: var(--ink);
  padding: 18px; display: flex; flex-direction: column;
  justify-content: space-between;
  border: none;
}
.collage .c-3 .c-3-eyebrow {
  font-size: 11px; font-family: var(--font-body);
  letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600; opacity: 0.75;
}
.collage .c-3 .c-3-big {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1; letter-spacing: -0.03em;
}

/* two sticker circles, perched on top-right of collage */
.sticker-pair {
  position: absolute;
  top: -32px; right: 12px;
  display: flex;
  z-index: 4;
  pointer-events: none;
}
.sticker-circle {
  width: 76px; height: 76px;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 500; line-height: 1;
  text-align: center;
  color: var(--ink);
  border: 3px solid var(--bg);
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
  padding: 4px;
}
.sticker-circle .big {
  font-size: 28px; letter-spacing: -0.05em;
}
.sticker-circle .small {
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  font-family: var(--font-body); font-weight: 700;
  margin-top: 3px; opacity: 0.78;
}
.sticker-pair .s-1 {
  background: var(--accent-3);
  transform: rotate(-8deg);
  margin-right: -10px;
  z-index: 2;
}
.sticker-pair .s-2 {
  background: var(--accent-2);
  transform: rotate(10deg);
  z-index: 1;
}

/* —— marquee strip */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  background: var(--bg-2);
}
.strip-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: scroll 36s linear infinite;
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: -0.01em;
  color: var(--text);
}
.strip-track span { display: inline-flex; align-items: center; gap: 48px; }
.strip-track .sep { color: var(--accent); margin: 0 8px; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* —— Sections */
.section-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  margin-bottom: 56px; align-items: end;
}
.section-head .section-title { max-width: 12ch; }

/* About section: title is longer than other section heads, give it room */
.about-head {
  grid-template-columns: 1.6fr 1fr;
  align-items: start;
  gap: 80px;
}
.about-head h2 { max-width: none; text-wrap: balance; }
.about-head .lead { padding-top: 8px; }

/* About */
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}
.about-stat {
  padding: 28px 24px 28px 0;
  border-right: 1px solid var(--line);
}
.about-stat:last-child { border-right: 0; padding-right: 0; }
.about-stat .stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1; margin-bottom: 8px;
  color: var(--text);
}
.about-stat .stat-num .unit { color: var(--accent); }
.about-stat .stat-label { font-size: 14px; color: var(--text-mute); max-width: 24ch; }

/* Directions */
.directions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.dir-card {
  background: var(--bg);
  padding: 28px 24px 24px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  min-height: 240px;
  transition: background 0.25s;
}
.dir-card:hover { background: var(--bg-2); }
.dir-num {
  font-family: var(--font-display);
  font-size: 13px; color: var(--text-dim);
  letter-spacing: 0.05em;
}
.dir-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  margin-bottom: 4px;
  color: var(--accent);
}
.dir-card h3 {
  font-family: var(--font-display); font-size: 20px;
  letter-spacing: -0.015em; line-height: 1.1;
  color: var(--text);
}
.dir-card p { font-size: 13.5px; line-height: 1.45; color: var(--text-mute); margin: 0; }
.dir-card .dir-tag {
  align-self: flex-start;
  margin-top: auto;
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent-3);
}

/* Tariffs */
.tariffs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.tariff {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
}
.tariff.tariff-premium {
  background: var(--accent);
  color: var(--ink);
  border-color: transparent;
}
.tariff.tariff-premium .tariff-head h3,
.tariff.tariff-premium .tariff-price .num,
.tariff.tariff-premium .tariff-price .from,
.tariff.tariff-premium .tariff-feature {
  color: var(--ink);
}
.tariff.tariff-premium .tariff-feature::before { color: var(--ink); }
.tariff.tariff-premium .tariff-sub { color: rgba(15,26,46,0.7); }
.tariff.tariff-premium .tariff-badge {
  background: var(--ink); color: var(--accent-2);
}
.tariff-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px;
}
.tariff-head h3 {
  font-family: var(--font-display); font-size: 26px; letter-spacing: -0.02em;
}
.tariff-badge {
  background: var(--accent-2); color: var(--ink);
  padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}
.tariff-price {
  display: flex; align-items: baseline; gap: 6px;
  margin: 4px 0 4px;
  font-family: var(--font-display);
}
.tariff-price .from {
  font-size: 14px; color: var(--text-dim); letter-spacing: 0.04em; text-transform: lowercase;
}
.tariff-price .num {
  font-size: 56px; line-height: 1; letter-spacing: -0.04em; color: var(--text);
}
.tariff-price .per {
  font-size: 14px; color: var(--text-dim);
}
.tariff-sub { font-size: 14px; color: var(--text-mute); margin: -8px 0 4px; max-width: 32ch; }
.tariff-features { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 10px; }
.tariff-feature {
  font-size: 14px; line-height: 1.4;
  color: var(--text);
  padding-left: 26px;
  position: relative;
}
.tariff-feature::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--accent-3); font-weight: 700;
}
.tariff-cta { margin-top: 12px; }

/* Teachers */
.teachers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.teacher-card {
  display: flex; flex-direction: column; gap: 16px;
}
.teacher-photo {
  aspect-ratio: 4/5;
  background: var(--bg-3);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.teacher-photo .ph-inner { width: 100%; height: 100%; }
.teacher-info h4 {
  font-family: var(--font-display); font-size: 20px;
  letter-spacing: -0.015em; margin-bottom: 4px;
}
.teacher-info .role { font-size: 13px; color: var(--accent-3); margin-bottom: 8px; }
.teacher-info p { font-size: 13.5px; color: var(--text-mute); line-height: 1.45; margin: 0; }
.teacher-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px;
}

/* Schedule */
.schedule {
  display: grid; grid-template-columns: 1fr 2fr; gap: 60px;
  align-items: start;
}
.schedule-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.schedule-item {
  display: grid; grid-template-columns: 100px 1fr auto;
  gap: 24px; align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.schedule-item .time {
  font-family: var(--font-display); font-size: 18px;
  letter-spacing: -0.01em; color: var(--accent-2);
}
.schedule-item .activity {
  font-size: 16px; color: var(--text);
}
.schedule-item .activity .desc {
  display: block; font-size: 13px; color: var(--text-mute); margin-top: 4px;
}
.schedule-item .tag {
  font-size: 11px; color: var(--text-dim); letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Organizers */
.orgs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.org-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 280px;
}
.org-mark {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 500; font-size: 22px; letter-spacing: -0.02em;
  color: var(--ink);
}
.org-mark.m-1 { background: var(--accent); }
.org-mark.m-2 { background: var(--accent-2); }
.org-mark.m-3 { background: var(--accent-3); }
.org-card h4 { font-family: var(--font-display); font-size: 22px; letter-spacing: -0.02em; }
.org-card .org-desc { font-size: 14px; color: var(--text-mute); line-height: 1.5; margin: 0; flex: 1; }
.org-card .org-meta {
  font-size: 12px; color: var(--text-dim);
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 16px; border-top: 1px solid var(--line);
}

/* ОВЗ — special needs */
.inclusion {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center;
  border: 1px solid var(--line-2);
}
.inclusion-mark {
  width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--accent-3);
  color: var(--ink);
  font-family: var(--font-display); font-size: 36px;
  margin-bottom: 24px;
}
.inclusion h2 { margin-bottom: 16px; }
.inclusion ul { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 10px; }
.inclusion ul li {
  padding-left: 20px; position: relative;
  font-size: 14.5px; color: var(--text);
}
.inclusion ul li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent-3);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: 12px;
}
.gallery .g {
  background: var(--bg-3);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.gallery .g.g-1 { grid-column: span 2; grid-row: span 2; }
.gallery .g.g-2 { grid-column: span 2; grid-row: span 1; }
.gallery .g.g-3 { grid-column: span 2; grid-row: span 1; }
.gallery .g.g-4 { grid-column: span 2; grid-row: span 1; }
.gallery .g.g-5 { grid-column: span 2; grid-row: span 1; }
.gallery .g.g-6 { grid-column: span 3; grid-row: span 1; }
.gallery .g.g-7 { grid-column: span 3; grid-row: span 1; }

/* Reviews */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.review {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
}
.review-quote {
  font-family: var(--font-display);
  font-size: 18px; line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0;
}
.review-quote::before {
  content: '"'; display: block;
  font-size: 56px; color: var(--accent);
  line-height: 0.5; margin-bottom: 16px;
  font-family: serif;
}
.review-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--line);
  margin-top: auto;
}
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 14px;
  color: var(--text);
}
.review-author .name { font-size: 14px; font-weight: 600; line-height: 1.2; }
.review-author .meta { font-size: 12px; color: var(--text-dim); }

/* Map */
.map {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: stretch;
}
.map-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex; flex-direction: column; gap: 24px;
}
.map-card h3 { font-size: 28px; }
.map-info { display: flex; flex-direction: column; gap: 20px; }
.map-info-row {
  display: flex; gap: 16px; align-items: flex-start;
  padding-bottom: 16px; border-bottom: 1px solid var(--line);
}
.map-info-row:last-child { border-bottom: 0; padding-bottom: 0; }
.map-info-row .lbl {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-dim); width: 100px; flex-shrink: 0;
  padding-top: 4px;
}
.map-info-row .val { font-size: 15px; line-height: 1.4; }

.map-image {
  background: var(--bg-3); border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  min-height: 360px;
  display: block;
  text-decoration: none;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(0,206,203,0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255,237,102,0.08) 0%, transparent 50%);
  transition: transform 0.25s ease;
}
.map-image:hover { transform: translateY(-2px); }
.map-open {
  position: absolute; bottom: 16px; right: 16px;
  background: var(--text); color: var(--bg);
  padding: 8px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  letter-spacing: -0.005em;
  z-index: 2;
}
.map-pin {
  position: absolute; top: 45%; left: 48%;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.map-pin-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--text);
  box-shadow: 0 0 0 6px rgba(255,94,91,0.25), 0 4px 12px rgba(0,0,0,0.3);
}
.map-pin-pulse {
  position: absolute; top: 0; left: 0;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(3.5); opacity: 0; }
}
.map-pin-label {
  background: var(--text); color: var(--bg);
  padding: 4px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  margin-top: 6px;
  white-space: nowrap;
}
.map-streets {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(0deg, transparent 49%, rgba(244,241,232,0.06) 50%, transparent 51%),
    linear-gradient(90deg, transparent 49%, rgba(244,241,232,0.06) 50%, transparent 51%),
    linear-gradient(45deg, transparent 49%, rgba(244,241,232,0.04) 50%, transparent 51%);
  background-size: 80px 80px, 80px 80px, 160px 160px;
}

/* Checklist */
.checklist {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}
.checklist-items {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px; margin-top: 28px;
}
.check-item {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px;
  cursor: pointer;
  user-select: none;
}
.check-box {
  width: 22px; height: 22px;
  border: 1.5px solid var(--line-2);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}
.check-item.done .check-box {
  background: var(--accent-3); border-color: var(--accent-3);
}
.check-item.done .check-box::after {
  content: '✓'; color: var(--ink); font-weight: 800; font-size: 14px;
}
.check-item.done .check-label {
  color: var(--text-dim); text-decoration: line-through;
}

/* Referral */
.referral {
  background: var(--accent-2);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 40px; align-items: center;
}
.referral h2 { color: var(--ink); }
.referral p { color: rgba(15,26,46,0.75); font-size: 16px; margin: 16px 0 0; max-width: 40ch; }
.referral-discount {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 168px);
  line-height: 0.9; letter-spacing: -0.05em;
  color: var(--ink);
  text-align: right;
}
.referral-discount .pct { color: var(--accent); }

/* FAQ */
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%; text-align: left; background: transparent; border: 0;
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 20px; letter-spacing: -0.015em;
  cursor: pointer;
}
.faq-q .plus {
  width: 32px; height: 32px;
  border-radius: 50%; border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--text-mute);
  flex-shrink: 0;
  transition: all 0.2s;
}
.faq-item.open .faq-q .plus {
  background: var(--accent); color: var(--ink); border-color: var(--accent);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-mute);
  font-size: 15px; line-height: 1.55;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 0 24px;
}
.faq-a p { margin: 0 0 12px; max-width: 70ch; }

/* Booking */
.booking {
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(255,94,91,0.15) 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(0,206,203,0.12) 0%, transparent 40%);
}
.booking-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.booking h2 { margin-bottom: 16px; }
.booking-cta {
  display: flex; flex-direction: column; gap: 20px;
}
.booking-step {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.booking-step:last-child { border-bottom: 0; }
.booking-step .step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 500; font-size: 15px;
  flex-shrink: 0;
}
.booking-step .step-content h4 { font-family: var(--font-display); font-size: 18px; margin-bottom: 4px; letter-spacing: -0.01em; }
.booking-step .step-content p { font-size: 14px; color: var(--text-mute); margin: 0; }
.booking-step .step-content a { color: var(--accent-2); font-weight: 600; }

.phone-big {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1; color: var(--text);
  margin: 16px 0 24px;
}
.phone-big:hover { color: var(--accent); }

/* Footer */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
  font-size: 14px;
  color: var(--text-mute);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer h5 {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 16px;
  font-family: var(--font-body); font-weight: 600;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer ul a:hover { color: var(--text); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px;
  font-size: 12px; color: var(--text-dim);
}

/* Maternity Capital banner */
.matkap {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1.4fr;
  gap: 48px;
  background: linear-gradient(135deg, var(--accent-2) 0%, #FFE36C 100%);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 48px 48px 44px;
  position: relative;
  overflow: hidden;
}
.matkap::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  pointer-events: none;
}
.matkap-left, .matkap-right { position: relative; z-index: 1; }
.matkap .eyebrow { color: rgba(15,26,46,0.6); }
.matkap h2 { color: var(--ink); }
.matkap-accent {
  background: var(--ink);
  color: var(--accent-2);
  padding: 0 10px;
  border-radius: 8px;
  font-style: normal;
  display: inline-block;
  line-height: 1.1;
}
.matkap-badge {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--accent-2);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.matkap-badge svg { width: 26px; height: 26px; }
.matkap-right p {
  font-size: 16px; line-height: 1.55;
  color: rgba(15,26,46,0.85);
  margin: 0 0 20px;
  max-width: 52ch;
}
.matkap-list {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: grid; gap: 8px;
}
.matkap-list li {
  font-size: 14.5px; line-height: 1.4;
  color: var(--ink);
  padding-left: 24px;
  position: relative;
}
.matkap-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.matkap .btn {
  background: var(--ink);
  color: var(--accent-2);
  border-color: var(--ink);
}
.matkap .btn:hover {
  background: transparent;
  color: var(--ink);
}
.matkap .matkap-btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.matkap .matkap-btn-outline:hover {
  background: var(--ink);
  color: var(--accent-2);
}
@media (max-width: 860px) {
  .matkap {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 24px;
  }
  .matkap::after { width: 180px; height: 180px; top: -40px; right: -60px; }
}

/* Feedback / VK block */
.vkblock {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 56px 56px 52px;
}
.vkblock-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: #0077FF;
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.vkblock-icon svg { width: 28px; height: 28px; }

/* Mock VK message card */
.vkmsg {
  background: var(--text);
  color: var(--ink);
  border-radius: 18px;
  padding: 20px 22px 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  position: relative;
}
.vkmsg::before {
  content: '';
  position: absolute;
  left: -8px; top: 28px;
  width: 16px; height: 16px;
  background: var(--text);
  transform: rotate(45deg);
  border-radius: 3px;
}
.vkmsg-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(15,26,46,0.08);
}
.vkmsg-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: #0077FF; color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 500;
  font-size: 16px;
}
.vkmsg-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.vkmsg-time { font-size: 12px; color: rgba(15,26,46,0.55); }
.vkmsg-body {
  font-size: 14.5px; line-height: 1.5;
  color: var(--ink);
  background: #F0F4F9;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 18px;
  position: relative;
}
.vkmsg-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.vkmsg-copy {
  flex: 1;
  appearance: none; border: 1px solid rgba(15,26,46,0.15);
  background: transparent; color: var(--ink);
  font-family: inherit; font-size: 13px; font-weight: 600;
  padding: 11px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.vkmsg-copy:hover { background: rgba(15,26,46,0.06); }
.vkmsg-open {
  flex: 1.4;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #0077FF; color: white;
  font-size: 13px; font-weight: 600;
  padding: 11px 18px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.vkmsg-open:hover { background: #0066DD; transform: translateY(-1px); }
.vkmsg-help {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(15,26,46,0.55);
  text-decoration: none;
  text-align: center;
}
.vkmsg-help:hover { color: #0077FF; text-decoration: underline; }

@media (max-width: 860px) {
  .vkblock {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
  }
  .vkmsg::before { display: none; }
}

/* Floating contact buttons (VK / Telegram / WhatsApp) */
.fab-stack {
  position: fixed; bottom: 20px; right: 20px;
  z-index: 100;
  display: flex; align-items: center; gap: 10px;
}
.fab {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  color: white;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: width 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  flex-shrink: 0;
}
.fab svg { width: 22px; height: 22px; flex-shrink: 0; }
.fab .fab-label {
  font-size: 14px; font-weight: 600; letter-spacing: -0.005em;
  max-width: 0; opacity: 0;
  transition: max-width 0.25s ease, opacity 0.2s ease, margin-left 0.25s ease;
  margin-left: 0;
}
.fab:hover {
  width: auto;
  padding: 0 18px 0 14px;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.fab:hover .fab-label {
  max-width: 140px;
  opacity: 1;
  margin-left: 8px;
}
.fab-wa { background: #25D366; }
.fab-wa:hover { box-shadow: 0 12px 32px rgba(37,211,102,0.5); }
.fab-tg { background: #229ED9; }
.fab-tg:hover { box-shadow: 0 12px 32px rgba(34,158,217,0.5); }
.fab-vk { background: #0077FF; }
.fab-vk:hover { box-shadow: 0 12px 32px rgba(0,119,255,0.5); }

/* Responsive */
@media (max-width: 860px) {
  :root { --pad: 56px; }
  .hero-art { margin-top: 16px; }
  .hero-grid, .grid-2, .section-head, .schedule, .booking-grid, .inclusion, .referral, .map {
    grid-template-columns: 1fr;
  }
  .directions-grid, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .teachers-grid, .orgs-grid, .reviews-grid, .grid-3 { grid-template-columns: 1fr; }
  .tariffs-grid { grid-template-columns: 1fr; }
  .collage { height: 420px; }
  .nav-links { display: none; }
  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 120px; }
  .gallery .g.g-1, .gallery .g.g-2, .gallery .g.g-3, .gallery .g.g-4, .gallery .g.g-5, .gallery .g.g-6, .gallery .g.g-7 {
    grid-column: span 1; grid-row: span 1;
  }
  .booking, .checklist, .referral, .inclusion { padding: 32px 24px; }
  .about-stats { grid-template-columns: 1fr; }
  .about-stat { border-right: 0; border-bottom: 1px solid var(--line); padding: 20px 0; }
  .checklist-items { grid-template-columns: 1fr; }
}
