/* ============================================================
   BLUEPRINT RISK CONSULTING — style.css
   Brand: Navy #0d2040 | Gold #c9a227 | Cream #f9f7f2
   Fonts: DM Serif Display (headings) + DM Sans (body)
   ============================================================ */

/* ── Design Tokens ───────────────────────────────────────────── */
:root {
  /* Brand colors */
  --navy:        #0d2040;
  --navy-mid:    #162d56;
  --navy-light:  #1e3a6e;
  --navy-glass:  rgba(13,32,64,0.92);
  --gold:        #c9a227;
  --gold-light:  #e8c35a;
  --gold-faint:  rgba(201,162,39,0.08);
  --cream:       #f9f7f2;
  --cream-dark:  #f0ece4;
  --white:       #ffffff;

  /* Text */
  --text-body:   #2c3444;
  --text-muted:  #6b7a8d;
  --text-faint:  #a0aab8;

  /* Layout */
  --max-w:       1200px;
  --max-w-narrow: 840px;
  --max-w-text:  680px;
  --header-h:    115px;

  /* Type scale — boosted for desktop legibility */
  --text-xs:   clamp(0.875rem, 0.8rem + 0.25vw, 1rem);
  --text-sm:   clamp(1rem, 0.95rem + 0.35vw, 1.125rem);
  --text-base: clamp(1.125rem, 1.05rem + 0.35vw, 1.3rem);
  --text-lg:   clamp(1.3rem, 1.1rem + 0.85vw, 1.75rem);
  --text-xl:   clamp(1.75rem, 1.4rem + 1.4vw, 2.5rem);
  --text-2xl:  clamp(2.2rem, 1.4rem + 2.8vw, 3.75rem);
  --text-3xl:  clamp(2.75rem, 1.2rem + 4.5vw, 5.25rem);

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(13,32,64,0.08);
  --shadow-md: 0 4px 16px rgba(13,32,64,0.1);
  --shadow-lg: 0 12px 40px rgba(13,32,64,0.15);

  /* Transition */
  --t-fast: 180ms cubic-bezier(0.16,1,0.3,1);

  /* Fonts */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-padding-top: var(--sp-20);
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.7;
  min-height: 100dvh;
}

img, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  text-wrap: balance;
  line-height: 1.15;
  color: var(--navy);
}
p, li { text-wrap: pretty; max-width: 72ch; }

a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

::selection {
  background: rgba(201,162,39,0.2);
  color: var(--navy);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Page transitions ──────────────────────────────────────── */
.page-section {
  display: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.page-section.active {
  display: block;
  opacity: 1;
}
.page-section.fade-in {
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Screen reader only ────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 115px;
  display: flex; align-items: center;
  padding: 0 clamp(var(--sp-4), 4vw, var(--sp-10));
  transition: background var(--t-fast), backdrop-filter var(--t-fast), box-shadow var(--t-fast), height var(--t-fast);
}

.site-header.transparent {
  background: transparent;
}

.site-header.scrolled {
  background: var(--navy-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), var(--shadow-sm);
  height: 100px;
}

.header-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

/* Real logo image in header */
.logo-img {
  height: 140px;
  width: auto;
  display: block;
  border-radius: 4px;
}

/* Larger logo on wide desktop */
@media (min-width: 1100px) {
  .logo-img {
    height: 155px;
  }
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.nav-link {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
  background: none;
  border: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-link.active { color: var(--gold); }

/* Services dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  display: inline-block;
  transition: transform var(--t-fast);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + var(--sp-2));
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: var(--sp-2);
  min-width: 260px;
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
  animation: dropIn 0.18s ease;
}

@keyframes dropIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-4px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.dropdown-item {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
  text-decoration: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.dropdown-item:hover {
  background: rgba(255,255,255,0.08);
  color: var(--gold);
}

.dropdown-item .item-num {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  margin-right: var(--sp-2);
}

/* CTA button in nav */
.nav-cta {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy) !important;
  background: var(--gold) !important;
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-sm);
  margin-left: var(--sp-2);
  text-decoration: none;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast) !important;
  box-shadow: 0 2px 8px rgba(201,162,39,0.3);
  display: inline-block;
  border: none;
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,162,39,0.4) !important;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--navy);
  padding: var(--sp-4) var(--sp-6) var(--sp-8);
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
}

