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

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

:root {
  --color-cream: #FAF7F2;
  --color-green: #2D5016;
  --color-gold: #C8922A;
  --color-brown: #3D2B1F;
  --color-green-dark: #1a2f0d;
  --color-gold-light: #e5b563;
  --color-error: #B8312F;
  
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-brown);
  background-color: var(--color-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1.25rem; }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 1rem; }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); margin-bottom: 0.875rem; }

p {
  margin-bottom: 1rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.lead {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.6;
  color: var(--color-brown);
  opacity: 0.9;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-cream);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(250, 247, 242, 0.98);
  backdrop-filter: blur(8px);
  border-bottom-color: rgba(45, 80, 22, 0.1);
  box-shadow: 0 2px 16px rgba(45, 80, 22, 0.06);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-green);
  letter-spacing: 0.02em;
}

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

.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-brown);
  opacity: 0.85;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--color-green);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--color-gold);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-weight: 600;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 146, 42, 0.3);
}

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

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--color-green);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.75), rgba(61, 43, 31, 0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  color: white;
  animation: fadeInUp 1s ease;
}

.hero h1 {
  color: white;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--color-gold);
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  background: var(--color-gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(200, 146, 42, 0.4);
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
}

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

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

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

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

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.section-header p {
  max-width: 700px;
  margin: 0 auto;
}

.mood {
  position: relative;
  padding: 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.mood::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45, 80, 22, 0.7);
}

.mood-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  color: white;
  padding: 3rem 2rem;
}

.mood-content h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.mood-content p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
}

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

.card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(45, 80, 22, 0.08);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 36px rgba(45, 80, 22, 0.15);
}

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

.card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-brown);
  opacity: 0.85;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-gold);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(45, 80, 22, 0.1);
  aspect-ratio: 4/3;
}

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

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(45, 80, 22, 0.95), transparent);
  color: white;
  font-size: 0.95rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.instructor-section {
  background: white;
}

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

.instructor-photo {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(45, 80, 22, 0.15);
}

.instructor-photo img {
  width: 100%;
  height: auto;
}

.instructor-bio h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.instructor-bio .role {
  font-size: 1.125rem;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.instructor-bio p {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

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

.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.process-step::after {
  content: '→';
  position: absolute;
  top: 3rem;
  right: -1rem;
  font-size: 2rem;
  color: var(--color-gold);
  opacity: 0.3;
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--color-gold);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 1.5rem;
}

.process-step h4 {
  margin-bottom: 0.75rem;
}

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

.testimonial {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(45, 80, 22, 0.08);
  border-left: 4px solid var(--color-gold);
}

.testimonial-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--color-brown);
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-green);
  font-size: 1rem;
}

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

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 16px rgba(45, 80, 22, 0.06);
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-green);
  margin-bottom: 0.75rem;
}

.faq-answer {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-brown);
  opacity: 0.9;
}

.form-section {
  background: var(--color-green);
  color: white;
}

.form-section h2,
.form-section p {
  color: white;
}

.form-container {
  max-width: 600px;
  margin: 3rem auto 0;
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

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

label {
  display: block;
  font-weight: 600;
  color: var(--color-green);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 0.875rem 1.125rem;
  font-size: 1rem;
  font-family: var(--font-body);
  border: 2px solid rgba(45, 80, 22, 0.15);
  border-radius: 6px;
  background: var(--color-cream);
  color: var(--color-brown);
  transition: var(--transition);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.1);
}

input.error,
textarea.error {
  border-color: var(--color-error);
}

.error-message {
  display: none;
  color: var(--color-error);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.error-message.visible {
  display: block;
}

.form-note {
  font-size: 0.9rem;
  color: var(--color-brown);
  opacity: 0.7;
  margin-top: 1rem;
  text-align: center;
}

.btn-submit {
  width: 100%;
  padding: 1.125rem;
  font-size: 1.125rem;
}

.cta-band {
  background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.cta-band h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
}

footer {
  background: var(--color-green-dark);
  color: var(--color-cream);
  padding: 3rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--color-gold);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(250, 247, 242, 0.85);
}

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

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

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

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 247, 242, 0.15);
  text-align: center;
  font-size: 0.875rem;
  color: rgba(250, 247, 242, 0.7);
}

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

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

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

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--color-gold);
  text-decoration: underline;
}

.btn-cookie {
  background: var(--color-gold);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

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

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--color-cream), #f0ebe0);
}

.success-content {
  max-width: 600px;
  text-align: center;
  background: white;
  padding: 4rem 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(45, 80, 22, 0.12);
}

.success-content img {
  max-width: 200px;
  margin: 0 auto 2rem;
  border-radius: 8px;
}

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

.success-content p {
  margin-bottom: 2rem;
}

.legal-page {
  padding: 8rem 2rem 4rem;
  min-height: 100vh;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(45, 80, 22, 0.08);
}

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

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

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  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;
  line-height: 1.7;
}

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

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

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-green-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s ease;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    color: white;
    font-size: 1.125rem;
  }
  
  .nav-links a::after {
    background: var(--color-gold);
  }
  
  .nav-cta {
    width: 100%;
    text-align: center;
  }
  
  .hero {
    background-attachment: scroll;
    padding: 6rem 1.5rem 3rem;
  }
  
  .mood {
    min-height: 60vh;
  }
  
  .card-grid,
  .gallery,
  .testimonials,
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .instructor {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .process-step::after {
    display: none;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  section {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  
  nav {
    padding: 1rem 1.5rem;
  }
  
  .form-container {
    padding: 2rem 1.5rem;
  }
  
  .legal-content {
    padding: 2rem 1.5rem;
  }
}
