:root {
  --ink: #0b0d10;
  --ink-2: #15181d;
  --steel: #272b32;
  --muted: #6f7782;
  --line: #e3e5e8;
  --paper: #f7f7f4;
  --white: #ffffff;
  --red: #d71935;
  --red-dark: #a80f25;
  --gold: #c9a55a;
  --shadow: 0 22px 60px rgba(8, 10, 12, .16);
  --radius: 8px;
  --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", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: .98;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 950;
  text-transform: uppercase;
}

h2 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 950;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 900;
  text-transform: uppercase;
}

.lead {
  max-width: 720px;
  color: #d9dde2;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.section-lead {
  max-width: 710px;
  color: #4c535c;
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 28px rgba(215, 25, 53, .28);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .06);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .12);
}

.btn-dark {
  color: var(--white);
  background: var(--ink);
}

.btn-light {
  color: var(--ink);
  background: var(--white);
}

/* ---- Topline ---- */

.topline {
  position: relative;
  z-index: 12;
  color: var(--white);
  background: var(--red);
}

.topline .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ---- Header ---- */

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: rgba(11, 13, 16, .82);
  backdrop-filter: blur(18px);
  transition: top .22s ease, background .22s ease, box-shadow .22s ease;
}

.has-topline .site-header {
  top: 42px;
}

.site-header.header-stuck {
  top: 0;
  background: rgba(11, 13, 16, .94);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  width: 236px;
  min-width: 180px;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-panel {
  display: none;
}

/* ---- Hero ---- */

.hero {
  position: relative;
  min-height: 70svh;
  padding: 150px 0 70px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  background: radial-gradient(circle at 85% 26%, rgba(215, 25, 53, .36), transparent 34%),
    linear-gradient(135deg, rgba(11, 13, 16, .88), rgba(11, 13, 16, .94));
}

.hero.compact {
  min-height: 68svh;
  padding-bottom: 86px;
}

/* ---- Hero mesh gradient (aurora blobs) ---- */

.hero-mesh::before,
.hero-mesh::after {
  content: "";
  position: absolute;
  inset: -25%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(38% 48% at 18% 28%, rgba(215, 25, 53, .55), transparent 58%),
    radial-gradient(42% 52% at 82% 18%, rgba(168, 15, 37, .42), transparent 62%),
    radial-gradient(35% 45% at 55% 78%, rgba(111, 119, 130, .3), transparent 65%);
  filter: blur(36px);
  animation: mesh-drift 12s ease-in-out infinite alternate;
}

.hero-mesh::after {
  background:
    radial-gradient(32% 42% at 72% 38%, rgba(215, 25, 53, .38), transparent 55%),
    radial-gradient(38% 48% at 28% 68%, rgba(111, 119, 130, .24), transparent 60%),
    radial-gradient(30% 40% at 50% 12%, rgba(168, 15, 37, .3), transparent 55%);
  filter: blur(48px);
  animation: mesh-drift 16s ease-in-out infinite alternate-reverse;
  animation-delay: -3s;
}

@keyframes mesh-drift {
  0%   { transform: translate(0, 0) scale(1) rotate(0deg); }
  33%  { transform: translate(6%, -5%) scale(1.12) rotate(2deg); }
  66%  { transform: translate(-5%, 6%) scale(1.08) rotate(-2deg); }
  100% { transform: translate(4%, 3%) scale(1.14) rotate(1deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mesh::before,
  .hero-mesh::after {
    animation: none;
  }
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 64vh;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(180deg, #000 50%, transparent 96%);
  mask-image: linear-gradient(180deg, #000 50%, transparent 96%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 64vh;
  background: linear-gradient(180deg, rgba(11, 13, 16, .25) 0%, rgba(11, 13, 16, .4) 95%, rgba(11, 13, 16, .95) 100%);
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .lead {
  text-shadow: 0 2px 20px rgba(0, 0, 0, .45);
}

@media (max-width: 720px) {
  .hero-video,
  .hero-overlay {
    height: 46vh;
  }
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(11, 13, 16, .96), rgba(11, 13, 16, .72) 52%, rgba(11, 13, 16, .92)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .055) 0 1px, transparent 1px 88px);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: center;
}

.hero-copy {
  max-width: 920px;
}

.hero-ctas,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 34px;
}

.hero-proof,
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 770px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.proof-item {
  padding: 20px 24px 20px 0;
}

.proof-item + .proof-item {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.proof-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 28px;
  line-height: 1;
}

.proof-item span {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card img {
  width: 84px;
  margin-bottom: 28px;
}

.hero-card h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 34px;
}

.hero-card p {
  color: rgba(255, 255, 255, .76);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 64vh;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(180deg, #000 50%, transparent 96%);
  mask-image: linear-gradient(180deg, #000 50%, transparent 96%);
}

picture.hero-bg {
  display: block;
  object-fit: initial;
}

picture.hero-bg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 720px) {
  .hero-bg {
    height: 46vh;
  }
}

.hero-card-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-card-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.hero-card-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  content: "+";
  font-weight: 950;
}

/* ---- Quick bar ---- */

.quick-bar {
  margin-top: -44px;
  position: relative;
  z-index: 3;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.quick-item {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.quick-item:last-child {
  border-right: 0;
}

.quick-item b {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quick-item span {
  display: block;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.25;
}

/* ---- Sections ---- */

section {
  padding: 108px 0;
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, .72);
}

.section-dark .check-list li {
  color: var(--white);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.section-head .section-lead {
  margin-bottom: 8px;
}

/* ---- Grids ---- */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

/* ---- Cards ---- */

.card,
.program-card,
.quote,
.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(8, 10, 12, .07);
}

.card {
  padding: 32px;
}

.card p,
.program-card p,
.quote p,
.form-card p {
  color: #4c535c;
}

.section-dark .card {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .28);
  backdrop-filter: blur(10px);
}

.section-dark .card h3 {
  color: var(--white);
}

.section-dark .card p {
  color: rgba(255, 255, 255, .72);
}

.section-dark .card .tag {
  color: var(--red);
  border: 1px solid rgba(215, 25, 53, .32);
  border-radius: 4px;
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ---- Check list ---- */

.check-list {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  color: #242930;
  font-weight: 750;
}

.check-list li::before {
  margin-right: 10px;
  color: var(--red);
  content: "+";
  font-weight: 950;
}

/* ---- Expect ---- */

.expect-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 54px;
  align-items: center;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.step-number {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--white);
  border-radius: 50%;
  background: var(--ink);
  font-weight: 950;
}

.step p {
  margin-bottom: 0;
  color: #505862;
}

.expect-panel {
  padding: 38px;
  color: var(--white);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(215, 25, 53, .9), rgba(21, 24, 29, .95));
  box-shadow: var(--shadow);
}

.expect-panel blockquote {
  margin: 0;
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 950;
  line-height: 1.02;
  text-transform: uppercase;
}

.expect-panel p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

/* ---- Pillars ---- */

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .12);
}

.pillar {
  min-height: 360px;
  padding: 42px;
  background: var(--ink-2);
}

.pillar .number {
  display: block;
  margin-bottom: 76px;
  color: var(--red);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .12em;
}

.pillar p {
  color: rgba(255, 255, 255, .68);
}

/* ---- Programs ---- */

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.program-card {
  display: flex;
  flex-direction: column;
  min-height: 460px;
  padding: 34px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.program-card .tag {
  width: max-content;
  margin-bottom: 52px;
  padding: 8px 12px;
  color: var(--red);
  border: 1px solid rgba(215, 25, 53, .22);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.program-card ul {
  display: grid;
  gap: 8px;
  margin: auto 0 28px;
  padding: 0;
  list-style: none;
}

.program-card li {
  color: #242930;
  font-weight: 750;
}

.program-card li::before {
  content: "+";
  margin-right: 10px;
  color: var(--red);
  font-weight: 950;
}

/* ---- Split band ---- */

.split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: var(--ink);
}

.split-copy {
  display: flex;
  align-items: center;
  padding: 80px max(40px, calc((100vw - var(--max)) / 2)) 80px 40px;
  color: var(--white);
}

.split-copy-inner {
  width: min(100%, 560px);
  margin-left: auto;
}

.split-copy p,
.split-copy li {
  color: rgba(255, 255, 255, .72);
}

.split-list {
  display: grid;
  gap: 18px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.split-list li {
  padding-left: 28px;
  position: relative;
}

.split-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  content: ">";
  color: var(--red);
  font-weight: 950;
}

.split-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(215, 25, 53, .8), rgba(11, 13, 16, .72));
}

.split-visual::before {
  position: absolute;
  inset: 9%;
  content: "";
  border: 1px solid rgba(255, 255, 255, .22);
}

.split-visual img {
  position: relative;
  width: min(42vw, 280px);
  filter: drop-shadow(0 24px 52px rgba(0, 0, 0, .38));
}

/* ---- Why grid ---- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.why-card {
  min-height: 280px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.why-card strong {
  display: block;
  margin-bottom: 26px;
  color: var(--red);
  font-size: 42px;
  line-height: 1;
}

.why-card p {
  margin-bottom: 0;
  color: #505862;
}

/* ---- Location ---- */

.location-card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.location-copy {
  padding: 46px;
}

.location-copy p {
  color: #4c535c;
}

.location-details {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.location-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.location-detail-label {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.location-detail-item a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.location-detail-item a:hover {
  color: var(--red);
}

.lead-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  resize: vertical;
  background: var(--white);
  color: var(--ink);
}

.detail {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fafafa;
}

.detail b {
  display: block;
  margin-bottom: 4px;
  color: var(--red);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.location-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 44px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(145deg, rgba(11, 13, 16, .82), rgba(11, 13, 16, .48));
}

.location-visual-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  border-radius: 0;
}

.location-visual::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: linear-gradient(0deg, rgba(11, 13, 16, .92) 0%, rgba(11, 13, 16, .55) 55%, rgba(11, 13, 16, .3) 100%);
}

.location-visual-map::after {
  display: none;
}

.location-visual h3,
.location-visual p {
  position: relative;
  z-index: 1;
}

.location-visual h3 {
  max-width: 430px;
  margin-top: auto;
  color: var(--white);
}

.location-visual p {
  max-width: 430px;
  color: rgba(255, 255, 255, .74);
}

/* ---- Reviews ---- */

.review-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 44px;
  align-items: start;
}

