/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rose:      #C08B80;
  --rose-dark: #A5766B;
  --rose-pale: #F5EAE7;
  --cream:     #FAF6F1;
  --linen:     #EFE8DF;
  --sage:      #8A9E8C;
  --charcoal:  #2C2A28;
  --mid:       #5A5450;
  --muted:     #9A918B;
  --white:     #FFFFFF;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-w:     1160px;
  --radius:    12px;
  --shadow:    0 4px 32px rgba(44,42,40,.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background .18s, transform .12s, box-shadow .18s;
  text-decoration: none;
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
}
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(192,139,128,.35); }
.btn-outline {
  background: transparent;
  color: var(--rose);
  border: 2px solid var(--rose);
}
.btn-outline:hover { background: var(--rose-pale); }

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,246,241,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--linen);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -.02em;
}

.logo span { color: var(--rose); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: .9rem;
  color: var(--mid);
  font-weight: 500;
  transition: color .15s;
}
.nav-links a:hover { color: var(--charcoal); }

.nav-cta { display: flex; align-items: center; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--charcoal); border-radius: 2px;
  transition: all .2s;
}

/* ===== HERO ===== */
.hero {
  background: var(--linen);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 92vh;
  padding: 80px 0 60px;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rose-pale);
  color: var(--rose-dark);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: .04em;
}

.hero-badge::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--rose);
  border-radius: 50%;
}

.hero h1 { margin-bottom: 20px; }
.hero-sub {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 420px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  max-width: 440px;
}

.hero-form h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.form-hint {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: .83rem;
  font-weight: 600;
  color: var(--mid);
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--linen);
  border-radius: 8px;
  font-size: .95rem;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color .15s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--rose);
}

.form-group input::placeholder { color: var(--muted); }

.form-submit {
  width: 100%;
  padding: 14px;
  margin-top: 6px;
}

.form-legal {
  font-size: .75rem;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.5;
}
.form-legal a { color: var(--rose); text-decoration: underline; }

.hero-img-wrap {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-img-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 16px 64px rgba(44,42,40,.14);
}

.hero-float {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .88rem;
}

.hero-float-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.hero-float strong { display: block; font-weight: 700; font-size: .9rem; }
.hero-float span { color: var(--muted); font-size: .8rem; }

/* ===== SECTION SHARED ===== */
section { padding: 88px 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-header p {
  color: var(--mid);
  margin-top: 14px;
  font-size: 1.02rem;
}

/* ===== BENEFITS ===== */
.benefits { background: var(--white); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s;
}

.benefit-card:hover { box-shadow: var(--shadow); }

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  display: block;
}

.benefit-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.benefit-card p { font-size: .9rem; color: var(--mid); line-height: 1.65; }

.benefit-accent {
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: var(--rose-pale);
  border-radius: 0 var(--radius) 0 80px;
}

/* ===== FOR WHOM ===== */
.for-whom { background: var(--linen); }

.for-whom-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.for-whom-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 20px;
}

.for-whom-content .section-label { margin-bottom: 10px; }
.for-whom-content h2 { margin-bottom: 20px; }

.audience-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: .95rem;
  color: var(--mid);
}

.audience-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.audience-check::after {
  content: '';
  display: block;
  width: 6px; height: 10px;
  border: 2px solid white;
  border-top: none; border-left: none;
  transform: rotate(40deg) translateY(-1px);
}

/* ===== PROGRAM ===== */
.program { background: var(--white); }

.modules-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.module-card {
  border: 1.5px solid var(--linen);
  border-radius: var(--radius);
  padding: 24px 28px;
  position: relative;
  transition: border-color .18s, box-shadow .18s;
  cursor: default;
}

.module-card:hover {
  border-color: var(--rose);
  box-shadow: 0 4px 20px rgba(192,139,128,.12);
}

.module-num {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--rose);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.module-card h3 { font-size: 1rem; margin-bottom: 8px; }
.module-card p { font-size: .88rem; color: var(--mid); line-height: 1.6; }

/* ===== PROCESS ===== */
.process { background: var(--rose-pale); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: var(--rose);
  opacity: .25;
}

.step-card {
  text-align: center;
  padding: 24px 16px;
}

.step-num {
  width: 52px; height: 52px;
  background: var(--rose);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.step-card h3 { font-size: .95rem; margin-bottom: 8px; }
.step-card p { font-size: .85rem; color: var(--mid); line-height: 1.6; }

/* ===== INSTRUCTOR ===== */
.instructor { background: var(--white); }

.instructor-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
}

.instructor-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
}

.instructor-content .section-label { margin-bottom: 8px; }
.instructor-name {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.instructor-title {
  color: var(--rose);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.instructor-bio { color: var(--mid); line-height: 1.75; margin-bottom: 28px; }

.instructor-facts {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.fact { text-align: left; }
.fact strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--rose);
  line-height: 1;
}
.fact span { font-size: .82rem; color: var(--muted); }

/* ===== PORTFOLIO ===== */
.portfolio { background: var(--linen); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.portfolio-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.portfolio-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform .4s;
}

.portfolio-item:hover img { transform: scale(1.03); }

.portfolio-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 22px;
  background: linear-gradient(transparent, rgba(44,42,40,.65));
  color: var(--white);
}

