@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Inter:wght@400;500&display=swap');

:root {
  --cream: #FAF6F0;
  --terracotta: #C8674A;
  --terracotta-dark: #A84F34;
  --sand: #E8DDD0;
  --sage: #8A9B82;
  --text: #2C2417;
  --text-muted: #6B5E52;

  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;

  --radius: 8px;
  --radius-sm: 4px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 2rem; text-align: center;}
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; object-fit: cover; }
ul, ol { list-style: none; }
button, .btn {
  display: inline-flex; align-items: center; justify-content: center;
  background-color: var(--terracotta); color: white;
  padding: 0.8rem 1.8rem; font-size: 1rem; font-family: var(--font-body);
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease; text-align: center;
}
button:hover, .btn:hover { background-color: var(--terracotta-dark); }
button:active, .btn:active { transform: scale(0.98); }
.btn-outline { background-color: transparent; border: 1px solid var(--terracotta); color: var(--terracotta); }
.btn-outline:hover { background-color: var(--terracotta); color: white; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 6rem 0; }
.text-center { text-align: center; }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.navbar {
  position: fixed; top: 0; left: 0; right: 0; background-color: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(8px); z-index: 100; border-bottom: 1px solid var(--sand);
  padding: 1rem 0; transition: transform 0.3s ease;
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 600; color: var(--text); letter-spacing: 0.02em; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: var(--text-muted); transition: color 0.2s; font-size: 0.95rem; }
.nav-links a:hover { color: var(--terracotta); }
.hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--text); padding: 0.5rem; }
.hamburger svg { width: 24px; height: 24px; }

.hero { position: relative; min-height: 95vh; display: flex; align-items: center; text-align: center; color: white; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(44, 36, 23, 0.5); z-index: -1; }
.hero-content { max-width: 800px; margin: 0 auto; z-index: 1; padding-top: 4rem; }
.hero p { font-size: 1.25rem; margin: 1.5rem auto 2.5rem; max-width: 650px; opacity: 0.9; font-weight: 400; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero .btn-outline { color: white; border-color: rgba(255,255,255,0.6); }
.hero .btn-outline:hover { background-color: white; color: var(--text); border-color: white; }

.benefits { background-color: var(--cream); margin-top: -4rem; position: relative; z-index: 10; padding-top: 0; padding-bottom: 4rem; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; background: var(--cream); border: 1px solid var(--sand); border-radius: var(--radius); box-shadow: 0 10px 40px rgba(44,36,23,0.05); padding: 3rem; margin-top: -6rem;}
.benefit-card h3 { color: var(--text); font-size: 1.3rem; margin-bottom: 0.8rem; font-family: var(--font-heading); }
.benefit-card p { color: var(--text-muted); font-size: 0.95rem; }

.about { background-color: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.about-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.about-img:hover img { transform: scale(1.03); }
.about-text h2 { text-align: left; }
.about-text p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; }
.about-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; border-top: 1px solid var(--sand); padding-top: 2rem; }
.fact span { display: block; font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 0.3rem; color: var(--text); }
.fact p { font-size: 0.9rem; margin-bottom: 0; }

.target { background-color: var(--sand); }
.target-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-top: 4rem; }
.target-card { background-color: var(--cream); padding: 2.5rem 2rem; border-radius: var(--radius); text-align: center; transition: transform 0.3s ease; }
.target-card:hover { transform: translateY(-5px); }
.target-card svg { width: 48px; height: 48px; color: var(--sage); margin-bottom: 1.5rem; }
.target-card p { color: var(--text); font-size: 1.05rem; }

.program { background-color: var(--cream); }
.program-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.program-item { display: flex; gap: 2rem; background: var(--cream); border: 1px solid var(--sand); padding: 2rem; border-radius: var(--radius); transition: border-color 0.3s ease; }
.program-item:hover { border-color: var(--terracotta); }
.program-number { font-family: var(--font-heading); font-size: 3rem; color: var(--sage); font-weight: 400; line-height: 0.8; opacity: 0.5; }
.program-content h4 { font-size: 1.3rem; margin-bottom: 0.5rem; font-family: var(--font-heading); }
.program-content p { color: var(--text-muted); font-size: 1rem; }

.results { background-color: var(--sand); }
.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 4rem; }
.results-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.results p { font-size: 1.2rem; max-width: 800px; margin: 0 auto; text-align: center; color: var(--text); }

.author { background-color: var(--cream); }
.author-content { display: flex; gap: 5rem; align-items: center; max-width: 1000px; margin: 0 auto; }
.author-img { width: 350px; height: 350px; border-radius: 50%; object-fit: cover; flex-shrink: 0; box-shadow: 0 20px 40px rgba(44,36,23,0.08); }
.author-text h2 { text-align: left; }
.author-text p { margin-bottom: 1.5rem; font-size: 1.1rem; color: var(--text-muted); }
.author-facts { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.author-facts span { background: var(--sand); padding: 0.6rem 1.2rem; border-radius: 30px; font-size: 0.9rem; color: var(--text); }

.faq { background-color: var(--cream); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--sand); padding: 1.5rem 0; cursor: pointer; }
.faq-question { display: flex; justify-content: space-between; align-items: center; font-weight: 500; font-size: 1.15rem; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, opacity 0.4s ease; color: var(--text-muted); opacity: 0; }
.faq-item.active .faq-answer { max-height: 300px; opacity: 1; margin-top: 1rem; }
.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--terracotta); }
.faq-icon { transition: transform 0.3s ease, color 0.3s ease; color: var(--text-muted); }