.review-score {
  position: sticky;
  top: 144px;
  padding: 38px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.score {
  margin-bottom: 12px;
  font-size: clamp(70px, 8vw, 118px);
  font-weight: 950;
  line-height: .9;
}

.stars {
  color: var(--red);
  font-size: 23px;
  letter-spacing: .12em;
}

.reviews {
  display: grid;
  gap: 18px;
}

.quote {
  padding: 30px;
}

.quote-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.verified-google {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  white-space: nowrap;
}

.verified-google:hover {
  text-decoration: underline;
}

.review-date {
  color: #6b7280;
  font-size: 13px;
  font-weight: 600;
}

.quote p {
  color: #333942;
  font-size: 17px;
}

.quote cite {
  color: var(--ink);
  font-style: normal;
  font-weight: 850;
}

/* ---- FAQ ---- */

.faq-wrap {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 56px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: var(--ink-2);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 24px;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 850;
}

.faq-question span {
  color: var(--red);
  font-size: 24px;
  line-height: 1;
  transition: transform .2s ease;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .24s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 22px;
  color: rgba(255, 255, 255, .7);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-question span {
  transform: rotate(45deg);
}

/* ---- CTA ---- */

.cta {
  padding: 96px 0;
  color: var(--white);
  background: linear-gradient(135deg, rgba(215, 25, 53, .94), rgba(11, 13, 16, .94));
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.cta h2 {
  margin-bottom: 12px;
  color: var(--white);
}

.cta p {
  max-width: 670px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 19px;
}

.cta-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.cta-form-intro h2 {
  color: var(--white);
}

.cta-benefits {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.cta-benefits li {
  padding-left: 28px;
  position: relative;
  color: rgba(255, 255, 255, .82);
  font-weight: 650;
}

.cta-benefits li::before {
  position: absolute;
  left: 0;
  content: "+";
  color: var(--white);
  font-weight: 900;
}

.cta .form-card {
  background: var(--white);
}

.form-consent {
  display: flex;
  align-items: flex-start;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #4c535c;
  cursor: pointer;
}

.form-row.form-consent .consent-label input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  min-height: 16px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  background: #fff;
}

.lead-form .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.quick-cta {
  padding: 48px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.quick-cta-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.quick-cta-copy h2 {
  margin-bottom: 8px;
}

.quick-cta-copy p {
  color: #4c535c;
  font-size: 16px;
  margin-bottom: 0;
}

.expect-cta {
  grid-column: 1 / -1;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.expect-steps {
  grid-column: 1 / -1;
}

.expect-steps .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.expect-cta h3 {
  margin-bottom: 6px;
}

.expect-cta > p {
  color: #4c535c;
  margin-bottom: 18px;
  font-size: 15px;
}

.lead-form-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lead-form-compact input,
.lead-form-compact select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fbfbfa;
}

.lead-form-compact select {
  grid-column: 1 / -1;
  color: var(--muted);
}

.lead-form-compact button {
  grid-column: 1 / -1;
}

/* ---- Forms ---- */

.form-card {
  padding: 34px;
}

.lead-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fbfbfa;
}

.form-row textarea {
  min-height: 112px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
}

/* ---- Footer ---- */

.site-footer {
  color: rgba(255, 255, 255, .7);
  background: #070809;
}

.footer-top {
  padding: 64px 0 48px;
}

.footer-top-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-logo {
  width: 280px;
  max-width: 100%;
}

.footer-desc {
  margin: 0;
  color: rgba(255, 255, 255, .6);
  font-size: 15px;
}

.footer-nav-row {
  display: flex;
  gap: 56px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  color: var(--white);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu a,
.footer-nav-col a,
.footer-address {
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-menu a:hover,
.footer-nav-col a:hover {
  color: var(--red);
}

.footer-address {
  line-height: 1.5;
}

.footer-sub {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
}

.footer-sub-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, .45);
  font-size: 13px;
}

.footer-sub-nav {
  display: flex;
  gap: 24px;
}

.footer-sub-nav a {
  color: rgba(255, 255, 255, .45);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-sub-nav a:hover {
  color: var(--white);
}

/* ---- Blog / articles ---- */

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.article-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(8, 10, 12, .07);
  transition: transform .2s ease, box-shadow .2s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.article-card .tag {
  width: max-content;
  margin-bottom: 16px;
  padding: 4px 10px;
  color: var(--red);
  border: 1px solid rgba(215, 25, 53, .22);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.3;
}

.article-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.article-card h3 a:hover {
  color: var(--red);
}

.article-card p {
  flex: 1;
  margin-bottom: 16px;
  color: #4c535c;
  font-size: 15px;
  line-height: 1.6;
}

.article-card-meta {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.article-card-link {
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.article-card-link:hover {
  text-decoration: underline;
}

.article-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 600;
}

.article-content {
  max-width: 760px;
  margin: 0 auto;
}

.article-content h2 {
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: 24px;
}

.article-content h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 20px;
}

.article-content p {
  margin-bottom: 18px;
  line-height: 1.75;
  color: #4c535c;
  font-size: 17px;
}

.article-content ul,
.article-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.article-content li {
  margin-bottom: 8px;
  line-height: 1.7;
  color: #4c535c;
  font-size: 17px;
}

.article-content a {
  color: var(--red);
  text-decoration: underline;
}

.article-content img {
  max-width: 100%;
  height: auto;
  margin: 24px 0;
  border-radius: var(--radius);
}

.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin: 24px 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.article-content blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--red);
  background: var(--paper);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: #4c535c;
}

/* ---- Location links ---- */

.location-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.tag-link {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease;
}

.tag-link:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ---- Legal / content page ---- */

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 24px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: 22px;
}

.legal-content p {
  margin-bottom: 18px;
  line-height: 1.75;
  color: #4c535c;
  font-size: 16px;
}

.legal-content ul {
  margin-bottom: 24px;
  padding-left: 22px;
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: #4c535c;
  font-size: 16px;
}

.legal-content a {
  color: var(--red);
  text-decoration: underline;
}

/* ---- Media placeholders ---- */

.media-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  overflow: hidden;
  border: 1px dashed rgba(255, 255, 255, .3);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .05) 0 12px, rgba(255, 255, 255, .015) 12px 24px),
    linear-gradient(160deg, #2b3038, #15171b);
  color: rgba(255, 255, 255, .82);
  text-align: center;
}

.media-placeholder svg {
  width: 28px;
  height: 28px;
  opacity: .6;
}

.media-placeholder-label {
  max-width: 230px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.5;
}

.media-placeholder-label small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .52);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .03em;
  text-transform: none;
}

.program-card-media {
  aspect-ratio: 16 / 10;
  margin: -34px -34px 24px;
  border-width: 0 0 1px;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}

.program-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-visual-media {
  position: absolute;
  inset: 9%;
  width: 82%;
  height: 82%;
  object-fit: cover;
  border-radius: var(--radius);
}

.split-visual .split-visual-badge {
  position: absolute;
  bottom: 80px;
  left: 80px;
  z-index: 2;
  width: 64px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .4));
}

.vip-media-band {
  aspect-ratio: 21 / 6;
  margin-top: 44px;
  border-radius: var(--radius);
  object-fit: cover;
  display: block;
  width: 100%;
}

.reviews-media-band {
  aspect-ratio: 21 / 5;
  margin-bottom: 36px;
  border-radius: var(--radius);
  object-fit: cover;
  display: block;
  width: 100%;
}

