:root {
  --bg-color: #fdfbf7;
  --bg-light: #f5eedf;
  --text-color: #4a3831;
  --text-light: #7c645a;
  --accent-color: #c87966;
  --accent-hover: #b46856;
  --accent-dark: #a15544;
  --white: #ffffff;
  --font-heading: 'Comfortaa', cursive, sans-serif;
  --font-body: 'Nunito', sans-serif;
  --border-radius: 16px;
  --border-radius-lg: 24px;
  --transition: all 0.3s ease;
  --shadow-soft: 0 10px 30px rgba(74, 56, 49, 0.08);
  --shadow-hover: 0 15px 40px rgba(200, 121, 102, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

h1, h2, h3, h4, .logo {
  font-family: var(--font-heading);
  color: var(--text-color);
  line-height: 1.3;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
}

.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 48px;
}

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--bg-light);
}

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

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(200, 121, 102, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-small {
  padding: 10px 24px;
  font-size: 15px;
  background-color: var(--white);
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

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

.btn-full {
  width: 100%;
}

.mt-4 {
  margin-top: 32px;
}
.text-center {
  text-align: center;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 16px 0;
  border-bottom: 1px solid rgba(74, 56, 49, 0.05);
}

.static-nav {
  position: relative;
  background-color: var(--bg-color);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.nav-links a {
  color: var(--text-color);
  font-weight: 600;
  font-size: 15px;
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger, .hamburger::before, .hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-color);
  transition: var(--transition);
}

.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
}

.hamburger::before { transform: translateY(-8px); }
.hamburger::after { transform: translateY(8px); }

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

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-content p {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.hero-image img {
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  box-shadow: var(--shadow-soft);
  animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
  0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
  67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
  100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--white);
  padding: 40px 24px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-light);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.who-item {
  padding: 32px;
  border-left: 4px solid var(--accent-color);
  background: var(--bg-light);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.who-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--accent-dark);
}

.format-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.format-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
}

.format-content h2 {
  font-size: 36px;
  margin-bottom: 32px;
}

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

.format-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 24px;
}

.format-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 20px;
}

.format-list strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.portfolio-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--white);
}

.portfolio-item img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.portfolio-caption {
  padding: 20px;
  text-align: center;
  font-weight: 600;
  font-family: var(--font-heading);
}

.instructor-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: center;
}

.instructor-content h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.instructor-content p {
  margin-bottom: 16px;
  font-size: 18px;
}

.instructor-image img {
  border-radius: 50%;
  border: 12px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 24px;
  font-size: 80px;
  color: var(--bg-light);
  font-family: serif;
  line-height: 1;
}

.review-text {
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.review-author {
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--accent-dark);
}

.lead-container {
  max-width: 600px;
  background: var(--white);
  padding: 48px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
}

.lead-content {
  text-align: center;
}

.lead-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.lead-content p {
  margin-bottom: 32px;
  color: var(--text-light);
}

.form-group {
  text-align: left;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 15px;
}

.form-group input {
  width: 100%;
  padding: 16px;
  border: 1px solid #e0d8ce;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  background-color: var(--bg-color);
  transition: var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(200, 121, 102, 0.1);
}

.privacy-note {
  margin-top: 16px;
  font-size: 13px !important;
  color: var(--text-light);
}

.faq-container {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid #e0d8ce;
  padding: 24px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 18px;
  padding-right: 24px;
}

.faq-icon {
  font-size: 24px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

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

.faq-answer p {
  padding-top: 16px;
  color: var(--text-light);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

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

.footer {
  background-color: var(--bg-light);
  padding: 64px 0 24px;
  border-top: 1px solid #e0d8ce;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 32px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.footer h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul a {
  color: var(--text-light);
  font-size: 15px;
}

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

.footer-company p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 4px;
}

.footer-bottom {
  border-top: 1px solid #e0d8ce;
  padding-top: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
}

.legal-page {
  padding: 60px 0 100px;
}

.legal-container {
  max-width: 800px;
}

.legal-container h1 {
  margin-bottom: 16px;
}

.last-updated {
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 15px;
}

.legal-content h2 {
  font-size: 24px;
  margin: 32px 0 16px;
}

.legal-content p {
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 0 0 24px 24px;
  color: var(--text-color);
}

.legal-content li {
  margin-bottom: 8px;
}

.back-link {
  font-weight: 700;
}

.page-centered {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;
  background-color: var(--bg-light);
}

.success-icon {
  font-size: 64px;
  margin-bottom: 24px;
}

.success-title {
  font-size: 40px;
  margin-bottom: 16px;
  color: var(--accent-dark);
}

.success-text {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
  padding: 16px 0;
  z-index: 2000;
  transition: bottom 0.5s ease;
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cookie-content p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

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

@media (max-width: 1024px) {
  .hero-container {
    gap: 32px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

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

  .format-container,
  .instructor-container {
    grid-template-columns: 1fr;
  }

  .format-image img {
    max-height: 400px;
    width: 100%;
    object-fit: cover;
  }

  .instructor-container {
    text-align: center;
  }

  .instructor-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    padding: 80px 40px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-cta {
    display: none;
  }

  .who-grid,
  .portfolio-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .who-item {
    border-left: none;
    border-top: 4px solid var(--accent-color);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