.mobile-menu.open { display: block; }

.mobile-nav-link {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.mobile-nav-link:hover { color: var(--gold); }

.mobile-services { padding-left: var(--sp-6); }

.mobile-cta {
  display: block;
  margin-top: var(--sp-4);
  padding: var(--sp-4);
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  border-radius: var(--r-sm);
  text-decoration: none;
  cursor: pointer;
  border: none;
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  padding: var(--sp-16) clamp(var(--sp-4), 5vw, var(--sp-10)) 0;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-12);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
}

.footer-logo-block { }

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.footer-logo-icon { width: 48px; height: 48px; color: var(--gold-light); }

.footer-brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.footer-brand-top {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-brand-bottom {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Footer real logo image (full logo with slogan) */
.footer-logo-img {
  height: auto;
  width: 260px;
  max-width: 100%;
  display: block;
  margin-bottom: var(--sp-4);
}

.footer-tagline {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 280px;
  font-style: italic;
}

.footer-nav-heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer-nav-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: color var(--t-fast);
  background: none;
  border: none;
  text-align: left;
  padding: 0;
  text-decoration: none;
}

.footer-nav-link:hover { color: var(--gold); }

.footer-contact-heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--sp-3);
  text-decoration: none;
  transition: color var(--t-fast);
}

.footer-contact-item:hover { color: var(--gold); }
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--sp-6) 0;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.footer-copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}

.footer-disclaimer {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  font-style: italic;
}

/* ============================================================
   SHARED SECTION COMPONENTS
   ============================================================ */
.section-label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
  display: block;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: var(--sp-4);
  line-height: 1.15;
  text-align: center;
}

.section-subtitle {
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: var(--sp-12);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle.centered { margin-left: auto; margin-right: auto; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(var(--sp-4), 5vw, var(--sp-10));
}

.section-pad {
  padding-block: clamp(var(--sp-12), 8vw, var(--sp-24));
}

/* Accent line */
.accent-line {
  width: 48px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: var(--sp-6);
}

/* Blueprint grid overlay (shared hero style) */
.blueprint-grid {
  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: 48px 48px;
  pointer-events: none;
}

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy) !important;
  -webkit-text-fill-color: var(--navy);
  background: var(--gold);
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  box-shadow: 0 4px 16px rgba(201,162,39,0.3);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,39,0.4);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: var(--r-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-1px);
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--t-fast), transform var(--t-fast);
}

.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

/* ============================================================
   HOME PAGE
   ============================================================ */

/* Hero */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 55%, #1a3560 100%);
  overflow: hidden;
  padding-top: 72px;
}

.home-hero .blueprint-grid {
  opacity: 0.6;
}

.home-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(201,162,39,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w-narrow);
  padding: clamp(var(--sp-12), 8vw, var(--sp-20)) 0;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-5);
  justify-content: center;
}

.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.home-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--sp-6);
}

.hero-sub {
  font-size: var(--text-lg);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto var(--sp-8);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
  justify-content: center;
}

.hero-qualifier {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  font-style: italic;
}

/* Trust strip */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid rgba(13,32,64,0.08);
  padding: var(--sp-8) clamp(var(--sp-4), 5vw, var(--sp-10));
}

.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

@media (max-width: 640px) {
  .trust-inner { grid-template-columns: 1fr; gap: var(--sp-5); }
}

.trust-stat {
  text-align: center;
  padding: var(--sp-4) var(--sp-6);
}

.trust-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.trust-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

/* Services overview */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

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

.service-card {
  background: var(--white);
  border: 1px solid rgba(13,32,64,0.08);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--t-fast);
}

.service-card:hover::before { opacity: 1; }

