/* ═══════════════════════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════════════════════ */
:root {
  --void: #0a0a0a;
  --graphite: #171717;
  --graphite-light: #1f1f1f;
  --steel: #2a2a2a;
  --muted: #8a8a8a;
  --text-dim: #999;
  --white: #ffffff;
  --accent: #ff3b00;
  --accent-glow: rgba(255, 59, 0, 0.35);
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap: cubic-bezier(0.77, 0, 0.175, 1);
}

/* ═══════════════════════════════════════════════════════════
   RESET
   ═══════════════════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--void);
  color: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select { font: inherit; color: inherit; border: none; background: none; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
::selection { background: var(--accent); color: var(--void); }

/* ═══════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════ */
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 88px; }
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}
.header-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-link {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  transition: color 0.2s;
  position: relative;
}
.nav-link:hover { color: var(--white); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-link:hover::after { width: 100%; }
.btn-join {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  padding: 10px 28px;
  background: var(--accent);
  color: var(--white);
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 700;
}
.btn-join:hover {
  background: #e63400;
  box-shadow: 0 0 30px var(--accent-glow);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--void);
  border-bottom: 1px solid var(--steel);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}
.mobile-menu.active { display: flex; }
.mobile-menu .nav-link { font-size: 1.1rem; }
.mobile-menu .btn-join { text-align: center; margin-top: 8px; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .header-inner .btn-join { display: none; }
  .hamburger { display: flex; }
}

/* ═══════════════════════════════════════════════════════════
   MARQUEE TICKER
   ═══════════════════════════════════════════════════════════ */
.marquee {
  margin-top: 64px;
  background: var(--accent);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.marquee-track {
  display: inline-flex;
  animation: marquee-scroll 65s linear infinite;
  animation-duration: 65s !important;
}
.marquee-text {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  letter-spacing: 0.2em;
  color: var(--void);
  padding: 10px 0;
  display: inline-block;
  flex-shrink: 0;
}
.marquee-text .sep {
  display: inline-block;
  margin: 0 24px;
  opacity: 0.5;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   HERO — VIDEO BACKGROUND
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: auto !important;
  min-height: 104vh !important;
  padding-top: 90px !important;
  padding-bottom: 45px !important;
  box-sizing: border-box !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #0a0a0a;
}
.hero-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.65);
  opacity: 0 !important;
  transition: opacity 0.5s ease !important;
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  will-change: opacity, transform;
  gap: 1.25rem !important;
}

/* ═══════════════════════════════════════════════════════════
   HERO INITIAL STATE — only video displays
   ═══════════════════════════════════════════════════════════ */
body:not(.is-scrolled) .hero-content,
body:not(.is-scrolled) .hero-overlay {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s !important;
}
body:not(.is-scrolled) .hero-content {
  transform: translateY(20px) !important;
}

/* ═══════════════════════════════════════════════════════════
   HERO REVEALED STATE — body.is-scrolled
   ═══════════════════════════════════════════════════════════ */
