/* === DESIGN TOKENS === */
:root {
  --rose-50:  #FFF6F0;
  --rose-100: #FBE4E7;
  --rose-200: #F8C7CF;
  --rose-300: #F8B5C8;
  --rose-400: #E5A0B8;
  --rose-500: #D17F9E;
  --rose-600: #B05E81;
  --lavender-200: #E5DCF5;
  --lavender-300: #C9B5E8;
  --lavender-500: #8B6BC5;
  --gold:    #D4A574;
  --gold-bright: #E5BD7E;
  --cream:   #FFFAF4;
  --ink:     #2A1F2D;
  --ink-soft:#5A4A5C;
  --muted:   #9A8A9C;
  --line:    #F1E4E8;
  --white:   #FFFFFF;

  --shadow-sm: 0 2px 8px rgba(176, 94, 129, .08);
  --shadow-md: 0 8px 32px rgba(176, 94, 129, .12);
  --shadow-lg: 0 24px 64px rgba(176, 94, 129, .18);

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-xl: 48px;

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Manrope', system-ui, -apple-system, sans-serif;

  --max: 1240px;
  --pad: clamp(16px, 4vw, 32px);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
a { color: inherit; text-decoration: none; transition: color .2s; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--ff-serif); font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); line-height: 1.05; }
h2 { font-size: clamp(2rem, 3.8vw, 3.4rem); line-height: 1.1; letter-spacing: -.015em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.25; }
h4 { font-size: 1.15rem; line-height: 1.3; }
p  { margin: 0 0 1em; }
em { font-style: italic; color: var(--rose-500); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.eyebrow {
  display: inline-block;
  font-family: var(--ff-sans); font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase;
  font-size: 12px; color: var(--rose-500);
  margin-bottom: 14px;
}
.lead { font-size: 1.15rem; color: var(--ink-soft); }
.muted { color: var(--muted); }
.accent { color: var(--rose-500); font-style: italic; }
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section__head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.section__head--center { margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section__sub { color: var(--ink-soft); font-size: 1.1rem; margin-top: 1rem; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px;
  font-family: var(--ff-sans); font-weight: 600; font-size: 15px;
  letter-spacing: .01em;
  border-radius: 100px;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--rose-400) 0%, var(--rose-500) 50%, var(--lavender-500) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(209, 127, 158, .35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(209, 127, 158, .45); }
.btn--ghost {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  color: var(--ink);
  border: 1px solid var(--rose-200);
}
.btn--ghost:hover { background: #fff; border-color: var(--rose-300); transform: translateY(-2px); }
.btn--lg { padding: 18px 36px; font-size: 16px; }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--full { width: 100%; }

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 8px 0;
  background: rgba(255, 250, 244, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(248, 199, 207, .3);
  transition: padding .3s, background .3s;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo { display: flex; align-items: center; }
.logo__img {
  display: block;
  height: 84px; width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .logo__img { height: 64px; }
}
.logo__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-300), var(--rose-500), var(--lavender-500));
  color: #fff; font-family: var(--ff-serif); font-size: 22px; font-weight: 600; font-style: italic;
  padding-bottom: 2px;
  box-shadow: 0 4px 16px rgba(209, 127, 158, .3);
}
.footer__logo {
  display: block;
  max-width: 220px;
  height: auto;
  margin-bottom: 16px;
  background: #FFF6F0;
  padding: 18px 24px;
  border-radius: var(--r-md);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.logo__icon { /* legacy alias */
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-300), var(--rose-500), var(--lavender-500));
  color: #fff; font-size: 18px;
}
.logo__name {
  font-family: var(--ff-serif);
  font-size: 1.85rem; font-weight: 600; letter-spacing: .02em;
  font-style: italic;
  color: var(--ink);
}
.logo__sub {
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); margin-left: 4px;
}
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-size: 14px; font-weight: 500;
  color: var(--ink-soft); position: relative;
}
.nav__links a:hover { color: var(--rose-500); }
.nav__burger {
  display: none; flex-direction: column; gap: 4px;
  padding: 8px;
}