.service-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: rgba(13,32,64,0.08);
  font-weight: 400;
  margin-bottom: var(--sp-4);
  line-height: 1;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--navy);
  margin-bottom: var(--sp-3);
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}

.service-learn-more {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: gap var(--t-fast);
}

.service-learn-more:hover { gap: var(--sp-3); }

/* Why Blueprint */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-8), 6vw, var(--sp-16));
  align-items: center;
}

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

.why-bullets {
  list-style: none;
  padding: 0;
  margin: var(--sp-6) 0;
}

.why-bullet {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(13,32,64,0.06);
  font-size: var(--text-base);
  color: var(--text-body);
  line-height: 1.6;
}

.why-bullet:last-child { border-bottom: none; }

.why-bullet::before {
  content: '';
  width: 20px; height: 20px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d2040' stroke-width='3' stroke-linecap='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
}

.why-visual {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-visual .blueprint-grid {
  opacity: 0.3;
}

.why-pullquote {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  margin-bottom: var(--sp-6);
}

.why-pullquote::before {
  content: '"';
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: -20px; left: -16px;
  line-height: 1;
  font-family: var(--font-display);
}

.why-stat-row {
  position: relative;
  z-index: 1;
  display: flex;
  gap: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.why-stat-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--gold);
  display: block;
}

.why-stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
}

/* Value prop section */
.value-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.value-inner {
  position: relative;
  z-index: 1;
}

.value-section .section-title {
  color: var(--white);
}

.value-section .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-10);
}

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

.value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
}

.value-icon {
  width: 48px; height: 48px;
  background: rgba(201,162,39,0.15);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: var(--sp-5);
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--white);
  margin-bottom: var(--sp-3);
}

.value-card p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.value-gold { color: var(--gold); font-weight: 600; }

/* Contact form */
.contact-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-section .blueprint-grid { opacity: 0.3; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-16);
  align-items: start;
  position: relative;
  z-index: 1;
}

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

.contact-info h2 {
  color: var(--white);
}

.contact-info p {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-top: var(--sp-4);
  max-width: 400px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--t-fast);
}
.contact-detail:hover { color: var(--gold); }
.contact-detail svg { color: var(--gold); }

/* Form */
.inquiry-form {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: clamp(var(--sp-8), 5vw, var(--sp-12));
}

.form-row {
  margin-bottom: var(--sp-5);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-5);
}

@media (max-width: 500px) {
  .form-row-2 { grid-template-columns: 1fr; }
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: var(--sp-2);
}

.form-label .req { color: var(--gold); margin-left: 2px; }

.form-input, .form-textarea {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--navy);
  background: var(--cream);
  border: 1.5px solid rgba(13,32,64,0.15);
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color var(--t-fast), background var(--t-fast);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: var(--text-faint);
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-submit {
  display: block;
  width: 100%;
  padding: var(--sp-4) var(--sp-8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
  box-shadow: 0 4px 16px rgba(201,162,39,0.3);
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ============================================================
   ROI CALCULATOR PAGE
   ============================================================ */
.roi-page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%);
  padding: 120px clamp(var(--sp-4), 5vw, var(--sp-10)) var(--sp-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.roi-page-hero .blueprint-grid { opacity: 0.4; }

.roi-page-hero h1 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--white);
  margin-bottom: var(--sp-4);
}

.roi-page-hero p {
  position: relative;
  z-index: 1;
  font-size: var(--text-base);
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto;
}

.roi-embed-wrap {
  background: var(--cream);
  padding: var(--sp-8) 0;
}

/* Hide duplicate hero that comes from the inlined ROI embed */
.roi-embed-wrap .hero,
#roi-embed-root .hero {
  display: none !important;
}

/* ============================================================
   SERVICES PAGE (overview)
   ============================================================ */
.services-page-hero {
  background: var(--navy);
  padding: 120px clamp(var(--sp-4), 5vw, var(--sp-10)) var(--sp-16);
  position: relative;
  overflow: hidden;
}

.services-page-hero .blueprint-grid { opacity: 0.4; }

