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

:root {
  --cream: #faf7f2;
  --cream-dark: #f5f0e8;
  --rose: #c17b74;
  --rose-light: #d9a29d;
  --rose-dark: #a0605a;
  --charcoal: #2c2420;
  --charcoal-light: #4a3f38;
  --sage: #8b9e87;
  --sage-light: #b5c4b1;
  --amber: #d9a857;
  --white: #ffffff;
  --shadow: rgba(44, 36, 32, 0.08);
  --shadow-heavy: rgba(44, 36, 32, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--charcoal);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--charcoal-light);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--cream);
  border-bottom: 1px solid rgba(44, 36, 32, 0.08);
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 2px 20px var(--shadow);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Lora', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal-light);
  transition: color 0.25s ease;
}

nav a:hover {
  color: var(--rose);
}

.cta-btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background-color: var(--rose);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.cta-btn:hover {
  background-color: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(193, 123, 116, 0.3);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--charcoal);
  cursor: pointer;
  padding: 0.5rem;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.hero-content .subtitle {
  font-size: 1.25rem;
  color: var(--charcoal-light);
  margin-bottom: 2.5rem;
  max-width: 540px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease 0.4s forwards;
}

.hero-image {
  position: relative;
  opacity: 0;
  animation: fadeIn 1.2s ease 0.3s forwards;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px var(--shadow-heavy);
}

section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--charcoal-light);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.problem-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.problem-card.visible {
  animation: fadeInUp 0.8s ease forwards;
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-heavy);
}

.problem-card h3 {
  color: var(--rose);
  margin-bottom: 1rem;
}

.outcomes {
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
  border-radius: 24px;
  padding: 5rem 3rem;
  margin: 6rem auto;
}

.outcomes-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.outcome-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-30px);
}

.outcome-item.visible {
  animation: slideInLeft 0.8s ease forwards;
}

.outcome-icon {
  width: 48px;
  height: 48px;
  background: var(--rose);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.outcome-text h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.outcome-text p {
  font-size: 0.9375rem;
}

.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
}

.format-image img {
  border-radius: 16px;
  box-shadow: 0 16px 48px var(--shadow-heavy);
}

.format-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.format-feature {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.format-feature-icon {
  width: 56px;
  height: 56px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--charcoal);
  font-size: 1.5rem;
}

.format-feature h4 {
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
}

.audience {
  background: var(--white);
  border-radius: 24px;
  padding: 5rem 3rem;
  box-shadow: 0 8px 40px var(--shadow);
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.audience-item {
  text-align: center;
  padding: 2rem;
}

.audience-item::before {
  content: '—';
  display: block;
  color: var(--rose);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.audience-item p {
  font-size: 1.0625rem;
  font-weight: 500;
}

.instructor-container {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 4rem;
}

.instructor-photo {
  position: relative;
}

.instructor-photo img {
  border-radius: 16px;
  box-shadow: 0 16px 48px var(--shadow-heavy);
}

.instructor-bio h3 {
  margin-bottom: 1.5rem;
}

.instructor-bio p {
  margin-bottom: 1.25rem;
}

.instructor-bio ul {
  list-style: none;
  margin-top: 2rem;
}

.instructor-bio li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: var(--charcoal-light);
}

.instructor-bio li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--rose);
  font-size: 1.5rem;
  line-height: 1.2;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px var(--shadow);
  transition: transform 0.4s ease;
  opacity: 0;
  transform: scale(0.9);
}

.gallery-item.visible {
  animation: scaleIn 0.8s ease forwards;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.lead-form-section {
  background: linear-gradient(135deg, var(--rose-light) 0%, var(--rose) 100%);
  border-radius: 24px;
  padding: 5rem 3rem;
  text-align: center;
  color: var(--white);
  margin: 6rem auto;
}

.lead-form-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.lead-form-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

#lead-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#lead-form input {
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--charcoal);
}

#lead-form input::placeholder {
  color: rgba(44, 36, 32, 0.5);
}

#lead-form button {
  padding: 1.125rem 2.5rem;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1.0625rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

#lead-form button:hover {
  background: var(--charcoal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 36, 32, 0.4);
}

.faq-list {
  max-width: 800px;
  margin: 4rem auto 0;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  opacity: 0;
  transform: translateY(20px);
}

.faq-item.visible {
  animation: fadeInUp 0.6s ease forwards;
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Lora', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

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

.faq-toggle {
  font-size: 1.5rem;
  color: var(--rose);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  color: var(--charcoal-light);
  line-height: 1.7;
}

footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 2rem 2rem;
  margin-top: 6rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  max-width: 400px;
}

.footer-section h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--rose-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  margin-bottom: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal);
  color: var(--white);
  padding: 1.5rem 2rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
}

.cookie-content a {
  color: var(--rose-light);
  text-decoration: underline;
}

.cookie-accept {
  padding: 0.75rem 2rem;
  background: var(--rose);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s ease;
}

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

.success-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.success-content {
  max-width: 600px;
  background: var(--white);
  padding: 4rem 3rem;
  border-radius: 24px;
  box-shadow: 0 16px 48px var(--shadow-heavy);
}

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

.success-content h1 {
  margin-bottom: 1.5rem;
}

.success-content p {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.legal-page {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 4rem;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 32px var(--shadow);
}

.legal-content h1 {
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  margin-bottom: 1.25rem;
}

.legal-content ul {
  margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: var(--charcoal-light);
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .format-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .instructor-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .instructor-photo {
    max-width: 400px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -4px 0 20px var(--shadow);
    transition: right 0.4s ease;
  }

  nav ul.open {
    right: 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .outcomes {
    padding: 3rem 2rem;
  }

  .outcomes-list {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-item img {
    height: 280px;
  }

  .lead-form-section {
    padding: 3rem 2rem;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cookie-accept {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .legal-content {
    padding: 2.5rem 1.5rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 1rem 1.5rem;
  }

  .hero-container {
    padding: 3rem 1.5rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }
}
