:root {
  --bg: #faf3e3;
  --bg-alt: #f1e7cf;
  --fg: #14110d;
  --muted: #6b6258;
  --teal: #4fa8a8;
  --teal-dark: #387b7b;
  --gold: #c4a052;
  --gold-dark: #9a7d3d;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-script: "Kaushan Script", "Pacifico", cursive;
}

* { box-sizing: border-box; }
html { background: var(--bg); color: var(--fg); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; }
body { margin: 0; min-height: 100vh; line-height: 1.5; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}
p { margin: 0 0 1rem; }

a { color: var(--teal-dark); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--fg); }
a.bare, a.btn, a.nav-link { text-decoration: none; }

.container { max-width: 64rem; margin: 0 auto; padding: 0 1.5rem; }
main { padding-top: 1rem; padding-bottom: 3rem; }
.muted { color: var(--muted); }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold-dark);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* Header & nav */
.site-header { border-bottom: 1px solid var(--bg-alt); }
.site-header-inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header img { height: 4rem; width: auto; mix-blend-mode: multiply; }
.nav-desktop, .nav-mobile {
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.nav-desktop { display: none; gap: 2rem; font-size: 0.875rem; }
.nav-mobile { display: flex; justify-content: center; gap: 1.25rem; padding: 0 1.5rem 1rem; font-size: 0.75rem; }
.nav-link { color: var(--fg); }
.nav-link:hover, .nav-link.active { color: var(--teal-dark); }

@media (min-width: 640px) {
  .nav-desktop { display: flex; }
  .nav-mobile { display: none; }
  .site-header img { height: 5rem; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  transition: background 0.15s, color 0.15s;
}
.btn-primary { background: var(--teal); color: var(--bg); }
.btn-primary:hover { background: var(--teal-dark); color: var(--bg); }
.btn-outline { border: 1px solid var(--teal); color: var(--teal-dark); }
.btn-outline:hover { background: var(--teal); color: var(--bg); }

/* Hero */
.hero { text-align: center; padding: 4rem 0; }
.hero h1 { font-size: 3rem; line-height: 1.1; margin-bottom: 1.5rem; }
.hero h1 .script {
  display: block;
  font-family: var(--font-script);
  color: var(--teal);
  font-size: 3.5rem;
  margin-bottom: 0.25rem;
  letter-spacing: 0;
  line-height: 1.1;
}
.hero > p { max-width: 36rem; margin: 0 auto; color: var(--muted); font-size: 1.125rem; }
.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 640px) {
  .hero { padding: 6rem 0; }
  .hero h1 { font-size: 4rem; }
  .hero h1 .script { font-size: 5.5rem; }
}

/* Sections */
.section { padding: 4rem 0; border-top: 1px solid var(--bg-alt); }

/* Page header (non-home) */
.page-header { padding: 3rem 0; }
.page-header h1 { font-size: 2.75rem; margin-bottom: 1rem; }
.page-header p { color: var(--muted); max-width: 42rem; }

/* Two-col grids */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 640px) { .two-col { grid-template-columns: 1fr 1fr; } }

/* Cards */
.card { background: var(--bg-alt); padding: 2rem; }
.card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.card-bordered { border: 1px solid var(--bg-alt); padding: 1.5rem; }
.card-bordered h2 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.card-bordered .meta { color: var(--muted); font-size: 0.875rem; margin-bottom: 0.75rem; }
.cards-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 0;
}
@media (min-width: 640px) { .cards-2 { grid-template-columns: 1fr 1fr; } }

/* Beginner highlight (classes page) */
.highlight {
  background: var(--bg-alt);
  padding: 2rem;
  display: grid;
  gap: 2rem;
}
.highlight h2 { font-size: 1.875rem; margin-bottom: 0.25rem; }
.highlight .script {
  font-family: var(--font-script);
  color: var(--teal);
  font-size: 2rem;
  margin: 0;
}
.highlight strong { font-weight: 500; }
@media (min-width: 640px) {
  .highlight { padding: 2.5rem; grid-template-columns: 2fr 3fr; }
}

/* Events */
.event { border-left: 2px solid var(--gold); padding: 0.5rem 0 0.5rem 1.5rem; }
.event + .event { margin-top: 2.5rem; }
.event-type {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}
.event h2 { font-size: 1.875rem; margin-bottom: 0.5rem; }

/* Pricing block */
.pricing { padding: 3rem 0; border-top: 1px solid var(--bg-alt); }
.pricing p { color: var(--muted); max-width: 42rem; line-height: 1.6; }

/* Footer */
.site-footer { border-top: 1px solid var(--bg-alt); margin-top: 6rem; }
.site-footer-inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.875rem;
}
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--teal-dark); }
.site-footer .social { display: flex; gap: 1.25rem; }
@media (min-width: 640px) {
  .site-footer-inner { flex-direction: row; justify-content: space-between; }
}

/* Contact-specific */
.email-link { font-size: 1.25rem; }