.services-page-hero h1 {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--white);
  margin-bottom: var(--sp-4);
}

.services-page-hero p {
  position: relative; z-index: 1;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  font-size: var(--text-base);
}

.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
}

@media (max-width: 768px) {
  .services-overview-grid { grid-template-columns: 1fr; }
}

.service-overview-card {
  background: var(--white);
  border: 1px solid rgba(13,32,64,0.08);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

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

.soc-header {
  background: var(--navy);
  padding: var(--sp-6) var(--sp-8);
  position: relative;
  overflow: hidden;
}

.soc-header .blueprint-grid { opacity: 0.2; }

.soc-num {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  position: absolute;
  bottom: -8px; right: var(--sp-6);
}

.soc-title {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--white);
  margin-bottom: var(--sp-2);
}

.soc-tagline {
  position: relative; z-index: 1;
  font-size: var(--text-xs);
  color: var(--gold);
  font-style: italic;
}

.soc-body {
  padding: var(--sp-8);
}

.soc-pricing {
  display: inline-block;
  margin-bottom: var(--sp-4);
  padding: var(--sp-2) var(--sp-4);
  background: var(--gold-faint);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--r-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.soc-body p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

.waitlist-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(201,162,39,0.1);
  border: 1px solid var(--gold);
  border-radius: var(--r-sm);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}

/* ============================================================
   SERVICE DETAIL PAGES
   ============================================================ */
.service-detail-hero {
  background: var(--navy);
  padding: 120px clamp(var(--sp-4), 5vw, var(--sp-10)) var(--sp-16);
  position: relative;
  overflow: hidden;
}

.service-detail-hero .blueprint-grid { opacity: 0.4; }

.sdh-inner { position: relative; z-index: 1; max-width: var(--max-w-narrow); }

.sdh-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
  display: block;
}

.sdh-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--white);
  margin-bottom: var(--sp-3);
}

.sdh-tagline {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--sp-8);
  font-style: italic;
}

.service-detail-body {
  background: var(--cream);
}

.sdl-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

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

.sdl-desc {
  font-size: var(--text-base);
  color: var(--text-body);
  line-height: 1.8;
}

.sdl-desc p + p { margin-top: var(--sp-4); }

.pricing-card {
  background: var(--white);
  border: 1px solid rgba(13,32,64,0.1);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  position: sticky;
  top: 96px;
}

.pricing-heading {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--navy);
  margin-bottom: var(--sp-5);
}

.pricing-item {
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(13,32,64,0.06);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.pricing-item:last-of-type { border-bottom: none; }

.pricing-tier {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
}

.pricing-range {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--gold);
}

.pricing-note {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(13,32,64,0.06);
  font-style: italic;
}

/* FAQ accordion */
.faq-section {
  background: var(--white);
  padding: clamp(var(--sp-12), 6vw, var(--sp-20)) clamp(var(--sp-4), 5vw, var(--sp-10));
}

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(13,32,64,0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-5) 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  gap: var(--sp-4);
}

.faq-chevron {
  width: 20px; height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform var(--t-fast);
}

.faq-item.open .faq-chevron {
  transform: rotate(-135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer-inner {
  padding: 0 0 var(--sp-5);
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* Service CTA strip */
.service-cta-strip {
  background: var(--gold);
  padding: var(--sp-12) clamp(var(--sp-4), 5vw, var(--sp-10));
  text-align: center;
}

.service-cta-strip h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--navy);
  margin-bottom: var(--sp-4);
}

.service-cta-strip p {
  color: rgba(13,32,64,0.7);
  font-size: var(--text-sm);
  margin-bottom: var(--sp-6);
}

/* Fix: CTA strip buttons must be navy on gold background */
.service-cta-strip .btn-gold {
  background: var(--navy) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 16px rgba(13,32,64,0.3);
}

.service-cta-strip .btn-gold:hover {
  background: var(--navy-mid) !important;
  transform: translateY(-2px);
}

/* Waitlist notice */
.waitlist-notice {
  background: linear-gradient(135deg, var(--gold-faint) 0%, rgba(201,162,39,0.12) 100%);
  border: 1.5px solid rgba(201,162,39,0.35);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-8);
  margin-bottom: var(--sp-8);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.waitlist-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.waitlist-notice h3 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-2);
}

