@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;600&display=swap');

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

:root {
  --cream: #FAF8F4;
  --cream-dark: #F2EDE4;
  --brown: #2A2118;
  --brown-mid: #5A4A3C;
  --terra: #C05C3C;
  --terra-dark: #A04A2C;
  --sage: #7A9E7E;
  --sage-dark: #5F8063;
  --white: #FFFFFF;
  --border: #E0D8CE;
  --shadow: rgba(42,33,24,.08);
  --radius: 6px;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --container: 1100px;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

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

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

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

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

/* ───────── COOKIE BANNER ───────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--brown);
  color: var(--white);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 1000;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 -2px 20px rgba(0,0,0,.18);
}
#cookie-banner p { flex: 1 1 280px; }
#cookie-banner a { color: #e8c9a0; text-decoration: underline; }
#cookie-accept {
  background: var(--terra);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}
#cookie-accept:hover { background: var(--terra-dark); }
.cookie-hidden { display: none !important; }

/* ───────── HEADER ───────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,244,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--brown);
  flex-shrink: 0;
}
.logo span { color: var(--terra); }
nav { display: flex; gap: 28px; }
nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--brown-mid);
  transition: color var(--transition);
}
nav a:hover { color: var(--terra); }
.btn-nav {
  background: var(--terra);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: var(--radius);
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: background var(--transition) !important;
}
.btn-nav:hover { background: var(--terra-dark) !important; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: var(--transition);
}

/* ───────── HERO ───────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(250,248,244,.97) 44%, rgba(250,248,244,.55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 80px 0;
}
.hero-tag {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--terra);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  border: 1px solid var(--border);
  margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.18;
  color: var(--brown);
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.hero p {
  font-size: 17px;
  color: var(--brown-mid);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.btn-primary {
  display: inline-block;
  background: var(--terra);
  color: var(--white);
  padding: 15px 38px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.btn-primary:hover {
  background: var(--terra-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192,92,60,.28);
}
.hero-stat {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.stat-item {}
.stat-num {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 600;
  color: var(--terra);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--brown-mid);
  margin-top: 4px;
}

/* ───────── SECTION COMMON ───────── */
section { padding: 80px 0; }
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--brown-mid);
  max-width: 560px;
  line-height: 1.7;
}

/* ───────── WHAT YOU LEARN ───────── */
.learn { background: var(--cream-dark); }
.learn-header { margin-bottom: 52px; }
.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.learn-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 28px 28px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: box-shadow var(--transition), transform var(--transition);
}
.learn-card:hover {
  box-shadow: 0 6px 24px var(--shadow);
  transform: translateY(-2px);
}
.learn-icon {
  width: 44px;
  height: 44px;
  background: #FBF0EA;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.learn-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 8px;
}
.learn-card-text {
  font-size: 14px;
  color: var(--brown-mid);
  line-height: 1.6;
}

/* ───────── HOW IT WORKS ───────── */
.how { background: var(--cream); }
.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.how-image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow);
}
.how-image-wrap img { width: 100%; height: 420px; object-fit: cover; }
.how-steps { display: flex; flex-direction: column; gap: 32px; }
.how-step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  flex-shrink: 0;
}
.step-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 6px;
}
.step-text { font-size: 14px; color: var(--brown-mid); line-height: 1.65; }

/* ───────── FOR WHOM ───────── */
.audience { background: var(--cream-dark); }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.audience-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
}
.audience-tag {
  display: inline-block;
  background: #F2EDE4;
  color: var(--terra);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 40px;
  margin-bottom: 18px;
}
.audience-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 12px;
}
.audience-card p { font-size: 14px; color: var(--brown-mid); line-height: 1.65; }

/* ───────── RESULTS GALLERY ───────── */
.gallery { background: var(--cream); }
.gallery-images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
.gallery-main img { width: 100%; height: 380px; object-fit: cover; border-radius: 10px; }
.gallery-side { display: flex; flex-direction: column; gap: 16px; }
.gallery-side img { width: 100%; height: 182px; object-fit: cover; border-radius: 10px; }

