:root {
  --bg: #0d1013;
  --bg-soft: #15191d;
  --bg-card: #1b2025;
  --text: #f6efe4;
  --muted: #b9afa2;
  --line: rgba(246, 239, 228, 0.14);
  --accent: #b88a54;
  --accent-2: #e0c49e;
  --cream: #f6efe4;
  --shadow: 0 30px 80px rgba(0,0,0,.35);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(184, 138, 84, .16), transparent 30%),
    radial-gradient(circle at 82% 16%, rgba(246, 239, 228, .06), transparent 28%),
    linear-gradient(180deg, #0d1013 0%, #111418 42%, #0d1013 100%);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }

.progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 1000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: min(var(--max), calc(100% - 32px));
  margin: 14px auto 0;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(13, 16, 19, .74);
  backdrop-filter: blur(18px);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.site-header.scrolled {
  background: rgba(13, 16, 19, .92);
  border-color: rgba(224, 196, 158, .24);
}

.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111418;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  font-weight: 900;
}
.brand strong { display: block; letter-spacing: .08em; font-size: .88rem; }
.brand small { display: block; color: var(--muted); font-size: .72rem; margin-top: -2px; }

.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
  color: var(--muted);
  font-size: .88rem;
  padding: 10px 12px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.nav a:hover { color: var(--text); background: rgba(255,255,255,.06); }
.nav .nav-cta { color: #111418; background: var(--cream); font-weight: 800; }
.nav .nav-cta:hover { color: #111418; background: var(--accent-2); }
.menu-toggle { display: none; }

main { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.section { padding: 94px 0; }
.section-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.section-reveal.visible { opacity: 1; transform: translateY(0); }

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  gap: 46px;
  align-items: center;
  padding: 56px 0 80px;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .75rem;
  font-weight: 800;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: .91;
  letter-spacing: -.065em;
  max-width: 840px;
  margin-bottom: 28px;
}
h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: .98;
  letter-spacing: -.05em;
  margin-bottom: 22px;
}
h3 { font-size: 1.3rem; letter-spacing: -.025em; }
.hero-text {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 620px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 850;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--cream); color: #111418; }
.btn-primary:hover { background: var(--accent-2); }
.btn-outline { border-color: var(--line); color: var(--text); }
.btn-outline:hover { border-color: var(--accent); background: rgba(184,138,84,.1); }

.trust-row { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-row span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--muted);
  background: rgba(255,255,255,.03);
}
.trust-row strong { color: var(--text); }

.hero-panel {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(224,196,158,.24);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
}
.panel-photo {
  overflow: hidden;
  border-radius: 28px;
  min-height: 520px;
  background: var(--bg-card);
  position: relative;
}
.panel-photo svg { width: 100%; height: 520px; object-fit: cover; }
.photo-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  color: #111418;
  background: var(--cream);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.panel-card {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background: rgba(13,16,19,.78);
  backdrop-filter: blur(16px);
}
.panel-card span { color: var(--accent-2); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.panel-card strong { display: block; margin-top: 6px; font-size: 1.25rem; }
.panel-card p { color: var(--muted); margin: 6px 0 16px; }
.panel-card a { color: #111418; background: var(--cream); padding: 10px 14px; border-radius: 999px; font-weight: 800; display: inline-flex; }

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  margin-bottom: 30px;
}
.quick-info article { background: rgba(255,255,255,.035); padding: 26px; }
.quick-info span, .section-label { color: var(--accent-2); text-transform: uppercase; letter-spacing: .13em; font-size: .72rem; font-weight: 850; }
.quick-info strong { display: block; margin-top: 8px; font-size: 1.08rem; }

.intro {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 44px;
  border-bottom: 1px solid var(--line);
}
.intro p:not(.eyebrow) { color: var(--muted); font-size: 1.1rem; max-width: 780px; }

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 54px;
  align-items: center;
}
.split-media {
  min-height: 460px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(184,138,84,.08));
}
.studio-grid {
  height: 100%;
  min-height: 428px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.studio-grid div {
  border-radius: 24px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  min-height: 200px;
  color: var(--cream);
  font-weight: 850;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,.55) 100%),
    radial-gradient(circle at 30% 20%, rgba(224,196,158,.36), transparent 35%),
    #20262b;
}
.studio-grid div:nth-child(2), .studio-grid div:nth-child(3) {
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,.55) 100%),
    radial-gradient(circle at 70% 25%, rgba(184,138,84,.4), transparent 35%),
    #171c20;
}
.split-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.checklist { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
.checklist li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
}
.checklist li::before { content: "✓"; color: var(--accent-2); margin-right: 10px; font-weight: 900; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 34px;
}
.section-head p:not(.eyebrow) { color: var(--muted); max-width: 380px; }
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.filter {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  padding: 11px 15px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}
.filter.active { color: #111418; background: var(--cream); border-color: var(--cream); }
.class-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.class-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.058), rgba(255,255,255,.025));
  min-height: 320px;
  transition: transform .25s ease, border-color .25s ease, opacity .25s ease;
}
.class-card:hover { transform: translateY(-6px); border-color: rgba(224,196,158,.36); }
.class-card.hidden { display: none; }
.class-top { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 30px; color: var(--accent-2); font-size: .78rem; text-transform: uppercase; letter-spacing: .11em; }
.class-card p, .class-card li { color: var(--muted); }
.class-card ul { padding-left: 18px; margin: 22px 0 0; }

.agenda-section {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 34px;
  align-items: start;
}
.agenda-copy p:not(.eyebrow) { color: var(--muted); }
.schedule-table {
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.035);
}
.schedule-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.5fr;
  border-bottom: 1px solid var(--line);
}
.schedule-row:last-child { border-bottom: 0; }
.schedule-row span { padding: 18px 16px; color: var(--muted); border-right: 1px solid var(--line); }
.schedule-row span:last-child { border-right: 0; }
.schedule-row.head span { color: var(--text); font-weight: 850; background: rgba(255,255,255,.055); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 28px;
  background: rgba(255,255,255,.035);
  display: flex;
  flex-direction: column;
  min-height: 390px;
}
.price-card.featured { background: linear-gradient(180deg, rgba(224,196,158,.14), rgba(255,255,255,.04)); border-color: rgba(224,196,158,.38); transform: translateY(-10px); }
.tag { align-self: flex-start; color: #111418; background: var(--accent-2); padding: 8px 10px; border-radius: 999px; font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.price-card h3 { margin-top: 26px; }
.price { font-size: 3.1rem; line-height: 1; letter-spacing: -.06em; font-weight: 950; margin: 4px 0 18px; }
.price span { color: var(--muted); font-size: 1rem; letter-spacing: 0; font-weight: 600; }
.price-card p:not(.price) { color: var(--muted); }
.price-card a { margin-top: auto; color: #111418; background: var(--cream); border-radius: 999px; padding: 14px 16px; text-align: center; font-weight: 900; }
.price-card a:hover { background: var(--accent-2); }

.process {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.steps article { border: 1px solid var(--line); border-radius: 24px; padding: 22px; background: rgba(255,255,255,.03); }
.steps span { color: var(--accent-2); font-weight: 900; }
.steps strong { display: block; margin: 16px 0 8px; font-size: 1.12rem; }
.steps p { color: var(--muted); margin-bottom: 0; }

.testimonial {
  position: relative;
  padding: 74px;
  border: 1px solid rgba(224,196,158,.28);
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(184,138,84,.18), rgba(255,255,255,.035));
}
.quote-mark { position: absolute; top: 28px; right: 42px; font-size: 9rem; line-height: 1; color: rgba(224,196,158,.18); font-weight: 900; }
blockquote { margin: 0; max-width: 850px; }
blockquote p { font-size: clamp(1.6rem, 3vw, 3rem); line-height: 1.08; letter-spacing: -.04em; }
blockquote cite { color: var(--muted); font-style: normal; }

.faq-list { display: grid; gap: 12px; max-width: 860px; }
details { border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.035); padding: 18px 20px; }
summary { cursor: pointer; font-weight: 850; }
details p { color: var(--muted); margin: 14px 0 0; }

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 54px;
  margin: 40px 0 90px;
  border-radius: 38px;
  background: var(--cream);
  color: #111418;
}
.final-cta .eyebrow { color: #7b5830; }
.final-cta h2 { margin: 0; max-width: 760px; }
.final-cta .btn-primary { background: #111418; color: var(--cream); }
.final-cta .btn-primary:hover { background: #2a3035; }

.footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 50px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.footer strong { color: var(--text); }
.footer p { margin: 6px 0 0; max-width: 520px; }
.footer div:last-child { display: flex; gap: 16px; }
.footer a { color: var(--text); }

@media (max-width: 1020px) {
  .hero, .split, .agenda-section, .process { grid-template-columns: 1fr; }
  .class-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .section-head { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 760px) {
  .site-header { border-radius: 24px; align-items: flex-start; }
  .menu-toggle {
    display: grid;
    gap: 6px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span { width: 18px; height: 2px; background: var(--cream); display: block; }
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(13,16,19,.96);
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px; }
  main, .site-header, .footer { width: min(100% - 22px, var(--max)); }
  .hero { padding-top: 42px; gap: 28px; min-height: auto; }
  .panel-photo, .panel-photo svg { min-height: 390px; height: 390px; }
  h1 { font-size: clamp(2.7rem, 15vw, 4.2rem); }
  .quick-info, .intro, .class-grid, .steps { grid-template-columns: 1fr; }
  .section { padding: 62px 0; }
  .schedule-table { overflow-x: auto; }
  .schedule-row { min-width: 720px; }
  .testimonial { padding: 34px 24px; }
  .final-cta { flex-direction: column; align-items: flex-start; padding: 34px 24px; }
  .footer { flex-direction: column; }
}