.waitlist-notice p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: none;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  background: var(--navy);
  padding: 120px clamp(var(--sp-4), 5vw, var(--sp-10)) var(--sp-16);
  position: relative;
  overflow: hidden;
}

.about-hero .blueprint-grid { opacity: 0.4; }

.about-hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w-narrow);
  text-align: center;
  margin: 0 auto;
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--white);
  margin-bottom: var(--sp-3);
}

.about-hero-sub {
  font-size: var(--text-base);
  color: var(--gold);
  font-style: italic;
  margin-bottom: var(--sp-6);
}

.about-creds {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.cred-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em;
}

.about-body {
  background: var(--cream);
}

/* Founder headshot intro block */
.founder-intro {
  display: flex;
  justify-content: center;
  margin-bottom: var(--sp-12);
}

.founder-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.founder-photo {
  width: 220px;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-xl);
  border: 3px solid rgba(201,162,39,0.4);
  box-shadow: 0 12px 40px rgba(13,32,64,0.18);
  display: block;
}

.founder-photo-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.founder-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--navy);
  font-weight: 600;
}

.founder-creds {
  font-size: var(--text-xs);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

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

  .bio-text h2,
  .bio-text p,
  .bio-text .section-label {
    text-align: center;
  }

  .founder-intro {
    text-align: center;
  }

  .founder-name,
  .founder-creds {
    text-align: center;
    display: block;
  }
}

.bio-text { }

.bio-text p {
  font-size: var(--text-base);
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: var(--sp-5);
}

.bio-sidebar { }

.sidebar-card {
  background: var(--white);
  border: 1px solid rgba(13,32,64,0.08);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  margin-bottom: var(--sp-6);
}

.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--navy);
  margin-bottom: var(--sp-4);
}

.sidebar-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: none;
}

/* About Chance section */
.chance-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.chance-section .blueprint-grid { opacity: 0.3; }

.chance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
  position: relative; z-index: 1;
}

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

  .chance-text h2,
  .chance-text p,
  .chance-text .section-label {
    text-align: center;
  }
}

.chance-gsd-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.chance-gsd-hero {
  width: 220px; height: 220px;
  background: rgba(201,162,39,0.06);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-5);
}

.chance-gsd-hero svg {
  width: 100%; height: 100%;
  color: var(--gold);
}

/* Real Chance photo */
.chance-photo-frame {
  width: 280px;
  height: 280px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 2px solid rgba(201,162,39,0.35);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  flex-shrink: 0;
}

.chance-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.chance-caption {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-align: center;
  font-style: italic;
}

.chance-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--white);
  margin-bottom: var(--sp-4);
}

.chance-text p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
  max-width: none;
}

/* Closing tagline */
.closing-tagline {
  text-align: center;
  padding: var(--sp-16) clamp(var(--sp-4), 5vw, var(--sp-10));
  background: var(--cream-dark);
}

.closing-tagline blockquote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--navy);
  font-style: italic;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto var(--sp-6);
}

/* ============================================================
   BLOG INDEX
   ============================================================ */
.blog-hero {
  background: var(--navy);
  padding: 120px clamp(var(--sp-4), 5vw, var(--sp-10)) var(--sp-16);
  position: relative; overflow: hidden;
}

.blog-hero .blueprint-grid { opacity: 0.4; }

.blog-hero h1 {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--white);
  margin-bottom: var(--sp-4);
}

.blog-hero p {
  position: relative; z-index: 1;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  font-size: var(--text-base);
}

/* Category filters */
.blog-filters {
  padding: var(--sp-6) clamp(var(--sp-4), 5vw, var(--sp-10));
  background: var(--white);
  border-bottom: 1px solid rgba(13,32,64,0.08);
}

