/* ═══════════════════════════════════════════════════════════════
   Profit AI Circuit — Volt Pacific Design System
   Syne + Figtree · obsidian · snow · electric teal · hot coral
   ═══════════════════════════════════════════════════════════════ */

:root {
  --obsidian: #070709;
  --obsidian-mid: #0f0f14;
  --obsidian-soft: #16161d;
  --snow: #F4F4F5;
  --snow-dim: #E4E4E7;
  --teal: #2DD4BF;
  --teal-soft: rgba(45, 212, 191, 0.14);
  --teal-glow: rgba(45, 212, 191, 0.35);
  --coral: #FB7185;
  --coral-soft: rgba(251, 113, 133, 0.12);
  --font-head: 'Syne', system-ui, sans-serif;
  --font-body: 'Figtree', system-ui, sans-serif;
  --radius: 6px;
  --page-gutter: clamp(1.25rem, 5vw, 2.75rem);
  --shadow-soft: 0 20px 50px rgba(7, 7, 9, 0.12);
  --shadow-card: 0 24px 60px rgba(7, 7, 9, 0.28);
  --glass: rgba(15, 15, 20, 0.72);
  --glass-border: rgba(244, 244, 245, 0.1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  line-height: 1.65;
  color: var(--obsidian);
  background: var(--snow);
  -webkit-font-smoothing: antialiased;
}

body.site-pac {
  background: var(--snow);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.container {
  width: min(1180px, 100%);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

/* ── Surfaces ── */
.surface-dark { background: var(--obsidian); color: var(--snow); }
.surface-light { background: var(--snow); color: var(--obsidian); }
.surface-soft { background: var(--snow-dim); color: var(--obsidian); }
.surface-mist { background: #ececee; color: var(--obsidian); }
.surface-accent { background: var(--teal); color: var(--obsidian); }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--glass-border);
  background: rgba(7, 7, 9, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  font-family: var(--font-head);
  font-weight: 800;
  text-decoration: none;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--snow);
}

.nav-list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.nav-list a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--snow);
  opacity: 0.72;
  transition: opacity 0.2s, color 0.2s;
}

.nav-list a:hover {
  opacity: 1;
  color: var(--teal);
}

.header-cta { margin-left: auto; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  color: var(--snow);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  background: currentColor;
  height: 2px;
  width: 100%;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after { content: ''; position: absolute; left: 0; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.72rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.btn:hover { transform: translateY(-1px); }

.btn-accent {
  background: var(--teal);
  color: var(--obsidian);
  border-color: var(--teal);
  box-shadow: 0 0 24px var(--teal-glow);
}

.btn-accent:hover {
  box-shadow: 0 0 36px var(--teal-glow);
}

.btn-ghost,
.btn-outline {
  background: transparent;
  border-color: rgba(244, 244, 245, 0.35);
  color: inherit;
}

.surface-light .btn-ghost,
.surface-light .btn-outline,
.surface-soft .btn-ghost,
.surface-soft .btn-outline {
  color: var(--obsidian);
  border-color: rgba(7, 7, 9, 0.25);
}

.btn-ghost:hover,
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.surface-light .btn-ghost:hover,
.surface-light .btn-outline:hover {
  border-color: var(--coral);
  color: var(--coral);
}

/* ── Typography helpers ── */
.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }

.section-head { margin-bottom: clamp(2rem, 4vw, 3rem); max-width: 42rem; }

.section-head h2,
.page-top h1,
.page-hero h1,
h1 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.1;
  margin: 0.35rem 0 0.75rem;
}

.section-head--light { color: var(--snow); }
.section-head--light p { opacity: 0.85; max-width: 38rem; }

.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--coral);
  margin: 0 0 0.5rem;
}

.eyebrow--teal,
.eyebrow--lime { color: var(--teal); }

.hero-badge,
.module-tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.module-tag {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius);
  background: var(--teal-soft);
  color: var(--teal);
  border: 1px solid rgba(45, 212, 191, 0.25);
}

