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

:root {
  --cream: #F8F4EF;
  --cream-dark: #EFE9E1;
  --ink: #1C1C1C;
  --ink-light: #3D3D3D;
  --gold: #C09A5B;
  --gold-light: #D4B07A;
  --text: #2A2A2A;
  --text-muted: #6B6B6B;
  --white: #FFFFFF;
  --border: #DDD5C8;

  --font-main: 'Georgia', 'Times New Roman', serif;
  --font-ui: 'Helvetica Neue', 'Arial', sans-serif;

  --radius: 4px;
  --radius-lg: 12px;
  --max-width: 1100px;
  --section-pad: 80px 0;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--gold-light);
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-main);
  color: var(--ink);
  line-height: 1.25;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 15px 36px;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  border: none;
}

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

.btn-primary:hover {
  background: var(--ink-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(28, 28, 28, 0.2);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192, 154, 91, 0.3);
}

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

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

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

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-main);
  font-size: 1.5rem;
  color: var(--ink);
  font-style: italic;
  letter-spacing: 0.02em;
}

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

.nav-links a {
  color: var(--ink-light);
  font-size: 0.9rem;
  font-family: var(--font-ui);
  transition: color 0.2s;
}

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

.nav-cta {
  display: flex;
  align-items: center;
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 90px 24px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-content {
  max-width: 520px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

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

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

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

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

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

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 480px;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1.5px solid var(--gold);
  border-radius: calc(var(--radius-lg) + 4px);
  opacity: 0.4;
  z-index: -1;
}

/* ===== SECTION COMMON ===== */
section {
  padding: var(--section-pad);
}

.section-header {
  margin-bottom: 52px;
}

.section-header.centered {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 52px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.75;
}

/* ===== BENEFITS ===== */
.benefits {
  background: var(--ink);
  color: var(--white);
}

.benefits h2 {
  color: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-top: 52px;
}

.benefit-item {
  border-top: 1.5px solid rgba(192, 154, 91, 0.4);
  padding-top: 28px;
}

.benefit-number {
  font-family: var(--font-main);
  font-size: 2.4rem;
  color: var(--gold);
  font-style: italic;
  line-height: 1;
  margin-bottom: 12px;
}

.benefit-item h3 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.benefit-item p {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ===== WHO IT IS FOR ===== */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.who-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--gold);
}

.who-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.who-list li strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.who-list li span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.who-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  height: 480px;
  object-fit: cover;
}

/* ===== FORMAT ===== */
.format {
  background: var(--cream-dark);
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

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

.format-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(28, 28, 28, 0.08);
}

.format-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.format-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.format-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== PROGRAM ===== */
.program-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
}

.program-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}

.program-item:last-child {
  border-bottom: none;
}

.program-num {
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gold);
  flex-shrink: 0;
  width: 40px;
  line-height: 1;
  margin-top: 2px;
}

.program-content h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

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

/* ===== EXAMPLES ===== */
.examples {
  background: var(--ink);
}

.examples h2 {
  color: var(--white);
}

.examples .section-label {
  color: var(--gold);
}

.examples-image {
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.examples-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.examples-caption {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  text-align: center;
  margin-top: 14px;
}

/* ===== FAQ ===== */
.faq {
  background: var(--cream-dark);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  background: none;
  border: none;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

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

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.2s;
}

.faq-answer p {
  padding-bottom: 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

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

/* ===== LEAD FORM ===== */
.lead-form-section {
  background: var(--cream);
}

.form-wrapper {
  max-width: 540px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(28,28,28,0.07);
}

.form-wrapper h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.form-wrapper .form-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 32px;
  line-height: 1.65;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
}

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

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

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

.form-legal a {
  color: var(--text-muted);
  text-decoration: underline;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--gold);
  text-align: center;
  padding: 72px 24px;
}

.final-cta h2 {
  color: var(--white);
  max-width: 560px;
  margin: 0 auto 16px;
}

.final-cta p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.final-cta .btn-outline {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}

.final-cta .btn-outline:hover {
  background: var(--white);
  color: var(--gold);
  border-color: var(--white);
}

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 52px 24px 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}

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

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

.footer-col a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-top: 28px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
}

.footer-legal p + p {
  margin-top: 4px;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  flex-wrap: wrap;
}

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

.cookie-text {
  font-size: 0.88rem;
  line-height: 1.55;
  flex: 1;
  min-width: 280px;
}

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

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

.cookie-accept {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-ui);
}

.cookie-accept:hover {
  background: var(--gold-light);
}

.cookie-decline {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.65);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  cursor: pointer;
  font-family: var(--font-ui);
  transition: all 0.2s;
}

.cookie-decline:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

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

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

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

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

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

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

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 40px;
  transition: gap 0.2s;
}

.legal-back:hover {
  gap: 10px;
}

/* ===== SUCCESS PAGE ===== */
.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

.success-inner {
  max-width: 500px;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2rem;
  color: white;
}

.success-inner h1 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.success-inner p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 24px;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image::before {
    display: none;
  }

  .hero-image img {
    height: 320px;
  }

  .who-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .who-image {
    order: -1;
  }

  .who-image img {
    height: 280px;
  }

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

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

@media (max-width: 640px) {
  :root {
    --section-pad: 56px 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 18px;
  }

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

  .hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  header {
    position: relative;
  }

  nav {
    position: relative;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .form-wrapper {
    padding: 32px 24px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

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