.filter-list {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.filter-btn {
  padding: var(--sp-2) var(--sp-5);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--cream);
  border: 1.5px solid rgba(13,32,64,0.12);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all var(--t-fast);
}

.filter-btn:hover, .filter-btn.active {
  color: var(--navy);
  background: var(--gold-faint);
  border-color: var(--gold);
}

/* Blog grid */
.blog-content {
  background: var(--cream);
  padding: var(--sp-12) clamp(var(--sp-4), 5vw, var(--sp-10));
}

.blog-content-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Feature card */
.blog-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-12);
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(13,32,64,0.08);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.blog-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .blog-feature { grid-template-columns: 1fr; }
}

.blog-feature-img {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-feature-img .blueprint-grid { opacity: 0.3; }

.blog-feature-img svg {
  position: relative; z-index: 1;
  width: 80px; height: 80px;
  color: rgba(201,162,39,0.4);
}

.blog-feature-body {
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-cat-tag {
  display: inline-block;
  padding: var(--sp-1) var(--sp-3);
  background: var(--gold-faint);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: var(--r-sm);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--navy);
  margin-bottom: var(--sp-3);
  cursor: pointer;
  line-height: 1.2;
}

.blog-card-title:hover { color: var(--gold); }

.blog-card-excerpt {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.blog-author {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--navy);
}

.blog-date, .blog-readtime {
  font-size: var(--text-xs);
  color: var(--text-faint);
}

.blog-dot {
  width: 3px; height: 3px;
  background: var(--text-faint);
  border-radius: 50%;
}

/* Blog cards grid */
.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

@media (max-width: 900px) {
  .blog-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .blog-cards-grid { grid-template-columns: 1fr; }
}

.blog-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(13,32,64,0.08);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  cursor: pointer;
}

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

.blog-card-img {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-card-img .blueprint-grid { opacity: 0.2; }

.blog-card-img svg {
  position: relative; z-index: 1;
  width: 48px; height: 48px;
  color: rgba(201,162,39,0.35);
}

.blog-card-body {
  padding: var(--sp-5) var(--sp-6);
}

.blog-card .blog-card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--navy);
  margin-bottom: var(--sp-3);
  line-height: 1.25;
}

.blog-card .blog-card-excerpt {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
}

.blog-card .blog-meta { gap: var(--sp-2); }

/* ============================================================
   BLOG POST PAGE
   ============================================================ */
.post-hero {
  background: var(--navy);
  padding: 120px clamp(var(--sp-4), 5vw, var(--sp-10)) var(--sp-12);
  position: relative; overflow: hidden;
}

.post-hero .blueprint-grid { opacity: 0.3; }

.post-hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w-narrow);
}

.post-back {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: var(--sp-5);
  transition: color var(--t-fast);
}

.post-back:hover { color: var(--gold); }

.post-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--white);
  margin-bottom: var(--sp-5);
  line-height: 1.1;
}

.post-meta-bar {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.post-body-wrap {
  background: var(--cream);
  padding: var(--sp-16) clamp(var(--sp-4), 5vw, var(--sp-10));
}

.post-body-inner {
  max-width: 720px;
  margin: 0 auto;
}

.post-body {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text-body);
}

.post-body p { margin-bottom: var(--sp-6); max-width: none; }

.post-body h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--navy);
  margin: var(--sp-10) 0 var(--sp-4);
  line-height: 1.2;
}

.post-body h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--navy);
  margin: var(--sp-8) 0 var(--sp-3);
}

.post-body ul, .post-body ol {
  padding-left: var(--sp-6);
  margin-bottom: var(--sp-6);
}

.post-body li {
  margin-bottom: var(--sp-2);
  max-width: none;
}

.post-body strong { color: var(--navy); font-weight: 700; }

.post-body a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.post-source-note {
  margin-top: var(--sp-10);
  padding: var(--sp-4) var(--sp-6);
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-style: italic;
}

.post-source-note a {
  color: var(--gold);
  text-decoration: underline;
}