body.is-scrolled .hero-content {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}
body.is-scrolled .hero-overlay {
  opacity: 0.65 !important;
  visibility: visible !important;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem !important;
  font-size: clamp(3.2rem, 6.4vw, 5.4rem) !important;
  line-height: 1 !important;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 1rem !important;
  text-align: center;
}
.hero-title .hero-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  white-space: nowrap;
}
.hero-title .highlight { color: var(--accent); }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.3rem) !important;
  color: var(--text-dim);
  max-width: 720px !important;
  margin-bottom: 1.35rem !important;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem !important;
}
.btn-primary {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  padding: 0.85rem 1.75rem;
  background: var(--accent);
  color: var(--white);
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 700;
}
.btn-primary:hover {
  background: #e63400;
  box-shadow: 0 0 40px var(--accent-glow);
  transform: translateY(-1px);
}
.btn-primary:active { transform: scale(0.98); }
.btn-ghost {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  padding: 0.85rem 1.75rem;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--steel);
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 700;
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.04);
}
.hero-stats {
  display: flex;
  margin-top: 0.5rem !important;
  gap: 2rem !important;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--white);
}
.hero-stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 1.5rem;
  }
  .hero-stats { flex-direction: column; gap: 1rem !important; margin-top: 1.25rem !important; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════════════════════════ */
.section {
  padding: clamp(60px, 10vw, 140px) 0;
  position: relative;
}
.section-alt { background: var(--graphite); }
.section-header {
  margin-bottom: clamp(40px, 6vw, 80px);
}
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 0.95;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 50ch;
  margin-top: 16px;
  line-height: 1.7;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   SCHEDULE — KINETIC GRID
   ═══════════════════════════════════════════════════════════ */
.schedule-controls {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 32px;
  border: 2px solid var(--steel);
  width: 100%;
}
.sched-tab {
  flex: 1 1 0;
  min-width: 96px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.14em;
  padding: 12px 16px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  border-right: 2px solid var(--steel);
  transition: all 0.2s;
  text-transform: uppercase;
}
.sched-tab:last-child { border-right: none; }
.sched-tab:hover { color: var(--white); background: rgba(255,255,255,0.03); }
.sched-tab.active {
  background: var(--accent);
  color: var(--white);
}

.schedule-viewport {
  position: relative;
  overflow: hidden;
}
.schedule-panel {
  display: none;
}
.schedule-panel.active {
  display: block;
  animation: panel-in 0.35s var(--ease);
}
@keyframes panel-in {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.sched-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.class-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  background: var(--graphite-light);
  border-left: 3px solid var(--accent);
  transition: all 0.2s;
}
.class-card:hover {
  background: var(--steel);
  transform: translateY(-2px);
}
.class-time {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}
.class-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
}
.class-coach {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 500;
}
.class-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--steel);
}
.class-intensity {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.class-status {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  white-space: nowrap;
}
.status-open { background: rgba(34,197,94,0.12); color: #4ade80; }
.status-limited { background: rgba(255,59,0,0.12); color: var(--accent); }
.status-full { background: rgba(239,68,68,0.12); color: #f87171; }

@media (max-width: 700px) {
  .schedule-controls {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .sched-tab { flex-shrink: 0; min-width: 84px; }
  .class-meta { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════ */
.billing-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.billing-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  transition: color 0.2s;
}
.billing-label.active { color: var(--white); }
.toggle-track {
  width: 52px;
  height: 28px;
  background: var(--steel);
  border: 2px solid var(--muted);
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}
.toggle-track:hover { border-color: var(--white); }
.toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: var(--accent);
  transition: transform 0.3s var(--ease);
}
.toggle-track.on .toggle-thumb { transform: translateX(24px); }
.save-pill {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(255,59,0,0.1);
  padding: 4px 10px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s var(--ease);
}
.save-pill.show { opacity: 1; transform: translateX(0); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.price-card {
  background: var(--graphite);
  padding: clamp(32px, 4vw, 48px);
  position: relative;
  transition: all 0.3s var(--ease);
  border-top: 3px solid transparent;
}
.price-card:hover {
  background: var(--graphite-light);
}
.price-card.featured {
  border-top-color: var(--accent);
}
.price-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  padding: 6px 0;
}
.price-card.featured { padding-top: 56px; }
.price-tier {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.price-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--steel);
}
.price-currency {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-dim);
}
.price-value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  letter-spacing: -0.02em;
  line-height: 1;
  transition: all 0.4s var(--ease);
}
.price-period {
  font-size: 0.85rem;
  color: var(--muted);
  margin-left: 4px;
}
.price-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.price-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.price-feature::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  flex-shrink: 0;
}
.btn-plan {
  width: 100%;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  padding: 14px 24px;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  text-align: center;
}
.btn-plan-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-plan-primary:hover {
  background: #e63400;
  box-shadow: 0 0 30px var(--accent-glow);
}
.btn-plan-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--steel);
}
.btn-plan-outline:hover {
  border-color: var(--white);
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ═══════════════════════════════════════════════════════════
   TRAINERS
   ═══════════════════════════════════════════════════════════ */
.trainers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.trainer-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--graphite);
}
.trainer-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(80%) contrast(1.1);
  transition: all 0.5s var(--ease);
}
.trainer-card:hover img,
.trainer-card:focus-within img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.08);
}
.trainer-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(10,10,10,0.95));
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.4s var(--ease);
}
.trainer-card:hover .trainer-info,
.trainer-card:focus-within .trainer-info {
  transform: translateY(0);
  opacity: 1;
}
.trainer-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.trainer-role {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}
.trainer-bio {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 8px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .trainers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (hover: none) {
  .trainer-info {
    transform: translateY(0);
    opacity: 1;
    background: linear-gradient(transparent, rgba(10,10,10,0.9));
  }
}
@media (max-width: 500px) {
  .trainers-grid { grid-template-columns: 1fr; }
  .trainer-card { aspect-ratio: 4/3; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--steel);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 30ch;
}
.footer-heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}
.footer-list a:hover { color: var(--accent); }
.status-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  padding: 8px 14px;
  margin-bottom: 16px;
}
.status-live-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  animation: pulse 3.5s infinite ease-in-out !important;
}
.status-live-text { color: #4ade80; }
.status-live-sep { color: var(--muted); font-weight: 400; }
.status-live-period { color: var(--text-dim); font-weight: 400; }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* ═══════════════════════════════════════════════════════════
   BOOKING DRAWER
   ═══════════════════════════════════════════════════════════ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 520px;
  background: var(--void);
  border-left: 2px solid var(--steel);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.drawer-overlay.open .drawer { transform: translateX(0); }
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid var(--steel);
}
.drawer-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.drawer-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--graphite);
  border: 1px solid var(--steel);
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--text-dim);
  transition: all 0.2s;
}
.drawer-close:hover { color: var(--white); border-color: var(--white); }
.drawer-body {
  padding: 32px;
  flex: 1;
}
.drawer-subtitle {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 32px;
  line-height: 1.6;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--graphite);
  border: 2px solid var(--steel);
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-input::placeholder { color: var(--muted); }
.form-input:focus { border-color: var(--accent); }
.form-select {
  width: 100%;
  padding: 14px 16px;
  background: var(--graphite);
  border: 2px solid var(--steel);
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  appearance: none;
  cursor: pointer;
}
.form-select:focus { border-color: var(--accent); }
.form-select option { background: var(--graphite); }
.btn-submit {
  width: 100%;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  padding: 16px;
  background: var(--accent);
  color: var(--white);
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 12px;
  text-transform: uppercase;
}
.btn-submit:hover {
  background: #e63400;
  box-shadow: 0 0 30px var(--accent-glow);
}
.drawer-success {
  display: none;
  text-align: center;
  padding: 60px 32px;
}
.drawer-success.show { display: block; }
.success-check {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34,197,94,0.1);
  border: 2px solid #22c55e;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: #22c55e;
}
.drawer-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.drawer-success p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

@media (max-width: 560px) {
  .drawer { max-width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  body.is-scrolled .hero-overlay { background: rgba(10, 10, 10, 0.85); }
}

/* ═══════════════════════════════════════════════════════════
   SCROLLBAR
   ═══════════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--steel); }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }
