/*
Theme Name: DBG Prestige
Theme URI: https://digitalbuildersgroup.com
Author: Digital Builders Group
Description: Clean, typographic, prestige theme. Video hero, refined serif headlines, generous whitespace.
Version: 3.2.0
Text Domain: dbg-prestige
*/

/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
:root {
  --black:         #0a0a0a;
  --dark:          #111418;
  --mid:           #3d4f66;      /* darkened from #4a5568 → 7.1:1 on white */
  --rule:          #d8dde5;
  --rule-dark:     #8896a8;      /* for text on light bg that needs contrast */
  --light:         #f7f8f9;
  --white:         #ffffff;
  --navy:          #002f69;
  --navy-2:        #001e48;
  --accent:        #c5a55a;

  /* On-navy text tokens — all WCAG AA ≥4.5:1 */
  --on-navy-primary:   #f0f4f8;  /* ~14:1 on --navy-2 */
  --on-navy-secondary: #b8c8d8;  /* ~6.2:1 on --navy-2 */
  --on-navy-muted:     #8aa4be;  /* ~4.6:1 on --navy-2 */

  --f-serif: 'Cormorant Garamond', Georgia, serif;
  --f-sans:  'Jost', 'Helvetica Neue', Arial, sans-serif;

  --max:   1240px;
  --px:    clamp(1.5rem, 6vw, 5rem);
  --sec:   clamp(5rem, 9vw, 8rem);
  --nav-h: 76px;
  --ease:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ═══════════════════════════════════════════
   RESET
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: 1rem;           /* explicit baseline */
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img    { max-width: 100%; height: auto; display: block; }
a      { text-decoration: none; color: inherit; }
ul     { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ═══════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════ */
.wrap    { max-width: var(--max); margin: 0 auto; padding: 0 var(--px); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden;
           clip: rect(0,0,0,0); white-space: nowrap; }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--px);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.solid {
  background: rgba(255,255,255,0.97);
  border-color: var(--rule);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}
.logo-emblem {
  width: 65px; height: 50px;
  border-radius: 50%;
  overflow: hidden;
/*   background: var(--white); */
  flex-shrink: 0;
  transition: opacity 0.3s;
}
.logo-emblem img { width: 100%; height: 100%; object-fit: contain; }
.site-logo:hover .logo-emblem { opacity: 0.85; }
.logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-name {
  font-family: var(--f-sans);
  font-size: 0.9rem;          /* up from 0.88 */
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
  transition: color 0.3s;
}
.logo-sub {
  font-family: var(--f-sans);
  font-size: 0.65rem;         /* up from 0.58 */
  font-weight: 600;           /* heavier for legibility at small size */
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  line-height: 1;
  transition: color 0.3s;
}
.site-header.solid .logo-name { color: var(--dark); }
.site-header.solid .logo-sub  { color: var(--mid); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  font-family: var(--f-sans);
  font-size: 0.8rem;           /* up from 0.78 */
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.9rem;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0.3rem; left: 0.9rem; right: 0.9rem;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
  transform-origin: left;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { transform: scaleX(1); }
.site-header.solid .nav-links a { color: var(--mid); }
.site-header.solid .nav-links a:hover { color: var(--dark); }
.site-header.solid .nav-links a.active { color: var(--dark); }

.nav-contact {
  font-size: 0.75rem !important;  /* up from 0.72 */
  font-weight: 500 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.5) !important;
  border-radius: 2px;
  padding: 0.45rem 1.1rem !important;
  transition: border-color 0.25s, background 0.25s, color 0.25s !important;
  margin-left: 0.5rem;
}
.nav-contact::after { display: none !important; }
.nav-contact:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(255,255,255,0.85) !important;
  color: var(--white) !important;
}
.site-header.solid .nav-contact {
  color: var(--dark) !important;
  border-color: var(--rule) !important;
}
.site-header.solid .nav-contact:hover {
  background: var(--dark) !important;
  color: var(--white) !important;
  border-color: var(--dark) !important;
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--f-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.9rem;
  transition: color 0.25s;
  cursor: pointer;
}
.nav-dropdown-trigger:hover { color: var(--white); }
.site-header.solid .nav-dropdown-trigger { color: var(--mid); }
.site-header.solid .nav-dropdown-trigger:hover { color: var(--dark); }
.nav-chevron {
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}
.nav-dropdown.open .nav-chevron { transform: rotate(180deg); }
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 4px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  z-index: 800;
}
.nav-dropdown.open .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  font-family: var(--f-sans);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--dark) !important;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--rule);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.nav-dropdown-item:last-child { border-bottom: none; }
.nav-dropdown-item:hover { background: var(--light); color: var(--navy) !important; }