.surface-dark .module-tag {
  background: rgba(45, 212, 191, 0.1);
}

.prose { max-width: 72ch; }
.container.prose,
.container .prose { max-width: none; }
.prose h2 { font-family: var(--font-head); margin-top: 2rem; font-weight: 700; }

/* ── Hero Pac — asymmetric split ── */
.hero-pac {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--obsidian);
  position: relative;
  overflow: hidden;
}

.hero-pac-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  min-height: inherit;
}

.hero-pac-panel {
  display: flex;
  align-items: center;
  padding: clamp(5rem, 10vh, 7rem) var(--page-gutter);
  position: relative;
  z-index: 2;
}

.glass-panel {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid var(--glass-border);
}

.hero-pac-panel-inner {
  max-width: 32rem;
}

.hero-pac-panel::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -20%;
  width: 60%;
  height: 50%;
  background: radial-gradient(ellipse, var(--teal-soft) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-pac-panel h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 1.25rem;
  color: var(--snow);
  font-weight: 800;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.75;
  opacity: 0.88;
  margin: 0 0 1.5rem;
  max-width: 36rem;
  color: var(--snow);
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(251, 113, 133, 0.4);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  color: var(--coral);
  background: var(--coral-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.trust-strip {
  font-size: 0.78rem;
  opacity: 0.6;
  margin: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--snow);
}

.hero-pac-visual {
  position: relative;
  min-height: 400px;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-pac-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: inherit;
}

.hero-pac-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, var(--teal-glow) 0%, transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(251, 113, 133, 0.25) 0%, transparent 50%),
    linear-gradient(135deg, rgba(7, 7, 9, 0.15) 0%, rgba(7, 7, 9, 0.55) 100%);
  pointer-events: none;
}

/* ── Stats band ── */
.home-metrics {
  padding: 0;
  border-bottom: 1px solid rgba(244, 244, 245, 0.06);
}

.stats-row,
.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(244, 244, 245, 0.06);
}

.stat,
.metric {
  background: var(--obsidian-mid);
  padding: clamp(1.5rem, 3vw, 2.25rem) var(--page-gutter);
  text-align: center;
}

.stat-value,
.metric-value {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--teal);
}

.stat-label,
.metric-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-top: 0.35rem;
  color: var(--snow);
}

/* ── Split sections ── */
.split-section,
.home-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split-section--reverse,
.home-split--reverse { direction: rtl; }
.split-section--reverse > *,
.home-split--reverse > * { direction: ltr; }

.frame-photo {
  margin: 0;
  position: relative;
}

.frame-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.frame-photo--accent img {
  outline: 1px solid rgba(45, 212, 191, 0.4);
  outline-offset: 6px;
}

.frame-photo figcaption {
  margin-top: 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
  font-weight: 600;
}

/* ── Pillar / cluster cards ── */
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.pillar {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius);
  background: var(--snow);
  border: 1px solid rgba(7, 7, 9, 0.06);
  box-shadow: var(--shadow-soft);
}

.pillar h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin: 0.5rem 0 0.75rem;
  font-weight: 700;
}

.home-clusters-extra p:first-child { margin-top: 0; }

.home-experience h2 {
  font-family: var(--font-head);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  margin: 0 0 1rem;
  line-height: 1.15;
  font-weight: 700;
}

/* ── Outcomes / pull quote ── */
.home-outcomes {
  background: linear-gradient(160deg, var(--obsidian) 0%, var(--obsidian-soft) 100%);
  position: relative;
  overflow: hidden;
}

.home-outcomes::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 45%;
  height: 120%;
  background: radial-gradient(circle, var(--teal-soft) 0%, transparent 65%);
  pointer-events: none;
}

.home-outcomes-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.pull-quote {
  margin: 0;
  padding: 0;
  border: none;
}

.pull-quote p {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.65rem);
  line-height: 1.18;
  font-weight: 700;
  color: var(--snow);
  margin: 0;
}