/* === Language Switcher === */
.langswitch {
  display: inline-flex;
  background: var(--rose-50);
  border: 1px solid var(--rose-200);
  border-radius: 100px;
  padding: 3px;
  gap: 0;
  margin-right: 6px;
}
.langswitch__btn {
  padding: 6px 12px;
  font-family: var(--ff-sans);
  font-size: 12px; font-weight: 700;
  letter-spacing: .08em;
  color: var(--ink-soft);
  background: transparent;
  border-radius: 100px;
  cursor: pointer;
  transition: background .2s, color .2s;
  line-height: 1;
}
.langswitch__btn:hover { color: var(--rose-500); }
.langswitch__btn.is-active {
  background: linear-gradient(135deg, var(--rose-400), var(--lavender-500));
  color: #fff;
  box-shadow: 0 2px 8px rgba(209, 127, 158, .35);
}
@media (max-width: 768px) {
  .langswitch { order: -1; margin-right: 8px; }
  .langswitch__btn { padding: 5px 9px; font-size: 11px; }
}
.nav__burger span {
  width: 24px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* === HERO === */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(1.05);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(255, 246, 240, .92) 0%, rgba(255, 246, 240, .65) 45%, rgba(255, 246, 240, .25) 100%),
    linear-gradient(180deg, transparent 60%, rgba(255, 246, 240, .8) 100%);
}
.hero__inner { position: relative; z-index: 2; }
.hero__content { max-width: 720px; }
.hero__chip {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--rose-200);
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  color: var(--rose-500);
  letter-spacing: .04em;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero__title { margin-bottom: 24px; color: var(--ink); }
.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 580px;
  margin-bottom: 36px;
}
.hero__cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__trust {
  display: flex; gap: clamp(20px, 4vw, 48px);
  padding-top: 32px;
  border-top: 1px solid rgba(176, 94, 129, .15);
  max-width: 680px;
}
.trust__item { display: flex; flex-direction: column; gap: 4px; }
.trust__item b {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--rose-500);
  line-height: 1;
}
.trust__item span {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 32px;
  border: 2px solid var(--rose-300); border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
}
.hero__scroll span {
  width: 3px; height: 8px;
  background: var(--rose-400); border-radius: 2px;
  animation: scrollHint 1.8s infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* === ABOUT === */
.about__grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.about__media { position: relative; }
.about__media img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about__badge {
  position: absolute; bottom: -24px; right: -16px;
  background: #fff;
  padding: 18px 24px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 2px;
  max-width: 240px;
}
.about__badge b { font-family: var(--ff-serif); font-size: 1.15rem; color: var(--rose-500); }
.about__badge span { font-size: 13px; color: var(--ink-soft); }

.about__text h2 { margin-bottom: 24px; }
.about__text p { color: var(--ink-soft); }
.about__list { margin-top: 28px; }
.about__list li {
  position: relative;
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid var(--line);
  color: var(--ink); font-weight: 500;
}
.about__list li:before {
  content: '✦';
  position: absolute; left: 0; top: 12px;
  color: var(--rose-500); font-size: 18px;
}
.about__list li:last-child { border: 0; }

/* === VALUE ROW === */
.value {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--rose-100) 0%, var(--lavender-200) 100%);
}
.value__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 32px);
  text-align: center;
}
.value__item {
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(8px);
  padding: 28px 20px;
  border-radius: var(--r-md);
  transition: transform .3s, background .3s;
}
.value__item:hover { transform: translateY(-4px); background: #fff; }
.value__ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--rose-300), var(--lavender-500));
  border-radius: 50%;
  color: #fff; font-size: 24px;
  margin-bottom: 14px;
}
.value__item h3 { font-size: 1.3rem; margin-bottom: 8px; }
.value__item p { color: var(--ink-soft); font-size: 14px; margin: 0; }