/* Related posts */
.related-posts {
  background: var(--white);
  padding: var(--sp-12) clamp(var(--sp-4), 5vw, var(--sp-10));
  border-top: 1px solid rgba(13,32,64,0.08);
}

.related-posts-inner { max-width: var(--max-w); margin: 0 auto; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}

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

.related-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  cursor: pointer;
  transition: transform var(--t-fast);
  border: 1px solid rgba(13,32,64,0.06);
}

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

.related-card .blog-cat-tag { margin-bottom: var(--sp-3); }

.related-card-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--navy);
  line-height: 1.3;
  cursor: pointer;
}

.related-card-title:hover { color: var(--gold); }

/* Post CTA strip */
.post-cta {
  background: var(--navy);
  text-align: center;
  padding: var(--sp-12) clamp(var(--sp-4), 5vw, var(--sp-10));
  position: relative; overflow: hidden;
}

.post-cta .blueprint-grid { opacity: 0.25; }

.post-cta h2 {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--white);
  margin-bottom: var(--sp-3);
}

.post-cta p {
  position: relative; z-index: 1;
  color: rgba(255,255,255,0.65);
  font-size: var(--text-sm);
  margin-bottom: var(--sp-6);
}

.post-cta .btn-gold {
  position: relative; z-index: 1;
  background: var(--gold) !important;
  color: var(--navy) !important;
  -webkit-text-fill-color: var(--navy);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .home-hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-ctas { flex-direction: column; }
  .btn-gold, .btn-outline-white { width: 100%; justify-content: center; }
  .why-grid { gap: var(--sp-8); }
  .contact-grid { gap: var(--sp-8); }
  .sdl-grid { gap: var(--sp-8); }
  .about-grid { gap: var(--sp-8); }
  .chance-grid { gap: var(--sp-8); }
}

/* ============================================================
   DESKTOP CENTERING & LEGIBILITY — enforced at 901px+
   ============================================================ */
@media (min-width: 901px) {
  /* Center all page section hero text */
  .services-page-hero,
  .roi-page-hero,
  .about-hero,
  .blog-hero {
    text-align: center;
  }
  .services-page-hero p,
  .blog-hero p {
    margin: 0 auto;
  }
  .about-hero-inner {
    margin: 0 auto;
    text-align: center;
  }
  .about-creds {
    justify-content: center;
  }

  /* Service detail hero — centered */
  .sdh-inner {
    text-align: center;
    margin: 0 auto;
  }

  /* All section labels and titles should be centered on desktop */
  .why-grid .section-label,
  .why-grid .section-title,
  .why-grid h2 {
    text-align: left;
  }

  /* Boost nav link size slightly on desktop */
  .nav-link {
    font-size: 0.875rem;
  }

  /* Gold section label — ensure readable size */
  .section-label {
    font-size: var(--text-sm);
  }

  /* Ensure btn-gold always shows navy text */
  .btn-gold,
  a.btn-gold {
    color: var(--navy) !important;
  }

  /* Pricing card book button — ensure readable contrast */
  .pricing-card .btn-gold {
    color: var(--navy) !important;
    background: var(--gold) !important;
  }
}

/* ============================================================
   BLOG POST ARTICLE PAGES
   ============================================================ */

.blog-post-article {
  min-height: 60vh;
}

.blog-post-hero {
  background: var(--navy);
  padding: calc(var(--header-h) + var(--sp-12)) clamp(var(--sp-4), 5vw, var(--sp-10)) var(--sp-12);
  position: relative;
  overflow: hidden;
}

.blog-post-hero .blueprint-grid { opacity: 0.3; }

.blog-post-meta-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-back {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-full);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}

.btn-back:hover {
  background: rgba(255,255,255,0.22);
  color: var(--white);
}

.blog-post-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw + 1rem, 3rem);
  color: var(--white);
  line-height: 1.15;
  max-width: 52ch;
  position: relative;
  z-index: 1;
  margin-bottom: var(--sp-5);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.blog-post-hero .blog-meta {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.65);
  justify-content: center;
  text-align: center;
}

