/* ===== Женская Навигация — стили v0.5 (финал, баг-фикс) ===== */

:root {
  --graphite: #1c2030;
  --graphite-deep: #14172a;
  --indigo: #232c52;
  --indigo-soft: #2e3a6b;
  --cream: #f5efe6;
  --cream-soft: #ede5d6;
  --warm-gray: #8c8578;
  --warm-gray-soft: #b7b0a4;
  --gold: #c4a87a;
  --gold-soft: rgba(196, 168, 122, 0.45);
  --gold-line: rgba(196, 168, 122, 0.35);
  --ink: #15161f;
  --ink-soft: #5a5b6a;
  --paper: #faf7f1;
  --line: rgba(28, 32, 48, 0.12);

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

  --radius: 4px;
  --radius-lg: 8px;
  --shadow-soft: 0 18px 60px rgba(20, 23, 42, 0.10);
  --shadow-photo: 0 30px 80px rgba(20, 23, 42, 0.16);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: 820px; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--graphite);
  margin: 0;
}
p { margin: 0 0 1em; }
ul, ol { padding-left: 0; margin: 0; list-style: none; }

/* ===== Кнопки ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  line-height: 1.2;
}
.btn-primary {
  background: var(--graphite);
  color: var(--cream);
  border-color: var(--graphite);
}
.btn-primary:hover {
  background: var(--indigo);
  border-color: var(--indigo);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--graphite);
  border-color: var(--gold-line);
}
.btn-ghost:hover {
  background: var(--graphite);
  color: var(--cream);
  border-color: var(--graphite);
}
.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 239, 230, 0.4);
}
.btn-ghost-light:hover {
  background: var(--cream);
  color: var(--graphite);
  border-color: var(--cream);
}
.btn-link {
  background: transparent;
  color: var(--graphite);
  padding: 6px 0;
  border: none;
  border-bottom: 1px solid var(--gold-soft);
  border-radius: 0;
}
.btn-link:hover {
  color: var(--indigo);
  border-bottom-color: var(--gold);
}
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-large { padding: 20px 36px; font-size: 16px; }

/* Финальная CTA-кнопка: компактная золотая */
.btn-final {
  background: var(--gold);
  color: var(--graphite);
  border-color: var(--gold);
  padding: 16px 32px;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(196, 168, 122, 0.3);
}
.btn-final:hover {
  background: #d8bd92;
  border-color: #d8bd92;
  color: var(--graphite);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(196, 168, 122, 0.4);
}

/* ===== Шапка ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--graphite);
}
.logo-mark {
  width: 36px;
  height: 36px;
  color: var(--gold);
  flex-shrink: 0;
}
.logo-mark-light { color: var(--gold); }
.logo-text {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--graphite);
  white-space: nowrap;
}
.nav { display: flex; gap: 26px; }
.nav a {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.nav a:hover { color: var(--graphite); }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--paper) 0%, #f0e9dc 100%);
  padding: 64px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.hero-glow-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(196, 168, 122, 0.45), transparent 70%);
  top: -120px;
  right: -120px;
}
.hero-glow-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(46, 58, 107, 0.25), transparent 70%);
  bottom: -80px;
  left: -80px;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin: 0 0 28px;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.95;
  margin: 0 0 36px;
  font-size: clamp(48px, 7.4vw, 96px);
  letter-spacing: -0.02em;
}
.hero-title-row { display: block; }
.hero-title-accent {
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}
.hero-subtitle {
  font-family: var(--serif);
  font-size: clamp(24px, 2.9vw, 34px);
  line-height: 1.3;
  color: var(--graphite);
  font-weight: 500;
  margin: 0 0 28px;
  max-width: 600px;
  letter-spacing: -0.01em;
}
.hero-lead {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 0 36px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.hero-asset {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  /* Квадратный контейнер: картинка не дорисовывает белый низ */
  aspect-ratio: 1 / 1;
  max-width: 420px;
  margin: 0 auto;
}
.hero-asset img {
  width: 100%;
  height: 100%;
  display: block;
  /* object-fit: cover обрежет лишнее, но без белого низа */
  object-fit: cover;
}

/* ===== Универсальные секции ===== */
.section {
  padding: 90px 0;
  position: relative;
  background: var(--paper);
}
.section-cream { background: var(--cream); }
.section-quote {
  background: var(--graphite);
  color: var(--cream);
  padding: 110px 0;
}

