/* ============================================================
   GET SELLABLE — Drew Sutton Leadership
   styles.css
   ============================================================ */

/* ── Custom Properties ── */
:root {
  --paper:    #F2F0E8;
  --blue:     #1B3F6B;
  --blue-mid: #5B8DB8;
  --gold:     #C4921A;
  --gold-lt:  #D4A830;
  --red:      #C0392B;
  --white:    #FFFFFF;
  --dark:     #0D1A2E;
  --dark-mid: #122038;
  --ink:      #1B3F6B;
  --muted:    #8A9BB0;

  --font-display: 'Oswald', sans-serif;
  --font-body:    'Lora', serif;
  --font-label:   'Barlow Condensed', sans-serif;

  --max-w:     1200px;
  --max-w-sm:  760px;
  --nav-h:     72px;
  --radius:    4px;
  --transition: 0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.container--narrow {
  max-width: var(--max-w-sm);
}

.block-line { display: block; }

/* ── Typography ── */
.section-label {
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-label--red  { color: var(--red); }
.section-label--blue { color: var(--blue-mid); }

.section-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--paper);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.section-headline--dark { color: var(--blue); }

.section-intro {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-intro--dark { color: #4a6080; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
}

.btn--gold {
  background: var(--gold);
  color: var(--dark);
  border: 2px solid var(--gold);
}
.btn--gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--paper);
  border: 2px solid rgba(242,240,232,0.3);
}
.btn--ghost:hover {
  border-color: var(--paper);
  background: rgba(242,240,232,0.06);
}

.btn--outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn--outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn--dark {
  background: var(--dark);
  color: var(--gold);
  border: 2px solid var(--dark);
}
.btn--dark:hover {
  background: var(--dark-mid);
}

.btn--lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }
.btn--center { display: flex; justify-content: center; text-align: center; }

.btn__badge {
  font-size: 0.65rem;
  background: rgba(242,240,232,0.15);
  padding: 0.2em 0.5em;
  border-radius: 2px;
  letter-spacing: 0.1em;
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--delay, 0s);
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(13, 26, 46, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(91,141,184,0.15);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(13, 26, 46, 0.98);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.nav__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 38px;
  height: 38px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  flex-shrink: 0;
}

.nav__logo-words {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav__logo-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--paper);
}

.nav__logo-sub {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__links li a {
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: color var(--transition);
}

.nav__links li a:hover { color: var(--paper); }

.nav__links-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 0.55rem 1.1rem !important;
  border-radius: var(--radius) !important;
}
.nav__links-cta:hover {
  background: var(--gold-lt) !important;
  transform: translateY(-1px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--paper);
  border-radius: 2px;
  transition: all 0.2s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ── HERO (BLUEPRINT) ── */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(1.5rem, 4vw, 3rem));
  padding-bottom: clamp(2rem, 5vw, 4rem);
  background: var(--paper);
  background-image:
    linear-gradient(rgba(27,63,107,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,63,107,0.07) 1px, transparent 1px);
  background-size: 28px 28px, 28px 28px;
  background-position: 0 0, 0 0;
  color: var(--blue);
  overflow: hidden;
}

/* Hairline border + faint inner frame to feel like a blueprint sheet */
.hero::before {
  content: '';
  position: absolute;
  inset: clamp(0.75rem, 2vw, 1.5rem);
  border: 1px solid rgba(27,63,107,0.22);
  pointer-events: none;
  z-index: 0;
}

/* Corner registration marks */
.hero__reg {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  background:
    linear-gradient(var(--blue), var(--blue)) center / 100% 1.5px no-repeat,
    linear-gradient(var(--blue), var(--blue)) center / 1.5px 100% no-repeat;
  opacity: 0.55;
  z-index: 1;
  pointer-events: none;
}
.hero__reg--tl { top: clamp(1.25rem, 3vw, 2.25rem); left: clamp(1.25rem, 3vw, 2.25rem); }
.hero__reg--tr { top: clamp(1.25rem, 3vw, 2.25rem); right: clamp(1.25rem, 3vw, 2.25rem); }
.hero__reg--bl { bottom: clamp(1.25rem, 3vw, 2.25rem); left: clamp(1.25rem, 3vw, 2.25rem); }
.hero__reg--br { bottom: clamp(1.25rem, 3vw, 2.25rem); right: clamp(1.25rem, 3vw, 2.25rem); }

.hero__bp {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 3.5rem);
  text-align: center;
}

.hero__author {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.95rem, 2vw, 1.35rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
  padding-left: 0.4em; /* offset for letter-spacing */
}

/* Massive blueprint title — solid blue with subtle sketch fill */
.hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 13vw, 10rem);
  line-height: 0.88;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}
.hero__headline-word {
  display: block;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 4px, rgba(242,240,232,0.32) 4px 5px),
    linear-gradient(var(--blue), var(--blue));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 0 rgba(27,63,107,0.06);
}