.blog-post-hero .blog-dot {
  background: rgba(255,255,255,0.35);
}

.blog-post-body {
  max-width: 740px;
  margin: 0 auto;
  padding: var(--sp-12) 0 var(--sp-16);
}

.blog-post-body p {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--text);
  margin-bottom: var(--sp-5);
  max-width: 70ch;
}

.blog-lead {
  font-size: var(--text-lg) !important;
  color: var(--navy) !important;
  font-weight: 500;
  border-left: 3px solid var(--gold);
  padding-left: var(--sp-5);
  margin-bottom: var(--sp-8) !important;
}

.blog-post-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.5vw + 0.8rem, 1.8rem);
  color: var(--navy);
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
  line-height: 1.2;
}

.blog-post-body h3 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy);
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
}

.blog-post-body ul,
.blog-post-body ol {
  margin-left: var(--sp-6);
  margin-bottom: var(--sp-5);
}

.blog-post-body li {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text);
  margin-bottom: var(--sp-2);
  max-width: 70ch;
}

.blog-post-body strong {
  color: var(--navy);
  font-weight: 700;
}

.blog-post-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-post-body a:hover { color: var(--navy); }

.blog-post-body em {
  font-style: italic;
  color: var(--text-muted);
}

.blog-post-cta-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-8);
  margin-top: var(--sp-12);
  text-align: center;
}

.blog-post-cta-box .btn-gold,
.blog-post-cta-box a.btn-gold {
  background: var(--gold) !important;
  color: var(--navy) !important;
  -webkit-text-fill-color: var(--navy);
}

.blog-post-cta-box h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--white);
  margin-bottom: var(--sp-3);
  font-weight: 400;
}

.blog-post-cta-box p {
  color: rgba(255,255,255,0.72);
  font-size: var(--text-sm);
  margin-bottom: var(--sp-6);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   SITE FOOTER
   ============================================================ */

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.72);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-16) clamp(var(--sp-4), 5vw, var(--sp-10));
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--sp-10);
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  margin-bottom: var(--sp-5);
}

.footer-logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--gold);
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--white);
  line-height: 1.2;
}

.footer-logo-tagline {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
}

.footer-bio {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 38ch;
  margin-bottom: var(--sp-4);
}

.footer-disclaimer {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
  max-width: 40ch;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--sp-4);
  margin-top: var(--sp-4);
}

.footer-nav {
  display: contents;
}

.footer-nav-col h3.footer-nav-heading,
.footer-contact h3.footer-nav-heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}

.footer-nav-col ul,
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-nav-col a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--t-fast);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
}

.footer-nav-col a:hover {
  color: var(--gold);
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
}

.footer-contact-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--gold);
}

.footer-contact-list a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--t-fast);
}

.footer-contact-list a:hover { color: var(--gold); }

.footer-linkedin-link {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.65) !important;
  text-decoration: none;
  transition: color var(--t-fast);
}

.footer-linkedin-link:hover { color: var(--gold) !important; }

.footer-linkedin-link svg {
  width: 20px !important;
  height: 20px !important;
  color: inherit !important;
  fill: currentColor;
}

.footer-cta-btn {
  display: inline-flex;
  margin-top: var(--sp-6);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--sp-5) clamp(var(--sp-4), 5vw, var(--sp-10));
}

.footer-bottom .container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer-copyright {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  max-width: 100%;
}

.footer-fee-disclaimer {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  max-width: 100%;
}

/* ============================================================
   MOBILE HEADER OVERLAP FIXES
   ============================================================ */

/* On mobile the header is still 115px — ensure all page heroes
   that use --header-h get enough clearance */
@media (max-width: 768px) {
  :root {
    --header-h: 115px;
  }

  /* Blog post hero — add extra breathing room on mobile */
  .blog-post-hero {
    padding-top: calc(var(--header-h) + var(--sp-8));
  }

  /* Book a Call / Calendly page — push content below fixed header */
  #book-a-call .section-wrap {
    padding-top: calc(var(--header-h) + var(--sp-8)) !important;
  }
}
