@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500&display=swap');

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

:root {
  --rose: #C8919E;
  --rose-light: #E8C5CC;
  --rose-pale: #F5E8EB;
  --cream: #FAF8F5;
  --warm-white: #FEFCFA;
  --sage: #9AAB8F;
  --sage-light: #D4DDD0;
  --brown: #7A5C4E;
  --brown-light: #C4A89A;
  --text-dark: #2C2420;
  --text-mid: #5C4A44;
  --text-soft: #8C7870;
  --border: #E8DDD8;
  --shadow: rgba(44, 36, 32, 0.08);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--warm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.2;
  color: var(--text-dark);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--rose);
  color: #fff;
}

.btn-primary:hover {
  background: #B5808E;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 145, 158, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--rose);
  border: 1.5px solid var(--rose);
}

.btn-outline:hover {
  background: var(--rose-pale);
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 560px;
  line-height: 1.7;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(254, 252, 250, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 12px var(--shadow);
}

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

.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--text-mid);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--rose);
}

.nav-cta {
  font-size: 0.88rem;
  padding: 10px 22px;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  padding-top: 64px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hero-content {
  padding: 80px 60px 80px 0;
}

.hero-tag {
  display: inline-block;
  background: var(--rose-pale);
  color: var(--rose);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hero-title em {
  font-style: italic;
  color: var(--rose);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.hero-image-wrap {
  position: relative;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--warm-white) 0%, transparent 20%);
}

/* ── FOR WHOM ── */
.for-whom {
  padding: 100px 0;
  background: var(--cream);
}

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

.for-whom-image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.for-whom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.for-whom-image:hover img {
  transform: scale(1.03);
}

.for-whom-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.for-whom-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.for-whom-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--rose-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.for-whom-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--rose);
}

.for-whom-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.for-whom-item p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ── RESULTS ── */
.results {
  padding: 100px 0;
  background: var(--warm-white);
}

.results-header {
  text-align: center;
  margin-bottom: 56px;
}

.results-header .section-subtitle {
  margin: 0 auto;
}

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

.result-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 28px;
  transition: box-shadow 0.3s;
}

.result-card:hover {
  box-shadow: 0 6px 24px var(--shadow);
}

.result-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 8px;
}

.result-card h3 {
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.result-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ── CURRICULUM ── */
.curriculum {
  padding: 100px 0;
  background: var(--cream);
}

.curriculum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}

.curriculum-modules {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.module-item {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.module-item:hover {
  border-color: var(--rose-light);
}

.module-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  gap: 12px;
}

.module-num {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--rose);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  width: 28px;
}

.module-title {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}

.module-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-soft);
  transition: transform 0.3s;
}

.module-item.open .module-arrow {
  transform: rotate(180deg);
}

.module-body {
  display: none;
  padding: 0 22px 18px 22px;
  padding-left: calc(22px + 28px + 12px);
}

.module-item.open .module-body {
  display: block;
}

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

.module-body li {
  font-size: 0.88rem;
  color: var(--text-soft);
  padding-left: 16px;
  position: relative;
}

.module-body li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--rose-light);
}

.curriculum-side {
  position: sticky;
  top: 88px;
}

.curriculum-side-img {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 28px;
  aspect-ratio: 4/3;
}

.curriculum-side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.curriculum-note {
  background: var(--rose-pale);
  border-left: 3px solid var(--rose);
  padding: 18px 20px;
  border-radius: 0 4px 4px 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 100px 0;
  background: var(--warm-white);
}

.how-header {
  text-align: center;
  margin-bottom: 56px;
}

.how-header .section-subtitle {
  margin: 0 auto;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  counter-reset: steps;
}

.how-step {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 24px;
  position: relative;
  text-align: center;
  transition: box-shadow 0.3s;
}

.how-step:hover {
  box-shadow: 0 4px 20px var(--shadow);
}

