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

:root {
  --color-bg: #FAF6F0;
  --color-surface: #FFFFFF;
  --color-text: #4A4036;
  --color-text-muted: #7A6F65;
  --color-accent: #B75D46;
  --color-accent-hover: #9E4D38;
  --color-sage: #8F9D8C;
  --color-rose: #D4A39A;
  --color-border: #E8E1D7;
  
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  --shadow-soft: 0 10px 40px rgba(74, 64, 54, 0.05);
  --shadow-banner: 0 -4px 20px rgba(74, 64, 54, 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-text);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; margin-bottom: 2rem; text-align: center; }
h3 { font-size: 1.75rem; }

p { margin-bottom: 1rem; }

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

a:hover {
  color: var(--color-accent-hover);
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--color-accent);
  color: #FFF;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.05rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background-color: var(--color-accent-hover);
  color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(183, 93, 70, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background-color: var(--color-border);
  color: var(--color-text);
  box-shadow: none;
  transform: none;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(8px);
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.logo:hover {
  color: var(--color-accent-hover);
}

/* Hero Section */
.hero {
  padding: 140px 0 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

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

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-image-wrap {
  position: relative;
}

.hero-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.decorative-shape {
  position: absolute;
  background-color: var(--color-rose);
  border-radius: var(--radius-full);
  z-index: -1;
  opacity: 0.4;
}

/* Section general */
.section {
  padding: 80px 0;
}

.section-bg-white {
  background-color: var(--color-surface);
}

/* Features / Outcomes */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background-color: var(--color-surface);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  text-align: center;
  border: 1px solid var(--color-border);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background-color: var(--color-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--color-accent);
}

/* Program / Steps */
.program-steps {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-sage);
  font-weight: 600;
  line-height: 1;
}

.step-content h3 {
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--color-text-muted);
}

/* About Teacher */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 1/1;
  object-fit: cover;
}

.about-content h2 {
  text-align: left;
}

.signature {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-accent);
  margin-top: 1.5rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.02);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

details.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
}

details.faq-item summary {
  padding: 1.5rem;
  font-weight: 500;
  cursor: pointer;
  font-size: 1.125rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

details.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-text-muted);
}

/* Lead Form */
.form-section {
  background-color: var(--color-sage);
  color: #FFF;
  text-align: center;
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  margin: 4rem 0;
}

.form-section h2 {
  color: #FFF;
}

.lead-form {
  max-width: 500px;
  margin: 2rem auto 0;
  background: var(--color-surface);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-text);
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background-color: var(--color-bg);
  transition: border-color 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.lead-form .btn {
  width: 100%;
  margin-top: 1rem;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.4;
}

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

/* Footer */
.footer {
  background-color: #3C3633;
  color: #E8E1D7;
  padding: 4rem 0 2rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-bg);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #E8E1D7;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-legal {
  font-size: 0.8rem;
  color: #A39B92;
  border-top: 1px solid rgba(232, 225, 215, 0.1);
  padding-top: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: 20px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-banner);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 400px;
}

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

.cookie-text {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
}

.cookie-actions .btn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  flex: 1;
}

/* Legal Pages */
.legal-page {
  padding: 120px 0 80px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  text-align: center;
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  text-align: left;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content p, .legal-content ul {
  margin-bottom: 1rem;
  color: var(--color-text-muted);
}

.legal-content ul {
  padding-left: 2rem;
}

/* Success Page */
.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
}

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

.success-page h1 {
  margin-bottom: 1rem;
}

.success-page p {
  color: var(--color-text-muted);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .hero-grid, .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .step {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .step-number {
    margin: 0 auto;
  }
  
  .form-section {
    padding: 3rem 1.5rem;
  }
  
  .cookie-banner {
    max-width: none;
  }
}
