:root {
  --bg: #14100d;
  --bg-alt: #1c1611;
  --surface: #221b15;
  --surface-2: #2a2119;
  --gold: #d4a24c;
  --gold-light: #f0c988;
  --cream: #f5ede1;
  --muted: #b9ac9a;
  --border: #362c22;
  --radius: 16px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--cream);
}

h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; margin-bottom: 8px; }

p { margin: 0 0 12px; color: var(--muted); }

a { color: inherit; text-decoration: none; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 10px;
}

.section-head {
  max-width: 620px;
  margin: 0 auto 44px;
  text-align: center;
}

section { padding: 88px 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1b1410;
  box-shadow: 0 10px 24px -10px rgba(212, 162, 76, 0.6);
}
.btn--primary:hover { transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--cream);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn--small { padding: 10px 20px; font-size: 0.9rem; }
.btn--full { width: 100%; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 16, 13, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  flex-shrink: 0;
}
.logo__pick { font-size: 1.4rem; }

.nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav__link {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.96rem;
  transition: color 0.15s ease;
}
.nav__link:hover { color: var(--gold-light); }

.header__cta { flex-shrink: 0; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--cream);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  padding-top: 90px;
  padding-bottom: 90px;
  background:
    radial-gradient(ellipse 60% 50% at 80% 10%, rgba(212, 162, 76, 0.16), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
}
.hero__lead { font-size: 1.08rem; max-width: 520px; }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 40px;
}
.hero__stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat__num {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--gold-light);
  font-weight: 700;
}
.stat__label { font-size: 0.85rem; color: var(--muted); }

.hero__art {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__circle {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(212, 162, 76, 0.35), rgba(212, 162, 76, 0.05) 65%);
  border: 1px solid var(--border);
}
.hero__strings {
  position: relative;
  width: 220px;
  height: 280px;
  display: flex;
  justify-content: space-between;
  transform: rotate(8deg);
}
.hero__strings span {
  width: 2px;
  height: 100%;
  background: linear-gradient(var(--gold-light), transparent 90%);
  border-radius: 2px;
  opacity: 0.85;
}

/* About */
.about { background: var(--bg-alt); }
.about__inner { text-align: center; }
.about__text {
  max-width: 720px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}
.about__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.about-card__icon { font-size: 1.7rem; margin-bottom: 14px; }

/* Directions */
.directions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.direction-card {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface), var(--bg));
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.direction-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.direction-card h3 { color: var(--gold-light); }

/* Teachers */
.teachers { background: var(--bg-alt); }
.teachers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.teacher-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
}
.teacher-card__avatar {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: #1b1410;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.teacher-card__role {
  color: var(--gold-light);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.teacher-card__text { font-size: 0.95rem; }

/* Reviews */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.review-card {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}
.review-card__stars {
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.review-card__text { font-style: italic; color: var(--cream); }
.review-card__author {
  margin-top: 14px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Contact */
.contact { background: var(--bg-alt); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact__lead { max-width: 420px; }
.contact__list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact__icon { font-size: 1.3rem; }
.contact__list strong {
  display: block;
  color: var(--cream);
  font-size: 0.92rem;
}
.contact__list span { color: var(--muted); font-size: 0.95rem; }

.contact__form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label { font-size: 0.88rem; color: var(--muted); font-weight: 600; }
.form-row input,
.form-row textarea {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.96rem;
  resize: vertical;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-note {
  color: var(--gold-light);
  font-size: 0.92rem;
  text-align: center;
  margin: 0;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.logo--footer { margin-bottom: 6px; }
.footer__address,
.footer__copy {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 980px) {
  .about__cards,
  .directions__grid,
  .teachers__grid,
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact__inner { grid-template-columns: 1fr; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { height: 220px; order: -1; }
}

@media (max-width: 760px) {
  .nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 24px 24px;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav__link { padding: 10px 0; width: 100%; }
  .header__cta { display: none; }
  .burger { display: flex; }

  section { padding: 60px 0; }

  .about__cards,
  .directions__grid,
  .teachers__grid,
  .reviews__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .hero__stats { gap: 22px; }
  .contact__form { padding: 22px; }
}
