:root {
  --bg: #0b0710;
  --bg-2: #130d1d;
  --panel: #171022;
  --panel-2: #21142e;
  --text: #fbf7ff;
  --muted: #cfc3d9;
  --soft: #f7f1fb;
  --ink: #17111f;
  --purple: #a735ff;
  --purple-2: #d19aff;
  --green: #7cff08;
  --green-2: #caff93;
  --white: #ffffff;
  --gold: #d8b46a;
  --danger: #ff7d91;
  --shadow: 0 25px 80px rgba(0,0,0,.38);
  --shadow-soft: 0 16px 45px rgba(18, 8, 31, .18);
  --radius: 24px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-h: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 { line-height: 1.05; margin: 0 0 1rem; letter-spacing: -.035em; }
h1 { font-size: clamp(2.65rem, 6vw, 5.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
button, input, textarea, select { font: inherit; }

.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.container.narrow { width: min(820px, calc(100% - 40px)); }
.center { text-align: center; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 14px;
  background: var(--green);
  color: #050307;
  padding: .8rem 1rem;
  z-index: 9999;
  border-radius: 999px;
  font-weight: 800;
}
.skip-link:focus { left: 14px; }

.top-strip {
  background: linear-gradient(90deg, rgba(124,255,8,.9), rgba(167,53,255,.95));
  color: #08050b;
  font-weight: 800;
  font-size: .9rem;
}
.top-strip-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  min-height: 36px;
}
.top-strip a { text-decoration: underline; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 7, 15, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand, .footer-brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-weight: 900;
  line-height: 1;
}
.brand img, .footer-brand img { filter: drop-shadow(0 0 18px rgba(167,53,255,.32)); }
.brand span { display: grid; gap: .15rem; }
.brand strong { font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; }
.brand small { color: var(--green); letter-spacing: .14em; text-transform: uppercase; font-weight: 800; font-size: .7rem; }
.primary-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: .35rem;
  padding: 0;
  margin: 0;
}
.primary-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .7rem .95rem;
  border-radius: 999px;
  color: rgba(255,255,255,.86);
  font-weight: 800;
  transition: .2s ease;
}
.primary-menu a:hover, .primary-menu a.active {
  color: var(--white);
  background: rgba(255,255,255,.09);
}
.primary-menu .nav-book {
  background: linear-gradient(135deg, var(--green), var(--purple));
  color: #09050e;
  box-shadow: 0 12px 28px rgba(124,255,8,.18);
}
.primary-menu .nav-book:hover { transform: translateY(-1px); color: #050307; background: linear-gradient(135deg, var(--green), #d7ff9a); }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: var(--white);
  border-radius: 14px;
  padding: 11px;
}
.menu-toggle span { display: block; height: 2px; background: currentColor; margin: 5px 0; border-radius: 999px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 999px;
  padding: .95rem 1.3rem;
  min-height: 50px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--green), var(--purple)); color: #09050e; box-shadow: 0 18px 40px rgba(124,255,8,.18); }
.btn-primary:hover { box-shadow: 0 22px 52px rgba(167,53,255,.25); }
.btn-secondary { background: var(--ink); color: var(--white); border-color: rgba(167,53,255,.35); box-shadow: 0 18px 45px rgba(12,4,20,.18); }
.btn-ghost { border-color: rgba(12,8,18,.18); background: rgba(255,255,255,.78); color: var(--ink); }
.btn-ghost-light { border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.08); color: var(--white); }
.btn-small { padding: .75rem 1rem; min-height: 42px; font-size: .9rem; }
.btn.full { width: 100%; }
.text-link { color: var(--purple); font-weight: 900; text-decoration: underline; text-decoration-color: rgba(167,53,255,.35); text-underline-offset: 5px; }
.text-link:hover { color: #7d20d0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: 1rem;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  font-size: .78rem;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: currentColor; border-radius: 99px; }
.lead { font-size: clamp(1.05rem, 2vw, 1.35rem); color: rgba(255,255,255,.86); max-width: 66ch; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-heading { margin-bottom: 2.4rem; }
.section-heading p { max-width: 760px; margin-left: auto; margin-right: auto; color: #5d5265; font-size: 1.08rem; }
.light-heading p { color: rgba(255,255,255,.74); }

.hero {
  position: relative;
  min-height: calc(100vh - 114px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,5,12,.9) 0%, rgba(8,5,12,.62) 45%, rgba(8,5,12,.12) 100%),
    url('../img/hero-bg.webp') center/cover no-repeat;
  z-index: -2;
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto -10% -22% -10%;
  height: 42%;
  background: radial-gradient(circle, rgba(167,53,255,.24), transparent 66%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .65fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero-content h1 { max-width: 10ch; text-shadow: 0 14px 40px rgba(0,0,0,.28); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin: 2rem 0; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  max-width: 760px;
}
.trust-row span {
  display: grid;
  gap: .15rem;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 1rem;
  color: rgba(255,255,255,.78);
}
.trust-row strong { color: var(--green); font-size: 1.15rem; }
.hero-card {
  position: relative;
  align-self: end;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
  background: rgba(255,255,255,.1);
}
.hero-card img { width: 100%; height: min(70vh, 720px); object-fit: cover; object-position: center top; }
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8,5,12,.78));
  pointer-events: none;
}
.hero-card-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(9,6,14,.78);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.16);
  display: grid;
  gap: .2rem;
}
.hero-card-badge span { color: rgba(255,255,255,.78); font-size: .9rem; }
.hero-card-badge strong { font-size: 1.3rem; color: var(--white); }