.pull-quote p::before {
  content: '—';
  display: block;
  color: var(--coral);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.home-outcomes .prose { opacity: 0.88; color: var(--snow); }

/* ── Lux module cards (glowing on dark) ── */
.home-modules,
.programs-catalog {
  background: var(--obsidian);
  padding-top: clamp(4rem, 7vw, 5.5rem);
}

.grid-3,
.lux-grid,
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.lux-card,
.circuit-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-radius: var(--radius);
  background: var(--obsidian-soft);
  color: var(--snow);
  border: 1px solid rgba(45, 212, 191, 0.15);
  box-shadow:
    0 0 0 1px rgba(45, 212, 191, 0.05),
    0 12px 40px rgba(7, 7, 9, 0.4),
    inset 0 1px 0 rgba(244, 244, 245, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}

.lux-card:hover,
.circuit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 212, 191, 0.35);
  box-shadow:
    0 0 32px var(--teal-soft),
    0 20px 50px rgba(7, 7, 9, 0.5),
    inset 0 1px 0 rgba(244, 244, 245, 0.06);
}

.lux-card--featured,
.circuit-card--featured {
  border-color: rgba(251, 113, 133, 0.45);
  box-shadow:
    0 0 28px var(--coral-soft),
    0 16px 48px rgba(7, 7, 9, 0.45);
}

.lux-card h3,
.circuit-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0.5rem 0 0.65rem;
  line-height: 1.2;
}

.lux-card .price,
.circuit-card .price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--teal);
  margin: 0 0 0.85rem;
  letter-spacing: 0.04em;
}

.lux-card p:last-of-type,
.circuit-card p:last-of-type { flex: 1; margin-bottom: 1.25rem; }

.card-link {
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--coral);
  align-self: flex-start;
  transition: color 0.2s;
}

.card-link:hover { color: var(--teal); }

/* ── Path track (programs) ── */
.path-track {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.path-step {
  flex: 1;
  min-width: 3.5rem;
  text-align: center;
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius);
  background: rgba(244, 244, 245, 0.04);
  border: 1px solid rgba(244, 244, 245, 0.1);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--snow);
}

.path-step--capstone {
  background: var(--coral-soft);
  border-color: rgba(251, 113, 133, 0.35);
  color: var(--coral);
}

/* ── Studio layout ── */
.studio-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.studio-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin: 0 0 1rem;
  font-weight: 700;
}

.studio-copy .btn { margin-top: 1.25rem; }
.studio-photo img { aspect-ratio: 16 / 11; }

.studio-float {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--obsidian);
  color: var(--snow);
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  max-width: 260px;
  border: 1px solid rgba(45, 212, 191, 0.2);
}

.studio-float-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.studio-float p { margin: 0; font-size: 0.92rem; line-height: 1.5; }

.home-disclaimer h2 {
  font-family: var(--font-head);
  font-size: 1.65rem;
  margin-top: 0;
  font-weight: 700;
}

/* ── Inner page hero — page-top ── */
.page-top,
.page-hero-lux {
  position: relative;
  min-height: clamp(340px, 52vh, 520px);
  display: flex;
  align-items: flex-end;
  background: var(--obsidian);
  background-size: cover;
  background-position: center 30%;
  isolation: isolate;
  overflow: hidden;
}

.page-top::before,
.page-hero-lux::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(155deg, rgba(7, 7, 9, 0.94) 0%, rgba(7, 7, 9, 0.55) 50%, rgba(7, 7, 9, 0.9) 100%),
    radial-gradient(circle at 80% 20%, var(--teal-soft) 0%, transparent 50%);
  z-index: 0;
}

.page-top::after,
.page-hero-lux::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--page-gutter);
  right: var(--page-gutter);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  z-index: 1;
}

.page-top .container,
.page-hero-lux .container {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(4.5rem, 12vh, 7rem);
  max-width: 44rem;
}