/* === PROGRAMS === */
.programs { background: var(--cream); }
.programs__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.program {
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.program:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.program__img {
  height: 240px;
  background-size: cover; background-position: center;
}
.program__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.program__num {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  color: var(--rose-400);
  margin-bottom: 8px;
  letter-spacing: .05em;
}
.program__body h3 { margin-bottom: 12px; }
.program__body p { color: var(--ink-soft); font-size: 15px; flex: 1; }
.program__tag {
  align-self: flex-start;
  margin-top: 16px;
  padding: 6px 14px;
  background: var(--rose-100);
  color: var(--rose-600);
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .04em;
}
.program--text {
  background: linear-gradient(135deg, var(--lavender-200) 0%, var(--rose-100) 100%);
}
.program--text .program__body { padding: 36px 28px; min-height: 380px; }
.program--text .program__num { color: var(--lavender-500); }

/* === FORMAT === */
.format {
  background: linear-gradient(180deg, var(--cream) 0%, var(--rose-50) 100%);
}
.format__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.format__items { margin-top: 32px; }
.format__item {
  display: flex; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.format__item:last-child { border: 0; }
.format__num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-300), var(--rose-500));
  color: #fff;
  font-family: var(--ff-serif); font-size: 1.2rem; font-weight: 600;
}
.format__item h4 { margin-bottom: 4px; }
.format__item p { color: var(--ink-soft); margin: 0; font-size: 15px; }

.format__visual { position: sticky; top: 100px; }
.format__card {
  background: #fff;
  padding: 36px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--rose-100);
}
.format__cardlabel {
  font-family: var(--ff-sans); font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  font-size: 12px; color: var(--rose-500);
  margin-bottom: 20px;
}
.format__card ul li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.format__card ul li:last-of-type { border: 0; }
.format__card ul li b {
  font-family: var(--ff-serif); font-size: 1.15rem; color: var(--ink);
}
.format__card ul li span {
  font-size: 13px; color: var(--muted); margin-top: 2px;
}
.format__card .btn { margin-top: 20px; }

/* === MOMS WHY === */
.moms { background: var(--cream); }
.moms__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.moms__card {
  background: linear-gradient(180deg, #fff 0%, var(--rose-50) 100%);
  padding: 36px 28px;
  border-radius: var(--r-md);
  border: 1px solid var(--rose-100);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.moms__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-300);
}
.moms__num {
  display: inline-block;
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--rose-400), var(--lavender-500));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 16px;
}
.moms__card h3 { margin-bottom: 10px; }
.moms__card p { color: var(--ink-soft); margin: 0; }

/* === REVIEWS === */
.reviews {
  background: linear-gradient(180deg, var(--rose-50) 0%, var(--lavender-200) 100%);
}
.reviews__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  background: #fff;
  padding: 32px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.review__stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; margin-bottom: 16px; }
.review__text {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--ink);
  flex: 1;
  font-style: italic;
}
.review__author { display: flex; gap: 14px; align-items: center; margin-top: 24px; }
.review__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 18px;
  font-family: var(--ff-serif);
  flex-shrink: 0;
}
.review__author b { display: block; font-family: var(--ff-sans); font-size: 15px; font-weight: 600; }
.review__author span { font-size: 13px; color: var(--muted); }