.portfolio-caption h4 { font-family: var(--font-head); font-size: 1rem; }
.portfolio-caption span { font-size: .8rem; opacity: .85; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
}

.stars {
  color: #E8A87C;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-card blockquote {
  font-size: .93rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--rose-dark);
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author strong { display: block; font-size: .88rem; }
.testimonial-author span { font-size: .78rem; color: var(--muted); }

/* ===== FAQ ===== */
.faq { background: var(--linen); }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-body);
  font-size: .98rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background .15s;
}

.faq-q:hover { background: var(--cream); }

.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rose);
  font-size: 1.1rem;
  font-weight: 700;
  transition: background .2s, transform .25s;
}

.faq-item.open .faq-icon {
  background: var(--rose);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: .92rem;
  color: var(--mid);
  line-height: 1.7;
}

.faq-item.open .faq-a { display: block; }

/* ===== LEAD FORM SECTION ===== */
.lead-section {
  background: var(--charcoal);
  color: var(--white);
}

.lead-inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 64px;
  align-items: center;
}

.lead-content .section-label { color: var(--rose-pale); opacity: .7; }
.lead-content h2 { color: var(--white); margin-bottom: 16px; }
.lead-content p { color: rgba(255,255,255,.65); max-width: 380px; line-height: 1.75; }

.lead-promises {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-promises li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
}

.lead-promises li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  color: white;
  line-height: 20px;
  text-align: center;
}

.lead-form-box {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
}

.lead-form-box h3 {
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.lead-form-box .form-hint { margin-bottom: 22px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 48px 0 32px;
  color: rgba(255,255,255,.55);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: start;
  margin-bottom: 36px;
}

.footer-brand .logo { color: var(--white); font-size: 1.3rem; }
.footer-brand p {
  margin-top: 10px;
  font-size: .83rem;
  color: rgba(255,255,255,.4);
  max-width: 240px;
  line-height: 1.6;
}

.footer-col h5 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul a {
  font-size: .87rem;
  color: rgba(255,255,255,.55);
  transition: color .15s;
}
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.legal-info { font-size: .78rem; color: rgba(255,255,255,.3); line-height: 1.7; }
.copyright { font-size: .82rem; color: rgba(255,255,255,.35); white-space: nowrap; }

/* ===== SUCCESS PAGE ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--linen);
  padding: 40px 24px;
}

.success-card {
  background: var(--white);
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow);
}

.success-icon {
  width: 72px; height: 72px;
  background: var(--rose-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}

.success-card h1 { font-size: 1.8rem; margin-bottom: 12px; }
.success-card p { color: var(--mid); margin-bottom: 32px; line-height: 1.65; }

/* ===== LEGAL PAGES ===== */
.legal-page { padding: 80px 0 100px; }
.legal-page h1 { margin-bottom: 8px; }
.legal-meta {
  color: var(--muted);
  font-size: .88rem;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--linen);
}

.legal-content { max-width: 720px; }
.legal-content h2 { font-size: 1.2rem; margin: 32px 0 12px; }
.legal-content p, .legal-content li { font-size: .95rem; color: var(--mid); line-height: 1.75; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; }
.legal-content li { list-style: disc; margin-bottom: 6px; }
.legal-content a { color: var(--rose); text-decoration: underline; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--charcoal);
  color: rgba(255,255,255,.85);
  border-radius: 12px;
  padding: 18px 24px;
  max-width: 620px;
  width: calc(100% - 32px);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  transition: opacity .3s, transform .3s;
}

.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}

.cookie-text { flex: 1; font-size: .85rem; line-height: 1.55; }
.cookie-text a { color: var(--rose-pale); text-decoration: underline; }

.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }

.cookie-accept {
  padding: 9px 18px;
  background: var(--rose);
  color: white;
  border: none;
  border-radius: 7px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background .15s;
}
.cookie-accept:hover { background: var(--rose-dark); }

.cookie-close {
  padding: 9px 14px;
  background: transparent;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 7px;
  font-size: .85rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color .15s;
}
.cookie-close:hover { color: rgba(255,255,255,.85); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0 16px;
  border-top: 1px solid var(--linen);
}

.mobile-nav a {
  padding: 10px 0;
  font-size: 1rem;
  color: var(--mid);
  font-weight: 500;
  border-bottom: 1px solid var(--linen);
}

.mobile-nav .btn { margin-top: 8px; text-align: center; }

.mobile-nav.open { display: flex; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; min-height: auto; padding: 56px 0 48px; gap: 36px; }
  .hero-img-wrap { display: none; }
  .hero-form { max-width: 100%; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .for-whom-inner { grid-template-columns: 1fr; }
  .for-whom-img { display: none; }
  .modules-list { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .steps-grid::before { display: none; }
  .instructor-inner { grid-template-columns: 1fr; }
  .instructor-img { display: none; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .lead-inner { grid-template-columns: 1fr; }
  .lead-content p { max-width: 100%; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
}

@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-accept, .cookie-close { flex: 1; text-align: center; }
  section { padding: 64px 0; }
  .success-card { padding: 40px 24px; }
}
