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

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

:root {
  --rose:       #C4738A;
  --rose-dark:  #A85A71;
  --rose-light: #F2D8DF;
  --sage:       #8E9E78;
  --sage-light: #D6E0CD;
  --ivory:      #FDF8F5;
  --ivory-2:    #F5ECE8;
  --cream:      #FAF0EE;
  --text:       #3D2E2E;
  --text-muted: #7A6262;
  --border:     #E8D5D0;
  --white:      #FFFFFF;
  --shadow:     0 4px 24px rgba(61,46,46,.08);
  --shadow-lg:  0 12px 48px rgba(61,46,46,.12);
  --radius:     12px;
  --radius-sm:  8px;
  --transition: .25s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  font-weight: 600;
}

a {
  color: var(--rose);
  text-decoration: none;
}

a:hover {
  color: var(--rose-dark);
}

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

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 40px;
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform .15s ease, box-shadow var(--transition);
  text-align: center;
}

.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}

.btn-primary:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(196,115,138,.35);
}

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

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

.btn-lg {
  padding: 18px 44px;
  font-size: 1rem;
}

section {
  padding: 80px 0;
}

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

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  color: var(--text);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,248,245,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .02em;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.header-cta {
  padding: 10px 24px;
  font-size: .875rem;
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

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

.mobile-nav a {
  padding: 12px 24px;
  font-size: .9375rem;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child {
  border-bottom: none;
  color: var(--rose);
  font-weight: 600;
  padding-top: 16px;
}

.hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--cream) 100%);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose-light) 0%, transparent 70%);
  opacity: .5;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rose-light);
  color: var(--rose-dark);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '✦';
  font-size: .7rem;
}

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

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

.hero-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

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

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

.hero-note strong {
  color: var(--sage);
}

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.hero-badge-text {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.hero-badge-text span {
  display: block;
  font-weight: 400;
  color: var(--text-muted);
  font-size: .75rem;
}

.trust-bar {
  padding: 32px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  font-size: 1.25rem;
  color: var(--rose);
}

.trust-text {
  font-size: .875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-text strong {
  color: var(--text);
  display: block;
}

.for-whom {
  background: var(--cream);
}

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

.for-whom-image img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

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

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

.for-whom-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  font-size: .875rem;
  margin-top: 2px;
}

.for-whom-list-text strong {
  display: block;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.for-whom-list-text span {
  font-size: .875rem;
  color: var(--text-muted);
}

.outcomes {
  background: var(--ivory);
}

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

.outcome-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.outcome-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

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

.outcome-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.outcome-desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.program {
  background: var(--cream);
}

.program-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.program-steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: var(--rose-light);
}

.program-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 0 0 36px;
  position: relative;
}

.program-step:last-child {
  padding-bottom: 0;
}

.step-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--cream);
}

.step-body {
  padding-top: 10px;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.step-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.gallery {
  background: var(--ivory);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

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

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item-wide img {
  height: 260px;
}

.lead-form-section {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.lead-form-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}

.lead-form-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}

.lead-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lead-form-heading .section-label {
  color: rgba(255,255,255,.7);
}

.lead-form-heading .section-title {
  color: var(--white);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.lead-form-heading .section-subtitle {
  color: rgba(255,255,255,.8);
}

.lead-form-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

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

.lead-form-perks li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
}

.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(61,46,46,.2);
}

.form-title {
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 6px;
}

.form-sub {
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .03em;
}

.form-group input,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  color: var(--text);
  background: var(--ivory);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(196,115,138,.15);
}

.form-group input::placeholder {
  color: #BFB0B0;
}

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

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

.form-privacy a {
  color: var(--rose);
}

.faq {
  background: var(--ivory);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text);
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--rose);
}

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

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.site-footer {
  background: var(--text);
  color: rgba(255,255,255,.65);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

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

.footer-desc {
  font-size: .875rem;
  line-height: 1.7;
  max-width: 280px;
}

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

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

.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  transition: color var(--transition);
}

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

.footer-company {
  font-size: .8rem;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: .8125rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: .8125rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--rose-light);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 560px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(calc(100% + 40px));
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}

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

.cookie-text {
  flex: 1;
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.cookie-text a {
  color: var(--rose);
}

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

.cookie-accept {
  padding: 10px 22px;
  font-size: .875rem;
}

.cookie-decline {
  padding: 10px 18px;
  font-size: .875rem;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 40px;
  color: var(--text-muted);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  transition: border-color var(--transition), color var(--transition);
}

.cookie-decline:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--cream) 100%);
  padding: 40px 24px;
  text-align: center;
}

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

.success-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
}

.success-card h1 {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 12px;
}

.success-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.legal-page {
  padding: 80px 0;
}

.legal-page h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 8px;
}

.legal-date {
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.legal-body h2 {
  font-size: 1.25rem;
  color: var(--text);
  margin: 32px 0 12px;
}

.legal-body p {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-body ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-body ul li {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 6px;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image-wrap {
    order: -1;
  }

  .hero-badge {
    bottom: -12px;
    left: 12px;
  }

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

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

  .lead-form-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .site-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 48px 0 40px;
  }

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

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

  .gallery-item-wide {
    grid-column: span 1;
  }

  .gallery-item img,
  .gallery-item-wide img {
    height: 260px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-items {
    gap: 24px;
    justify-content: flex-start;
  }

  .form-card {
    padding: 28px 24px;
  }

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

  .program-steps::before {
    left: 27px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-lg {
    padding: 15px 32px;
    font-size: .9375rem;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
}