.honest {
  background: #fff;
  border-radius: var(--r-lg);
  padding: clamp(32px, 5vw, 64px) clamp(24px, 5vw, 72px);
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
}
.honest__mark {
  color: var(--rose-300, #E5A0B8);
  display: inline-flex;
  margin-bottom: 18px;
}
.honest__lead {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  font-style: italic;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.35;
}
.honest__body {
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.honest__call {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.45;
}
.honest__sig {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 28px;
}
.honest__cta { display: inline-flex; }

/* === FOUNDER === */
.founder {
  background: linear-gradient(180deg, var(--lavender-200) 0%, var(--cream) 100%);
}
.founder__grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.founder__photo { position: relative; }
.founder__photo img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 18%;
  width: 100%;
  display: block;
}
.founder__sig {
  position: absolute; bottom: 20px; left: -16px;
  background: var(--gold);
  color: #fff;
  padding: 10px 22px;
  border-radius: 100px;
  font-family: var(--ff-serif);
  font-style: italic; font-size: 15px;
  box-shadow: var(--shadow-sm);
}
.founder__text h2 { margin-bottom: 24px; }
.founder__text p { color: var(--ink-soft); font-size: 1.08rem; }
.founder__text .btn { margin-top: 16px; }

/* === PRICING === */
.pricing { background: var(--cream); }
.pricing__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price {
  background: #fff;
  padding: 40px 32px;
  border-radius: var(--r-md);
  border: 2px solid var(--rose-100);
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
}
.price:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price--featured {
  border-color: transparent;
  background: linear-gradient(180deg, #fff 0%, var(--rose-50) 100%);
  box-shadow: 0 24px 60px rgba(209, 127, 158, .25);
  transform: scale(1.04);
}
.price--featured:hover { transform: scale(1.04) translateY(-4px); }
.price__ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--rose-500), var(--lavender-500));
  color: #fff;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  white-space: nowrap;
}
.price__name {
  font-family: var(--ff-serif);
  font-size: 1.5rem; font-weight: 600;
  margin-bottom: 16px;
}
.price__amount { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.price__cur {
  font-family: var(--ff-serif);
  font-size: 3rem; font-weight: 600;
  color: var(--rose-500);
  line-height: 1;
}
.price__slash { font-size: 1rem; color: var(--muted); }
.price__period { font-size: 14px; color: var(--ink-soft); margin-bottom: 24px; }
.price ul { flex: 1; margin-bottom: 24px; }
.price ul li {
  padding: 10px 0 10px 24px;
  position: relative;
  font-size: 15px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.price ul li:last-child { border: 0; }
.price ul li:before {
  content: '✓';
  position: absolute; left: 0; top: 10px;
  color: var(--rose-500); font-weight: 700;
}
.pricing__note {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-top: 32px;
}

/* === BOOKING === */
.booking {
  background: linear-gradient(135deg, var(--rose-100) 0%, var(--lavender-200) 100%);
}
.booking__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: start;
}
.booking__text h2 { margin-bottom: 20px; }
.booking__text .lead { margin-bottom: 28px; }
.booking__bullets li {
  padding: 10px 0;
  color: var(--ink);
  font-weight: 500;
}
.booking__contact {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(176, 94, 129, .2);
}
.contact__link {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  font-weight: 600;
  color: var(--ink);
}
.contact__link:hover { color: var(--rose-500); }
.contact__ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: #fff;
  border-radius: 50%;
  color: var(--rose-500);
  font-size: 16px;
  box-shadow: var(--shadow-sm);
}

.booking__form {
  background: #fff;
  padding: 40px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.booking__form h3 { margin-bottom: 24px; }
.field { margin-bottom: 18px; position: relative; }
.field-row { display: grid; grid-template-columns: 1.5fr 1fr; gap: 14px; }
.field label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  font: inherit; font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  transition: border-color .2s, background .2s;
  font-family: var(--ff-sans);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--rose-400);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 80px; }
.form__legal {
  font-size: 12px; color: var(--muted);
  text-align: center; margin: 14px 0 0;
  line-height: 1.5;
}
.form__success {
  text-align: center;
  padding: 32px 16px;
}
.success__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-400), var(--lavender-500));
  color: #fff;
  font-size: 28px;
  margin-bottom: 14px;
}
.form__success h4 { margin-bottom: 10px; font-size: 1.4rem; }
.form__success p { color: var(--ink-soft); margin: 0; }

