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

/* ===== TOKENS ===== */
:root {
  --cream: #FDF8F2;
  --cream-dark: #F5EEE3;
  --blush: #EFC9B8;
  --blush-light: #F9E8DF;
  --rose: #D4866A;
  --rose-dark: #B86B50;
  --brown: #6B4A36;
  --brown-light: #9C7060;
  --sage: #8FA889;
  --sage-light: #C5D9C2;
  --text: #2E2320;
  --text-muted: #7A6560;
  --white: #FFFFFF;
  --shadow-soft: 0 4px 24px rgba(107, 74, 54, 0.10);
  --shadow-card: 0 2px 16px rgba(107, 74, 54, 0.08);
  --radius: 16px;
  --radius-sm: 8px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Nunito', system-ui, sans-serif;
  --transition: 0.25s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
p { font-size: clamp(0.95rem, 1.5vw, 1.05rem); }

/* ===== LAYOUT ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--alt { background: var(--cream-dark); }
.section--dark { background: var(--brown); color: var(--cream); }

/* ===== HEADER / NAV ===== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 248, 242, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 134, 106, 0.15);
  padding: 14px 0;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.header__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rose-dark);
  letter-spacing: -0.02em;
}
.header__logo span { color: var(--sage); }
.header__cta {
  background: var(--rose);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.header__cta:hover { background: var(--rose-dark); transform: translateY(-1px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush-light) 100%);
  padding: 80px 0 60px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 201, 184, 0.35) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blush);
  color: var(--brown);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero__badge::before { content: '🧶'; font-size: 1rem; }
.hero__title { margin-bottom: 20px; color: var(--brown); }
.hero__title em { font-style: normal; color: var(--rose-dark); }
.hero__subtitle { color: var(--text-muted); margin-bottom: 36px; font-size: 1.05rem; max-width: 480px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--rose);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(212, 134, 106, 0.35);
}
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212, 134, 106, 0.45); }
.btn-secondary {
  background: transparent;
  color: var(--brown);
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--blush);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.btn-secondary:hover { border-color: var(--rose); background: var(--blush-light); }
.hero__trust { display: flex; gap: 24px; margin-top: 28px; flex-wrap: wrap; }
.hero__trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: var(--text-muted); font-weight: 500;
}
.hero__trust-item span { font-size: 1rem; }
.hero__image { position: relative; }
.hero__image img {
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.hero__image-badge {
  position: absolute;
  bottom: 24px; left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem;
}
.hero__image-badge strong { display: block; font-size: 1.1rem; color: var(--brown); }

/* ===== BENEFITS ===== */
.benefits__heading { text-align: center; margin-bottom: 16px; color: var(--brown); }
.benefits__sub { text-align: center; color: var(--text-muted); margin-bottom: 48px; max-width: 540px; margin-left: auto; margin-right: auto; }
.benefits__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.benefit-card__icon {
  width: 52px; height: 52px;
  background: var(--blush-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.benefit-card__title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--brown); }
.benefit-card__text { font-size: 0.93rem; color: var(--text-muted); line-height: 1.55; }

/* ===== FOR WHOM ===== */
.forwhom__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.forwhom__image img { border-radius: var(--radius); box-shadow: var(--shadow-soft); width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.forwhom__heading { color: var(--brown); margin-bottom: 12px; }
.forwhom__intro { color: var(--text-muted); margin-bottom: 28px; }
.forwhom__list { display: flex; flex-direction: column; gap: 16px; }
.forwhom__item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
}
.forwhom__item-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.forwhom__item-text { font-size: 0.95rem; color: var(--text); line-height: 1.5; }
.forwhom__item-text strong { display: block; margin-bottom: 4px; color: var(--brown); }

/* ===== FORMAT ===== */
.format__heading { text-align: center; margin-bottom: 12px; color: var(--cream); }
.format__sub { text-align: center; color: rgba(253, 248, 242, 0.75); margin-bottom: 48px; }
.format__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.format-card {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: background var(--transition);
}
.format-card:hover { background: rgba(255, 255, 255, 0.15); }
.format-card__icon { font-size: 2.2rem; margin-bottom: 14px; }
.format-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--cream); }
.format-card__text { font-size: 0.9rem; color: rgba(253, 248, 242, 0.75); line-height: 1.5; }
.format-card__num { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--blush); margin-bottom: 4px; }