/* Decorative blueprint rule — line · target · line */
.hero__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  opacity: 0.7;
}
.hero__rule-line {
  flex: 1;
  max-width: 280px;
  height: 1px;
  background: var(--blue);
}
.hero__rule-mark {
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.hero__rule-mark::before,
.hero__rule-mark::after {
  content: '';
  position: absolute;
  background: var(--blue);
}
.hero__rule-mark::before { top: 50%; left: -4px; right: -4px; height: 1.5px; transform: translateY(-50%); }
.hero__rule-mark::after  { left: 50%; top: -4px; bottom: -4px; width: 1.5px; transform: translateX(-50%); }

.hero__sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.95rem, 2vw, 1.3rem);
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--blue);
  margin-inline: auto;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 720px;
}

.hero__sub-highlight {
  color: var(--gold);
  font-size: 0.9em;
}

/* Diagram wrapper */
.hero__diagram {
  position: relative;
  width: 100%;
  margin-inline: auto;
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

/* Corvette image with label rows above/below */
.hero__diagram {
  max-width: 1100px;
  margin-inline: auto;
}

.hero__labels-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  padding-inline: clamp(0.25rem, 1vw, 1rem);
  margin-bottom: 0.5rem;
}
.hero__labels-row--bottom {
  grid-template-columns: 1fr;
  justify-items: center;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.hero__label {
  justify-self: center;
  font-family: var(--font-label);
  font-size: clamp(0.62rem, 1.05vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--blue);
  background: var(--paper);
  border: 1.2px solid var(--blue);
  padding: 0.35em 0.85em;
  white-space: nowrap;
}

.hero__car {
  position: relative;
  width: 100%;
  aspect-ratio: 1456 / 720;
}

.hero__car-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero__leaders {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@media (max-width: 600px) {
  .hero__label {
    font-size: 0.58rem;
    padding: 0.22em 0.5em;
    border-width: 1px;
  }
  .hero__labels-row { gap: 0.3rem; }
  .hero__leaders { display: none; }
}

@media (max-width: 420px) {
  /* Below ~420px the 4-up label grid becomes unreadable; stack & hide leaders */
  .hero__labels-row--top { grid-template-columns: repeat(2, 1fr); row-gap: 0.4rem; }
  .hero__leaders { display: none; }
}

/* 81% price-tag stat (anchored to corner of diagram) */
.hero__stat-tag {
  position: absolute;
  right: clamp(0.5rem, 2vw, 1.5rem);
  bottom: clamp(0.5rem, 2vw, 1.5rem);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--paper);
  border: 1.5px solid var(--blue);
  padding: 0.8rem 1.1rem 0.8rem 1rem;
  max-width: 240px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
  background-image:
    radial-gradient(circle at calc(100% - 12px) 12px, transparent 3px, rgba(27,63,107,0.15) 3.5px, transparent 4.5px);
  z-index: 3;
}

.hero__stat-tag__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.95;
  color: var(--blue);
  display: flex;
  align-items: baseline;
}
.hero__stat-tag__pct {
  font-size: 0.5em;
  margin-left: 0.05em;
}
.hero__stat-tag__label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  line-height: 1.35;
  text-align: left;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.hero__url {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.8rem, 1.6vw, 1rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--blue);
  opacity: 0.7;
}

/* Blueprint-paper-appropriate ghost button */
.btn--bp-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn--bp-outline:hover {
  background: var(--blue);
  color: var(--paper);
}
.btn__badge--bp {
  background: rgba(27,63,107,0.12);
  color: var(--blue);
}
.btn--bp-outline:hover .btn__badge--bp {
  background: rgba(242,240,232,0.18);
  color: var(--paper);
}


/* ── STILL LIFE HERO VARIANT ── */
.hero--sl {
  background: var(--dark);
  background-image: none;
  padding: 0;
  color: var(--paper);
}

.hero--sl::before { display: none; }
.hero--sl .hero__reg { display: none; }

.hero__sl-top {
  text-align: center;
  padding: calc(var(--nav-h) + clamp(1.25rem, 3vw, 2.5rem)) clamp(1.5rem, 5vw, 3.5rem) clamp(1.25rem, 2.5vw, 2rem);
  max-width: 860px;
  margin-inline: auto;
}

.hero--sl .hero__author {
  color: var(--gold);
}

.hero--sl .hero__headline-word {
  background-image:
    repeating-linear-gradient(45deg, transparent 0 4px, rgba(13,26,46,0.35) 4px 5px),
    linear-gradient(var(--paper), var(--paper));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero--sl .hero__rule-line { background: var(--paper); }
.hero--sl .hero__rule-mark {
  border-color: var(--paper);
}
.hero--sl .hero__rule-mark::before,
.hero--sl .hero__rule-mark::after { background: var(--paper); }

.hero--sl .hero__sub { color: rgba(242,240,232,0.75); }

.hero--sl .hero__ctas { margin-bottom: 0; }

/* Full-bleed photo */
.hero__sl-photo {
  position: relative;
  width: 100%;
  line-height: 0;
}

.hero__sl-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 56vh;
}

