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

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

:root {
  --cream:       #FAF7F4;
  --white:       #FFFFFF;
  --rose:        #C8997A;
  --rose-dark:   #A87558;
  --rose-light:  #F0E2D5;
  --rose-pale:   #FAF0EB;
  --charcoal:    #2D2825;
  --muted:       #8A7A72;
  --border:      #E6D9D0;
  --alt-bg:      #F5EDE6;

  --ff-serif:  'Playfair Display', Georgia, serif;
  --ff-sans:   'Mulish', system-ui, sans-serif;

  --transition: 0.25s ease;
  --shadow:     0 4px 20px rgba(45,40,37,0.08);
  --shadow-lg:  0 8px 40px rgba(45,40,37,0.12);
  --radius:     6px;
  --radius-lg:  12px;
}

html { scroll-behavior: smooth; }

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

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

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

h1, h2, h3, h4 { font-family: var(--ff-serif); line-height: 1.25; color: var(--charcoal); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }

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

.section-title { margin-bottom: 16px; }
.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
}

.btn {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
}
.btn-primary:hover { background: var(--rose-dark); box-shadow: 0 4px 16px rgba(168,117,88,0.35); transform: translateY(-1px); }

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

.btn-large { padding: 17px 40px; font-size: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,244,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.logo span { color: var(--rose); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
}
.nav a:hover { color: var(--charcoal); }
.nav .btn { margin-left: 8px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }

.hero {
  padding: 72px 0 64px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { max-width: 520px; }
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 18px;
}
.hero h1 { margin-bottom: 20px; }
.hero-sub {
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-note { font-size: 0.82rem; color: var(--muted); }

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-image:hover img { transform: scale(1.02); }

.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.trust-item strong {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rose);
  line-height: 1;
}
.trust-item span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.for-whom { padding: 88px 0; }
.for-whom-header { text-align: center; margin-bottom: 52px; }
.for-whom-header .section-lead { margin: 0 auto; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card-icon {
  width: 48px;
  height: 48px;
  background: var(--rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 22px; height: 22px; color: var(--rose); stroke: var(--rose); }
.card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.card p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; }

.learn { padding: 88px 0; background: var(--alt-bg); }
.learn-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.learn-list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.learn-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.learn-bullet {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 2px;
}
.learn-text strong { display: block; font-weight: 600; font-size: 0.95rem; margin-bottom: 3px; }
.learn-text span { font-size: 0.88rem; color: var(--muted); }

.learn-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.learn-image img { width: 100%; height: 100%; object-fit: cover; }

.program { padding: 88px 0; }
.program-header { margin-bottom: 52px; }
.modules { display: flex; flex-direction: column; gap: 2px; }
.module {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.module-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  cursor: pointer;
  transition: background var(--transition);
  gap: 16px;
}
.module-header:hover { background: var(--rose-pale); }
.module-num {
  font-family: var(--ff-serif);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rose);
  min-width: 24px;
}
.module-title { flex: 1; font-weight: 600; font-size: 1rem; }
.module-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
  background: var(--cream);
}
.module.open .module-toggle { transform: rotate(45deg); background: var(--rose); border-color: var(--rose); }
.module.open .module-toggle svg { stroke: var(--white); }
.module-body {
  display: none;
  padding: 0 28px 24px;
}
.module.open .module-body { display: block; }
.module-body ul { padding-top: 8px; }
.module-body li {
  font-size: 0.92rem;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.module-body li::before { content: '—'; color: var(--rose); flex-shrink: 0; font-size: 0.8rem; }

.examples { padding: 88px 0; background: var(--rose-pale); }
.examples-header { text-align: center; margin-bottom: 48px; }
.examples-header .section-lead { margin: 0 auto; }
.examples-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 860px;
  margin: 0 auto;
}
.examples-image img { width: 100%; object-fit: cover; }

.how { padding: 88px 0; }
.how-header { margin-bottom: 52px; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.how-step { text-align: center; }
.step-num {
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--rose-light);
  line-height: 1;
  margin-bottom: 12px;
}
.step-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.step-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

.author { padding: 88px 0; background: var(--alt-bg); }
.author-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.author-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.author-image img { width: 100%; height: 100%; object-fit: cover; }
.author-content .section-label { margin-bottom: 10px; }
.author-content h2 { margin-bottom: 20px; }
.author-bio { font-size: 0.97rem; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.author-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.author-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 6px 14px;
  font-size: 0.82rem;
  color: var(--muted);
}

.lead-form-section {
  padding: 96px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.lead-form-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(200,153,122,0.08);
  pointer-events: none;
}
.lead-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.lead-form-content { color: var(--white); }
.lead-form-content .section-label { color: var(--rose-light); }
.lead-form-content h2 { color: var(--white); margin-bottom: 16px; }
.lead-form-content p { color: rgba(255,255,255,0.65); font-size: 0.97rem; line-height: 1.75; }
.lead-form-perks { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.lead-perk {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}
.lead-perk::before { content: '✓'; color: var(--rose); font-weight: 700; flex-shrink: 0; }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.form-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.form-card .form-subtitle { font-size: 0.88rem; color: var(--muted); margin-bottom: 28px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 7px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--ff-sans);
  font-size: 0.93rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(200,153,122,0.15);
  background: var(--white);
}
.form-group input.error { border-color: #c0392b; }
.form-group .field-error {
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: 5px;
  display: none;
}
.form-group input.error + .field-error { display: block; }

.form-card .btn { width: 100%; text-align: center; margin-top: 4px; }
.form-consent {
  margin-top: 14px;
  font-size: 0.76rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.55;
}
.form-consent a { text-decoration: underline; color: var(--muted); }

.faq { padding: 88px 0; }
.faq-header { text-align: center; margin-bottom: 52px; }
.faq-header .section-lead { margin: 0 auto; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--rose-pale); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--rose); }
.faq-item.open .faq-icon svg { stroke: var(--white); }
.faq-answer {
  display: none;
  padding: 0 26px 22px;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 36px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 260px; }
.footer-company { margin-top: 16px; font-size: 0.78rem; line-height: 1.9; }
.footer-col h4 { color: var(--white); font-family: var(--ff-sans); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 0.87rem; }
.footer-col a { transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--charcoal);
  border-top: 2px solid var(--rose);
  padding: 20px 24px;
  display: none;
  animation: slideUp 0.4s ease;
}
.cookie-banner.visible { display: block; }
.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text { font-size: 0.87rem; color: rgba(255,255,255,0.8); line-height: 1.6; flex: 1; min-width: 240px; }
.cookie-text a { color: var(--rose-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-accept {
  background: var(--rose);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 10px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-accept:hover { background: var(--rose-dark); }
.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 10px 18px;
  font-size: 0.88rem;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}
.cookie-decline:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

.legal-hero {
  background: var(--alt-bg);
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.legal-hero h1 { font-size: 2rem; }
.legal-hero .updated { font-size: 0.85rem; color: var(--muted); margin-top: 8px; }

.legal-content {
  padding: 64px 0 88px;
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 { font-size: 1.3rem; margin-top: 40px; margin-bottom: 14px; }
.legal-content h3 { font-size: 1.05rem; margin-top: 28px; margin-bottom: 10px; }
.legal-content p { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.legal-content ul { margin: 12px 0 14px 20px; list-style: disc; }
.legal-content li { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-bottom: 6px; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; color: var(--rose); font-size: 0.9rem; font-weight: 600; margin-bottom: 32px; transition: opacity var(--transition); }
.legal-back:hover { opacity: 0.75; }

.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  background: var(--cream);
}
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}
.success-icon svg { width: 36px; height: 36px; color: var(--rose); stroke: var(--rose); }
.success-page h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 16px; }
.success-page p { font-size: 1.02rem; color: var(--muted); max-width: 480px; margin: 0 auto 36px; line-height: 1.75; }

@media (max-width: 900px) {
  .hero-inner,
  .learn-inner,
  .author-inner,
  .lead-form-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image,
  .learn-image,
  .author-image { aspect-ratio: 16/9; }
  .cards-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px 28px;
    gap: 20px;
    z-index: 99;
    box-shadow: var(--shadow);
  }
  .nav.open a { font-size: 1rem; color: var(--charcoal); }
}

@media (max-width: 600px) {
  .how-steps { grid-template-columns: 1fr; gap: 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .trust-inner { gap: 24px; }
  .trust-divider { display: none; }
  .form-card { padding: 28px 20px; }
  .lead-form-inner { gap: 32px; }
}