/* ───────── LEAD FORM ───────── */
.form-section {
  background: var(--brown);
  padding: 88px 0;
}
.form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.form-copy .section-label { color: #e8c9a0; }
.form-copy .section-title { color: var(--white); }
.form-copy .section-sub { color: rgba(255,255,255,.7); max-width: 420px; }
.form-points { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.form-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,.8);
  font-size: 14px;
}
.form-point::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}
.form-box {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 36px;
}
.form-box h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 8px;
}
.form-box p { font-size: 14px; color: var(--brown-mid); margin-bottom: 28px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--brown-mid);
  margin-bottom: 6px;
}
.field input,
.field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--brown);
  background: var(--cream);
  outline: none;
  transition: border-color var(--transition);
}
.field input:focus,
.field select:focus { border-color: var(--terra); }
.field input::placeholder { color: #b0a898; }
.form-submit {
  width: 100%;
  background: var(--terra);
  color: var(--white);
  border: none;
  padding: 15px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background var(--transition);
}
.form-submit:hover { background: var(--terra-dark); }
.form-note {
  font-size: 12px;
  color: var(--brown-mid);
  margin-top: 14px;
  line-height: 1.5;
  text-align: center;
}
.form-note a { color: var(--terra); text-decoration: underline; }

/* ───────── FAQ ───────── */
.faq { background: var(--cream-dark); }
.faq-header { margin-bottom: 48px; }
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--brown);
  cursor: pointer;
  gap: 16px;
  text-align: left;
}
.faq-q-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--terra);
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-q-icon {
  background: var(--terra);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-a {
  font-size: 15px;
  color: var(--brown-mid);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding-bottom: 0;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 22px;
}

/* ───────── CTA BAND ───────── */
.cta-band {
  background: var(--sage);
  padding: 56px 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}
.cta-band p { color: rgba(255,255,255,.8); font-size: 16px; margin-bottom: 28px; }
.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--sage-dark);
  padding: 14px 36px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: box-shadow var(--transition), transform var(--transition);
}
.btn-white:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  transform: translateY(-1px);
}

/* ───────── FOOTER ───────── */
footer {
  background: var(--brown);
  color: rgba(255,255,255,.7);
  padding: 52px 0 28px;
  font-size: 14px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand .logo { font-size: 20px; color: var(--white); margin-bottom: 12px; }
.footer-brand p { line-height: 1.6; font-size: 13px; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.6);
  font-size: 13px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
}
.footer-legal { max-width: 560px; }

/* ───────── SUCCESS PAGE ───────── */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}
.success-box { max-width: 520px; }
.success-icon {
  width: 72px;
  height: 72px;
  background: #e8f4e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin: 0 auto 28px;
}
.success-box h1 {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 14px;
}
.success-box p { font-size: 16px; color: var(--brown-mid); line-height: 1.7; margin-bottom: 32px; }

/* ───────── LEGAL PAGES ───────── */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.legal-page h1 {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 8px;
}
.legal-date {
  font-size: 13px;
  color: var(--brown-mid);
  margin-bottom: 40px;
}
.legal-page h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--brown);
  margin-top: 36px;
  margin-bottom: 12px;
}
.legal-page p { font-size: 15px; color: var(--brown-mid); line-height: 1.75; margin-bottom: 16px; }
.legal-page ul { padding-left: 24px; margin-bottom: 16px; }
.legal-page li { font-size: 15px; color: var(--brown-mid); line-height: 1.75; margin-bottom: 6px; }
.legal-header {
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}
.legal-header .logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--brown);
}
.legal-header .logo span { color: var(--terra); }

/* ───────── RESPONSIVE ───────── */
@media (max-width: 900px) {
  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px var(--shadow);
    z-index: 99;
  }
  .burger { display: flex; }
  .how-inner { grid-template-columns: 1fr; }
  .how-image-wrap { order: -1; }
  .form-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .gallery-images { grid-template-columns: 1fr; }
  .gallery-side { flex-direction: row; }
  .gallery-side img { height: 160px; }
}

@media (max-width: 600px) {
  section { padding: 60px 0; }
  .hero { min-height: auto; }
  .hero-content { padding: 60px 0; }
  .hero-stat { gap: 24px; }
  .form-section { padding: 60px 0; }
  .form-box { padding: 28px 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .audience-grid { grid-template-columns: 1fr; }
  .learn-grid { grid-template-columns: 1fr; }
  .gallery-side { flex-direction: column; }
}