/* ===== Большие заголовки и надзаголовки (премиальная типографика) ===== */
.section-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 500;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.15;
  margin: 0 0 32px;
  max-width: 880px;
  color: var(--graphite);
  font-weight: 500;
  letter-spacing: -0.015em;
}
.section-lead {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--graphite);
  margin-bottom: 20px;
  max-width: 780px;
  font-weight: 400;
}
.section-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 760px;
  margin-bottom: 18px;
}
.section-quote .section-lead { color: rgba(245, 239, 230, 0.85); }
.section-quote .section-text { color: rgba(245, 239, 230, 0.78); }

/* ===== Блок с акварельным ассетом ===== */
.about-inner,
.process-inner,
.goals-inner,
.space-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-asset,
.goals-asset,
.process-asset,
.space-asset {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.about-asset img,
.goals-asset img,
.process-asset img,
.space-asset img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* ===== Что тебя ждёт ===== */
.inside-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  margin-top: 24px;
}
.inside-list-compact { gap: 10px 32px; }
.inside-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--graphite);
  line-height: 1.5;
}
.check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
  margin-top: 4px;
}
.check::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 4px;
  width: 6px;
  height: 9px;
  border: solid var(--paper);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

/* ===== Шаги ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.step {
  position: relative;
  padding: 36px 30px 32px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.step-num {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1;
}
.step-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--graphite);
  margin-bottom: 14px;
  line-height: 1.3;
  font-weight: 500;
}
.step-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.step-result {
  font-size: 14px;
  color: var(--graphite);
  padding-top: 14px;
  border-top: 1px solid var(--gold-line);
  line-height: 1.5;
}
.step-result span {
  color: var(--gold);
  font-weight: 500;
  margin-right: 4px;
}
.cta-mid { text-align: center; margin-top: 10px; }

/* ===== Цели ===== */
.goals-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 30px;
  margin: 36px 0 40px;
  padding: 36px 30px;
  background: var(--cream);
  border-radius: var(--radius-lg);
}
.goal { display: flex; flex-direction: column; gap: 14px; }
.goal-label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.goal p {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--graphite);
  line-height: 1.5;
  margin: 0;
}
.goal-divider {
  width: 1px;
  background: var(--gold-line);
  align-self: stretch;
}

/* ===== Поддерживающее пространство (с акварелью) ===== */
.space-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.space-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--graphite);
  background: var(--paper);
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  position: relative;
}
.space-pill::before {
  content: '·';
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-style: normal;
}
.space-pill:first-child::before { display: none; }
.space-pill:first-child { padding-left: 22px; }

/* ===== Отзывы (6 равных плиток, 3×2) ===== */
.reviews {
  display: grid;
  gap: 22px;
  margin: 30px 0 24px;
}
.reviews-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.review {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 26px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}
.review:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.review-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}
.review-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream-soft);
  flex-shrink: 0;
  border: 1px solid var(--gold-line);
}
.review-photo-initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--gold);
  background: var(--graphite);
  border: 1px solid var(--gold-line);
}
.review-name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--graphite);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.review-quote {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
  color: var(--graphite);
  margin: 0;
  font-style: italic;
  padding: 14px 0 14px 16px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.45);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.review-body p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 10px;
}
.review-body p:last-child { margin-bottom: 0; }

/* ===== О ведущей ===== */
.section-author {
  background: var(--graphite);
  color: var(--cream);
}
.section-author .section-eyebrow { color: var(--gold); }
.section-author .section-title { color: var(--cream); }
.author-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.author-photo {
  display: flex;
  justify-content: center;
}
.author-photo-frame {
  width: 100%;
  max-width: 340px;
}
.author-photo-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(196, 168, 122, 0.35), transparent 60%),
    linear-gradient(160deg, var(--indigo) 0%, var(--graphite) 100%);
  box-shadow: var(--shadow-photo);
}
.author-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.author-lead {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.4;
  color: rgba(245, 239, 230, 0.9);
  margin-bottom: 28px;
  font-weight: 400;
}
.author-short p,
.author-full p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(245, 239, 230, 0.78);
  margin-bottom: 16px;
}
.author-toggle {
  margin-top: 8px;
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.author-toggle:hover {
  color: var(--cream);
  border-bottom-color: var(--cream);
}
.author-full {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(196, 168, 122, 0.25);
}

/* ===== Стоимость ===== */
.price-cards {
  display: grid;
  gap: 20px;
  margin: 32px 0 24px;
}
.price-cards-3 {
  grid-template-columns: repeat(3, 1fr);
}
.price-card {
  position: relative;
  padding: 32px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
}
.price-card-early {
  background: var(--graphite);
  color: var(--cream);
  border-color: var(--graphite);
  box-shadow: var(--shadow-soft);
}
.price-value {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--graphite);
  line-height: 1.1;
  margin: 0 0 12px;
}
.price-card-early .price-value { color: var(--cream); }
.price-label {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.4;
}
.price-card-early .price-label { color: rgba(245, 239, 230, 0.7); }
.price-note {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 30px;
}
.price-cta { text-align: center; }