/* ---- Asset placeholder (subpage variant) ---- */

.asset-placeholder {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 34px;
  border: 1px dashed rgba(255, 255, 255, .35);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, .78);
  text-align: center;
  background: rgba(255, 255, 255, .06);
}

.asset-placeholder.dark {
  border-color: rgba(11, 13, 16, .28);
  color: #4c535c;
  background: #f0f1f1;
}

/* ---- Section image / video (replaces placeholders) ---- */

.section-image,
.section-video {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}

.section-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.section-video {
  min-height: 360px;
  object-fit: cover;
  background: #0b0d10;
}

.section-video video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

/* ---- Content grid (placeholder pages) ---- */

.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.text-stack h2 {
  margin-bottom: 16px;
}

.text-stack p {
  color: #4c535c;
  font-size: 17px;
}

.feature-panel {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.feature-panel h2 {
  color: var(--white);
  font-size: 28px;
}

.feature-panel p {
  color: rgba(255, 255, 255, .72);
}

/* ---- Reveal animations ---- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---- Responsive: tablet ---- */

@media (max-width: 1080px) {
  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-panel {
    position: fixed;
    inset: 82px 0 auto;
    z-index: 18;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    background: rgba(11, 13, 16, .98);
    transition: max-height .25s ease;
  }

  .has-topline .mobile-panel {
    inset: 124px 0 auto;
  }

  .menu-open .mobile-panel {
    max-height: calc(100svh - 82px);
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .has-topline .menu-open .mobile-panel {
    max-height: calc(100svh - 124px);
  }

  .mobile-panel a {
    display: block;
    padding: 18px 24px;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 14px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .hero-layout,
  .expect-grid,
  .split-band,
  .location-card,
  .review-grid,
  .faq-wrap,
  .cta-inner,
  .footer-top-inner,
  .grid-2,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 520px;
  }

  .expect-steps .steps {
    grid-template-columns: 1fr;
  }

  .quick-grid,
  .why-grid,
  .grid-3,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-grid,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .pillar {
    min-height: auto;
  }

  .pillar .number {
    margin-bottom: 40px;
  }

  .split-copy {
    padding: 80px 40px;
  }

  .split-copy-inner {
    margin-left: 0;
  }

  .split-visual {
    min-height: 420px;
  }

  .split-visual img {
    width: min(52vw, 250px);
  }

  .split-visual .split-visual-badge {
    bottom: 32px;
    left: 32px;
    width: 48px;
  }

  .review-score {
    position: static;
  }

  .footer-sub-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-nav-row {
    flex-wrap: wrap;
    gap: 32px;
  }
}

/* ---- Responsive: mobile ---- */

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .topline .container {
    min-height: 50px;
    font-size: 11px;
  }

  .site-header {
    top: 0;
  }

  .has-topline .site-header {
    top: 50px;
  }

  .site-header.header-stuck {
    top: 0;
  }

  .nav {
    min-height: 74px;
  }

  .brand {
    width: 188px;
  }

  .mobile-panel {
    inset: 74px 0 auto;
  }

  .has-topline .mobile-panel {
    inset: 124px 0 auto;
  }

  .hero {
    min-height: auto;
    padding: 138px 0 68px;
  }

  .has-topline .hero {
    padding-top: 164px;
  }

  .hero.compact {
    min-height: auto;
  }

  .lead {
    font-size: 18px;
  }

  .hero-proof,
  .trust-strip,
  .quick-grid,
  .why-grid,
  .grid-3,
  .grid-4,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item + .proof-item {
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
  }

  .proof-item:first-child {
    border-top: 0;
  }

  .quick-bar {
    margin-top: 0;
  }

  .quick-grid {
    border-radius: 0;
    box-shadow: none;
  }

  .quick-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  section {
    padding: 76px 0;
  }

  .section-head {
    display: block;
    margin-bottom: 40px;
  }

  .step {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: auto;
  }

  .program-card .tag {
    margin-bottom: 36px;
  }

  .split-copy,
  .location-copy,
  .location-visual,
  .form-card,
  .card {
    padding: 32px 24px;
  }

  .location-visual {
    min-height: 380px;
  }

  .cta {
    padding: 74px 0;
  }

  .cta-form-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .quick-cta-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lead-form-compact {
    grid-template-columns: 1fr;
  }

  .vip-media-band {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: 30% center;
  }

  .reviews-media-band {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: 80% center;
  }
}