/* Mobile sub-links (indented) */
.mobile-nav a.mobile-sub {
  padding-left: 1.5rem;
  font-size: 0.82rem;
  color: var(--mid);
  letter-spacing: 0.04em;
  text-transform: none;
  border-bottom-color: transparent;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}
.mobile-nav a.mobile-sub:hover { color: var(--navy); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white);
  border-radius: 1px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.site-header.solid .nav-toggle span { background: var(--dark); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 1.5rem var(--px) 2.5rem;
  flex-direction: column;
  z-index: 899;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--f-sans);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--navy); }

/* ═══════════════════════════════════════════
   HERO — FULL-SCREEN VIDEO
═══════════════════════════════════════════ */
.section-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--dark);
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1f3c 0%, #1a2d4a 50%, #0a0d13 100%);
  z-index: 0;  /* behind video */
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;  /* above fallback gradient */
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,14,26,0.58);
  z-index: 2;
}
.hero-vignette {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 280px;
  background: linear-gradient(to top, rgba(8,14,26,0.6), transparent);
  z-index: 3;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 4;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--f-sans);
  font-size: 0.8rem;           /* up from 0.68 */
  font-weight: 600;            /* heavier for legibility */
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.hero-headline {
  font-family: var(--f-serif);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.01em;
  max-width: 820px;
  margin-bottom: 2.5rem;
}
.hero-headline .word-clarity     { color: #8ecae6; font-style: italic; }
.hero-headline .word-not         { font-style: normal; }
.hero-headline .word-assumptions { color: rgba(255,255,255,0.6); }

.hero-sub {
  font-family: var(--f-sans);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);  /* up from 0.88 */
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);  /* up from 0.65 */
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 3rem;
}
.hero-sub strong { color: var(--white); font-weight: 500; }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--f-sans);
  font-size: 0.8rem;           /* up from 0.75 */
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  transition: gap 0.3s var(--ease), color 0.25s;
}
.hero-cta-line {
  width: 40px;
  height: 1px;
  background: var(--white);
  transition: width 0.3s var(--ease), background 0.25s;
}
.hero-cta:hover { color: var(--accent); gap: 1.4rem; }
.hero-cta:hover .hero-cta-line { width: 56px; background: var(--accent); }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: var(--px);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.hero-scroll:hover { opacity: 0.8; }
.hero-scroll-label {
  font-family: var(--f-sans);
  font-size: 0.65rem;          /* up from 0.6 */
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  writing-mode: vertical-rl;
}
.hero-scroll-bar {
  width: 1px; height: 50px;
  background: rgba(255,255,255,0.4);
  position: relative; overflow: hidden;
}
.hero-scroll-bar::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 1px; height: 100%;
  background: var(--white);
  animation: scrollTick 1.8s ease-in-out infinite;
}
@keyframes scrollTick {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* ═══════════════════════════════════════════
   SUBPAGE HERO (non-front pages)
═══════════════════════════════════════════ */
.subpage-hero {
  background: var(--navy-2);
  padding: calc(var(--nav-h) + 4rem) var(--px) 4rem;
  position: relative;
  overflow: hidden;
}
.subpage-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.subpage-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.subpage-label {
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.subpage-label::before {
  content: '';
  display: block; width: 24px; height: 1px;
  background: var(--accent);
}
.subpage-title {
  font-family: var(--f-serif);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 760px;
  margin-bottom: 1.25rem;
}
.subpage-title strong { font-style: normal; font-weight: 600; }
.subpage-subtitle {
  font-family: var(--f-sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--on-navy-secondary);
  max-width: 600px;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════
   INTRO STRIP
═══════════════════════════════════════════ */
.section-intro {
  background: var(--white);
  padding: var(--sec) 0;
  border-bottom: 1px solid var(--rule);
}
.intro-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: center;
}
.intro-label {
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
}
.intro-statement {
  font-family: var(--f-serif);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.intro-statement strong {
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
}

/* ═══════════════════════════════════════════
   SECTION HEADINGS (shared)
═══════════════════════════════════════════ */
.section-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 4rem;
}
.section-label {
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; }
.section-note {
  font-family: var(--f-sans);
  font-size: 0.9rem;           /* up from 0.85 */
  font-weight: 300;
  color: var(--mid);
  max-width: 280px;
  line-height: 1.65;
  text-align: right;
}

/* ═══════════════════════════════════════════
   BIM COMPARISON CAROUSEL
═══════════════════════════════════════════ */
.section-compare { background: var(--light); padding: var(--sec) 0; }

.bim-carousel {
  max-width: var(--max);
  margin: 4rem auto 0;
  padding: 0 var(--px);
  outline: none;
}

.bim-carousel-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--light);
/*   border: 1px solid var(--rule); */
}

