*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --soil: #5e4b3c;
  --terracotta: #c67b5c;
  --cream: #faf7f2;
  --sage: #9bae94;
  --deep-teal: #2e5a5a;
  --charcoal: #2b2b2b;
  --shadow-sm: 0 8px 24px rgba(0,0,0,0.06);
  --radius-lg: 28px;
  --radius-md: 14px;
  --transition: 0.25s ease;
}
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.logo {
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--deep-teal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo span {
  background: var(--terracotta);
  color: white;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 500;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  font-weight: 450;
  font-size: 0.95rem;
  letter-spacing: -0.2px;
}
.nav-links a { transition: color var(--transition); }
.nav-links a:hover { color: var(--terracotta); }
.header-cta {
  background: var(--terracotta);
  color: white;
  padding: 0.6rem 1.6rem;
  border-radius: 40px;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
}
.header-cta:hover { background: #b55f40; transform: translateY(-1px); }

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 85vh;
  padding: 2rem 5% 4rem;
  gap: 3rem;
  background: linear-gradient(105deg, #faf7f2 60%, #e9e3d5 100%);
}
.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--charcoal);
}
.hero-content h1 em {
  font-style: normal;
  color: var(--terracotta);
}
.hero-content p {
  font-size: 1.2rem;
  margin: 1.5rem 0 2rem;
  max-width: 440px;
  color: #4a4a4a;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  border: none;
  background: var(--deep-teal);
  color: white;
  padding: 0.85rem 2.2rem;
  border-radius: 40px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  display: inline-block;
}
.btn:hover { background: #1f4747; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--deep-teal);
  color: var(--deep-teal);
}
.btn-outline:hover { background: var(--deep-teal); color: white; }
.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.hero-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.studio-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 4rem 5%;
  text-align: center;
}
.feature-icon { font-size: 2.3rem; margin-bottom: 0.8rem; color: var(--terracotta); }

.classes-overview { padding: 4rem 5%; background: white; }
.section-title {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 2.5rem;
}
.class-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.class-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.class-card:hover { transform: translateY(-6px); }
.class-card h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.class-card .temp { color: var(--terracotta); font-weight: 500; }

.schedule-teaser { padding: 4rem 5%; background: #f5efe8; }
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.schedule-item {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.schedule-item strong { display: block; font-size: 1.1rem; }

.why-section { padding: 4rem 5%; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.why-item { text-align: center; }
.why-icon { font-size: 2.5rem; margin-bottom: 0.5rem; color: var(--deep-teal); }

.testimonials { padding: 4rem 5%; background: white; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.testimonial {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
}
.quote { font-style: italic; margin-bottom: 1rem; }
.author { font-weight: 500; color: var(--soil); }

.instructor-spotlight { padding: 4rem 5%; background: #f5efe8; }
.spotlight-card {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.spotlight-card img { border-radius: var(--radius-md); width: 100%; max-width: 280px; }
.spotlight-info h3 { font-size: 1.8rem; margin-bottom: 1rem; }

.workshop-teaser { padding: 4rem 5%; }
.workshop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.workshop-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.workshop-card .date {
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.link { color: var(--deep-teal); font-weight: 500; display: inline-block; margin-top: 0.8rem; }

.first-timer { padding: 4rem 5%; background: var(--deep-teal); color: white; }
.first-timer-box { max-width: 700px; margin: 0 auto; }
.first-timer-box h2 { font-size: 2.2rem; margin-bottom: 1.5rem; }
.first-timer-box ol { margin-left: 1.5rem; line-height: 2; }
.first-timer-box a { color: var(--terracotta); font-weight: 500; }

.location-section { padding: 4rem 5%; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  align-items: start;
}
.address-card { background: white; padding: 2rem; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.map-embed iframe { width: 100%; border-radius: var(--radius-md); }

.newsletter { padding: 4rem 5%; text-align: center; background: #f5efe8; }
.newsletter-form { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.5rem; flex-wrap: wrap; }
.newsletter-form input[type="email"] {
  padding: 0.8rem 1.2rem;
  border: 1px solid #ccc;
  border-radius: 40px;
  min-width: 250px;
  font-family: inherit;
}
.newsletter-confirmation { margin-top: 1rem; color: var(--deep-teal); font-weight: 500; }

.footer {
  margin-top: auto;
  background: var(--charcoal);
  color: #ddd;
  padding: 3rem 5% 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}
.footer h4 { color: white; margin-bottom: 0.8rem; font-weight: 500; }
.footer a { color: #bbb; font-size: 0.9rem; display: block; margin: 0.3rem 0; transition: color var(--transition); }
.footer a:hover { color: var(--terracotta); }
.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid #444;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #999;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
  padding: 1.2rem 2rem;
  display: none;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  z-index: 9999;
  border-top: 1px solid #eee;
}
.cookie-banner p { margin-right: 1rem; font-size: 0.9rem; }
.cookie-banner button {
  background: var(--deep-teal);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 40px;
  cursor: pointer;
}
.cookie-banner .decline { background: #aaa; margin-left: 0.5rem; }

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(4px);
}
.modal.active { display: flex; }
.modal-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 520px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  position: relative;
}
.modal-box h2 { margin-bottom: 1.5rem; }
.modal-box input, .modal-box select {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: inherit;
}
.modal-box .close-modal {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-content p { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .schedule-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
}