/* ===== Финальный тёмный блок (CTA + подвал, единый цвет) ===== */
.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--graphite-deep);
  color: var(--cream);
  padding: 110px 0 0; /* padding-bottom 0 — подвал встроен в этот блок */
}
.section-dark-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.section-dark-bg .final-asset {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.35;
  display: block;
}
.section-dark-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 23, 42, 0.4) 0%,
    rgba(20, 23, 42, 0.6) 50%,
    rgba(20, 23, 42, 0.85) 100%
  );
  pointer-events: none;
}

/* Финальный CTA контент */
.final-inner {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto 70px;
}
.final-title {
  font-size: clamp(38px, 6vw, 64px);
  color: var(--cream);
  margin-bottom: 24px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.final-lead {
  font-family: var(--serif);
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.5;
  color: rgba(245, 239, 230, 0.92);
  margin-bottom: 24px;
  font-weight: 400;
}
.final-text {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(245, 239, 230, 0.78);
  margin-bottom: 16px;
  font-weight: 400;
}
.final-small {
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.6);
}

/* Подвал встроен в section-dark — тот же фон, продолжение */
.site-footer {
  position: relative;
  z-index: 2;
  background: transparent;
  color: var(--cream);
  padding: 26px 0 28px;
  border-top: 1px solid rgba(196, 168, 122, 0.2);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand .logo-mark { color: var(--gold); }
.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--cream);
}
.footer-tagline {
  font-size: 13px;
  color: rgba(245, 239, 230, 0.55);
  line-height: 1.5;
  max-width: 480px;
}
.footer-copy {
  margin: 0;
  font-size: 13px;
  color: rgba(245, 239, 230, 0.5);
  padding-top: 2px;
}

/* ===== Адаптив ===== */
@media (max-width: 960px) {
  .hero { padding: 48px 0 80px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-asset {
    order: 2;
    max-width: 360px;
    width: 100%;
  }
  .nav { display: none; }
  .section { padding: 70px 0; }
  .section-quote { padding: 80px 0; }
  .section-dark { padding: 80px 0 0; }
  .steps { grid-template-columns: 1fr; }
  .inside-list,
  .inside-list-compact { grid-template-columns: 1fr; }
  .author-inner,
  .about-inner,
  .process-inner,
  .goals-inner,
  .space-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-asset,
  .process-asset,
  .goals-asset,
  .space-asset {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }
  .goals-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .goal-divider { display: none; }
  .price-cards-3 { grid-template-columns: 1fr; }
  .reviews-grid-3 { grid-template-columns: 1fr; }
  .section-dark-bg .final-asset { object-position: 80% center; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .header-inner {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .header-inner .btn { display: none; }
  .logo-mark { width: 32px; height: 32px; }
  .logo-text { font-size: 17px; }
  .hero { padding: 40px 0 70px; }
  .hero-title { font-size: 48px; margin-bottom: 28px; }
  .hero-subtitle { font-size: 22px; margin-bottom: 22px; }
  .hero-lead { font-size: 15px; margin-bottom: 28px; }
  .hero-asset { max-width: 280px; }
  .section { padding: 56px 0; }
  .section-quote { padding: 70px 0; }
  .section-dark { padding: 70px 0 0; }
  .section-title { font-size: 28px; }
  .section-lead { font-size: 17px; }
  .step { padding: 28px 24px; }
  .step-num { font-size: 26px; }
  .step-title { font-size: 19px; }
  .price-value { font-size: 32px; }
  .final-title { font-size: 36px; }
  .btn { padding: 14px 22px; font-size: 14px; }
  .btn-large { width: 100%; padding: 18px 24px; }
  .btn-final { padding: 16px 28px; font-size: 15px; }
  .author-photo-frame { max-width: 260px; }
  .review { padding: 24px 22px; }
  .space-pill { font-size: 15px; padding: 8px 18px; }
  .section-dark-bg .final-asset { object-position: 70% center; opacity: 0.25; }
}
