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

  :root {
    --terra:   #8B4A3A;
    --terra-l: #C07A68;
    --sand:    #E8DDD0;
    --sand-l:  #F5F0E8;
    --bark:    #3D2B23;
    --cream:   #FAF7F3;
    --sage:    #9BA89A;
    --text:    #2E201A;
    --muted:   #7A6860;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 60px;
    background: rgba(250,247,243,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139,74,58,0.1);
    transition: padding 0.3s;
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--terra);
    text-decoration: none;
  }
  .nav-links {
    display: flex; gap: 36px; list-style: none;
  }
  .nav-links a {
    font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--muted); text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--terra); }
  .nav-cta {
    background: var(--terra); color: #fff !important;
    padding: 9px 22px; border-radius: 30px;
    font-size: 0.78rem !important; letter-spacing: 0.1em;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--bark) !important; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 60px 80px;
    gap: 60px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; right: -120px; top: -80px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192,122,104,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-text { position: relative; z-index: 1; }
  .hero-eyebrow {
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--terra-l); margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px;
  }
  .hero-eyebrow::before {
    content: ''; display: inline-block;
    width: 32px; height: 1px; background: var(--terra-l);
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--bark);
    margin-bottom: 28px;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--terra);
  }
  .hero-sub {
    font-size: 1rem; color: var(--muted); line-height: 1.7;
    max-width: 440px; margin-bottom: 48px;
  }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn {
    display: inline-block; text-decoration: none;
    padding: 14px 32px; border-radius: 40px;
    font-size: 0.85rem; letter-spacing: 0.08em;
    font-family: 'Inter', sans-serif;
    transition: all 0.25s; cursor: pointer; border: none;
  }
  .btn-primary {
    background: var(--terra); color: #fff;
  }
  .btn-primary:hover { background: var(--bark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139,74,58,0.25); }
  .btn-outline {
    background: transparent; color: var(--terra);
    border: 1.5px solid var(--terra-l);
  }
  .btn-outline:hover { background: var(--sand); }

  .hero-visual {
    position: relative; display: flex; justify-content: center; align-items: center;
  }
  .hero-photo-wrap {
    position: relative;
    width: 420px; height: 520px;
  }
  .hero-photo-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--sand) 0%, var(--sand-l) 100%);
    border-radius: 200px 200px 120px 120px;
  }
  .hero-photo-placeholder {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: flex-end;
    padding-bottom: 40px;
    border-radius: 200px 200px 120px 120px;
    overflow: hidden;
  }
  .hero-photo-placeholder svg {
    width: 260px; height: 360px;
    opacity: 0.25;
  }
  .hero-badge {
    position: absolute; bottom: -20px; left: -30px;
    background: #fff;
    border: 1px solid var(--sand);
    border-radius: 16px;
    padding: 16px 22px;
    box-shadow: 0 8px 30px rgba(61,43,35,0.08);
    display: flex; align-items: center; gap: 12px;
  }
  .hero-badge-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--sand); display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
  }
  .hero-badge-text { font-size: 0.8rem; color: var(--muted); line-height: 1.4; }
  .hero-badge-text strong { display: block; color: var(--bark); font-size: 0.9rem; }
  .floral {
    position: absolute; opacity: 0.18;
    pointer-events: none; user-select: none;
  }

  /* ── ABOUT ── */
  .about {
    padding: 100px 60px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    background: var(--sand-l);
  }
  .about-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    color: var(--bark);
    margin-bottom: 24px;
    line-height: 1.2;
  }
  .about-text h2 em { font-style: italic; color: var(--terra); }
  .about-text p {
    color: var(--muted); line-height: 1.8; margin-bottom: 16px;
    font-size: 0.97rem;
  }
  .about-creds {
    margin-top: 36px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .cred {
    background: #fff;
    border: 1px solid rgba(139,74,58,0.1);
    border-radius: 12px;
    padding: 18px 20px;
  }
  .cred-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 600;
    color: var(--terra); line-height: 1;
    margin-bottom: 4px;
  }
  .cred-label { font-size: 0.78rem; color: var(--muted); }
  .about-quote {
    position: relative;
    background: var(--terra);
    color: #fff;
    border-radius: 24px;
    padding: 48px 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
  }
  .about-quote::before {
    content: '\201C';
    position: absolute; top: 20px; left: 30px;
    font-size: 5rem; line-height: 1;
    opacity: 0.2;
    font-family: 'Cormorant Garamond', serif;
  }
  .about-quote-author {
    margin-top: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem; font-style: normal;
    opacity: 0.7; letter-spacing: 0.1em; text-transform: uppercase;
  }

  /* ── SERVICES ── */
  .services {
    padding: 100px 60px;
    background: var(--cream);
  }
  .section-head {
    text-align: center; margin-bottom: 60px;
  }
  .section-eyebrow {
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--terra-l); margin-bottom: 12px;
    display: flex; align-items: center; justify-content: center; gap: 12px;
  }
  .section-eyebrow::before, .section-eyebrow::after {
    content: ''; flex: 0 0 32px; height: 1px; background: var(--terra-l);
  }
  .section-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400; color: var(--bark);
    line-height: 1.2;
  }
  .section-head h2 em { font-style: italic; color: var(--terra); }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .service-card {
    background: var(--sand-l);
    border: 1px solid rgba(139,74,58,0.08);
    border-radius: 20px;
    padding: 36px 32px;
    transition: all 0.3s;
    position: relative; overflow: hidden;
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(139,74,58,0.12);
    border-color: rgba(139,74,58,0.2);
  }
  .service-card.featured {
    background: var(--terra);
    color: #fff;
    border-color: transparent;
  }
  .service-icon {
    font-size: 2rem; margin-bottom: 20px;
  }
  .service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 500;
    color: var(--bark); margin-bottom: 12px;
  }
  .service-card.featured h3 { color: #fff; }
  .service-card p {
    font-size: 0.88rem; color: var(--muted); line-height: 1.7;
  }
  .service-card.featured p { color: rgba(255,255,255,0.8); }
  .service-price {
    margin-top: 24px;
    display: flex; align-items: baseline; gap: 6px;
  }
  .service-price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 600;
    color: var(--terra);
  }
  .service-card.featured .service-price-amount { color: rgba(255,255,255,0.9); }
  .service-price-label {
    font-size: 0.78rem; color: var(--muted);
  }
  .service-card.featured .service-price-label { color: rgba(255,255,255,0.6); }
  .service-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 20px;
    font-size: 0.82rem; letter-spacing: 0.08em;
    color: var(--terra); text-decoration: none;
    transition: gap 0.2s;
  }
  .service-card.featured .service-link { color: rgba(255,255,255,0.9); }
  .service-link:hover { gap: 10px; }

  /* ── WHAT WORKS FOR ── */
  .for-who {
    padding: 100px 60px;
    background: var(--bark);
    color: #fff;
  }
  .for-who .section-eyebrow { color: var(--terra-l); }
  .for-who .section-eyebrow::before, .for-who .section-eyebrow::after { background: var(--terra-l); }
  .for-who .section-head h2 { color: #fff; }
  .for-who .section-head h2 em { color: var(--terra-l); }
  .situations-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 16px; max-width: 900px; margin: 0 auto;
  }
  .situation {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    transition: background 0.2s;
  }
  .situation:hover { background: rgba(255,255,255,0.08); }
  .situation-dot {
    flex-shrink: 0;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--terra-l); margin-top: 7px;
  }
  .situation p { font-size: 0.93rem; color: rgba(255,255,255,0.75); line-height: 1.6; }

  /* ── TESTIMONIALS ── */
  .testimonials {
    padding: 100px 60px;
    background: var(--sand-l);
  }
  .testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .testimonial {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(139,74,58,0.08);
  }
  .testimonial-stars { color: var(--terra); font-size: 0.9rem; margin-bottom: 16px; }
  .testimonial p {
    font-size: 0.9rem; color: var(--muted); line-height: 1.7;
    font-style: italic;
  }
  .testimonial-author {
    margin-top: 20px;
    display: flex; align-items: center; gap: 12px;
  }
  .testimonial-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--sand); display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
  }
  .testimonial-name { font-size: 0.83rem; font-weight: 500; color: var(--bark); }
  .testimonial-detail { font-size: 0.75rem; color: var(--muted); }

  /* ── COURSES ── */
  .courses {
    padding: 100px 60px;
    background: var(--cream);
  }
  .course-card {
    max-width: 900px; margin: 0 auto;
    background: linear-gradient(135deg, var(--terra) 0%, var(--bark) 100%);
    border-radius: 28px;
    padding: 56px 60px;
    display: grid; grid-template-columns: 1fr auto;
    gap: 40px; align-items: center;
    color: #fff;
    position: relative; overflow: hidden;
  }
  .course-card::before {
    content: '';
    position: absolute; right: -60px; top: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
  }
  .course-eyebrow {
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.5); margin-bottom: 14px;
  }
  .course-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 400;
    line-height: 1.2; margin-bottom: 16px;
  }
  .course-card p {
    font-size: 0.9rem; color: rgba(255,255,255,0.7);
    line-height: 1.7; margin-bottom: 32px;
    max-width: 480px;
  }
  .course-features {
    display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 36px;
  }
  .course-feature {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.82rem; color: rgba(255,255,255,0.7);
  }
  .course-feature::before {
    content: '✓';
    display: inline-flex; align-items: center; justify-content: center;
    width: 18px; height: 18px; border-radius: 50%;
    background: rgba(255,255,255,0.15);
    font-size: 0.7rem; color: #fff; flex-shrink: 0;
  }
  .course-action { position: relative; z-index: 1; }
  .course-price-label {
    font-size: 0.75rem; color: rgba(255,255,255,0.5);
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px;
  }
  .course-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem; font-weight: 600;
    color: #fff; line-height: 1; margin-bottom: 20px;
  }
  .btn-light {
    background: #fff; color: var(--terra);
    padding: 14px 32px;
  }
  .btn-light:hover { background: var(--sand); }

  /* ── BOOKING FORM ── */
  .booking {
    padding: 100px 60px;
    background: var(--sand-l);
  }
  .booking-inner {
    max-width: 680px; margin: 0 auto;
  }
  .form-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; margin-top: 40px;
  }
  .form-group {
    display: flex; flex-direction: column; gap: 6px;
  }
  .form-group.full { grid-column: 1 / -1; }
  label {
    font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--muted);
  }
  input, textarea, select {
    border: 1.5px solid rgba(139,74,58,0.15);
    border-radius: 10px;
    padding: 13px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.93rem;
    color: var(--text);
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }
  input:focus, textarea:focus, select:focus {
    border-color: var(--terra-l);
    box-shadow: 0 0 0 3px rgba(192,122,104,0.12);
  }
  textarea { min-height: 120px; resize: vertical; }
  .form-submit {
    margin-top: 24px; text-align: center;
  }
  .btn-submit {
    background: var(--terra); color: #fff;
    padding: 16px 48px; font-size: 0.9rem;
    border: none; cursor: pointer; width: 100%;
  }
  .btn-submit:hover { background: var(--bark); }
  .form-note {
    text-align: center; margin-top: 14px;
    font-size: 0.78rem; color: var(--muted);
  }

  /* ── SOCIAL ── */
  .social {
    padding: 80px 60px;
    background: var(--cream);
    text-align: center;
  }
  .social h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 400;
    color: var(--bark); margin-bottom: 12px;
  }
  .social-sub { color: var(--muted); font-size: 0.93rem; margin-bottom: 40px; }
  .social-links {
    display: flex; justify-content: center;
    gap: 20px; flex-wrap: wrap;
  }
  .social-link {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    border: 1.5px solid rgba(139,74,58,0.2);
    text-decoration: none;
    color: var(--bark);
    font-size: 0.88rem;
    background: var(--sand-l);
    transition: all 0.25s;
  }
  .social-link:hover {
    background: var(--terra); color: #fff;
    border-color: var(--terra);
    transform: translateY(-2px);
  }
  .social-link svg { width: 20px; height: 20px; }

  /* ── FOOTER ── */
  footer {
    background: var(--bark);
    padding: 40px 60px;
    display: flex; align-items: center; justify-content: space-between;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; color: rgba(255,255,255,0.7);
  }

  /* ── DECORATIVE FLOWER SVG ── */
  .flower {
    position: absolute;
    pointer-events: none; user-select: none;
    opacity: 0.06;
  }

  /* ── MOBILE ── */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; }
    .hero-visual { display: none; }
    .about { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
    .services { padding: 60px 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .for-who { padding: 60px 24px; }
    .situations-grid { grid-template-columns: 1fr; }
    .testimonials { padding: 60px 24px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .courses { padding: 60px 24px; }
    .course-card { grid-template-columns: 1fr; padding: 36px 28px; }
    .booking { padding: 60px 24px; }
    .form-grid { grid-template-columns: 1fr; }
    .social { padding: 60px 24px; }
    footer { padding: 28px 24px; flex-direction: column; gap: 12px; text-align: center; }
  }

  /* ── SCROLL FADE ── */
  .reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }

/* ---- Что меняется: два столбца «приходит» и «уходит» ---- */
.gains { background: var(--cream); }
.gains-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
  max-width: 1000px; margin: 0 auto;
}
.gains-col h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400;
  margin-bottom: 24px; color: var(--bark);
}
.gains-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.gains-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 16px; line-height: 1.7; color: var(--muted);
}
.gains-mark { flex-shrink: 0; font-size: 15px; line-height: 1.8; }
.gains-col.positive .gains-mark { color: var(--sage); }
.gains-col.negative .gains-mark { color: var(--terra-l); }

/* ---- Вопросы и ответы ---- */
.faq { background: var(--sand-l); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(61,43,35,0.12);
  padding: 24px 0;
}
.faq-q {
  font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--bark);
  cursor: pointer; display: flex; justify-content: space-between; gap: 20px;
  align-items: baseline; list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; color: var(--terra-l); font-size: 24px; flex-shrink: 0; }
.faq-item[open] .faq-q::after { content: '−'; }
.faq-a { padding-top: 14px; color: var(--muted); line-height: 1.8; font-size: 16px; }

/* ---- Ответ формы ---- */
.form-result { font-size: 15px; line-height: 1.6; margin-top: 12px; }
.form-result.ok { color: #5C8A62; }
.form-result.err { color: var(--terra); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }

@media (max-width: 768px) {
  .gains-grid { grid-template-columns: 1fr; gap: 36px; }
}