.page-top h1,
.page-hero-lux h1 {
  font-size: clamp(2.35rem, 5vw, 3.5rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  font-weight: 800;
  color: var(--snow);
}

.page-hero {
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  background: var(--obsidian);
  color: var(--snow);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  margin: 0;
}

/* ── Values row (about) ── */
.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.value-card {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-radius: var(--radius);
  background: var(--snow);
  border: 1px solid rgba(7, 7, 9, 0.06);
  box-shadow: var(--shadow-soft);
}

.value-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--coral);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.value-card h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  margin: 0 0 0.65rem;
  font-weight: 700;
}

.value-card p { margin: 0; font-size: 0.95rem; }

.note-panel,
.memo-panel {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius);
  border-left: 3px solid var(--teal);
  background: rgba(244, 244, 245, 0.85);
  font-size: 0.92rem;
  opacity: 0.9;
}

.note-panel p,
.memo-panel p { margin: 0; }

/* ── CTA band ── */
.cta-band { text-align: center; }

.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  margin: 0.35rem auto 0.75rem;
  max-width: 28rem;
  font-weight: 700;
}

.cta-band-lead {
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  opacity: 0.85;
}

.cta-band .hero-actions { justify-content: center; }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid rgba(7, 7, 9, 0.08);
  padding: 1.25rem 0;
}

.faq-item h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

/* ── Forms ── */
.contact-form label {
  display: block;
  margin: 0.75rem 0 0.35rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(7, 7, 9, 0.15);
  border-radius: var(--radius);
  font: inherit;
  background: var(--snow);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-soft);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(7, 7, 9, 0.06);
  background: var(--snow);
  box-shadow: var(--shadow-soft);
}

.surface-dark .card {
  background: var(--obsidian-soft);
  border-color: rgba(244, 244, 245, 0.1);
  color: var(--snow);
}

/* ── Reveal animation ── */
.reveal { opacity: 1; transform: none; }

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1rem var(--page-gutter);
  border-top: 1px solid rgba(45, 212, 191, 0.3);
  background: rgba(7, 7, 9, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--snow);
}

.cookie-inner {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.cookie-inner a { color: var(--teal); }

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.cookie-custom label {
  display: block;
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

.hidden { display: none !important; }

/* ── Footer ── */
.site-footer {
  padding: 3rem 0 2rem;
  margin-top: 0;
  border-top: 1px solid rgba(244, 244, 245, 0.08);
  background: var(--obsidian);
  color: var(--snow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer a:hover { color: var(--coral); }

.footer-note { opacity: 0.65; font-size: 0.88rem; }

.footer-disclaimer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(244, 244, 245, 0.08);
  font-size: 0.88rem;
  opacity: 0.75;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.legal-table th,
.legal-table td {
  border: 1px solid rgba(7, 7, 9, 0.12);
  padding: 0.5rem;
  text-align: left;
}

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-pac-grid { grid-template-columns: 1fr; }
  .hero-pac-visual {
    clip-path: none;
    min-height: 280px;
    order: -1;
  }
  .hero-pac-panel { padding-top: 2rem; padding-bottom: 3rem; }
  .glass-panel { border-right: none; border-bottom: 1px solid var(--glass-border); }
  .hero-pac-panel-inner { max-width: none; }

  .stats-row,
  .metrics-row { grid-template-columns: 1fr; }

  .split-section,
  .split-section--reverse,
  .home-split,
  .home-split--reverse,
  .pillar-grid,
  .home-outcomes-inner,
  .studio-layout,
  .grid-2,
  .grid-3,
  .lux-grid,
  .programs-grid,
  .values-row,
  .footer-grid { grid-template-columns: 1fr; }

  .home-split--reverse,
  .split-section--reverse { direction: ltr; }

  .path-track { flex-direction: column; }
  .path-step { flex: none; }

  .studio-float {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1rem var(--page-gutter);
    background: var(--obsidian);
    border-bottom: 1px solid var(--glass-border);
  }

  .nav-list.is-open { display: flex; }
  .nav-toggle { display: block; margin-left: auto; }
  .header-cta { display: none; }
}