/* ===== RESULTS ===== */
.results__heading { color: var(--brown); margin-bottom: 12px; }
.results__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.results__list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.result-item { display: flex; gap: 16px; align-items: flex-start; }
.result-item__check {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--sage-light); color: var(--sage);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700;
  margin-top: 2px;
}
.result-item__text strong { display: block; font-size: 1rem; color: var(--brown); margin-bottom: 4px; }
.result-item__text span { font-size: 0.92rem; color: var(--text-muted); }
.results__image img { border-radius: var(--radius); box-shadow: var(--shadow-soft); width: 100%; object-fit: cover; aspect-ratio: 4/3; }

/* ===== PROCESS ===== */
.process__heading { text-align: center; color: var(--brown); margin-bottom: 12px; }
.process__sub { text-align: center; color: var(--text-muted); margin-bottom: 48px; }
.process__steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; position: relative; }
.process__steps::before {
  content: '';
  position: absolute; top: 36px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blush) 15%, var(--blush) 85%, transparent);
  pointer-events: none;
}
.step-card { text-align: center; padding: 28px 16px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-card); position: relative; }
.step-card__num {
  width: 48px; height: 48px;
  background: var(--rose);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700;
  margin: 0 auto 16px;
  position: relative; z-index: 1;
}
.step-card__title { font-size: 1rem; font-weight: 700; color: var(--brown); margin-bottom: 8px; }
.step-card__text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

/* ===== INSTRUCTOR ===== */
.instructor__inner { display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: center; }
.instructor__photo { position: relative; }
.instructor__photo img {
  border-radius: 24px;
  width: 100%;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  aspect-ratio: 3/4;
}
.instructor__photo-decor {
  position: absolute; bottom: -16px; right: -16px;
  width: 120px; height: 120px;
  background: var(--blush);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
}
.instructor__label {
  display: inline-block;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--rose-dark); margin-bottom: 12px;
}
.instructor__name { font-size: clamp(1.6rem, 3vw, 2rem); color: var(--brown); margin-bottom: 8px; }
.instructor__role { color: var(--text-muted); margin-bottom: 24px; font-size: 0.95rem; }
.instructor__bio { color: var(--text); line-height: 1.7; margin-bottom: 28px; font-size: 0.98rem; }
.instructor__stats { display: flex; gap: 32px; flex-wrap: wrap; }
.instructor__stat-num { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: var(--rose-dark); display: block; }
.instructor__stat-label { font-size: 0.83rem; color: var(--text-muted); }

/* ===== TESTIMONIALS ===== */
.testimonials__heading { text-align: center; color: var(--brown); margin-bottom: 48px; }
.testimonials__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.testimonial-card__stars { color: var(--rose); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card__text { font-size: 0.95rem; color: var(--text); line-height: 1.65; margin-bottom: 20px; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 42px; height: 42px;
  background: var(--blush);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 700; font-size: 0.9rem; color: var(--brown); }
.testimonial-card__detail { font-size: 0.8rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq__heading { text-align: center; color: var(--brown); margin-bottom: 48px; }
.faq__list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq-item__question {
  width: 100%; background: none; border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem; font-weight: 600;
  color: var(--brown);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: background var(--transition);
}
.faq-item__question:hover { background: var(--blush-light); }
.faq-item__icon {
  width: 26px; height: 26px; flex-shrink: 0;
  background: var(--blush);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: var(--rose-dark);
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); background: var(--rose); color: var(--white); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
  padding: 0 24px;
}
.faq-item.open .faq-item__answer { max-height: 300px; padding: 0 24px 20px; }
.faq-item__answer p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.65; }

/* ===== LEAD FORM ===== */
.leadform {
  background: linear-gradient(135deg, var(--brown) 0%, #8B5E46 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.leadform::before {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(239, 201, 184, 0.12);
}
.leadform__inner { max-width: 640px; margin: 0 auto; text-align: center; position: relative; }
.leadform__heading { color: var(--cream); margin-bottom: 12px; }
.leadform__sub { color: rgba(253, 248, 242, 0.75); margin-bottom: 40px; }
.form {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 8px 40px rgba(0,0,0, 0.2);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form__group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form__label { font-size: 0.88rem; font-weight: 600; color: var(--brown); text-align: left; }
.form__input, .form__select {
  width: 100%;
  border: 1.5px solid rgba(107, 74, 54, 0.2);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 0.97rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form__input:focus, .form__select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(212, 134, 106, 0.18);
}
.form__submit {
  width: 100%;
  background: var(--rose);
  color: var(--white);
  padding: 16px;
  border: none;
  border-radius: 40px;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(212, 134, 106, 0.35);
  margin-top: 8px;
}
.form__submit:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212, 134, 106, 0.45); }
.form__privacy { font-size: 0.8rem; color: var(--text-muted); margin-top: 12px; }
.form__privacy a { color: var(--rose-dark); text-decoration: underline; }

/* ===== FOOTER ===== */
.footer {
  background: #1E1412;
  color: rgba(253, 248, 242, 0.8);
  padding: 48px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer__logo { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--cream); margin-bottom: 12px; }
.footer__logo span { color: var(--blush); }
.footer__desc { font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.footer__legal { font-size: 0.78rem; color: rgba(253, 248, 242, 0.45); line-height: 1.7; }
.footer__col-title { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blush); margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 0.9rem; color: rgba(253, 248, 242, 0.7); transition: color var(--transition); }
.footer__links a:hover { color: var(--cream); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255, 0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer__copyright { font-size: 0.83rem; color: rgba(253, 248, 242, 0.45); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0, 0.15);
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  z-index: 999;
  border: 1px solid rgba(212, 134, 106, 0.2);
  transform: translateY(calc(100% + 32px));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__text { flex: 1; font-size: 0.88rem; color: var(--text); line-height: 1.55; min-width: 200px; }
.cookie-banner__text a { color: var(--rose-dark); text-decoration: underline; }
.cookie-banner__btn {
  background: var(--rose);
  color: var(--white);
  border: none; border-radius: 40px;
  padding: 10px 24px;
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.cookie-banner__btn:hover { background: var(--rose-dark); }

/* ===== SUCCESS PAGE ===== */
.success-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush-light) 100%);
  padding: 40px 24px;
}
.success-card {
  background: var(--white);
  border-radius: 24px;
  padding: 60px 48px;
  max-width: 520px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.success-card__icon { font-size: 3.5rem; margin-bottom: 24px; }
.success-card__title { color: var(--brown); margin-bottom: 16px; }
.success-card__text { color: var(--text-muted); margin-bottom: 32px; line-height: 1.65; }
.success-card__back {
  display: inline-block;
  background: var(--rose); color: var(--white);
  padding: 14px 32px; border-radius: 40px;
  font-weight: 700; font-size: 1rem;
  transition: background var(--transition);
}
.success-card__back:hover { background: var(--rose-dark); }

/* ===== LEGAL PAGES ===== */
.legal-page { padding: 60px 0; }
.legal-header {
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush-light) 100%);
  padding: 48px 0;
  margin-bottom: 48px;
}
.legal-header__back { display: inline-flex; align-items: center; gap: 8px; color: var(--rose-dark); font-weight: 600; font-size: 0.9rem; margin-bottom: 20px; }
.legal-header__back:hover { text-decoration: underline; }
.legal-header h1 { color: var(--brown); }
.legal-content { max-width: 800px; }
.legal-content h2 { font-size: 1.25rem; color: var(--brown); margin: 36px 0 14px; }
.legal-content h3 { font-size: 1.05rem; color: var(--brown); margin: 24px 0 10px; }
.legal-content p { margin-bottom: 14px; color: var(--text); font-size: 0.95rem; line-height: 1.7; }
.legal-content ul { margin: 10px 0 14px 20px; }
.legal-content ul li { list-style: disc; font-size: 0.95rem; color: var(--text); margin-bottom: 6px; line-height: 1.6; }
.legal-content a { color: var(--rose-dark); text-decoration: underline; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.animate-on-scroll.in-view { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero__inner, .forwhom__inner, .results__inner, .instructor__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__image { order: -1; }
  .hero__image-badge { left: 0; }
  .instructor__inner { grid-template-columns: 1fr; }
  .instructor__photo { max-width: 320px; margin: 0 auto; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .process__steps::before { display: none; }
}
@media (max-width: 600px) {
  .section { padding: 52px 0; }
  .form__row { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 44px; }
  .header__logo { font-size: 1.25rem; }
  .form { padding: 28px 20px; }
  .success-card { padding: 40px 24px; }
  .cookie-banner { bottom: 12px; left: 12px; right: 12px; flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