/* === FAQ === */
.faq { background: var(--cream); }
.faq__list { max-width: 860px; margin: 0 auto; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.faq__item[open] { border-color: var(--rose-300); box-shadow: var(--shadow-sm); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-weight: 600;
  font-size: 16px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 24px; font-weight: 300;
  color: var(--rose-500);
  flex-shrink: 0;
  transition: transform .3s;
  width: 24px; text-align: center;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__answer {
  padding: 0 28px 22px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* === PARTNERS === */
.partners { background: var(--cream); }
.partners__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.partners__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 36px 28px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.partners__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.partners__ico {
  display: block;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.partners__card h4 {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.partners__card p {
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.6;
}
.partners__cta-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.partners__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .partners__grid { grid-template-columns: 1fr; }
}

/* === FINAL CTA === */
.finalcta {
  padding: clamp(80px, 10vw, 140px) 0;
  background:
    linear-gradient(135deg, rgba(255, 246, 240, .85), rgba(229, 220, 245, .85)),
    url('images/about.jpg') center / cover;
  text-align: center;
}
.finalcta__inner { max-width: 800px; margin: 0 auto; }
.finalcta h2 { margin-bottom: 32px; }
.finalcta__sub {
  margin-top: 24px;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: .04em;
}

/* === FOOTER === */
.footer {
  background: var(--ink);
  color: #C9B5C8;
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
}
.footer .logo__name { color: #fff; }
.footer .logo__sub { color: rgba(255,255,255,.5); }
.footer__brand p {
  margin-top: 16px;
  font-size: 14px; line-height: 1.6;
  max-width: 320px;
  color: rgba(255,255,255,.6);
}
.footer__col h5 {
  font-family: var(--ff-sans);
  font-size: 13px; letter-spacing: .15em; text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer__col a, .footer__col span {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  padding: 6px 0;
}
.footer__col a:hover { color: #fff; }
.footer__bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}

/* === MANIFESTO === */
.manifesto { background: linear-gradient(180deg, var(--cream) 0%, var(--rose-50) 100%); }
.manifesto__split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 920px; margin: 0 auto;
}
.manifesto__col {
  background: #fff;
  border-radius: var(--r-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.manifesto__col--no { border: 2px solid var(--line); }
.manifesto__col--yes {
  background: linear-gradient(180deg, #fff 0%, var(--rose-50) 100%);
  border: 2px solid var(--rose-300);
  box-shadow: var(--shadow-md);
}
.manifesto__label {
  display: inline-block;
  font-family: var(--ff-sans); font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase;
  font-size: 11px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.manifesto__col--no .manifesto__label { background: var(--line); color: var(--muted); }
.manifesto__col--yes .manifesto__label {
  background: linear-gradient(135deg, var(--rose-500), var(--lavender-500));
  color: #fff;
}
.manifesto__col ul li {
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--line);
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 500;
  position: relative;
}
.manifesto__col ul li:last-child { border: 0; }
.manifesto__col--no ul li {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: var(--rose-300);
  text-decoration-thickness: 1.5px;
}
.manifesto__col--no ul li:before {
  content: '✕'; position: absolute; left: 0; top: 12px;
  color: var(--muted); font-size: 14px;
}
.manifesto__col--yes ul li { color: var(--ink); }
.manifesto__col--yes ul li:before {
  content: '✦'; position: absolute; left: 0; top: 12px;
  color: var(--rose-500); font-size: 18px;
}
.manifesto__quote {
  text-align: center;
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-style: italic;
  color: var(--ink);
  max-width: 800px; margin: 56px auto 0;
  line-height: 1.4;
}

/* === PAINS === */
.pains { background: var(--cream); }
.pains__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px; max-width: 920px; margin: 0 auto;
}
.pain {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 15px; font-weight: 500;
  color: var(--ink);
  transition: border-color .3s, transform .3s;
}
.pain:hover { border-color: var(--rose-300); transform: translateX(4px); }
.pain b { color: var(--rose-500); }
.pain__ico {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--rose-100);
  color: var(--rose-500);
  font-weight: 700;
  font-size: 12px;
}
.pains__line {
  text-align: center;
  margin-top: 48px;
  font-size: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* === SELL VS DEVELOP === */
.selldev { background: linear-gradient(135deg, var(--rose-100) 0%, var(--lavender-200) 100%); }
.selldev__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 980px; margin: 0 auto;
}
.selldev__card {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,.6);
}
.selldev__label {
  display: block;
  font-family: var(--ff-sans);
  font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  font-size: 12px;
  color: var(--rose-500);
  margin-bottom: 18px;
}
.selldev__label em { color: var(--rose-600); font-style: italic; }
.selldev__card ul li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(176, 94, 129, .12);
  font-size: 1.05rem;
  color: var(--ink);
}
.selldev__card ul li:last-child { border: 0; }
.selldev__card ul li b { color: var(--rose-600); font-weight: 700; }
.selldev__card--dev { background: linear-gradient(135deg, rgba(255,255,255,.95) 0%, rgba(245, 230, 240, .85) 100%); }

/* === DIRECTIONS (12) === */
.dirs__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.dir {
  background: #fff;
  padding: 28px 24px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex; flex-direction: column; gap: 10px;
}
.dir:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-300);
}
.dir__num {
  display: inline-block;
  font-family: var(--ff-serif);
  font-size: 1.4rem; font-weight: 600;
  background: linear-gradient(135deg, var(--rose-400), var(--lavender-500));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.dir h4 { font-family: var(--ff-serif); font-size: 1.2rem; }
.dir p { color: var(--ink-soft); font-size: 14px; margin: 0; }

/* === PHOTO PROMISE BANNER === */
.photopromise {
  margin-top: 64px;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: linear-gradient(135deg, var(--rose-100), var(--lavender-200));
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.photopromise__txt {
  padding: 48px 44px;
  display: flex; flex-direction: column; justify-content: center;
}
.photopromise__txt h3 {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  margin: 12px 0 10px;
}
.photopromise__txt p { color: var(--ink-soft); margin: 0; }
.photopromise__img {
  min-height: 280px;
  background-size: cover;
  background-position: center;
}

/* === SCHEDULE TABLE === */
.schedule {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 1080px; margin: 0 auto 56px;
}
.schedule__day {
  background: #fff;
  border-radius: var(--r-sm);
  padding: 22px 18px;
  text-align: center;
  border: 1px solid var(--line);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.schedule__day:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--rose-300);
}
.schedule__day span {
  display: block;
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.schedule__day b {
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.3;
  display: block;
}
.schedule__day--accent {
  background: linear-gradient(135deg, var(--rose-300), var(--lavender-500));
  border-color: transparent;
}
.schedule__day--accent span { color: rgba(255,255,255,.85); }
.schedule__day--accent b { color: #fff; }

/* === LESSON STRUCTURE === */
.lesson {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.lesson__head { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.lesson__head h3 { margin: 8px 0 8px; }
.lesson__head p { color: var(--ink-soft); margin: 0; }
.lesson__blocks {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.lesson__block {
  background: linear-gradient(180deg, var(--rose-50) 0%, #fff 100%);
  padding: 24px 20px;
  border-radius: var(--r-sm);
  text-align: center;
  border: 1px solid var(--rose-100);
}
.lesson__block span {
  display: inline-block;
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--rose-500); font-weight: 700;
  margin-bottom: 8px;
}
.lesson__block b {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.lesson__block p { font-size: 13px; color: var(--ink-soft); margin: 0; }

/* === SHOWS === */
.shows { background: linear-gradient(180deg, var(--cream) 0%, var(--rose-50) 100%); }
.shows__grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.shows__text h2 { margin-bottom: 18px; }
.shows__text .lead { margin-bottom: 18px; }
.shows__text p { color: var(--ink-soft); }
.shows__bullets { margin-top: 24px; }
.shows__bullets li {
  padding: 10px 0;
  color: var(--ink);
  font-weight: 500;
}
.shows__img img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* === SPACE === */
.space { background: var(--cream); }
.space__gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 540px;
  margin-bottom: 56px;
}
.space__big {
  grid-row: 1 / 3;
  background-size: cover; background-position: center;
  border-radius: var(--r-md);
  position: relative;
  box-shadow: var(--shadow-md);
}
.space__small {
  background-size: cover; background-position: center;
  border-radius: var(--r-md);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.space__caption {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--rose-600);
}
.space__features {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.space__f {
  display: flex; flex-direction: column;
  padding: 24px 22px;
  background: linear-gradient(180deg, #fff 0%, var(--rose-50) 100%);
  border: 1px solid var(--rose-100);
  border-radius: var(--r-sm);
  transition: transform .3s, border-color .3s;
}
.space__f:hover { transform: translateY(-3px); border-color: var(--rose-300); }
.space__f span {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--rose-300), var(--lavender-500));
  color: #fff; font-size: 16px;
  border-radius: 50%;
  margin-bottom: 12px;
}
.space__f b {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.space__f p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* === COMMUNITY === */
.community {
  background: linear-gradient(180deg, var(--rose-50) 0%, var(--lavender-200) 100%);
}
.community__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.community__card {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--r-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.community__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.community__card span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--rose-300), var(--lavender-500));
  color: #fff; font-size: 24px;
  border-radius: 50%;
  margin-bottom: 16px;
}
.community__card h4 {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.community__card p { font-size: 14px; color: var(--ink-soft); margin: 0; }
.community__photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.community__photo img {
  width: 100%;
  aspect-ratio: 16 / 6;
  object-fit: cover;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .programs__grid, .moms__grid, .reviews__grid, .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price--featured { transform: none; }
  .price--featured:hover { transform: translateY(-4px); }
  .value__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .dirs__grid { grid-template-columns: repeat(3, 1fr); }
  .schedule { grid-template-columns: repeat(3, 1fr); }
  .lesson__blocks { grid-template-columns: repeat(2, 1fr); }
  .space__features, .community__grid { grid-template-columns: repeat(2, 1fr); }
  .photopromise { grid-template-columns: 1fr; }
  .photopromise__img { min-height: 280px; }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav__links.is-open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff;
    padding: 24px;
    box-shadow: var(--shadow-md);
    gap: 0;
  }
  .nav__links.is-open a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }
  .nav .btn--primary { display: none; }
  .logo__sub { display: none; }

  .about__grid, .format__grid, .founder__grid, .booking__grid { grid-template-columns: 1fr; }
  .about__media img { aspect-ratio: 4 / 3; }
  .about__badge { position: static; margin-top: 16px; max-width: 100%; }
  .founder__photo img {
    aspect-ratio: 3 / 4;
    max-height: 78vh;
    object-position: center 15%;
    margin-inline: auto;
    max-width: 480px;
  }
  .founder__sig { left: 16px; }

  .format__visual { position: static; }
  .hero__trust { gap: 20px; }
  .trust__item b { font-size: 1.8rem; }

  .programs__grid, .moms__grid, .reviews__grid, .pricing__grid, .value__grid {
    grid-template-columns: 1fr;
  }
  .manifesto__split, .selldev__grid, .shows__grid { grid-template-columns: 1fr; }
  .pains__grid { grid-template-columns: 1fr; }
  .dirs__grid { grid-template-columns: repeat(2, 1fr); }
  .schedule { grid-template-columns: repeat(2, 1fr); }
  .lesson { padding: 28px 20px; }
  .lesson__blocks { grid-template-columns: 1fr 1fr; gap: 10px; }
  .space__gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
  }
  .space__big { grid-row: auto; height: 280px; }
  .space__small { height: 200px; }
  .space__features, .community__grid { grid-template-columns: 1fr; }
  .community__photo img { aspect-ratio: 4 / 3; }
  .booking__form { padding: 28px 24px; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
}

/* === REVEAL ANIMATION === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* === Telegram-style bright gold stars (★ club currency) === */
.tg-star{
  color:#FFB80A;                 /* fallback for no background-clip */
  background:linear-gradient(180deg,#FFDC5E 0%,#FFB80A 58%,#F59E0B 100%);
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;color:transparent\9;
  filter:drop-shadow(0 1px 2px rgba(255,170,0,.45));
  font-weight:800;font-style:normal;
}
@supports not ((-webkit-background-clip:text) or (background-clip:text)){
  .tg-star{color:#FFB80A;-webkit-text-fill-color:#FFB80A;background:none;filter:none;}
}
