/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #faf6f0;
  --warm-white: #fff9f4;
  --amber: #c27c2a;
  --amber-light: #d9963e;
  --amber-dark: #9e6018;
  --brown: #4a2e0e;
  --brown-soft: #6b4226;
  --text: #2d1f0e;
  --text-muted: #7a5c3c;
  --border: #e6d9c8;
  --section-alt: #f5ede0;
  --font-main: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Nunito Sans', 'Segoe UI', system-ui, sans-serif;
  --radius: 6px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(74, 46, 14, 0.08);
  --shadow-hover: 0 8px 40px rgba(74, 46, 14, 0.16);
  --transition: 0.28s ease;
}

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

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

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

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-main);
  font-weight: 600;
  line-height: 1.2;
  color: var(--brown);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
  display: block;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 2px 12px rgba(194, 124, 42, 0.35);
}

.btn-primary:hover {
  background: var(--amber-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(194, 124, 42, 0.45);
}

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

.btn-outline:hover {
  background: var(--amber);
  color: #fff;
  transform: translateY(-2px);
}

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

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.02em;
}

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

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

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
}

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

.nav-cta {
  font-size: 0.85rem;
}

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

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

.mobile-nav a {
  padding: 14px 24px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f5ede0 0%, #faf6f0 50%, #f0e5d0 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 80px 0 80px;
}

.hero-text .tagline {
  display: inline-block;
  background: rgba(194, 124, 42, 0.12);
  color: var(--amber-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 24px;
  border: 1px solid rgba(194, 124, 42, 0.25);
}

.hero-text h1 {
  margin-bottom: 20px;
}

.hero-text h1 em {
  font-style: italic;
  color: var(--amber);
}

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

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

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

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  aspect-ratio: 4/3;
}

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

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--brown);
  color: rgba(255,255,255,0.7);
  padding: 18px 0;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.trust-item .icon {
  font-size: 1.1rem;
  color: var(--amber-light);
}

/* ===== SECTIONS SHARED ===== */
.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--section-alt);
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ===== BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

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

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

.benefit-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== WHO IS THIS FOR ===== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.audience-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(194, 124, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 2px;
}

.audience-item p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

/* ===== PROGRAM ===== */
.program-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.program-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  cursor: pointer;
  user-select: none;
  transition: background var(--transition);
}

.program-header:hover {
  background: rgba(194, 124, 42, 0.05);
}

.program-num {
  font-family: var(--font-main);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--amber);
  min-width: 44px;
  line-height: 1;
}

.program-title {
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brown);
  flex: 1;
}

.program-arrow {
  color: var(--amber);
  font-size: 1.2rem;
  transition: transform var(--transition);
}

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

.program-body {
  display: none;
  padding: 0 28px 24px 90px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

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

/* ===== FORMAT ===== */
.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.format-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}

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

.format-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.format-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--amber);
  margin-top: 8px;
}

.format-item strong {
  display: block;
  font-family: var(--font-main);
  font-size: 1.1rem;
  color: var(--brown);
  margin-bottom: 4px;
}

.format-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== LEAD FORM ===== */
.lead-section {
  background: var(--brown);
  color: #fff;
  padding: 90px 0;
}

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

.lead-text h2 {
  color: #fff;
  margin-bottom: 16px;
}

.lead-text .section-label {
  color: var(--amber-light);
}

.lead-text p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.lead-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lead-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.lead-perk::before {
  content: '✓';
  color: var(--amber-light);
  font-weight: 700;
  font-size: 1rem;
}

.lead-form-wrap {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 16px 64px rgba(0,0,0,0.2);
}

.lead-form-wrap h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--brown);
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(194, 124, 42, 0.12);
}

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

.form-consent {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.form-consent a {
  color: var(--amber);
}

.btn-form {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--brown);
  user-select: none;
}

.faq-q:hover {
  background: rgba(194, 124, 42, 0.04);
}

.faq-arrow {
  color: var(--amber);
  font-size: 1rem;
  min-width: 16px;
  transition: transform var(--transition);
}

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

.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

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

/* ===== FOOTER ===== */
.site-footer {
  background: #1e130a;
  color: rgba(255,255,255,0.5);
  padding: 60px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  color: rgba(255,255,255,0.85);
  display: block;
  margin-bottom: 12px;
}

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

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

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

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

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

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

.footer-legal {
  font-size: 0.78rem;
  line-height: 1.7;
}

.footer-company {
  font-size: 0.78rem;
  text-align: right;
  line-height: 1.7;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 600px;
  background: var(--brown);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.3);
  z-index: 9999;
  display: none;
  flex-direction: column;
  gap: 16px;
  animation: slideUp 0.4s ease;
}

.cookie-banner.visible {
  display: flex;
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-banner p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.cookie-banner a {
  color: var(--amber-light);
}

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

.cookie-accept {
  background: var(--amber);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
}

.cookie-accept:hover {
  background: var(--amber-dark);
}

.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-decline:hover {
  color: rgba(255,255,255,0.9);
  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: linear-gradient(135deg, #f5ede0 0%, #faf6f0 100%);
}

.success-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-hover);
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(194, 124, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2rem;
}

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

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

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 60px 0 90px;
  max-width: 760px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

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

.legal-page h2 {
  font-size: 1.25rem;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-page p, .legal-page li {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 10px;
}

.legal-page ul {
  padding-left: 20px;
  margin-bottom: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }

  .hero-image {
    order: -1;
    max-height: 280px;
  }

  .hero-text .lead {
    max-width: 100%;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

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

  .lead-form-wrap {
    padding: 28px 24px;
  }

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

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

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

  .trust-bar-inner {
    gap: 24px;
  }

  .program-body {
    padding-left: 28px;
  }

  .section {
    padding: 60px 0;
  }

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

@media (max-width: 480px) {
  .success-card {
    padding: 40px 24px;
  }

  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
}
