:root {
  --bg: #f5f2ec;
  --surface: #fffdf9;
  --soft: #ebe7df;
  --text: #1f2823;
  --muted: #667069;
  --dark: #1f2a24;
  --accent: #b99462;
  --accent-dark: #8d6f48;
  --border: rgba(31, 40, 35, 0.14);
  --shadow: 0 20px 60px rgba(27, 36, 31, 0.10);
  --radius: 24px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}
.narrow { width: min(780px, 100%); }
.center { text-align: center; }
.section { padding: 110px 0; }
.section-soft { background: var(--soft); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: 0.25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(245, 242, 236, 0.94);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 84px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 26px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0.22em;
}
.brand-text strong { font-size: 14px; }
.brand-text small {
  margin-top: 7px;
  font-size: 9px;
  letter-spacing: 0.38em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}
.main-nav > a:not(.btn) { position: relative; }
.main-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--accent-dark);
  transition: 0.25s ease;
}
.main-nav > a:hover::after { right: 0; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  margin: 6px 0;
  transition: .25s;
}

.hero {
  min-height: 94vh;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #f7f3eb;
  background:
    radial-gradient(circle at 78% 34%, rgba(185, 148, 98, .33), transparent 24%),
    linear-gradient(120deg, #1e2923 0%, #2f3d34 58%, #827058 140%);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}
.hero::before {
  width: 600px;
  height: 600px;
  right: -200px;
  top: 10%;
}
.hero::after {
  width: 380px;
  height: 380px;
  right: 60px;
  bottom: -180px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.08), rgba(0,0,0,.12));
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr .7fr;
  gap: 90px;
  align-items: end;
  padding-top: 150px;
  padding-bottom: 90px;
}
.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-dark);
}
.eyebrow.light { color: #d9c29f; }
.hero .eyebrow { color: #d7bd96; }
.hero h1,
.section h2,
.contact-strip h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.035em;
}
.hero h1 {
  font-size: clamp(62px, 8vw, 112px);
  margin: 0;
  max-width: 840px;
}
.hero h1 em {
  color: #d7bd96;
  font-weight: 500;
}
.lead {
  max-width: 720px;
  font-size: 19px;
  color: rgba(255,255,255,.78);
  margin: 30px 0 0;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 26px;
  align-items: center;
}
.hero .text-link { color: white; }
.hero-facts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 42px;
}
.hero-facts span {
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: 13px;
  color: rgba(255,255,255,.8);
}
.hero-card {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(20px);
  padding: 34px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card-label {
  color: #d7bd96;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 700;
}
.hero-card h2 {
  font-family: var(--serif);
  font-size: 44px;
  margin: 8px 0 4px;
}
.hero-card-time {
  font-weight: 700;
  margin: 0 0 16px;
}
.hero-card p:not(.card-label):not(.hero-card-time) {
  color: rgba(255,255,255,.75);
}
.hero-card .btn { margin-top: 12px; }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  transition: .25s ease;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}
.btn-small {
  min-height: 42px;
  padding: 0 18px;
}
.btn-light {
  background: #f7f3eb;
  border-color: #f7f3eb;
  color: var(--dark);
}
.btn-outline {
  background: transparent;
  color: var(--text);
}
.text-link {
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

.intro h2,
.section-heading h2,
.teacher-copy h2,
.booking-copy h2,
.faq-section h2 {
  font-size: clamp(44px, 5.5vw, 72px);
  margin: 0 0 24px;
}
.intro p:last-child {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 54px;
}
.section-heading h2 { margin: 0; }
.section-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.class-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  transition: .25s;
}
.class-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.class-card .number {
  font-family: var(--serif);
  font-size: 42px;
  color: var(--accent);
}
.class-card h3 {
  font-family: var(--serif);
  font-size: 38px;
  margin: 35px 0 14px;
}
.class-card p { color: var(--muted); }
.class-card ul {
  padding: 0;
  margin: auto 0 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.class-card li {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
}

.schedule-section { background: var(--surface); }
.schedule {
  border-top: 1px solid var(--border);
}
.schedule-row {
  display: grid;
  grid-template-columns: .8fr 1fr 1.5fr 1.3fr .6fr;
  gap: 20px;
  align-items: center;
  padding: 24px 18px;
  border-bottom: 1px solid var(--border);
}
.schedule-row:hover:not(.header-row) { background: var(--bg); }
.header-row {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  color: var(--muted);
}
.schedule-row a {
  color: var(--accent-dark);
  font-weight: 700;
}
.schedule-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
}