.bim-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bim-slide { min-width: 100%; position: relative; }

.bim-slide video {
  width: 100%;
  height: 520px;
  display: block;
  object-fit: contain;
  background: var(--light);
}

/* Badge top-left */
.bim-carousel-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  z-index: 2;
}
.bim-carousel-badge.without { background: #7f2022; color: #ffd6d6; }
.bim-carousel-badge.with    { background: #0a4e1a; color: #c6f0d1; }

/* Prev / Next arrow buttons — on the video sides */
.bim-btn-prev,
.bim-btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(80,80,80,0.5);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.bim-btn-prev:hover,
.bim-btn-next:hover {
  background: rgba(80,80,80,0.8);
  border-color: rgba(255,255,255,0.6);
}
.bim-btn-prev { left: 1rem; }
.bim-btn-next { right: 1rem; }
.bim-btn-prev svg,
.bim-btn-next svg { width: 18px; height: 18px; stroke: var(--white); fill: none; }

/* Title + dots row below video */
.bim-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0 0;
}

.bim-carousel-title {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.bim-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bim-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--rule);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.bim-dot.active {
  background: var(--dark);
  transform: scale(1.35);
}

.compare-footer {
  max-width: var(--max);
  margin: 3.5rem auto 0;
  padding: 3rem var(--px) 0;
  border-top: 1px solid var(--rule);
}
.compare-verdict {
  font-family: var(--f-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  color: var(--mid);
  max-width: 600px;
}
.compare-verdict strong { font-style: normal; font-weight: 600; color: var(--navy); }

/* ═══════════════════════════════════════════
   APPROACH STEPS
═══════════════════════════════════════════ */
.section-approach { background: var(--white); padding: var(--sec) 0; }
.steps-list {
  max-width: var(--max);
  margin: 4rem auto 0;
  padding: 0 var(--px);
  display: flex;
  flex-direction: column;
}
.step-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 2.5rem 0;
  border-top: 1px solid var(--rule);
}
.step-row:last-child { border-bottom: 1px solid var(--rule); }
.step-num {
  font-family: var(--f-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--rule);
  line-height: 1;
  letter-spacing: -0.02em;
  padding-top: 0.15rem;
  transition: color 0.25s;
}
.step-row:hover .step-num { color: var(--accent); }
.step-title {
  font-family: var(--f-serif);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);  /* up from 1.1 */
  font-weight: 400;
  color: var(--dark);
  line-height: 1.3;
  letter-spacing: -0.01em;
  padding-top: 0.2rem;
}
.step-items { display: flex; flex-direction: column; gap: 0.4rem; }
.step-item {
  font-family: var(--f-sans);
  font-size: 0.95rem;          /* up from 0.85 */
  font-weight: 300;
  color: var(--mid);
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
}
.step-item::before {
  content: '—';
  color: var(--rule-dark);     /* was --rule at 1.5:1, now 3.8:1 */
  flex-shrink: 0;
  font-size: 0.8rem;
}