/* Before / After labels */
.hero__sl-badge {
  position: absolute;
  top: clamp(0.75rem, 2vw, 1.25rem);
  font-family: var(--font-label);
  font-size: clamp(0.85rem, 1.4vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  background-color: #111213;
  background-image:
    linear-gradient(45deg, #1e1f21 25%, transparent 25%),
    linear-gradient(-45deg, #1e1f21 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #1e1f21 75%),
    linear-gradient(-45deg, transparent 75%, #1e1f21 75%);
  background-size: 4px 4px;
  background-position: 0 0, 0 2px, 2px -2px, -2px 0px;
  border: 2px solid var(--gold);
  padding: 0.55em 1.4em;
  border-radius: 3px;
  cursor: default;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  -webkit-user-select: none;
  user-select: none;
}
.hero__sl-badge:hover {
  background-color: #1c1e20;
  background-image:
    linear-gradient(45deg, #282a2d 25%, transparent 25%),
    linear-gradient(-45deg, #282a2d 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #282a2d 75%),
    linear-gradient(-45deg, transparent 75%, #282a2d 75%);
  background-size: 4px 4px;
  background-position: 0 0, 0 2px, 2px -2px, -2px 0px;
  color: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
}

.hero__sl-badge--before { left:  clamp(0.75rem, 2vw, 1.25rem); }
.hero__sl-badge--after  { right: clamp(0.75rem, 2vw, 1.25rem); }

/* Image overlay — "Get your business showroom ready." */
.hero__img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(0,0,0,0.65) 0%, transparent 100%);
  padding: clamp(1rem, 2.5vw, 1.5rem) clamp(1rem, 4vw, 2.5rem) clamp(2rem, 5vw, 3.5rem);
  pointer-events: none;
}
.hero__img-overlay-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 3vw, 2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper);
  text-align: center;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  margin: 0;
}

/* Stat tag — restored to bottom-left corner, number 20% larger */
.hero--sl .hero__stat-tag {
  left:   clamp(0.6rem, 2vw, 1.5rem);
  right:  auto;
  bottom: clamp(0.6rem, 1.5vw, 1rem);
  background: var(--paper);
  border-color: var(--blue);
  max-width: 420px;
  gap: 1.25rem;
  padding: 1.1rem 1.5rem 1.1rem 1.25rem;
}
.hero--sl .hero__stat-tag__num {
  font-size: clamp(3.5rem, 8vw, 5.25rem);
}
.hero--sl .hero__stat-tag__label {
  font-size: 1rem;
  letter-spacing: 0.06em;
  line-height: 1.45;
}

/* URL stamp */
.hero--sl .hero__url {
  color: rgba(242,240,232,0.35);
  padding: 0.9rem 0;
  text-align: center;
}

@media (max-width: 600px) {
  .hero__sl-img { max-height: 56vw; }
  .hero--sl .hero__stat-tag { font-size: 0.85em; }
  .hero__sl-badge { font-size: 0.55rem; padding: 0.25em 0.6em; }
}


/* ── MANIFESTO (gut punch on dark) ── */
.manifesto {
  background: var(--dark);
  padding-block: clamp(2.75rem, 5.5vw, 4.25rem);
  border-top: 1px solid rgba(91,141,184,0.12);
}

.manifesto__inner {
  max-width: 860px;
  margin-inline: auto;
  text-align: left;
  border-left: 2px solid rgba(196,146,26,0.5);
  padding-left: clamp(1rem, 3vw, 1.75rem);
}
.manifesto__inner p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(242,240,232,0.78);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.manifesto__inner p:last-child { margin-bottom: 0; }
.manifesto__resolve {
  color: var(--paper) !important;
  font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.25rem) !important;
}

.manifesto__tagline {
  margin-top: clamp(2rem, 5vw, 3rem);
  text-align: center;
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(242,240,232,0.45);
  max-width: 860px;
  margin-inline: auto;
}


/* ── STEPS ── */
.steps {
  background: var(--dark-mid);
  padding-block: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid rgba(91,141,184,0.12);
  border-bottom: 1px solid rgba(91,141,184,0.12);
}

.steps__row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.steps__item {
  flex: 1;
  text-align: center;
  padding: 1.5rem 1.25rem;
}

.steps__num {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.steps__icon {
  width: 52px;
  height: 52px;
  margin-inline: auto;
  margin-bottom: 1rem;
  color: var(--gold);
}
.steps__icon svg { width: 100%; height: 100%; }

.steps__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--paper);
  margin-bottom: 0.6rem;
}

.steps__desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

.steps__arrow {
  color: var(--gold);
  font-size: 1.5rem;
  opacity: 0.4;
  padding-top: 3.5rem;
  flex-shrink: 0;
  -webkit-user-select: none;
  user-select: none;
}


/* ── PROBLEMS ── */
.problems {
  background: var(--paper);
  padding-block: clamp(2rem, 4vw, 3.5rem);
}

.problems .section-headline { color: var(--dark); }
.problems .section-intro    { color: var(--blue); }

.problems__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.problems__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.problem-card {
  background: #0a1525;
  border: 1px solid rgba(91,141,184,0.15);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.problem-card__icon {
  width: 56px;
  height: 56px;
  color: var(--red);
  margin-bottom: 1.25rem;
  opacity: 0.85;
}
.problem-card__icon svg { width: 100%; height: 100%; }

.problem-card__label {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.problem-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.problem-card__body p {
  font-size: 0.95rem;
  color: rgba(242,240,232,0.7);
  line-height: 1.7;
  margin-bottom: 0.85rem;
}
.problem-card__body p:last-child { margin-bottom: 0; }

.problem-card__emphasis {
  color: var(--paper) !important;
  font-style: italic;
  border-left: 2px solid var(--red);
  padding-left: 1rem;
  margin-left: 0;
}

.problem-card__body { flex: 1; }

.problem-card__cta {
  display: block;
  margin-top: 1.5rem;
  text-align: center;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(196,146,26,0.3);
  padding-bottom: 0.1rem;
  transition: color var(--transition), border-color var(--transition);
}
.problem-card__cta:hover {
  color: var(--gold-lt);
  border-color: var(--gold-lt);
}


/* ── WHY DIFFERENT ── */
.different {
  background: var(--dark-mid);
  padding-block: clamp(3rem, 6vw, 5.5rem);
  border-top: 1px solid rgba(91,141,184,0.1);
  border-bottom: 1px solid rgba(91,141,184,0.1);
}

.different__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-block: 2.5rem;
}

.different__item {
  padding: 1.5rem;
  border-radius: var(--radius);
}

.different__item--bad {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.06);
  opacity: 0.7;
}

.different__item-label {
  font-family: var(--font-label);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
  text-decoration: line-through;
  text-decoration-color: rgba(138,155,176,0.5);
}

.different__item p {
  font-size: 1.15rem;
  color: rgba(242,240,232,0.45);
  line-height: 1.65;
}

.different__item-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.different__item-list li {
  font-size: 1.15rem;
  color: rgba(242,240,232,0.45);
  line-height: 1.55;
  padding-left: 1.1rem;
  position: relative;
}
.different__item-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(138,155,176,0.4);
  font-weight: 400;
}