.teacher-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.teacher-visual {
  min-height: 610px;
  background:
    radial-gradient(circle at 72% 28%, rgba(185,148,98,.35), transparent 20%),
    linear-gradient(150deg, #26342c, #59675d);
  border-radius: var(--radius);
  padding: 38px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
}
.visual-symbol {
  font-size: 70px;
  opacity: .7;
}
.visual-quote {
  font-family: var(--serif);
  font-size: 35px;
  line-height: 1.1;
}
.teacher-copy p {
  color: var(--muted);
  font-size: 17px;
}
.signature {
  font-family: var(--serif);
  font-size: 28px !important;
  color: var(--text) !important;
  margin: 32px 0 10px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background: var(--dark);
  color: #fff;
  transform: translateY(-12px);
}
.price-card.featured p:not(.price) { color: rgba(255,255,255,.68); }
.price-label {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}
.price {
  font-family: var(--serif);
  font-size: 54px;
  line-height: 1;
  margin: 28px 0 20px;
}
.price span {
  font-family: var(--sans);
  font-size: 15px;
}
.price-card > p:nth-of-type(3) { color: var(--muted); }
.price-card .btn { margin-top: auto; }
.badge {
  position: absolute;
  top: -13px;
  right: 22px;
  background: var(--accent);
  border-radius: 999px;
  padding: 7px 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
  font-weight: 700;
}

.booking-section { background: var(--surface); }
.booking-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.booking-copy {
  position: sticky;
  top: 130px;
}
.booking-copy p { color: var(--muted); }
.booking-info {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.booking-info p { margin: 8px 0; }

.booking-form {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 34px;
  border-radius: var(--radius);
}
.booking-form label {
  display: block;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 700;
}
input, select, textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  padding: 14px 15px;
  color: var(--text);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(185,148,98,.14);
}
textarea { resize: vertical; }
.checkbox {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500 !important;
}
.checkbox input {
  width: auto;
  margin: 4px 0 0;
}
.form-note, .form-message {
  font-size: 12px;
  color: var(--muted);
  margin: 12px 0 0;
}
.form-message { font-weight: 700; }

.faq-section { background: var(--bg); }
.faq-list {
  margin-top: 42px;
  border-top: 1px solid var(--border);
}
details {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
}
details p {
  color: var(--muted);
  max-width: 680px;
}

.contact-strip {
  background: var(--dark);
  color: #fff;
  padding: 90px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: end;
}
.contact-strip h2 {
  font-size: clamp(42px, 5vw, 68px);
  margin: 0;
}
.contact-links {
  display: grid;
  gap: 13px;
}
.contact-links a {
  font-size: 18px;
  color: rgba(255,255,255,.76);
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding-bottom: 10px;
}
.contact-links a:hover { color: #fff; }

.site-footer {
  background: #17201b;
  color: rgba(255,255,255,.68);
  padding: 70px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
}
.footer-brand { color: white; }
.footer-grid h4 {
  color: #fff;
  margin: 0 0 16px;
}
.footer-grid a {
  display: block;
  margin: 8px 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@media (max-width: 900px) {
  .nav-toggle { display: block; z-index: 2; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(360px, 90vw);
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 110px 34px 34px;
    gap: 22px;
    box-shadow: var(--shadow);
    transition: .3s ease;
  }
  .main-nav.open { right: 0; }
  .hero-grid,
  .section-heading,
  .teacher-grid,
  .booking-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 45px; }
  .cards-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .price-card.featured { transform: none; }
  .teacher-visual { min-height: 480px; }
  .booking-copy { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 78px 0; }
  .hero { min-height: auto; }
  .hero-grid { padding-top: 140px; padding-bottom: 70px; }
  .hero h1 { font-size: clamp(52px, 16vw, 76px); }
  .lead { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-card { padding: 26px; }
  .section-heading { gap: 18px; margin-bottom: 38px; }
  .intro h2,
  .section-heading h2,
  .teacher-copy h2,
  .booking-copy h2,
  .faq-section h2 { font-size: 44px; }
  .schedule-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
    padding: 22px 4px;
  }
  .schedule-row.header-row { display: none; }
  .schedule-row span::before {
    content: attr(data-label);
    display: block;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--muted);
    margin-bottom: 3px;
  }
  .schedule-row span:last-child { grid-column: 1 / -1; }
  .teacher-grid, .booking-grid { gap: 45px; }
  .teacher-visual { min-height: 420px; padding: 28px; }
  .visual-quote { font-size: 28px; }
  .booking-form { padding: 24px; }
  .contact-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