/* ═══════════════════════════════════════════
   READINESS — dark navy
═══════════════════════════════════════════ */
.section-readiness { background: var(--navy-2); padding: var(--sec) 0; color: var(--white); }
.readiness-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--px); }
.readiness-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.readiness-label {
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.readiness-title {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--on-navy-primary);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.readiness-title em     { font-style: italic; color: #8ecae6; }
.readiness-title strong { font-weight: 600; }
.readiness-right { display: flex; flex-direction: column; gap: 1.25rem; padding-top: 1rem; }
.readiness-body {
  font-family: var(--f-sans);
  font-size: 0.97rem;          /* up from 0.92 */
  font-weight: 300;
  color: var(--on-navy-secondary);  /* was rgba(255,255,255,0.65) = ~3.8:1 fail */
  line-height: 1.8;
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-navy-primary);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.9rem 1.6rem;
  border-radius: 2px;
  align-self: flex-start;
  transition: background 0.25s, border-color 0.25s;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.75);
}
.readiness-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.readiness-col { padding: 0 2.5rem; border-right: 1px solid rgba(255,255,255,0.1); }
.readiness-col:first-child { padding-left: 0; }
.readiness-col:last-child  { padding-right: 0; border-right: none; }
.readiness-col-title {
  font-family: var(--f-serif);
  font-size: 1.2rem;           /* up from 1.15 */
  font-weight: 400;
  color: var(--on-navy-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.readiness-col-list { display: flex; flex-direction: column; gap: 0.75rem; }
.readiness-col-list li {
  font-family: var(--f-sans);
  font-size: 0.9rem;           /* up from 0.83 */
  font-weight: 300;
  color: var(--on-navy-muted); /* was rgba(255,255,255,0.55) = ~2.7:1 fail → now 4.6:1 */
  line-height: 1.6;
  padding-left: 0.85rem;
  position: relative;
}
.readiness-col-list li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

/* ═══════════════════════════════════════════
   SERVICES GRID
═══════════════════════════════════════════ */
.section-services { background: var(--light); padding: var(--sec) 0; }
.services-grid {
  max-width: var(--max);
  margin: 4rem auto 0;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.services-grid .s-featured { grid-row: span 2; border-right: 1px solid var(--rule); }
.service-card {
  padding: 2.5rem;
  border-bottom: 1px solid var(--rule);
  background: var(--white);
  transition: background 0.25s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-card:hover { background: #f0f3f7; }
.s-featured { background: var(--navy); }
.s-featured:hover { background: var(--navy-2); }
.service-num {
  font-family: var(--f-sans);
  font-size: 0.7rem;           /* up from 0.65 */
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}
.s-featured .service-num { color: var(--on-navy-muted); }
.service-title {
  font-family: var(--f-serif);
  font-size: 1.2rem;           /* up from 1.15 */
  font-weight: 400;
  color: var(--dark);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.s-featured .service-title {
  font-size: 1.55rem;
  color: var(--on-navy-primary);
}
.service-desc {
  font-family: var(--f-sans);
  font-size: 0.95rem;          /* up from 0.82 */
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65;
  margin-top: auto;
}
.s-featured .service-desc { color: var(--on-navy-secondary); font-size: 0.97rem; }
.service-link {
  font-family: var(--f-sans);
  font-size: 0.72rem;          /* up from 0.68 */
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  transition: gap 0.25s var(--ease), color 0.2s;
}
.service-link::after { content: '→'; }
.service-card:hover .service-link { gap: 0.75rem; color: var(--dark); }
.s-featured .service-link { color: var(--accent); }
.s-featured:hover .service-link { color: var(--white); }

/* ═══════════════════════════════════════════
   WHY DBG
═══════════════════════════════════════════ */
.section-why { background: var(--white); padding: var(--sec) 0; }
.why-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}
.why-left { position: sticky; top: calc(var(--nav-h) + 2rem); }
.why-body {
  font-family: var(--f-sans);
  font-size: 0.95rem;          /* up from 0.88 */
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  margin-top: 1.25rem;
  max-width: 340px;
}
.why-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 2rem;
  transition: gap 0.25s var(--ease);
}
.why-cta:hover { gap: 1rem; }
.why-cta::after { content: '→'; }
.why-pillars { display: flex; flex-direction: column; padding-top: 0.5rem; }
.why-row {
  padding: 2.25rem 0;
  border-top: 1px solid var(--rule);
  display: grid;
  gap: 0.5rem;
}
.why-row:last-child { border-bottom: 1px solid var(--rule); }
.why-row-title {
  font-family: var(--f-serif);
  font-size: 1.3rem;           /* up from 1.25 */
  font-weight: 400;
  color: var(--dark);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.why-row-desc {
  font-family: var(--f-sans);
  font-size: 0.95rem;          /* up from 0.85 */
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.section-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.contact-form-side {
  background: var(--white);
  padding: var(--sec) var(--px);
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form-inner { max-width: 520px; margin-left: auto; width: 100%; }
.form-heading {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.form-heading em { font-style: italic; }
.form-sub {
  font-family: var(--f-sans);
  font-size: 0.95rem;          /* up from 0.85 */
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}
.contact-form { display: flex; flex-direction: column; }
.form-field {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: border-color 0.25s;
}
.form-field:focus-within { border-color: var(--dark); }
.form-field:first-child { border-top: 1px solid var(--rule); }
.form-label {
  display: block;
  font-family: var(--f-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.25rem;
}
.form-input,
.form-textarea {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--f-sans);
  font-size: 1rem;             /* up from 0.9 */
  font-weight: 300;
  color: var(--dark);
  line-height: 1.5;
  padding: 0.15rem 0;
  resize: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: #a0a8b4; }  /* was --rule at 1.5:1 */
.form-textarea { min-height: 70px; }
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--dark);
  border: 1px solid var(--dark);
  padding: 1rem 1.75rem;
  border-radius: 2px;
  margin-top: 2rem;
  align-self: flex-start;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s, gap 0.25s var(--ease);
}
.form-submit:hover { background: var(--navy); border-color: var(--navy); gap: 1.1rem; }

.contact-info-side {
  background: var(--navy-2);
  padding: var(--sec) var(--px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}
.contact-info-side::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.contact-info-list { position: relative; display: flex; flex-direction: column; gap: 1.75rem; }
.contact-info-key {
  font-family: var(--f-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.contact-info-val {
  font-family: var(--f-sans);
  font-size: 0.97rem;          /* up from 0.88 */
  font-weight: 300;
  color: var(--on-navy-secondary);
  line-height: 1.6;
}
.contact-info-val a { transition: color 0.2s; }
.contact-info-val a:hover { color: var(--white); }
.contact-social { position: relative; display: flex; gap: 0.75rem; }
.soc {
  width: 38px; height: 38px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.soc:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); }
.soc svg { width: 15px; height: 15px; fill: var(--on-navy-secondary); }
.soc:hover svg { fill: var(--white); }

/* ═══════════════════════════════════════════
   SUBPAGE CONTENT BLOCKS
═══════════════════════════════════════════ */

/* Overview two-column */
.sp-overview {
  background: var(--white);
  padding: var(--sec) 0;
}
.sp-overview-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.sp-overview-body {
  font-family: var(--f-sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.85;
}
.sp-overview-body p + p { margin-top: 1.25rem; }
.sp-overview-body strong { color: var(--dark); font-weight: 500; }

/* Media placeholder */
.media-placeholder {
  background: var(--light);
  border: 1.5px dashed var(--rule);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--mid);
  font-family: var(--f-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.media-placeholder .mp-icon {
  font-size: 2rem;
  opacity: 0.3;
}
.media-placeholder .mp-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rule-dark);
}
.media-placeholder .mp-hint {
  font-size: 0.78rem;
  color: var(--rule-dark);
}
.media-placeholder.tall   { min-height: 400px; }
.media-placeholder.medium { min-height: 300px; }
.media-placeholder.short  { min-height: 200px; }
.media-placeholder.wide   { min-height: 240px; width: 100%; }

/* Methodology 2x2 grid */
.sp-method {
  background: var(--light);
  padding: var(--sec) 0;
}
.sp-method-intro {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  margin-bottom: 3rem;
}
.sp-method-intro p {
  font-family: var(--f-serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--mid);
  max-width: 700px;
}
.sp-method-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.sp-method-card {
  padding: 2.25rem;
  border-top: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  background: var(--white);
}
.sp-method-card:nth-child(even) { border-right: none; }
.sp-method-card:nth-child(n+3)  { border-top: 1px solid var(--rule); }
.sp-method-card-num {
  font-family: var(--f-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--rule);
  line-height: 1;
  margin-bottom: 1rem;
}
.sp-method-card-title {
  font-family: var(--f-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: -0.01em;
  margin-bottom: 0.65rem;
}
.sp-method-card-desc {
  font-family: var(--f-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
}

/* Deliverables grid */
.sp-deliverables {
  background: var(--white);
  padding: var(--sec) 0;
}
.sp-deliverables-grid {
  max-width: var(--max);
  margin: 4rem auto 0;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--rule);
}
.sp-del-card {
  padding: 1.75rem 2rem;
  border-top: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.sp-del-card:nth-child(3n) { border-right: none; }
.sp-del-card-title {
  font-family: var(--f-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.sp-del-card-desc {
  font-family: var(--f-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65;
}

/* CTA strip */
.sp-cta {
  background: var(--navy-2);
  padding: 4rem var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.sp-cta-text {
  font-family: var(--f-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--on-navy-primary);
  max-width: 600px;
}
.sp-cta-text strong { font-style: normal; font-weight: 600; }

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
.about-statement {
  background: var(--white);
  padding: var(--sec) 0;
  border-bottom: 1px solid var(--rule);
}
.about-statement-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.about-body {
  font-family: var(--f-sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.85;
}
.about-body p + p { margin-top: 1.1rem; }
.about-body strong { color: var(--dark); font-weight: 500; }

.about-how {
  background: var(--light);
  padding: var(--sec) 0;
}
.about-how-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.about-how-body {
  font-family: var(--f-sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.85;
}
.about-how-body p + p { margin-top: 1rem; }
.about-how-body strong { color: var(--dark); font-weight: 500; }

.who-grid {
  max-width: var(--max);
  margin: 4rem auto 0;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.who-card {
  padding: 2rem 2.5rem;
  border-top: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.who-card:nth-child(even) { border-right: none; }
.who-card-role {
  font-family: var(--f-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.who-card-desc {
  font-family: var(--f-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
}

.founder-section {
  background: var(--white);
  padding: var(--sec) 0;
}
.founder-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}
.founder-photo { /* placeholder */ }
.founder-name {
  font-family: var(--f-serif);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.founder-title {
  font-family: var(--f-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}
.founder-bio {
  font-family: var(--f-sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.85;
}
.founder-bio p + p { margin-top: 1rem; }

/* ═══════════════════════════════════════════
   COMBINED SERVICES PAGE
═══════════════════════════════════════════ */
.svc-row {
  background: var(--white);
  padding: var(--sec) 0;
  border-bottom: 1px solid var(--rule);
}
.svc-row--alt { background: var(--light); }
.svc-row-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.svc-row-left { display: flex; flex-direction: column; gap: 1rem; }
.svc-row-title {
  font-family: var(--f-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.svc-row-decision {
  font-family: var(--f-serif);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  line-height: 1.4;
}
.svc-row-body {
  font-family: var(--f-sans);
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.85;
}
.svc-row-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 0.5rem;
  transition: gap 0.25s var(--ease), color 0.2s;
  gap: 0;
}
.svc-row-link:hover { color: var(--dark); gap: 4px; }
.svc-row-right { display: flex; flex-direction: column; gap: 1.5rem; }
.svc-row-deliverables {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 1.5rem;
}
.svc-row--alt .svc-row-deliverables { background: var(--light); }
.svc-del-heading {
  font-family: var(--f-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.875rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--rule);
}
.svc-row-deliverables ul { display: flex; flex-direction: column; gap: 0.5rem; }
.svc-row-deliverables li {
  font-family: var(--f-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--mid);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}
.svc-row-deliverables li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

/* Form validation */
.form-field.field-error { border-color: #c0392b; }
.field-error-msg {
  display: block;
  font-family: var(--f-sans);
  font-size: 0.75rem;
  color: #c0392b;
  margin-top: 0.25rem;
}
.form-msg {
  font-family: var(--f-sans);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-top: 1rem;
  min-height: 1.5em;
}
.form-msg-success { color: #0a6e00; }
.form-msg-error   { color: #c0392b; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  padding: 1.5rem var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-family: var(--f-sans);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);  /* up from 0.25 — was ~1.5:1 fail */
}
.footer-loc {
  font-family: var(--f-sans);
  font-size: 0.76rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45); /* up from 0.20 */
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.reveal { opacity: 1; transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js-loaded .reveal           { opacity: 0; transform: translateY(20px); }
.js-loaded .reveal.visible   { opacity: 1; transform: none; }
.js-loaded .r-left           { transform: translateX(-20px); opacity: 0; }
.js-loaded .r-right          { transform: translateX(20px);  opacity: 0; }
.js-loaded .r-left.visible,
.js-loaded .r-right.visible  { transform: none; opacity: 1; }
.js-loaded .d1 { transition-delay: 0.08s; }
.js-loaded .d2 { transition-delay: 0.16s; }
.js-loaded .d3 { transition-delay: 0.24s; }
.js-loaded .d4 { transition-delay: 0.32s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .intro-wrap            { grid-template-columns: 1fr; gap: 2rem; }
  .why-inner             { grid-template-columns: 1fr; gap: 3rem; }
  .why-left              { position: static; }
  .why-body              { max-width: 100%; }
  .section-contact       { grid-template-columns: 1fr; min-height: auto; }
  .contact-form-inner    { max-width: 100%; }
  .sp-overview-inner     { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-statement-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-how-inner       { grid-template-columns: 1fr; gap: 2.5rem; }
  .founder-inner         { grid-template-columns: 1fr; }
  .svc-row-inner         { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 900px) {
  .compare-grid          { grid-template-columns: 1fr; }
  .compare-rule          { display: none; }
  .compare-col           { padding: 0; }
  .compare-col + .compare-col { margin-top: 2.5rem; }
  .readiness-top         { grid-template-columns: 1fr; gap: 2rem; }
  .readiness-cols        { grid-template-columns: 1fr; gap: 2rem; }
  .readiness-col         { padding: 0; border-right: none; }
  .readiness-col + .readiness-col { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
  .services-grid         { grid-template-columns: 1fr; }
  .s-featured            { grid-row: span 1; border-right: none; }
  .step-row              { grid-template-columns: 50px 1fr; }
  .step-row > *:nth-child(3) { grid-column: 2; }
  .sp-method-grid        { grid-template-columns: 1fr; }
  .sp-method-card        { border-right: none; }
  .sp-deliverables-grid  { grid-template-columns: 1fr 1fr; }
  .sp-del-card:nth-child(3n) { border-right: 1px solid var(--rule); }
  .sp-del-card:nth-child(2n) { border-right: none; }
  .who-grid              { grid-template-columns: 1fr; }
  .who-card              { border-right: none; }
}
@media (max-width: 768px) {
  :root { --sec: 4rem; --px: 1.25rem; }
  .nav-links   { display: none; }
  .nav-toggle  { display: flex; }
  .logo-sub    { display: none; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .section-note { text-align: left; }
  .sp-deliverables-grid { grid-template-columns: 1fr; }
  .sp-del-card { border-right: none; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2.8rem; }
  .hero-scroll   { display: none; }
}