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

:root {
  --color-rose: #d4a5a5;
  --color-sage: #a6b8a0;
  --color-cream: #f5f1eb;
  --color-charcoal: #3d3d3d;
  --color-text: #4a4a4a;
  --color-accent: #c98d8d;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-charcoal);
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-accent);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(245, 241, 235, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(166, 184, 160, 0.15);
  transition: transform 0.3s ease;
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--color-charcoal);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 400;
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
}

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

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

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

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

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

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

.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

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

.hero-eyebrow {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-sage);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero h1 {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--color-text);
  margin-bottom: 2.5rem;
  max-width: 540px;
  line-height: 1.7;
}

.hero-image {
  position: relative;
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 1s ease 0.3s forwards;
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
}

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

.btn-primary:hover {
  background: #b67d7d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 141, 141, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--color-charcoal);
  border: 1.5px solid var(--color-sage);
}

.btn-secondary:hover {
  background: var(--color-sage);
  color: white;
}

section {
  padding: 6rem 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

.section-eyebrow {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-sage);
  margin-bottom: 1rem;
  font-weight: 500;
}

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

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

.problem-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-rose), var(--color-sage));
  opacity: 0.15;
}

.problem-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

.benefit-list {
  list-style: none;
}

.benefit-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background: var(--color-sage);
  flex-shrink: 0;
  opacity: 0.2;
}

.benefit-content h3 {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  color: var(--color-text);
  font-size: 1rem;
}

.benefits-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

.program-module {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 4px;
  border: 1px solid rgba(166, 184, 160, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-module:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.module-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-rose);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.program-module h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.program-module p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

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

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 5;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.teacher-container {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}

.teacher-image {
  position: relative;
}

.teacher-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.teacher-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.teacher-bio {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.teacher-credentials {
  list-style: none;
  margin-top: 2rem;
}

.teacher-credentials li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(166, 184, 160, 0.15);
  font-size: 0.9375rem;
  color: var(--color-text);
}

.teacher-credentials li:last-child {
  border-bottom: none;
}

.faq-container {
  max-width: 900px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(166, 184, 160, 0.15);
  padding: 2rem 0;
}

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

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

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-sage);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 1.5rem;
}

.faq-answer p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text);
}

.form-section {
  background: white;
  border-top: 1px solid rgba(166, 184, 160, 0.15);
  border-bottom: 1px solid rgba(166, 184, 160, 0.15);
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-charcoal);
}

.form-group input,
.form-group textarea {
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1.5px solid rgba(166, 184, 160, 0.3);
  border-radius: 2px;
  background: var(--color-cream);
  color: var(--color-charcoal);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-sage);
}

.checkbox-group {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.875rem;
  line-height: 1.6;
  cursor: pointer;
}

.checkbox-group a {
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.checkbox-group a:hover {
  border-bottom-color: var(--color-accent);
}

.form-submit {
  margin-top: 1rem;
}

.footer {
  background: #3a3a3a;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 2rem 2rem;
}

.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 h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: white;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links h4 {
  font-size: 1rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 500;
}

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

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

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

.footer-links a:hover {
  color: white;
}

.footer-company {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-charcoal);
  color: white;
  padding: 1.5rem 2rem;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

.cookie-content a {
  color: var(--color-rose);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.cookie-content a:hover {
  border-bottom-color: var(--color-rose);
}

.cookie-btn {
  background: white;
  color: var(--color-charcoal);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.cookie-btn:hover {
  background: var(--color-cream);
}

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

.success-content {
  max-width: 600px;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-rose), var(--color-sage));
  opacity: 0.3;
}

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

.success-content p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: var(--color-text);
}

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

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

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

.legal-container h3 {
  font-size: 1.375rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-container p {
  margin-bottom: 1.5rem;
}

.legal-container ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-container li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--color-accent);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: opacity 0.3s ease;
}

.back-link:hover {
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .hero-container {
    gap: 3rem;
  }
  
  .teacher-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .teacher-image {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .benefits-grid {
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--color-cream);
    flex-direction: column;
    gap: 0;
    padding: 2rem;
    border-bottom: 1px solid rgba(166, 184, 160, 0.15);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .nav-links li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(166, 184, 160, 0.1);
  }
  
  .nav-links a {
    font-size: 1.125rem;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 2rem;
  }
  
  .hero-image {
    order: -1;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-image {
    order: -1;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .program-grid {
    grid-template-columns: 1fr;
  }
  
  section {
    padding: 4rem 1.5rem;
  }
  
  .cookie-content {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  section {
    padding: 3rem 1.25rem;
  }
}
