/* ============================================
   SIMBA — Детский сад · Лэндинг (редизайн)
   Палитра: тёплый молочный + терракот + мята
   Шрифт: Onest (gradient warm modern)
   ============================================ */

:root {
  --bg: #FFF8F0;
  --bg-2: #FFEFE0;
  --cream: #FFF1E2;
  --paper: #FFFFFF;

  --primary: #E07856;     /* терракот */
  --primary-dark: #C8593A;
  --primary-soft: #FBD9CB;

  --mint: #7DC9B8;
  --mint-soft: #D7F0E9;

  --yellow: #F5C76A;
  --yellow-soft: #FFEFC9;

  --blue: #4A7B96;
  --blue-soft: #D1E4EE;

  --peach: #F8B89C;
  --peach-soft: #FFE0CF;

  --lilac: #B79DD9;
  --lilac-soft: #ECE2F7;

  --ink: #2A2A2A;
  --ink-2: #4A4A4A;
  --muted: #8A8A8A;
  --line: #F0E4D5;

  --shadow-sm: 0 4px 16px rgba(45, 30, 20, 0.06);
  --shadow-md: 0 12px 32px rgba(45, 30, 20, 0.08);
  --shadow-lg: 0 24px 60px rgba(45, 30, 20, 0.12);

  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;

  --container: 1240px;
}

/* ===== Reset ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s, color .2s; }
a:hover { opacity: .8; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Typography ===== */
.h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: var(--primary-soft);
  border-radius: 999px;
}
.eyebrow--light { background: rgba(255, 255, 255, 0.18); color: #fff; }

.lead {
  font-size: 19px;
  color: var(--ink-2);
  line-height: 1.6;
}
.lead--light { color: rgba(255, 255, 255, 0.92); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-sub {
  margin-top: 16px;
  color: var(--ink-2);
  font-size: 18px;
}
.accent { color: var(--primary); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  transition: transform .15s, box-shadow .15s, background .2s;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-1px); opacity: 1; }
.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 22px rgba(224, 120, 86, 0.35);
}
.btn--primary:hover { background: var(--primary-dark); box-shadow: 0 12px 28px rgba(224, 120, 86, 0.45); }
.btn--ghost {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--cream); }
.btn--lg { padding: 18px 34px; font-size: 17px; }
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--block { width: 100%; }

/* ===== Placeholders for images ===== */
.ph {
  position: relative;
  width: 100%;
  background:
    repeating-linear-gradient(45deg, rgba(224, 120, 86, 0.06) 0 12px, rgba(224, 120, 86, 0.12) 12px 24px),
    linear-gradient(135deg, var(--peach-soft), var(--cream));
  border: 2px dashed rgba(224, 120, 86, 0.5);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  padding: 16px;
  overflow: hidden;
  letter-spacing: .02em;
}
.ph::before {
  content: attr(data-ph);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-size: 11px;
  line-height: 1.4;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.55);
  opacity: 0;
  transition: opacity .2s;
}
.ph:hover::before { opacity: 1; }
.ph > span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.ph--hero { aspect-ratio: 4 / 3; }
.ph--16x10 { aspect-ratio: 16 / 10; }
.ph--16x12 { aspect-ratio: 4 / 3; }
.ph--sq { aspect-ratio: 1 / 1; }
.ph--3x4 { aspect-ratio: 3 / 4; }
.ph--sm { font-size: 11px; padding: 8px; border-radius: 14px; }
.ph--avatar { aspect-ratio: 1 / 1; width: 56px; border-radius: 50%; }
img.ph--avatar {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: none;
  background: var(--peach-soft);
  padding: 0;
}

/* Real img elements that replaced placeholders inherit the same shape */
img.ph, img.ph--hero, img.ph--16x10, img.ph--16x12, img.ph--sq, img.ph--3x4 {
  border: none;
  background: var(--peach-soft);
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  padding: 0;
}
img.ph--hero { aspect-ratio: 4 / 3; }
img.ph--16x10 { aspect-ratio: 16 / 10; }
img.ph--16x12 { aspect-ratio: 4 / 3; }
img.ph--sq { aspect-ratio: 1 / 1; }
img.ph--3x4 { aspect-ratio: 3 / 4; }
img.ph--sm { width: 100%; height: 100%; border-radius: 14px; }