.how-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--rose-light);
  line-height: 1;
  margin-bottom: 12px;
}

.how-step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.how-step p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ── GALLERY ── */
.gallery {
  padding: 100px 0;
  background: var(--cream);
}

.gallery-header {
  margin-bottom: 40px;
}

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

.gallery-item {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

/* ── FAQ ── */
.faq {
  padding: 100px 0;
  background: var(--warm-white);
}

.faq-header {
  margin-bottom: 48px;
}

.faq-list {
  max-width: 740px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream);
  transition: border-color 0.2s;
}

.faq-item.open {
  border-color: var(--rose-light);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}

.faq-question span {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--rose-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.2s;
}

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

.faq-icon svg {
  width: 12px;
  height: 12px;
  fill: var(--rose);
  transition: fill 0.2s;
}

.faq-item.open .faq-icon svg {
  fill: #fff;
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.8;
}

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

/* ── LEAD FORM ── */
.lead-form-section {
  padding: 100px 0;
  background: var(--rose-pale);
}

.lead-form-wrap {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.lead-form-wrap .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 12px;
}

.lead-form-wrap .section-subtitle {
  margin: 0 auto 36px;
}

.lead-form {
  background: var(--warm-white);
  border-radius: 8px;
  padding: 36px;
  box-shadow: 0 4px 32px var(--shadow);
  text-align: left;
}

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

.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}

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

.form-group input.error,
.form-group select.error {
  border-color: #C0392B;
}

.form-error {
  font-size: 0.8rem;
  color: #C0392B;
  margin-top: 5px;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  margin-top: 8px;
}

.form-legal {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-top: 14px;
  text-align: center;
  line-height: 1.6;
}

.form-legal a {
  color: var(--rose);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── FOOTER ── */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .nav-logo {
  color: var(--rose-light);
  font-size: 1.4rem;
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

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

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--rose-light);
}

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

.footer-legal {
  font-size: 0.78rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.4);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-align: right;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--text-dark);
  color: rgba(255,255,255,0.85);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-text {
  font-size: 0.85rem;
  line-height: 1.7;
  flex: 1;
  min-width: 260px;
}

.cookie-text a {
  color: var(--rose-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.cookie-accept {
  background: var(--rose);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.cookie-accept:hover {
  background: #B5808E;
}

.cookie-close {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.65);
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 0.88rem;
  cursor: pointer;
  transition: border-color 0.2s;
}

.cookie-close:hover {
  border-color: rgba(255,255,255,0.4);
}

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

.success-card {
  background: var(--warm-white);
  border-radius: 10px;
  padding: 64px 48px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 40px 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 28px;
}

.success-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--rose);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-card h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.success-card p {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ── LEGAL PAGES ── */
.legal-page {
  padding-top: 64px;
  min-height: 100vh;
  background: var(--warm-white);
}

.legal-hero {
  background: var(--cream);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.legal-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 8px;
}

.legal-date {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.legal-content {
  padding: 56px 0 80px;
  max-width: 740px;
}

.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.legal-content p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 10px 0 16px 20px;
}

.legal-content ul li {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--rose);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 99;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 4px 20px var(--shadow);
}

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

.mobile-nav a {
  font-size: 1rem;
  color: var(--text-dark);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links, .nav-cta {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 60px 0 40px;
    order: 2;
  }

  .hero-image-wrap {
    order: 1;
    min-height: 50vw;
    height: 50vw;
  }

  .hero-image-wrap::after {
    background: linear-gradient(to bottom, transparent 60%, var(--warm-white));
  }

  .for-whom-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .results-grid {
    grid-template-columns: 1fr 1fr;
  }

  .curriculum-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .curriculum-side {
    position: static;
  }

  .how-steps {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .results-grid {
    grid-template-columns: 1fr;
  }

  .how-steps {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 24px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-copy {
    text-align: left;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .success-card {
    padding: 40px 24px;
  }
}
