:root {
  --bg: #07060c;
  --ink: #f4efe6;
  --muted: #b7aea0;
  --gold: #c9a46c;
  --gold-2: #e8d3a2;
  --line: rgba(201,164,108,.28);
  --card: #12101a;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-2); text-decoration: none; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 12px; background: #000; padding: 8px; z-index: 9; }
.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 6vw;
  background: rgba(7,6,12,.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav.compact { padding: 10px 6vw; }
.brand { display: flex; gap: 10px; align-items: center; color: var(--ink); font-weight: 500; letter-spacing: .04em; }
.brand img { border-radius: 50%; }
.nav nav { display: flex; gap: 22px; align-items: center; font-size: 14px; }
.nav-cta {
  background: var(--gold); color: #1a1408 !important; padding: 8px 14px; border-radius: 999px; font-weight: 500;
}
.kicker {
  letter-spacing: .32em; text-transform: uppercase; font-size: 11px; color: var(--gold); margin: 0 0 12px;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.15; margin: 0 0 12px; }
h1 { font-size: clamp(2.4rem, 6vw, 5.2rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
.lede { font-size: 1.25rem; color: var(--muted); max-width: 38rem; }
.italic { font-family: var(--serif); font-style: italic; }
.btn {
  display: inline-block; border: 0; cursor: pointer; font-family: var(--sans);
  padding: 14px 22px; border-radius: 999px; font-weight: 500;
}
.btn.gold { background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: #1a1408; }
.btn.ghost { border: 1px solid var(--line); color: var(--ink); }
.btn.lg { padding: 16px 28px; font-size: 1.05rem; }
.hero-home { position: relative; min-height: 100vh; display: grid; place-items: center; overflow: hidden; }
#galaxy, .hero-home-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.hero-home-bg {
  background-size: cover; background-position: center; opacity: .55; mix-blend-mode: screen;
  animation: drift 28s ease-in-out infinite alternate;
}
@keyframes drift { from { transform: scale(1.05) translateY(0); } to { transform: scale(1.14) translateY(-2%); } }
.hero-home-inner { position: relative; z-index: 2; padding: 18vh 8vw 12vh; max-width: 920px; }
.not-list { color: var(--gold); letter-spacing: .04em; }
.story { max-width: 40rem; color: var(--muted); }
.pull {
  font-family: var(--serif); font-style: italic; font-size: 1.45rem;
  border-left: 2px solid var(--gold); padding-left: 18px; color: var(--gold-2); max-width: 36rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.photo-band, .offer-strip, .about {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center;
  padding: 8vh 8vw;
}
.photo-band img, .offer-strip img, .about img { width: 100%; border-radius: 18px; object-fit: cover; max-height: 520px; }
.process { padding: 10vh 8vw; }
.process ol { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 0; list-style: none; }
.process li span { color: var(--gold); font-family: var(--serif); font-size: 2rem; }
.work { padding: 6vh 8vw 10vh; }
.work ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 0; list-style: none; }
.work li { background: var(--card); border: 1px solid var(--line); padding: 18px 20px; border-radius: 14px; }
.links-row { display: flex; gap: 18px; flex-wrap: wrap; }
.cta-end { min-height: 50vh; background-size: cover; background-position: center; display: grid; place-items: center; text-align: center; }
.cta-end > div { background: rgba(7,6,12,.62); padding: 48px 28px; max-width: 720px; }
.site-foot { padding: 28px 8vw 48px; color: #8a8378; font-size: 13px; border-top: 1px solid var(--line); }
.lp-hero { position: relative; min-height: 86vh; display: grid; place-items: end start; }
.lp-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.55); }
.lp-hero-inner { position: relative; padding: 12vh 8vw; max-width: 860px; }
.price-pill { display: inline-block; border: 1px solid var(--gold); color: var(--gold-2); padding: 6px 12px; border-radius: 999px; font-size: 14px; }
.lp-section { padding: 8vh 8vw; max-width: 1100px; margin: 0 auto; }
.lp-section.split, .lp-section.teacher { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; align-items: center; max-width: none; }
.lp-section.split.reverse { grid-template-columns: 1.1fr .9fr; }
.lp-section.split.reverse img { order: 2; }
.lp-section img { border-radius: 16px; width: 100%; object-fit: cover; max-height: 460px; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; padding: 0; list-style: none; }
.cards li { background: var(--card); border: 1px solid var(--line); padding: 16px; border-radius: 12px; }
.steps { list-style: none; padding: 0; }
.steps li { display: flex; gap: 16px; margin: 14px 0; }
.steps span { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--gold); display: grid; place-items: center; color: var(--gold); flex: none; }
.ticks { padding: 0; list-style: none; }
.ticks li { padding: 8px 0 8px 28px; position: relative; }
.ticks li:before { content: "✦"; position: absolute; left: 0; color: var(--gold); }
.why, .register { text-align: center; }
.pay-form { max-width: 420px; margin: 24px auto 0; text-align: left; display: grid; gap: 12px; }
.pay-form input, .install-card input, textarea, select {
  width: 100%; padding: 12px 12px; border-radius: 10px; border: 1px solid var(--line);
  background: #0d0c14; color: var(--ink); font: inherit;
}
.pay-form label, .install-card label { font-size: 13px; color: var(--muted); display: grid; gap: 6px; }
.quotes { display: grid; gap: 16px; }
.quotes blockquote { margin: 0; background: var(--card); padding: 20px; border-radius: 12px; border: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 12px 0; }
.faq summary { cursor: pointer; font-weight: 500; }
.final { max-width: none; background-size: cover; background-position: center; text-align: center; }
.final > div { background: rgba(7,6,12,.7); padding: 48px 20px; }
.thank, .legal { padding: 14vh 8vw 10vh; max-width: 720px; }
.flash-error { background: #3a1520; color: #ffd4d4; padding: 12px 16px; border-radius: 8px; }
.tiny { font-size: 12px; color: #8a8378; }
.install { min-height: 100vh; display: grid; place-items: center; }
.install-card { width: min(480px, 92vw); display: grid; gap: 12px; background: var(--card); padding: 32px; border-radius: 16px; border: 1px solid var(--line); }
.note { color: var(--muted); }
.ok-msg { background: #1d3a28; padding: 12px 16px; border-radius: 8px; }
.contact-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 1.15fr);
  gap: 48px 56px;
  align-items: start;
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 10vh 0 12vh;
}
.contact-left h1 { margin-bottom: 16px; }
.studio-block { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); }
.studio-block h2 { font-size: 1.8rem; color: var(--gold-2); }
.address { white-space: pre-wrap; color: var(--muted); line-height: 1.7; }
.contact-right {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
}
.contact-form { display: flex; flex-direction: column; gap: 14px; width: 100%; margin: 0; }
.contact-form label { font-size: 13px; color: var(--muted); display: flex; flex-direction: column; gap: 6px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #0d0c14;
  color: var(--ink);
  font: inherit;
}
.captcha-row { display: flex; align-items: center; gap: 12px; }
.captcha-img { border: 1px solid var(--line); border-radius: 8px; background: #12101a; height: 52px; width: 160px; }
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}
.login-body { min-height: 100vh; position: relative; display: grid; place-items: center; overflow: hidden; }
.login-body #galaxy { min-height: 100vh; }
.login-body #galaxy, .login-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.login-bg { background-size: cover; background-position: center; opacity: .4; }
.login-panel {
  position: relative; z-index: 2;
  width: min(400px, 92vw);
  display: grid; gap: 12px;
  background: rgba(18,16,26,.88);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 28px;
  backdrop-filter: blur(12px);
}
.login-panel h1 { font-size: 2.4rem; }
.login-panel label { font-size: 13px; color: var(--muted); display: grid; gap: 6px; }
.login-panel input {
  width: 100%; padding: 12px; border-radius: 10px;
  border: 1px solid var(--line); background: #0d0c14; color: var(--ink); font: inherit;
}
@media (max-width: 860px) {
  .nav nav a:not(.nav-cta):not(.nav-keep) { display: none; }
  .contact-wrap { grid-template-columns: 1fr; gap: 28px; padding-top: 8vh; }
  .photo-band, .offer-strip, .about, .lp-section.split, .lp-section.teacher, .process ol, .work ul {
    grid-template-columns: 1fr;
  }
  .lp-section.split.reverse img { order: 0; }
}