.intro-strip { background: var(--soft); color: var(--ink); padding: clamp(2.6rem, 5vw, 4.5rem) 0; }
.intro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.intro-card {
  background: var(--white);
  border: 1px solid rgba(19,13,29,.08);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
}
.intro-card h2 { font-size: 1.35rem; letter-spacing: -.02em; }
.intro-card p { color: #5d5265; margin: 0; }
.highlight-card { background: linear-gradient(135deg, #17111f, #2a1640); color: var(--white); }
.highlight-card p { color: rgba(255,255,255,.78); }
.mini-icon, .service-icon, .values-grid span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: radial-gradient(circle at 30% 20%, var(--green), var(--purple));
  color: #07040b;
  font-weight: 1000;
  margin-bottom: 1rem;
  box-shadow: 0 16px 35px rgba(167,53,255,.22);
}

.split-section { background: #fff; color: var(--ink); }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.image-stack { position: relative; padding: 1rem; }
.stack-main, .rounded-media, .page-hero-image {
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(19,13,29,.08);
  object-fit: cover;
}
.stack-main { width: 100%; aspect-ratio: 4/3; }
.stack-float {
  position: absolute;
  right: -6px;
  bottom: -20px;
  width: clamp(110px, 18vw, 170px);
  filter: drop-shadow(0 18px 35px rgba(0,0,0,.25));
}
.section-copy p { color: #5d5265; font-size: 1.06rem; }
.section-copy .eyebrow { color: var(--purple); }
.check-list { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; gap: .8rem; }
.check-list li { position: relative; padding-left: 2rem; color: #3f3548; font-weight: 750; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: .05rem; color: var(--purple); font-weight: 1000; }

.services-preview, .faq-section, .bio-section { background: var(--soft); color: var(--ink); }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.1rem; }
.compact-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(19,13,29,.08);
  border-radius: var(--radius);
  padding: 1.55rem;
  box-shadow: var(--shadow-soft);
  min-height: 245px;
}
.service-card.large { min-height: 300px; }

/* Service card readability fix */
.service-card h3 {
  letter-spacing: -.02em;
  color: #119b16;
  font-weight: 900;
  text-shadow: none;
}

.service-card p {
  color: #3f3548;
  margin-bottom: 1rem;
  font-weight: 500;
}

.keyword-line {
  color: #6f18c9;
  font-size: .84rem;
  font-weight: 950;
}
.section-actions { margin-top: 2rem; }

.pricing-section {
  background:
    linear-gradient(180deg, rgba(11,7,16,.86), rgba(11,7,16,.94)),
    url('../img/neon-abstract.webp') center/cover no-repeat;
  color: var(--white);
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.price-card {
  position: relative;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 30px;
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: .55rem;
  min-height: 360px;
}
.price-card.featured {
  background: linear-gradient(180deg, rgba(124,255,8,.16), rgba(167,53,255,.16));
  transform: translateY(-10px);
  border-color: rgba(124,255,8,.32);
}
.price-card h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); }
.price-card p { color: rgba(255,255,255,.76); }
.price { font-size: clamp(2rem, 4vw, 3.15rem); font-weight: 1000; color: var(--green) !important; letter-spacing: -.055em; margin-bottom: .2rem; }
.price-card .btn { margin-top: auto; }
.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--green);
  color: #060308;
  font-weight: 1000;
  border-radius: 999px;
  padding: .4rem .7rem;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.video-section { background: #fff; color: var(--ink); }
.video-shell {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.video-placeholders { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.video-card {
  min-height: 315px;
  border-radius: 30px;
  background: linear-gradient(140deg, #140c20, #241336 45%, #0a0710);
  color: var(--white);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.video-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 20%, rgba(124,255,8,.2), transparent 35%), radial-gradient(circle at 20% 80%, rgba(167,53,255,.24), transparent 38%);
}
.video-card h3, .video-card p, .play-icon { position: relative; z-index: 1; }
.video-card p { color: rgba(255,255,255,.72); margin: 0; }
.play-icon {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #050307;
  box-shadow: 0 0 40px rgba(124,255,8,.26);
}

.cta-band { background: linear-gradient(135deg, #17111f, #2a1640); color: var(--white); padding: clamp(3.4rem, 6vw, 5rem) 0; }
.cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.cta-grid p { color: rgba(255,255,255,.76); max-width: 720px; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: flex-end; }

.page-hero {
  background:
    linear-gradient(120deg, rgba(10,7,16,.94), rgba(29,15,44,.9)),
    url('../img/neon-abstract.webp') center/cover no-repeat;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  color: var(--white);
  overflow: hidden;
}
.compact-hero { padding-bottom: clamp(3rem, 6vw, 5rem); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .78fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.page-hero-grid.reverse { grid-template-columns: minmax(300px, .78fr) minmax(0, 1fr); }
.page-hero-image { width: 100%; aspect-ratio: 4/3; border-color: rgba(255,255,255,.12); }
.page-hero-image.portrait { aspect-ratio: 1/1; object-position: center top; }
.contact-pills { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }
.contact-pills a {
  border: 1px solid rgba(255,255,255,.17);
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  padding: .8rem 1rem;
  font-weight: 900;
}
.process-section, .values-section { background: #fff; color: var(--ink); }
.process-grid, .faq-grid, .bio-grid, .contact-grid, .policy-layout { display: grid; gap: clamp(2rem, 5vw, 4rem); }
.process-grid { grid-template-columns: .75fr 1.25fr; }
.steps { display: grid; gap: 1rem; }
.steps article {
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--soft);
  border: 1px solid rgba(19,13,29,.08);
  box-shadow: var(--shadow-soft);
}
.steps span { color: var(--purple); font-weight: 1000; letter-spacing: .12em; }
.steps p { color: #5d5265; margin: 0; }
.faq-grid { grid-template-columns: .75fr 1.25fr; }
.faq-list { display: grid; gap: .8rem; }
details {
  background: #fff;
  border: 1px solid rgba(19,13,29,.08);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-soft);
}
summary { cursor: pointer; font-weight: 950; font-size: 1.05rem; }
details p { color: #5d5265; margin: 1rem 0 0; }

.about-hero .lead { max-width: 54ch; }
.bio-grid { grid-template-columns: .45fr 1fr; align-items: start; }
.bio-card {
  position: sticky;
  top: 130px;
  background: linear-gradient(150deg, #17111f, #2a1640);
  color: var(--white);
  border-radius: 32px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,.12);
}
.bio-card img { margin-bottom: 1rem; }
.bio-card p { color: rgba(255,255,255,.78); margin: 0; }
.long-copy p { font-size: clamp(1.1rem, 2vw, 1.28rem); color: #3f3548; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.values-grid article {
  background: #fff;
  border: 1px solid rgba(19,13,29,.08);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.values-grid p { color: #5d5265; margin: 0; }
.soft-bg { background: var(--soft); }
.rounded-media { width: 100%; aspect-ratio: 4/3; }

.contact-section { background: var(--soft); color: var(--ink); }
.contact-grid { grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); align-items: start; }
.form-panel, .sidebar-card, .quick-book-card, .error-panel {
  background: #fff;
  border: 1px solid rgba(19,13,29,.08);
  border-radius: 30px;
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-soft);
}
.quick-book-card { color: var(--ink); }
.quick-book-card p { color: #5d5265; }
.quick-book-card img { margin-bottom: 1rem; }
.lead-form { display: grid; gap: 1rem; margin-top: 1.4rem; }
.lead-form.compact { margin-top: 1rem; gap: .75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .45rem; color: #3f3548; font-weight: 850; }
.field span { font-size: .92rem; }
.field small { color: #6d6174; font-weight: 700; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(19,13,29,.14);
  border-radius: 16px;
  min-height: 52px;
  padding: .9rem 1rem;
  background: #fbf8ff;
  color: var(--ink);
  outline: none;
  transition: box-shadow .2s ease, border-color .2s ease;
}
textarea { resize: vertical; min-height: 150px; }
input:focus, textarea:focus, select:focus { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(167,53,255,.14); }
.check-field { display: grid; grid-template-columns: auto 1fr; gap: .65rem; align-items: start; color: #5d5265; font-size: .92rem; }
.check-field input { width: 18px; height: 18px; min-height: 0; margin-top: .23rem; accent-color: var(--purple); }
.hidden-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-sidebar { display: grid; gap: 1rem; }
.contact-list, .footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; }
.contact-list li { display: grid; gap: .15rem; }
.contact-list strong { color: var(--purple); }
.contact-list a, .footer-list a { text-decoration: underline; text-underline-offset: 4px; }
.social-stack, .footer-social, .social-links { display: flex; flex-wrap: wrap; gap: .6rem; }
.social-stack { display: grid; }
.social-stack a, .footer-social a, .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  padding: .55rem .8rem;
  background: rgba(167,53,255,.11);
  color: var(--purple);
  font-weight: 900;
}
.sidebar-card p { color: #5d5265; }

.policy-section { background: var(--soft); color: var(--ink); }
.policy-layout { grid-template-columns: 280px 1fr; align-items: start; }
.policy-nav {
  position: sticky;
  top: 130px;
  background: #fff;
  border: 1px solid rgba(19,13,29,.08);
  border-radius: 26px;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: .4rem;
}
.policy-nav a:not(.btn) {
  padding: .8rem .9rem;
  border-radius: 14px;
  font-weight: 900;
  color: #3f3548;
}
.policy-nav a:not(.btn):hover { background: var(--soft); color: var(--purple); }
.policy-content {
  background: #fff;
  border: 1px solid rgba(19,13,29,.08);
  border-radius: 30px;
  padding: clamp(1.4rem, 4vw, 3rem);
  box-shadow: var(--shadow-soft);
}
.policy-content section + section { margin-top: 2.4rem; padding-top: 2rem; border-top: 1px solid rgba(19,13,29,.08); }
.policy-content p, .policy-content li { color: #51475a; }
.policy-content li { margin-bottom: .7rem; }

.thank-you-hero { min-height: 68vh; display: grid; align-items: center; }
.thank-logo { margin: 0 auto 1rem; filter: drop-shadow(0 0 25px rgba(124,255,8,.22)); }
.center-actions { justify-content: center; }
.notice {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  padding: 1rem;
  color: var(--green);
}

.site-footer {
  background: #08050c;
  color: rgba(255,255,255,.78);
  padding: clamp(3rem, 6vw, 5rem) 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .9fr .95fr; gap: 2rem; align-items: start; }
.footer-brand { margin-bottom: 1rem; color: var(--white); font-size: 1.15rem; }
.site-footer h2 { font-size: 1.05rem; color: var(--white); letter-spacing: .02em; }
.site-footer p { color: rgba(255,255,255,.68); }
.footer-list li { color: rgba(255,255,255,.7); }
.footer-cta {
  background: linear-gradient(145deg, rgba(124,255,8,.12), rgba(167,53,255,.12));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 1.2rem;
}
.copyright {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .9rem;
}
.copyright p { margin: 0; }

.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,3,8,.72);
  backdrop-filter: blur(8px);
  z-index: 88;
}
.exit-popup {
  position: fixed;
  z-index: 89;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(940px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  background: #fff;
  color: var(--ink);
  border-radius: 32px;
  box-shadow: 0 30px 100px rgba(0,0,0,.45);
  display: grid;
  grid-template-columns: .72fr 1fr;
  border: 1px solid rgba(255,255,255,.12);
}
.exit-popup[hidden], .exit-overlay[hidden] { display: none; }
.popup-art {
  background:
    linear-gradient(180deg, rgba(10,7,16,.12), rgba(10,7,16,.82)),
    url('../img/studio-card.webp') center/cover no-repeat;
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 2rem;
}
.popup-art img { filter: drop-shadow(0 18px 40px rgba(0,0,0,.35)); }
.popup-copy { padding: clamp(1.3rem, 4vw, 2.4rem); }
.popup-copy h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
.popup-copy p { color: #5d5265; }
.popup-copy .eyebrow { color: var(--purple); }
.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #100a18;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.reveal { opacity: 0; transform: translateY(18px); animation: reveal .7s ease forwards; }
.delay-1 { animation-delay: .15s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition: none !important; }
}

@media (max-width: 1000px) {
  .hero-grid, .page-hero-grid, .page-hero-grid.reverse, .split-grid, .video-shell, .process-grid, .faq-grid, .bio-grid, .contact-grid, .policy-layout, .cta-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-content h1 { max-width: 11ch; }
  .hero-card { max-width: 520px; margin: 0 auto; }
  .service-grid, .pricing-grid, .values-grid, .intro-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .policy-nav, .bio-card { position: static; }
  .cta-actions { justify-content: flex-start; }
}

@media (max-width: 780px) {
  .top-strip-inner { justify-content: center; text-align: center; flex-wrap: wrap; padding: .45rem 0; }
  .top-strip-inner span { display: none; }
  .menu-toggle { display: inline-block; }
  .primary-menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(13,9,20,.98);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;
    padding: .8rem;
    box-shadow: var(--shadow);
  }
  .primary-menu.open { display: flex; }
  .primary-menu a { justify-content: center; }
  .hero-bg { background-image: linear-gradient(180deg, rgba(8,5,12,.87), rgba(8,5,12,.72)), url('../img/hero-bg-mobile.webp'); }
  .hero-content h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .trust-row { grid-template-columns: 1fr; }
  .hero-card { transform: none; }
  .hero-card img { height: 560px; }
  .service-grid, .pricing-grid, .values-grid, .intro-grid, .footer-grid, .video-placeholders, .form-row { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .footer-grid { gap: 2.4rem; }
  .copyright { flex-direction: column; }
  .exit-popup { grid-template-columns: 1fr; }
  .popup-art { min-height: 180px; }
}

@media (max-width: 520px) {
  .container, .container.narrow { width: min(100% - 28px, var(--container)); }
  h1 { letter-spacing: -.045em; }
  .section { padding: 3.5rem 0; }
  .nav-inner { min-height: 72px; }
  .brand strong { font-size: .9rem; }
  .brand small { font-size: .62rem; }
  .brand img { width: 50px; height: 50px; }
  .hero { padding: 3.4rem 0; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .hero-card img { height: 470px; }
  .page-hero { padding: 3.4rem 0; }
  .form-panel, .sidebar-card, .policy-content, .quick-book-card { border-radius: 22px; }
  .exit-popup { width: calc(100% - 18px); border-radius: 24px; }
}

.vimeo-embed { position: relative; padding-top: 56.25%; border-radius: 24px; overflow: hidden; background: #0b0710; box-shadow: var(--shadow-soft); }
.vimeo-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }


/* =========================================================
   Site-wide readability and contrast patch
   Added to improve text legibility on light and dark sections.
   ========================================================= */

/* Stronger default contrast for light sections */
.split-section,
.video-section,
.process-section,
.values-section,
.contact-section,
.policy-section,
.services-preview,
.faq-section,
.bio-section,
.intro-strip,
.soft-bg {
  color: #17111f;
}

.split-section p,
.video-section p,
.process-section p,
.values-section p,
.contact-section p,
.policy-section p,
.services-preview p,
.faq-section p,
.bio-section p,
.intro-strip p,
.soft-bg p,
.section-heading p,
.section-copy p,
.steps p,
details p,
.values-grid p,
.quick-book-card p,
.sidebar-card p,
.popup-copy p,
.policy-content p,
.policy-content li {
  color: #34283d;
  font-weight: 500;
}

/* Make all major headings on light sections clearly readable */
.split-section h1,
.split-section h2,
.split-section h3,
.video-section h1,
.video-section h2,
.video-section h3,
.process-section h1,
.process-section h2,
.process-section h3,
.values-section h1,
.values-section h2,
.values-section h3,
.contact-section h1,
.contact-section h2,
.contact-section h3,
.policy-section h1,
.policy-section h2,
.policy-section h3,
.services-preview h1,
.services-preview h2,
.services-preview h3,
.faq-section h1,
.faq-section h2,
.faq-section h3,
.bio-section h1,
.bio-section h2,
.bio-section h3,
.intro-strip h1,
.intro-strip h2,
.intro-strip h3,
.soft-bg h1,
.soft-bg h2,
.soft-bg h3 {
  color: #17111f;
  text-shadow: none;
}

/* Service cards */
.service-card {
  background: #ffffff;
}

.service-card h3 {
  color: #119b16;
  font-weight: 950;
  text-shadow: none;
}

.service-card p {
  color: #34283d;
  font-weight: 550;
}

.keyword-line {
  color: #5f12b5;
  font-weight: 950;
}

/* Intro and value cards */
.intro-card h2,
.values-grid h3,
.steps h3,
.sidebar-card h3,
.quick-book-card h3,
.form-panel h2 {
  color: #17111f;
}

.intro-card p,
.values-grid p,
.steps p,
.sidebar-card p,
.quick-book-card p {
  color: #34283d;
  font-weight: 500;
}

/* Dark sections: make body copy brighter without losing the theme */
.hero .lead,
.hero-content p,
.page-hero .lead,
.cta-grid p,
.price-card p,
.video-card p,
.bio-card p,
.highlight-card p,
.site-footer p,
.footer-list li {
  color: rgba(255, 255, 255, .9);
}

.page-hero h1,
.page-hero h2,
.page-hero h3,
.hero h1,
.hero h2,
.hero h3,
.cta-band h2,
.pricing-section h2,
.pricing-section h3,
.video-card h3,
.bio-card h3,
.site-footer h2 {
  color: #ffffff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, .32);
}

/* Trust row cards */
.trust-row span {
  color: rgba(255, 255, 255, .88);
}

.trust-row strong {
  color: var(--green);
  text-shadow: 0 0 18px rgba(124,255,8,.18);
}

/* Pricing card clarity */
.price-card h3 {
  color: #ffffff;
}

.price {
  color: var(--green) !important;
  text-shadow: 0 0 18px rgba(124,255,8,.2);
}

/* Policy page and FAQ */
.policy-nav a:not(.btn),
summary,
.check-list li,
.field,
.contact-list li {
  color: #251b2e;
}

.contact-list strong {
  color: #5f12b5;
}

.policy-content p,
.policy-content li {
  color: #34283d;
  font-weight: 500;
}

/* Links on light backgrounds */
.text-link,
.contact-list a,
.policy-content a {
  color: #5f12b5;
  font-weight: 950;
}

/* Forms */
input,
textarea,
select {
  color: #17111f;
  background: #ffffff;
}

input::placeholder,
textarea::placeholder {
  color: #6c6074;
}

/* Footer link readability */
.site-footer a,
.footer-list a,
.footer-social a {
  color: #ffffff;
}

.footer-social a,
.social-links a {
  color: #5f12b5;
  background: rgba(167,53,255,.14);
}

/* Mobile: keep text readable on tighter screens */
@media (max-width: 780px) {
  .hero .lead,
  .page-hero .lead,
  .cta-grid p,
  .price-card p,
  .video-card p {
    color: rgba(255,255,255,.92);
  }

  .section-heading p,
  .section-copy p,
  .service-card p,
  .intro-card p,
  .values-grid p,
  .steps p,
  details p {
    color: #34283d;
  }
}


/* =========================================================
   Targeted fix: headings that can invert or inherit badly
   in light/dark/incognito/browser-forced color modes.
   ========================================================= */

/* Middle intro card: "Performance bodywork" must stay visible on dark card */
.intro-card.highlight-card,
.highlight-card {
  background: linear-gradient(135deg, #17111f, #2a1640);
  color: #ffffff;
}

.intro-card.highlight-card h1,
.intro-card.highlight-card h2,
.intro-card.highlight-card h3,
.highlight-card h1,
.highlight-card h2,
.highlight-card h3 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: 0 8px 22px rgba(0,0,0,.35) !important;
}

.intro-card.highlight-card p,
.highlight-card p {
  color: rgba(255,255,255,.90) !important;
  -webkit-text-fill-color: rgba(255,255,255,.90) !important;
}

/* Contact page booking card: "Prefer to skip the form?" must stay dark on white card */
.quick-book-card,
.contact-section .quick-book-card {
  background: #ffffff;
  color: #17111f;
}

.quick-book-card h1,
.quick-book-card h2,
.quick-book-card h3,
.contact-section .quick-book-card h1,
.contact-section .quick-book-card h2,
.contact-section .quick-book-card h3 {
  color: #17111f !important;
  -webkit-text-fill-color: #17111f !important;
  text-shadow: none !important;
}

.quick-book-card p,
.contact-section .quick-book-card p {
  color: #34283d !important;
  -webkit-text-fill-color: #34283d !important;
  font-weight: 500;
}

/* Prevent global dark-section heading rules from touching white cards */
.page-hero .quick-book-card h1,
.page-hero .quick-book-card h2,
.page-hero .quick-book-card h3 {
  color: #17111f !important;
  -webkit-text-fill-color: #17111f !important;
  text-shadow: none !important;
}