.different__divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.35;
  margin-block: 2.5rem;
}

.different__us-label {
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.different__us-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 1.25rem;
  line-height: 1.05;
}

.different__us {
}

.different__us p {
  font-size: 1rem;
  color: rgba(242,240,232,0.75);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.different__us .btn { margin-top: 0.5rem; }


/* ── CEO VALUE ENGINE ── */
.engine {
  background: var(--paper);
  padding-block: clamp(2rem, 4vw, 3.5rem);
}

.engine__header {
  text-align: center;
  margin-bottom: 3rem;
}

.engine .section-label {
  font-size: 2.75rem;
}
.engine .section-headline {
  font-size: clamp(1rem, 2.5vw, 1.4375rem);
}

.problems .section-label {
  font-family: var(--font-display);
  font-size: 2.75rem;
  letter-spacing: 0.08em;
}
.problems .section-headline {
  font-family: var(--font-label);
  letter-spacing: 0.03em;
}

/* Blueprint illustration */
.engine__blueprint {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  margin-bottom: 4rem;
  border: 1px solid rgba(27,63,107,0.25);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 4px 40px rgba(27,63,107,0.12);
}

.bp-diagram {
  padding: clamp(1rem, 2.5vw, 1.75rem) clamp(0.5rem, 2vw, 2rem);
}

.bp-diagram__title {
  font-family: var(--font-label);
  font-size: clamp(0.6rem, 0.95vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--blue);
  opacity: 0.75;
  text-align: center;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.bp-diagram__labels-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  padding-inline: clamp(0.25rem, 1vw, 1rem);
  margin-bottom: 0.5rem;
}
.bp-diagram__labels-row--bottom {
  grid-template-columns: 1fr;
  justify-items: center;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.bp-diagram__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  font-family: var(--font-label);
  color: var(--blue);
  background: var(--paper);
  border: 1.2px solid var(--blue);
  padding: 0.4em 0.9em;
  white-space: nowrap;
  text-align: center;
  line-height: 1.1;
}
.bp-diagram__label-name {
  font-size: clamp(0.65rem, 1.05vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.bp-diagram__label-sub {
  font-size: clamp(0.5rem, 0.8vw, 0.65rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  opacity: 0.6;
  text-transform: uppercase;
  margin-top: 0.25em;
}

.bp-diagram__car {
  position: relative;
  width: 100%;
  aspect-ratio: 1456 / 720;
}
.bp-diagram__car-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.bp-diagram__leaders {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@media (max-width: 600px) {
  .bp-diagram__label { padding: 0.28em 0.55em; border-width: 1px; }
  .bp-diagram__label-name { font-size: 0.6rem; }
  .bp-diagram__label-sub  { font-size: 0.5rem; letter-spacing: 0.08em; }
  .bp-diagram__labels-row { gap: 0.3rem; }
}
@media (max-width: 420px) {
  .bp-diagram__labels-row--top { grid-template-columns: repeat(2, 1fr); row-gap: 0.4rem; }
  .bp-diagram__leaders { display: none; }
}

/* Engine component cards */
.engine__components {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.engine-card                { grid-column: span 2; }
.engine-card:nth-child(4)   { grid-column: 2 / span 2; }
.engine-card:nth-child(5)   { grid-column: 4 / span 2; }

.engine-card {
  background: var(--white);
  border: 1px solid rgba(27,63,107,0.1);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
  transition: transform 0.22s ease-out, box-shadow 0.22s ease-out;
}

.engine-card:hover {
  transform: translateY(-14px) scale(1.015);
  box-shadow: 0 24px 56px rgba(27,63,107,0.16), 0 6px 18px rgba(27,63,107,0.10);
  z-index: 10;
}

.engine__components:has(.engine-card:hover) .engine-card:not(:hover) {
  transform: translateY(6px);
}

.engine-card__icon {
  width: 52px;
  height: 52px;
  color: var(--blue);
  margin-bottom: 1.25rem;
}
.engine-card__icon svg { width: 100%; height: 100%; }

.engine-card__step {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.engine-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.engine-card__what-label,
.engine-card__get-label {
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.engine-card__what-label { color: var(--blue-mid); }
.engine-card__get-label  { color: var(--gold); margin-top: 1rem; }

.engine-card__what {
  font-size: 0.9rem;
  color: #4a6080;
  line-height: 1.65;
  font-style: italic;
}

.engine-card__get {
  font-size: 0.9rem;
  color: #3a4a60;
  line-height: 1.7;
}

.engine__close {
  text-align: center;
  margin-top: 3.5rem;
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-style: italic;
  color: var(--blue);
  opacity: 0.7;
  max-width: 540px;
  margin-inline: auto;
}


/* ── ASSESSMENT CTA ── */
.assessment-cta {
  background: var(--blue);
  padding-block: clamp(3rem, 6vw, 5.5rem);
}

.assessment-cta__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.assessment-cta__copy { text-align: left; }
.assessment-cta__form-col { display: flex; align-items: center; }

.assessment-cta__launch {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.assessment-cta__launch-note {
  font-size: 1rem;
  color: rgba(242,240,232,0.6);
  margin-bottom: 0;
}
.assessment-cta__launch-note li {
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.8;
  font-weight: 700;
  color: rgba(242,240,232,0.85);
}
.assessment-cta__launch-note li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.assessment-cta .section-label { color: var(--gold); }
.assessment-cta .section-headline { color: var(--paper); }
.assessment-cta p { color: rgba(242,240,232,0.75); font-size: 1.05rem; margin-bottom: 2rem; }

.assessment-cta__list {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 0.6rem;
  margin-bottom: 0;
}

.assessment-cta__list li {
  font-family: var(--font-label);
  font-size: 1.1625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--paper);
  padding-left: 1.5rem;
  position: relative;
}
.assessment-cta__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 400;
}

/* Forms */
.form-row {
  display: flex;
  gap: 0.75rem;
}

.form-input {
  flex: 1;
  padding: 0.9rem 1.1rem;
  background: rgba(242,240,232,0.08);
  border: 1px solid rgba(242,240,232,0.2);
  border-radius: var(--radius);
  color: var(--paper);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  min-width: 0;
}
.form-input::placeholder { color: rgba(242,240,232,0.35); }
.form-input:focus {
  border-color: var(--gold);
  background: rgba(242,240,232,0.12);
}

.form-note {
  font-size: 0.78rem;
  color: rgba(242,240,232,0.35) !important;
  margin-top: 0.75rem !important;
  font-family: var(--font-label);
  letter-spacing: 0.04em;
}

.form-success {
  margin-top: 1rem;
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* ── BOOK ── */
.book {
  background: var(--dark);
  padding-block: clamp(3rem, 6vw, 5.5rem);
  border-top: 1px solid rgba(91,141,184,0.1);
}

.book__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.book__copy { text-align: left; }
.book__form-col { }

.book__badge {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 0.3em 0.8em;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.book .section-label { color: var(--blue-mid); }
.book .section-headline { margin-bottom: 0.5rem; text-align: left; }

.book__sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.book p {
  font-size: 1rem;
  color: rgba(242,240,232,0.65);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}


/* ── SERVICES ── */
.services {
  background: var(--paper);
  padding-block: clamp(2rem, 4vw, 3.5rem);
}

.services__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services__ladder {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(27,63,107,0.1);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
  transition: transform 0.22s ease-out, box-shadow 0.22s ease-out;
}

/* Hanger lift — top-row cards only */
.service-card:not(.service-card--featured):hover {
  transform: translateY(-14px) scale(1.015);
  box-shadow: 0 24px 56px rgba(27,63,107,0.16), 0 6px 18px rgba(27,63,107,0.10);
  z-index: 10;
}

/* Sibling cards settle when one is lifted */
.services__ladder:has(.service-card:not(.service-card--featured):hover)
  .service-card:not(:hover):not(.service-card--featured) {
  transform: translateY(6px);
}

/* Featured card (card 5): stays put, subtle glow on hover */
.service-card--featured:hover {
  box-shadow: 0 12px 40px rgba(196,146,26,0.18);
  transform: none;
}

.service-card--free {
  border-top: 3px solid var(--blue-mid);
}

.service-card--featured {
  grid-column: 1 / -1;
  border: 2px solid var(--gold);
  position: relative;
  padding-top: 2.5rem;
}

.service-card__spots {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.4em;
}

.service-card__tier {
  font-family: var(--font-label);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 0.4rem;
}
.service-card--featured .service-card__tier { color: var(--gold); }

.service-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.service-card__price span {
  font-size: 1rem;
  color: #6a8090;
  font-weight: 400;
}

.service-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.service-card__desc {
  font-size: 0.9rem;
  color: #4a6080;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-card__includes {
  margin-bottom: 1.25rem;
}
.service-card__includes li {
  font-size: 0.875rem;
  color: #3a5070;
  line-height: 1.6;
  padding-left: 1.25rem;
  margin-bottom: 0.4rem;
  position: relative;
}
.service-card__includes li::before {
  content: '·';
  position: absolute;
  left: 0.25rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.2;
}

.service-card__details {
  margin-bottom: 1rem;
}
.service-card__details-toggle {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  list-style: none;
  margin-bottom: 0;
  -webkit-user-select: none;
  user-select: none;
}
.service-card__details-toggle::-webkit-details-marker { display: none; }
.service-card__details[open] .service-card__details-toggle { margin-bottom: 1rem; }

.service-card__outcome {
  font-size: 0.9rem;
  color: var(--blue);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-card__total {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.service-card .btn {
  white-space: normal;
  text-align: center;
}

.service-card__note {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1rem;
}

.service-card__badge {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(27,63,107,0.08);
  border: 1px solid rgba(27,63,107,0.2);
  border-radius: 3px;
  padding: 3px 8px;
  margin-bottom: 0.75rem;
}

.service-card__form {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-card__form--restoration .restoration-fields {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}


/* ── ABOUT ── */
.about {
  background: var(--paper);
  padding-block: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid rgba(27,63,107,0.12);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: start;
}

.about__copy .section-label { color: var(--gold); }

.about__copy .section-headline { color: var(--dark); }

.about__copy p {
  font-size: 1rem;
  color: rgba(13,26,46,0.72);
  line-height: 1.8;
  margin-bottom: 1.1rem;
  max-width: 580px;
}

.about__creds {
  margin-block: 2rem;
}
.about__creds li {
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(13,26,46,0.6);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(27,63,107,0.12);
  padding-left: 1.25rem;
  position: relative;
}
.about__creds li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0;
}

.about__portrait {
  flex-shrink: 0;
  width: clamp(240px, 30vw, 384px);
}

.about__portrait-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  object-fit: cover;
}

.about__portrait-monogram {
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.about__portrait-note {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}


/* ── TWO EXITS ── */
.two-exits {
  background: var(--dark-mid);
  padding-block: clamp(2.75rem, 5.5vw, 5rem);
  border-top: 1px solid rgba(91,141,184,0.1);
}

.two-exits__inner { text-align: center; }

.two-exits .section-label { color: var(--gold); }

.two-exits__quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  color: var(--paper);
  line-height: 1.5;
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: 3rem;
  padding: 0;
  border: none;
  position: relative;
}
.two-exits__quote::before,
.two-exits__quote::after {
  content: '"';
  color: var(--gold);
  opacity: 0.4;
  font-size: 4rem;
  line-height: 0;
  vertical-align: -0.5em;
  font-family: Georgia, serif;
}

.two-exits__framework {
  display: flex;
  gap: 2rem;
  align-items: stretch;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.exit-card {
  background: rgba(27,63,107,0.15);
  border: 1px solid rgba(91,141,184,0.2);
  border-radius: var(--radius);
  padding: 2rem;
  flex: 1;
  text-align: left;
}

.exit-card__num {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.exit-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 0.75rem;
}

.exit-card p {
  font-size: 0.9rem;
  color: rgba(242,240,232,0.65);
  line-height: 1.7;
}

.exit-card__divider {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.two-exits__close {
  font-size: 0.95rem;
  color: rgba(242,240,232,0.5);
  font-style: italic;
  max-width: 780px;
  margin-inline: auto;
}


/* ── FOOTER CTA ── */
.footer-cta {
  background: var(--blue);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.footer-cta__inner { text-align: center; }

.footer-cta__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 1rem;
  line-height: 1.05;
  max-width: 700px;
  margin-inline: auto;
}

.footer-cta p {
  font-size: 1.05rem;
  color: rgba(242,240,232,0.72);
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-inline: auto;
}


/* ── FOOTER ── */
.footer {
  background: #080e18;
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
  border-top: 1px solid rgba(91,141,184,0.1);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer__tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.875rem;
  color: rgba(242,240,232,0.35);
  line-height: 1.7;
}

.footer__links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer__col-label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__col li a {
  font-size: 0.875rem;
  color: rgba(242,240,232,0.45);
  transition: color var(--transition);
}
.footer__col li a:hover { color: var(--paper); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(242,240,232,0.25);
  font-family: var(--font-label);
  letter-spacing: 0.04em;
}

.footer__location {
  font-style: italic;
}


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .steps__row {
    flex-wrap: wrap;
    gap: 0;
  }
  .steps__item { min-width: 40%; }
  .steps__arrow { display: none; }

  .about__inner {
    grid-template-columns: 1fr;
  }
  .about__portrait {
    width: clamp(216px, 66vw, 336px);
    margin-inline: auto;
  }
}

@media (max-width: 700px) {
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(13,26,46,0.98);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(91,141,184,0.15);
    transform: translateY(-110%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, visibility 0s linear 0.3s;
    z-index: 101;
  }
  .nav__links.open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.3s ease, visibility 0s linear 0s;
  }
  .nav__links li a {
    display: block;
    padding: 0.75rem;
    border-radius: var(--radius);
  }
  .nav__links li a:hover { background: rgba(255,255,255,0.05); }
  .nav__burger { display: flex; }

  .form-row {
    flex-direction: column;
  }
  .form-row .btn {
    width: 100%;
    justify-content: center;
  }

  .problems__grid { grid-template-columns: 1fr; }
  .engine__components { grid-template-columns: 1fr; }
  .engine-card,
  .engine-card:nth-child(4),
  .engine-card:nth-child(5) { grid-column: span 1; }
  .different__grid { grid-template-columns: 1fr; }
  .booking__grid { grid-template-columns: 1fr; }

  .services__ladder { grid-template-columns: 1fr; }
  .service-card--featured { grid-column: 1; }

  .assessment-cta__content { grid-template-columns: 1fr; }
  .assessment-cta__copy { text-align: center; }
  .book__inner { grid-template-columns: 1fr; }
  .book__copy { text-align: center; }
  .book .section-headline { text-align: center; }

  .two-exits__framework { flex-direction: column; align-items: center; }
  .exit-card { flex: none; width: 100%; }
  .exit-card__divider { transform: rotate(90deg); }

  .footer__inner { flex-direction: column; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: clamp(2.4rem, 12vw, 3.5rem); }
  .steps__item { min-width: 100%; }
  .nav__logo-words { display: none; }
}


/* ── Animation delay utility classes (replaces inline style="--delay:Xs") ── */
.delay-1  { --delay: 0.1s; }
.delay-15 { --delay: 0.15s; }
.delay-2  { --delay: 0.2s; }
.delay-3  { --delay: 0.3s; }
.delay-4  { --delay: 0.4s; }


/* ── Blueprint diagram: hide on narrow screens (framework cards below explain it) ── */
@media (max-width: 600px) {
  .engine__blueprint { display: none; }
}


/* ── Light form inputs (paper/white section backgrounds) ── */
.form-input--light {
  background: var(--paper);
  border: 1px solid rgba(27,63,107,0.18);
  color: var(--blue);
}
.form-input--light::placeholder { color: rgba(27,63,107,0.38); }
.form-input--light:focus {
  border-color: var(--gold);
  background: var(--white);
  color: var(--blue);
}

.form-textarea {
  resize: vertical;
  min-height: 84px;
  line-height: 1.55;
}

/* Form feedback states */
.form-error {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--red);
  margin-top: 0.25rem;
}

.form-input.input-error,
.form-input--light.input-error {
  border-color: var(--red) !important;
  outline: none;
}


/* ── BOOKING SECTION ── */
.booking {
  background: var(--dark-mid);
  padding-block: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid rgba(91,141,184,0.12);
}

.booking__header {
  text-align: center;
  margin-bottom: 3rem;
}

.booking__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.booking-card {
  background: var(--white);
  border: 1px solid rgba(27,63,107,0.1);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow var(--transition);
}
.booking-card:hover { box-shadow: 0 8px 32px rgba(27,63,107,0.1); }

.booking-card--featured {
  border: 2px solid var(--gold);
  position: relative;
  padding-top: 2.75rem;
}

.booking-card__spots {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.4em;
  border-radius: var(--radius) var(--radius) 0 0;
}

.booking-card__badge {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--blue-mid);
  color: var(--white);
  padding: 0.25em 0.65em;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

.booking-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.booking-card__price span {
  font-size: 1rem;
  color: #6a8090;
  font-weight: 400;
}

.booking-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.booking-card__desc {
  font-size: 0.9rem;
  color: #4a6080;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.booking-card__note {
  font-size: 0.82rem;
  color: var(--blue-mid);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.booking-card__caveat {
  font-size: 0.7rem;
  color: #9a8040;
  text-align: center;
  margin-top: 0.6rem;
  font-family: var(--font-label);
  letter-spacing: 0.03em;
}

.booking-card__form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.booking-field { display: flex; flex-direction: column; }

@media (max-width: 700px) {
  .booking__grid { grid-template-columns: 1fr; }
}


/* ── Footer privacy link ── */
.footer__policy {
  color: rgba(242,240,232,0.35);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.footer__policy:hover { color: rgba(242,240,232,0.65); }


/* Stat tag: goes into flow on small screens (blueprint hero) */
@media (max-width: 700px) {
  .hero__stat-tag {
    position: static;
    margin: 1rem auto 0;
    max-width: 280px;
  }
}


/* ============================================================
   MOBILE & RESPONSIVE OPTIMIZATIONS
   ============================================================ */

/* ── Services: 4-col → 2-col at tablet, then 1-col at 700px ── */
@media (max-width: 960px) {
  .services__ladder {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-card--featured {
    grid-column: 1 / -1;
  }
}

/* ── Engine cards: 6-col → 2-per-row at tablet, 1-col at 700px ── */
@media (max-width: 960px) {
  .engine__components {
    grid-template-columns: repeat(4, 1fr);
  }
  .engine-card              { grid-column: span 2; }
  .engine-card:nth-child(4),
  .engine-card:nth-child(5) { grid-column: span 2; }
}

/* ── Why Different: 3-col → 2-col → 1-col ── */
@media (max-width: 820px) {
  .different__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Nav CTA: full-width in mobile dropdown ── */
@media (max-width: 700px) {
  .nav__links-cta {
    display: block !important;
    text-align: center !important;
    margin-top: 0.5rem;
  }

  /* Assessment list: center within the single-column layout */
  .assessment-cta__list {
    max-width: 300px;
    margin-inline: auto;
  }

  /* Still-life: keep stat tag pinned to photo at all sizes */
  .hero--sl .hero__stat-tag {
    position: absolute;
    left:   clamp(0.5rem, 3vw, 0.75rem);
    right:  auto;
    bottom: clamp(0.4rem, 2vw, 0.6rem);
    margin: 0;
    max-width: 190px;
    padding: 0.5rem 0.7rem;
  }
  .hero--sl .hero__stat-tag__num {
    font-size: 1.75rem;
  }
}

/* ── Footer: tighten link columns gap when they wrap on mobile ── */
@media (max-width: 700px) {
  .footer__links {
    gap: 1.5rem;
  }
}

/* ── Service + engine cards: disable sibling-settle on single-column layout ── */
@media (max-width: 700px) {
  .services__ladder:has(.service-card:not(.service-card--featured):hover)
    .service-card:not(:hover):not(.service-card--featured) {
    transform: none;
  }
  .engine__components:has(.engine-card:hover) .engine-card:not(:hover) {
    transform: none;
  }
}

/* ── About: force headline onto two lines at all sizes ── */
.about__headline-break {
  display: block;
}

/* ── Hero CTAs: stack on very small screens ── */
@media (max-width: 420px) {
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__ctas .btn {
    justify-content: center;
    width: 100%;
  }
}

/* ── Still-life hero: compact content block on mobile ── */
@media (max-width: 600px) {
  .hero__sl-top {
    padding-top: calc(var(--nav-h) + 1rem);
    padding-bottom: 1.5rem;
  }
  .hero__sl-img {
    max-height: 52vw;
  }
}


/* ── Book mockup beside hero CTA ── */
.hero__book-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.hero__book-img {
  width: 44px;
  height: auto;
  border-radius: 2px;
  box-shadow: 2px 4px 12px rgba(0,0,0,0.35);
  flex-shrink: 0;
}


/* ── Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.modal-overlay[hidden] { display: none; }

.modal {
  background: var(--dark-mid);
  border: 1px solid rgba(91,141,184,0.2);
  border-radius: 6px;
  width: 100%;
  max-width: 480px;
  padding: 2.25rem 2rem 2rem;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
}

.modal__close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1;
  padding: 0.25rem 0.4rem;
  border-radius: 3px;
  transition: color var(--transition);
}
.modal__close:hover { color: var(--paper); }

.modal__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--paper);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.modal__headline em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
}

.modal__desc {
  font-size: 0.95rem;
  color: rgba(242,240,232,0.65);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.modal__form { display: flex; flex-direction: column; gap: 0.75rem; }

.modal__field { display: flex; flex-direction: column; gap: 0.35rem; }

.modal__label {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.modal__input {
  background: rgba(255,255,255,0.05);
  border-color: rgba(91,141,184,0.3);
  color: var(--paper);
}
.modal__input::placeholder { color: rgba(242,240,232,0.3); }
.modal__input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-color: var(--gold);
}

.modal__success {
  text-align: center;
  padding: 1rem 0;
}
.modal__success-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.modal__choices {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link-btn {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  padding: 0;
  cursor: pointer;
  text-align: left;
}
.footer__link-btn:hover { text-decoration: underline; }

@media (max-width: 500px) {
  .modal { padding: 1.75rem 1.25rem 1.5rem; }
}


/* ── ASSESSMENT THANK YOU PAGE ── */
.thankyou {
  background: var(--dark);
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding-block: clamp(4rem, 10vw, 8rem);
}

.thankyou__inner {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.thankyou__icon {
  width: 64px;
  height: 64px;
  color: var(--gold);
}
.thankyou__icon svg { width: 100%; height: 100%; }

.thankyou__label {
  color: var(--gold);
  margin-bottom: 0;
}

.thankyou__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  text-transform: uppercase;
  color: var(--paper);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin: 0;
}

.thankyou__br { display: inline; }

.thankyou__body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: rgba(242,240,232,0.72);
  line-height: 1.7;
  margin: 0;
  max-width: 480px;
}

.thankyou__back {
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  margin-top: 0.5rem;
  transition: color var(--transition);
}
.thankyou__back:hover { color: var(--paper); }

@media (max-width: 500px) {
  .thankyou__br { display: none; }
}