/* Hero main image */
.hero__main-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero__sticker--1 img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
}
.about__media-main {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}
.about__media-small img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
}
.group-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.lesson__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.branch > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.team-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 14px;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  position: relative;
  flex-shrink: 0;
}
.logo__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name { font-size: 22px; font-weight: 800; color: var(--primary); letter-spacing: -0.02em; }
.logo__tag { font-size: 11px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }

.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
}
.nav a:hover { color: var(--primary); }

.header__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 12px;
}
.header__phone {
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
}
.burger span {
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* ===== Hero ===== */
.hero {
  padding: 60px 0 100px;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(245, 199, 106, 0.25), transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(125, 201, 184, 0.2), transparent 50%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero__badge .dot {
  width: 8px; height: 8px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(125, 201, 184, 0.25);
  animation: pulse 2s infinite;
  margin-top: 0;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(125, 201, 184, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(125, 201, 184, 0.1); }
}

.hero__title {
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero__subtitle {
  font-size: 19px;
  color: var(--ink-2);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.btn__icon { font-size: 18px; }

.hero__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero__features li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__features strong {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
}
.hero__features span {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.3;
}

.hero__media {
  position: relative;
}
.hero__sticker {
  position: absolute;
  background: var(--paper);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 16px;
}
.hero__sticker--1 {
  bottom: -20px;
  left: -20px;
  width: 180px;
  transform: rotate(-4deg);
}
.hero__sticker--2 {
  top: 20px;
  right: -20px;
  background: var(--mint);
  color: #fff;
  padding: 22px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: rotate(5deg);
  box-shadow: 0 18px 40px rgba(125, 201, 184, 0.4);
}
.hero__sticker-num {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}
.hero__sticker-num sub { font-size: 14px; font-weight: 600; vertical-align: super; margin-left: 4px; }
.hero__sticker-text { font-size: 13px; line-height: 1.3; }

/* ===== Trust strip ===== */
.trust { padding: 40px 0 0; }
.trust__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.trust__num {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.trust__lbl { font-size: 13px; color: var(--ink-2); line-height: 1.3; }

/* ===== About ===== */
.about { padding: 100px 0; }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: center;
}
.about__media {
  position: relative;
}
.about__media-small {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--paper);
}
.about__list {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 17px;
  color: var(--ink-2);
}
.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 8px;
}
.dot--orange { background: var(--primary); }
.dot--mint { background: var(--mint); }
.dot--yellow { background: var(--yellow); }
.dot--blue { background: var(--blue); }

/* ===== Advantages ===== */
.adv { padding: 80px 0; background: var(--bg-2); }
.adv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.adv__card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .2s, box-shadow .2s;
}
.adv__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.adv__ico {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
}
.adv__card--orange .adv__ico { background: var(--primary-soft); color: var(--primary-dark); }
.adv__card--mint .adv__ico { background: var(--mint-soft); color: #4A9988; }
.adv__card--yellow .adv__ico { background: var(--yellow-soft); color: #C99E3D; }
.adv__card--blue .adv__ico { background: var(--blue-soft); color: var(--blue); }
.adv__card--peach .adv__ico { background: var(--peach-soft); color: #C8593A; }
.adv__card--lilac .adv__ico { background: var(--lilac-soft); color: #7E60B0; }
.adv__ico svg { width: 32px; height: 32px; }

.adv__card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.adv__card p { color: var(--ink-2); font-size: 16px; line-height: 1.5; }

/* ===== Groups ===== */
.groups { padding: 100px 0; }
.groups__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.group-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.group-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.group-card__media .ph {
  border: none;
  border-radius: 0;
}
.group-card__body { padding: 32px 32px 36px; }
.group-card__age {
  display: inline-block;
  padding: 6px 14px;
  background: var(--mint-soft);
  color: var(--blue);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}
.group-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.group-card p {
  color: var(--ink-2);
  margin-bottom: 20px;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chips li {
  padding: 6px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
}

/* ===== Day timeline ===== */
.day { padding: 100px 0; background: linear-gradient(180deg, var(--bg) 0%, var(--cream) 100%); }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.timeline__item {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .2s;
}
.timeline__item:hover { transform: translateY(-3px); }
.timeline__item:nth-child(odd) { background: var(--peach-soft); }
.timeline__item:nth-child(3n) { background: var(--mint-soft); }
.timeline__item:nth-child(4n) { background: var(--yellow-soft); }
.timeline__time {
  display: inline-block;
  padding: 4px 12px;
  background: var(--paper);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.timeline__item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.timeline__item p {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 14px;
}
/* Timeline images removed (small thumbs were unreadable) */

/* ===== Lessons ===== */
.lessons { padding: 100px 0; }
.lessons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lesson {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.lesson:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.lesson__media .ph { border-radius: 0; border: none; }
.lesson h3 {
  font-size: 20px;
  font-weight: 700;
  padding: 24px 24px 8px;
}
.lesson p {
  padding: 0 24px 24px;
  color: var(--ink-2);
  font-size: 15px;
}

/* ===== Prices ===== */
.prices { padding: 100px 0; background: var(--bg-2); }
.prices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.price-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  transition: transform .2s, box-shadow .2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card--featured {
  border-color: var(--primary);
  box-shadow: 0 18px 40px rgba(224, 120, 86, 0.18);
  background: linear-gradient(180deg, #fff 0%, var(--peach-soft) 200%);
}
.price-card__badge {
  position: absolute;
  top: -14px; right: 24px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: .04em;
}
.price-card__label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.price-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.price-card__price .from { font-size: 14px; color: var(--muted); }
.price-card__price .amount {
  font-size: 42px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.price-card__price .cur { font-size: 16px; color: var(--ink-2); font-weight: 500; }
.price-card__time { font-size: 14px; color: var(--ink-2); margin-bottom: 22px; }
.price-card__list {
  margin-bottom: 28px;
  flex: 1;
}
.price-card__list li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-2);
  position: relative;
  padding-left: 26px;
}
.price-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.prices__note {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 28px;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.prices__note-ico { font-size: 28px; flex-shrink: 0; }
.prices__note { font-size: 15px; color: var(--ink-2); }
.prices__note b { color: var(--ink); }

/* ===== Food ===== */
.food { padding: 100px 0; background: var(--mint-soft); }
.food__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.food__list {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 17px;
  color: var(--ink-2);
}
.food__media {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.food__big { grid-row: span 2; }
.food__small1, .food__small2 { aspect-ratio: 1/1; }

/* ===== Team ===== */
.team { padding: 100px 0; }
.team__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.team-card {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.team-card .ph {
  border-radius: 22px;
  margin-bottom: 14px;
}
.team-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
  display: block;
}
.team-card span {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.35;
  display: block;
}

/* ===== Safety ===== */
.safety { padding: 100px 0; background: var(--bg-2); }
.safety__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.safety__list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 17px;
  color: var(--ink-2);
}
.safety__list li {
  padding: 14px 18px;
  background: var(--paper);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.safety__list b { color: var(--primary); margin-right: 6px; }

/* ===== Gallery ===== */
.gallery { padding: 100px 0; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery__grid .ph {
  border: none;
  background-image: linear-gradient(135deg, var(--peach-soft), var(--cream));
}
.gallery__i1 { grid-column: span 2; grid-row: span 2; }
.gallery__i2 {}
.gallery__i3 {}
.gallery__i4 { grid-column: span 2; }
.gallery__i5 {}
.gallery__i6 { grid-column: span 2; }
.gallery__i7 {}
.gallery__i8 {}

/* ===== Reviews ===== */
.reviews { padding: 100px 0; background: var(--cream); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.review__head {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}
.review h4 { font-size: 17px; font-weight: 700; }
.review__head span { font-size: 13px; color: var(--muted); }
.review__stars { color: var(--yellow); font-size: 16px; letter-spacing: 1px; }
.review p { color: var(--ink-2); font-size: 15px; line-height: 1.6; }

/* ===== FAQ ===== */
.faq { padding: 100px 0; }
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: flex-start;
}
.faq__head { position: sticky; top: 100px; }
.faq__head .h2 { margin-bottom: 16px; }
.faq__head .btn { margin-top: 20px; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__list details {
  background: var(--paper);
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: box-shadow .2s;
}
.faq__list details[open] { box-shadow: var(--shadow-md); }
.faq__list summary {
  font-weight: 700;
  font-size: 17px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--primary);
  transition: transform .2s;
}
.faq__list details[open] summary::after { transform: rotate(45deg); }
.faq__list p {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
}

/* ===== CTA Form ===== */
.cta {
  padding: 100px 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(245, 199, 106, 0.25), transparent 50%),
    linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
}
.cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta .h2 { color: #fff; margin-bottom: 20px; }
.cta__list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 17px;
  color: rgba(255,255,255,0.95);
}
.form {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.form__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.form__field {
  display: block;
  margin-bottom: 16px;
}
.form__field span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.form input, .form select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  transition: border-color .2s, background .2s;
}
.form input:focus, .form select:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}
.form .btn { margin-top: 8px; }
.form__policy {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}
.form__policy a { color: var(--primary); text-decoration: underline; }

/* ===== Branches ===== */
.branches { padding: 100px 0; }
.branches__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.branch {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.branch:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.branch .ph { border: none; border-radius: 0; }
.branch__body { padding: 28px 32px 32px; }
.branch h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}
.branch__addr, .branch__time, .branch__phone {
  font-size: 16px;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.branch__phone a { color: var(--primary); font-weight: 600; }
.branch__map {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.branch__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.branch .btn { margin-top: 4px; }

/* ===== Footer ===== */
.footer {
  background: #2D2018;
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.footer__col a, .footer__col span { font-size: 14px; color: rgba(255,255,255,0.7); }
.footer__col a:hover { color: var(--primary); opacity: 1; }
.logo--light .logo__name { color: var(--yellow); }
.logo--light .logo__tag { color: rgba(255,255,255,0.6); }
.logo--light .logo__icon, .footer .logo__icon { background: rgba(255,255,255,0.1); }
.footer__about { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; margin-top: 8px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
}
.footer__social a:hover { background: var(--primary); color: #fff; opacity: 1; }
.footer__social svg { width: 20px; height: 20px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* ===== Floating WhatsApp ===== */
.float-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  animation: bounce 2.5s infinite;
}
.float-wa svg { width: 32px; height: 32px; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ===== Reveal animations ===== */
.adv__card, .group-card, .lesson, .price-card, .review, .team-card, .timeline__item, .branch {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.adv__card.is-visible, .group-card.is-visible, .lesson.is-visible,
.price-card.is-visible, .review.is-visible, .team-card.is-visible,
.timeline__item.is-visible, .branch.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* ===== Mobile nav ===== */
.nav.nav--open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 70px 0 0 0;
  background: var(--bg);
  padding: 32px 24px;
  gap: 0;
  z-index: 99;
  border-top: 1px solid var(--line);
}
.nav.nav--open a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .nav { display: none; }
  .burger { display: flex; margin-left: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__features { grid-template-columns: repeat(2, 1fr); }
  .trust__grid { grid-template-columns: repeat(3, 1fr); }
  .adv__grid { grid-template-columns: repeat(2, 1fr); }
  .lessons__grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .prices__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__i1, .gallery__i4, .gallery__i6 { grid-column: span 2; }
  .about__inner, .food__inner, .safety__inner, .cta__inner, .faq__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq__head { position: static; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .header__cta .header__phone { display: none; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .hero { padding: 40px 0 70px; }
  .hero__features { grid-template-columns: 1fr 1fr; gap: 18px; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); padding: 20px; }
  .adv__grid { grid-template-columns: 1fr; }
  .groups__grid { grid-template-columns: 1fr; }
  .lessons__grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .branches__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery__i1, .gallery__i4, .gallery__i6 { grid-column: span 1; grid-row: span 1; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .about, .adv, .groups, .day, .lessons, .prices, .food, .team, .safety, .gallery, .reviews, .faq, .cta, .branches { padding: 60px 0; }
  .section-head { margin-bottom: 36px; }
  .form { padding: 24px; }
  .footer__bottom .container { flex-direction: column; gap: 8px; }
  .hero__sticker--1, .hero__sticker--2 { display: none; }
  .about__media-small { display: none; }
  .float-wa { width: 52px; height: 52px; font-size: 22px; bottom: 18px; right: 18px; }
}