.enrollment { background-color: var(--sand); padding: 8rem 0; }
.pricing-card { max-width: 450px; margin: 0 auto; background: var(--cream); border: 1px solid var(--sand); border-radius: var(--radius); padding: 3rem; text-align: center; box-shadow: 0 20px 40px rgba(44,36,23,0.05); }
.pricing-card h3 { font-size: 1.8rem; margin-bottom: 2rem; font-family: var(--font-heading); }
.pricing-features { text-align: left; margin-bottom: 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
.pricing-features li { display: flex; gap: 1rem; align-items: center; font-size: 1.05rem; }
.pricing-features svg { color: var(--sage); flex-shrink: 0; width: 20px; height: 20px; }
.pricing-card .btn { width: 100%; font-size: 1.1rem; padding: 1rem; }

.lead-form { position: relative; color: white; padding: 8rem 0; }
.lead-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.lead-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(44, 36, 23, 0.75); z-index: -1; }
.form-container { max-width: 500px; margin: 0 auto; background: var(--cream); padding: 3rem; border-radius: var(--radius); color: var(--text); box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
.form-header { text-align: center; margin-bottom: 2.5rem; }
.form-header h2 { margin-bottom: 0.8rem; color: var(--text); }
.form-header p { color: var(--text-muted); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.95rem; }
.form-control { width: 100%; padding: 0.9rem 1rem; border: 1px solid var(--sand); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 1rem; background: white; transition: border-color 0.2s, box-shadow 0.2s; color: var(--text); }
.form-control::placeholder { color: #A0968A; }
.form-control:focus { outline: none; border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(200, 103, 74, 0.1); }
textarea.form-control { resize: vertical; min-height: 120px; }
.checkbox-group { display: flex; gap: 0.8rem; align-items: flex-start; margin-bottom: 2rem; font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }
.checkbox-group input { margin-top: 0.2rem; accent-color: var(--terracotta); width: 16px; height: 16px; flex-shrink: 0; }
.checkbox-group a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 2px; }
.form-container .btn { width: 100%; padding: 1rem; font-size: 1.05rem; }
.error-message { color: #d32f2f; font-size: 0.85rem; margin-top: 0.4rem; display: none; }
.form-group.error .form-control { border-color: #d32f2f; }
.form-group.error .error-message { display: block; }

.footer { background: var(--text); color: var(--cream); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; margin-bottom: 4rem; }
.footer-brand .logo { color: white; margin-bottom: 1rem; display: block; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.footer-links h4 { color: var(--sand); margin-bottom: 1.5rem; font-family: var(--font-body); font-weight: 500; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-links ul { display: flex; flex-direction: column; gap: 1rem; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.95rem; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 1rem; }

.legal-page { padding: 10rem 0 6rem; background: var(--cream); }
.legal-content { max-width: 800px; margin: 0 auto; background: white; padding: 4rem; border-radius: var(--radius); border: 1px solid var(--sand); }
.legal-content h1 { margin-bottom: 2rem; text-align: center; }
.legal-content h2 { font-size: 1.6rem; margin: 3rem 0 1.5rem; text-align: left; }
.legal-content p, .legal-content li { margin-bottom: 1.2rem; color: var(--text-muted); }
.legal-content ul { list-style: disc; padding-left: 2rem; margin-bottom: 1.5rem; }
.legal-content a { color: var(--terracotta); text-decoration: underline; }

.success-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 2rem; background: var(--cream); }
.success-icon { width: 90px; height: 90px; background: var(--sage); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; }
.success-icon svg { width: 44px; height: 44px; }
.success-page p { margin-bottom: 2.5rem; color: var(--text-muted); max-width: 450px; margin-inline: auto; font-size: 1.1rem; }

.cookie-banner { position: fixed; bottom: -100%; left: 0; right: 0; background: var(--text); color: white; padding: 1.5rem; z-index: 1000; transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 -10px 40px rgba(0,0,0,0.15); }
.cookie-banner.show { bottom: 0; }
.cookie-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.cookie-text { font-size: 0.95rem; color: rgba(255,255,255,0.8); flex: 1; min-width: 250px; }
.cookie-text a { text-decoration: underline; color: white; }
.cookie-btns { display: flex; gap: 1rem; align-items: center; }
.cookie-btns .btn { padding: 0.6rem 1.5rem; font-size: 0.9rem; }

@media (max-width: 900px) {
  .about-grid { gap: 3rem; }
  .author-content { gap: 3rem; }
  .author-img { width: 250px; height: 250px; }
}
@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; background: rgba(250, 246, 240, 0.98); flex-direction: column; padding: 2rem; gap: 1.5rem; border-bottom: 1px solid var(--sand); clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); transition: clip-path 0.3s ease; }
  .nav-links.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
  .nav-links a.btn { width: 100%; text-align: center; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .results-grid { grid-template-columns: 1fr; }
  .author-content { flex-direction: column; text-align: center; }
  .author-facts { justify-content: center; }
  section { padding: 4rem 0; }
  .benefits-grid { margin-top: -3rem; padding: 1.5rem; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .legal-content { padding: 2rem; }
  .program-item { flex-direction: column; gap: 1rem; text-align: center; }
  .hero { min-height: 85vh; }
  .hero-content { padding-top: 2rem; }
}
