/* =========================================================
   Conductor — Main Stylesheet v4
   Design: Deep Navy / Burnished Gold / Off-White
   v3: Distinctiveness pass — atmosphere system, varied section
       depth, pacing, signature moments, no icons, typography
       tightened, body copy width reduced, overlines enlarged.
   v4: Desktop polish pass — text contrast on dark backgrounds,
       button text fix, equal proof card weight, alignment,
       spacing refinements, line-break fixes, breakpoint cleanup.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---------------------------------------------------------
   CSS Custom Properties
   --------------------------------------------------------- */
:root {
  --navy:         #0D1B2A;
  --navy-mid:     #101e2e;
  --navy-light:   #162840;
  --navy-card:    #1a3050;
  --navy-deep:    #0a1520;
  --gold:         #C9A84C;
  --gold-light:   #D9BE7A;
  --gold-dim:     rgba(201,168,76,0.18);
  --gold-glow:    rgba(201,168,76,0.07);
  --off-white:    #F5F0EB;
  --off-white-2:  #EDE8E2;
  --off-white-warm: #F2EDE6;
  --white:        #FFFFFF;
  --text-dark:    #0D1B2A;
  --text-body:    #2E3F52;
  --text-muted:   #6B7C8E;
  --border:       rgba(201,168,76,0.2);
  --border-light: rgba(13,27,42,0.12);
  --border-card:  rgba(255,255,255,0.07);

  --font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-h:        76px;
  --max-w:        1160px;
  --section-v:    112px;
  --radius:       4px;
  --radius-lg:    8px;
  --transition:   0.22s ease;

  /* Body copy max-width — tighter for readability */
  --body-width:   58ch;
}

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

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

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------------------------------------------------------
   Typography Scale
   --------------------------------------------------------- */

/* Overline — increased ~2pt from v2 */
.t-overline {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* H1 */
.t-h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

/* H2 */
.t-h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.018em;
}

/* H3 */
.t-h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.01em;
}

/* Subhead — increased from v2 */
.t-sub {
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
}

.t-sub--dark {
  color: var(--text-body);
}

/* Body copy */
.t-body {
  font-size: 1rem;
  line-height: 1.8;
  max-width: var(--body-width);
}

.t-small {
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ---------------------------------------------------------
   Layout Utilities
   --------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: var(--section-v) 0;
}

/* Dark sections */
.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--navy-mid {
  background: var(--navy-mid);
  color: var(--white);
}

/* Light sections */
.section--off-white {
  background: var(--off-white);
  color: var(--text-dark);
}

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

/* ---------------------------------------------------------
   Atmosphere System — Radial depth per section type
   Each section class gets its own lighting treatment.
   --------------------------------------------------------- */

/* Hero: strongest atmosphere — top-left radial source */
.atm-hero {
  position: relative;
  overflow: hidden;
}
.atm-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 75%;
  height: 130%;
  background: radial-gradient(ellipse at 30% 40%,
    rgba(201,168,76,0.055) 0%,
    rgba(201,168,76,0.015) 35%,
    transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.atm-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -15%;
  width: 60%;
  height: 90%;
  background: radial-gradient(ellipse at 70% 60%,
    rgba(22,40,64,0.9) 0%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Dark section A — center radial, subtle */
.atm-dark-a {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.atm-dark-a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse at center,
    rgba(201,168,76,0.04) 0%,
    transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Dark section B — right-side radial, slightly different tonal base */
.atm-dark-b {
  position: relative;
  overflow: hidden;
  background: #0e1e2e;
}
.atm-dark-b::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 110%;
  background: radial-gradient(ellipse at 80% 30%,
    rgba(201,168,76,0.038) 0%,
    transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Dark section C — bottom-left radial, deepest tone */
.atm-dark-c {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
}
.atm-dark-c::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 65%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 80%,
    rgba(201,168,76,0.032) 0%,
    transparent 62%);
  pointer-events: none;
  z-index: 0;
}

/* CTA banner — centered glow, warmest atmosphere */
.atm-cta {
  position: relative;
  overflow: hidden;
  background: #0f1e2d;
}
.atm-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 680px;
  height: 320px;
  background: radial-gradient(ellipse at center,
    rgba(201,168,76,0.072) 0%,
    rgba(201,168,76,0.02) 45%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Light section warm — slight warmth variation */
.atm-light-warm {
  background: var(--off-white-warm);
  position: relative;
}
.atm-light-warm::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 75% 0%,
    rgba(201,168,76,0.04) 0%,
    transparent 55%);
  pointer-events: none;
}

/* Light section neutral */
.atm-light-neutral {
  background: var(--off-white);
  position: relative;
}
.atm-light-neutral::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 25% 100%,
    rgba(13,27,42,0.03) 0%,
    transparent 55%);
  pointer-events: none;
}

/* Moment section — isolated belief statement, deepest emphasis */
.atm-moment {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
}
.atm-moment::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center,
    rgba(201,168,76,0.09) 0%,
    rgba(201,168,76,0.03) 40%,
    transparent 68%);
  pointer-events: none;
}

/* Ensure all z-indexed children sit above atmosphere layers */
.atm-hero > *,
.atm-dark-a > *,
.atm-dark-b > *,
.atm-dark-c > *,
.atm-cta > *,
.atm-light-warm > *,
.atm-light-neutral > *,
.atm-moment > * {
  position: relative;
  z-index: 1;
}

/* ---------------------------------------------------------
   Navigation
   --------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(10,21,32,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo — increased prominence */
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.03em;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--gold);
}

.nav__cta {
  margin-left: 8px;
}

/* Fix 1: Nav CTA button — force white text regardless of inheritance */
.nav__links a.nav__cta,
.nav__links a.nav__cta:hover,
.nav__links a.nav__cta:focus,
.nav__links a.nav__cta.active,
a.btn.nav__cta,
a.btn--gold.nav__cta {
  color: #FFFFFF !important;
  font-weight: 700 !important;
}

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.nav__mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--navy);
  border-bottom: 1px solid var(--border);
  padding: 28px 40px 36px;
  gap: 22px;
  z-index: 999;
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}

.nav__mobile a:hover { color: var(--gold); }

/* Page top offset */
.page-top { padding-top: var(--nav-h); }

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--gold {
  background: var(--gold);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(201,168,76,0.25);
}
.btn--gold:hover {
  background: var(--gold-light);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.38);
}

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.38);
  color: var(--white);
}
.btn--outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--outline-dark {
  background: transparent;
  border: 1.5px solid var(--navy);
  color: var(--navy);
}
.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

/* ---------------------------------------------------------
   Gold Rule Accent
   --------------------------------------------------------- */
.gold-rule {
  width: 52px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 36px;
  flex-shrink: 0;
}

/* ---------------------------------------------------------
   Hero Section
   --------------------------------------------------------- */
.hero {
  background: var(--navy);
  color: var(--white);
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

/* Hero radial — deep atmosphere, top-left source */
.hero::before {
  content: '';
  position: absolute;
  top: -25%;
  left: -8%;
  width: 70%;
  height: 125%;
  background: radial-gradient(ellipse at 28% 38%,
    rgba(201,168,76,0.062) 0%,
    rgba(201,168,76,0.018) 30%,
    transparent 62%);
  pointer-events: none;
}

/* Hero secondary — lower right shadow for depth */
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 55%;
  height: 75%;
  background: radial-gradient(ellipse at 75% 70%,
    rgba(6,12,20,0.85) 0%,
    transparent 65%);
  pointer-events: none;
}

.hero__inner {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.hero__overline {
  margin-bottom: 24px;
  display: block;
}

.hero__headline {
  color: var(--white);
  margin-bottom: 32px;
}

.hero__headline em {
  font-style: normal;
  color: var(--gold);
}

/* Divider below headline */
.hero__divider {
  width: 64px;
  height: 1px;
  background: rgba(201,168,76,0.35);
  margin: 0 0 40px 0;
}

.hero__sub {
  color: rgba(255,255,255,0.78);
  max-width: var(--body-width);
  margin-bottom: 24px;
  font-size: clamp(1.1rem, 1.9vw, 1.3rem);
  font-weight: 400;
  line-height: 1.6;
}

.hero__body {
  color: #C8D0DC;
  max-width: var(--body-width);
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.75;
}

.hero__body:last-of-type {
  margin-bottom: 52px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 52px;
}

/* Desktop line break helper — shows on desktop, hides on mobile */
.desktop-break {
  display: block;
}

/* Inner page hero — shorter */
.hero--inner {
  min-height: 44vh;
  padding: 80px 0;
  align-items: flex-end;
}

/* ---------------------------------------------------------
   Proof Cards — v3: distinctly varied, not equalized
   --------------------------------------------------------- */
.proof-strip {
  background: var(--off-white-warm);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.proof-strip::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at 90% 20%,
    rgba(201,168,76,0.04) 0%,
    transparent 60%);
  pointer-events: none;
}

.proof-strip__header {
  margin-bottom: 64px;
}

.proof-strip__label {
  display: block;
  margin-bottom: 16px;
}

.proof-strip__headline {
  color: var(--navy);
  margin-bottom: 0;
  max-width: 600px;
}

/* Equal-weight proof layout — all three cards same visual weight */
.proof-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

/* Card base */
.proof-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: 0 2px 20px rgba(13,27,42,0.07);
}

/* Primary card — equal weight, gold top border */
.proof-card--primary {
  border-top: 3px solid var(--gold);
  padding: 44px 36px;
}

/* Secondary cards — matching gold border for equal weight */
.proof-card--secondary {
  border-top: 3px solid var(--gold);
  margin-top: 0;
}

.proof-card__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.proof-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.25;
}

.proof-card--secondary .proof-card__title {
  font-size: 1.2rem;
}

.proof-card__body {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.78;
  max-width: 52ch;
}

/* ---------------------------------------------------------
   Moment Section — isolated belief statement
   --------------------------------------------------------- */
.moment-section {
  padding: 120px 0;
  text-align: center;
}

.moment-section .container {
  max-width: 820px;
}

.moment-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  display: block;
}

.moment-headline {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.moment-headline em {
  font-style: normal;
  color: var(--gold);
  white-space: nowrap;
}

.moment-sub {
  margin-top: 32px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 54ch;
  margin-left: auto;
  margin-right: auto;
}

/* Thin gold divider flanking the moment text */
.moment-rule {
  width: 40px;
  height: 1px;
  background: rgba(201,168,76,0.5);
  margin: 36px auto;
}

/* ---------------------------------------------------------
   Problem Teaser Block (homepage)
   --------------------------------------------------------- */
.problem-teaser {
  padding: var(--section-v) 0;
  position: relative;
}

.problem-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.problem-teaser__label {
  display: block;
  margin-bottom: 16px;
}

.problem-teaser__headline {
  color: var(--white);
  margin-bottom: 32px;
}

.problem-teaser__key {
  margin-bottom: 28px;
}

.problem-teaser__key p {
  color: #AAB3C5;
  font-size: 1rem;
  line-height: 1.78;
  max-width: var(--body-width);
}

.problem-teaser__key strong {
  color: #E6EAF0;
  font-weight: 600;
}

/* Right panel — the two case boxes */
.problem-panel {
  background: var(--navy-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-card);
}

.problem-panel__item {
  padding: 40px 44px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.problem-panel__item:last-child {
  border-bottom: none;
}

.problem-panel__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.problem-panel__text {
  color: #C8D0DC;
  font-size: 0.93rem;
  line-height: 1.78;
  max-width: 48ch;
}

/* ---------------------------------------------------------
   CTA Banner — destination feel
   --------------------------------------------------------- */
.cta-banner {
  padding: 104px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner__overline {
  display: block;
  margin-bottom: 20px;
}

.cta-banner h2,
.cta-banner__headline {
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
}

.cta-banner p,
.cta-banner__sub {
  color: rgba(255,255,255,0.58);
  max-width: 480px;
  margin: 0 auto 44px;
  font-size: 1rem;
  line-height: 1.75;
  position: relative;
}

.cta-banner__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* Closing resonance line below CTA buttons — more breathing room */
.cta-banner__closing {
  margin-top: 64px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  font-weight: 500;
  position: relative;
}

/* ---------------------------------------------------------
   Section Headers
   --------------------------------------------------------- */
.section-header {
  margin-bottom: 64px;
}

.section-header .t-overline {
  margin-bottom: 16px;
  display: block;
}

.section-header .t-h2 {
  margin-bottom: 24px;
}

.section-header .t-sub {
  max-width: var(--body-width);
  color: rgba(255,255,255,0.62);
}

.section-header--dark .t-sub {
  color: var(--text-muted);
}

.section-header--dark .t-h2 {
  color: var(--navy);
}

/* Centered variant */
.section-header--center {
  text-align: center;
}

.section-header--center .t-sub {
  margin: 0 auto;
}

/* ---------------------------------------------------------
   Content Blocks
   --------------------------------------------------------- */
.content-block {
  max-width: var(--body-width);
}

.content-block + .content-block {
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}

.section--off-white .content-block + .content-block {
  border-top-color: var(--border-light);
}

.content-block h3 {
  margin-bottom: 18px;
  color: var(--white);
}

.section--off-white .content-block h3,
.section--white .content-block h3 {
  color: var(--navy);
}

.content-block p {
  color: #E6EAF0;
  margin-bottom: 18px;
  line-height: 1.78;
}

.content-block p:last-child { margin-bottom: 0; }

.section--off-white .content-block p,
.section--white .content-block p {
  color: var(--text-body);
}

.content-block ul {
  list-style: none;
  margin: 18px 0;
}

.content-block ul li {
  padding-left: 22px;
  position: relative;
  color: #E6EAF0;
  margin-bottom: 10px;
  line-height: 1.7;
}

.section--off-white .content-block ul li {
  color: var(--text-body);
}

.content-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1.5px;
  background: var(--gold);
}

/* ---------------------------------------------------------
   Feature Cards — approach page principles
   (No numbers, authored feel)
   --------------------------------------------------------- */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.feature-card {
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
}

.feature-card--dark {
  background: var(--navy-light);
  border: 1px solid var(--border-card);
}

.feature-card--light {
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 12px rgba(13,27,42,0.06);
}

.feature-card__marker {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

.feature-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.28;
}

.feature-card--light .feature-card__title {
  color: var(--navy);
}

.feature-card__body {
  font-size: 0.92rem;
  color: #AAB3C5;
  line-height: 1.78;
  max-width: 46ch;
}

.feature-card--light .feature-card__body {
  color: var(--text-body);
}

/* ---------------------------------------------------------
   Services Grid (approach page)
   --------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 0;
}

.service-card {
  background: var(--navy-light);
  padding: 44px 40px;
  border-top: 2px solid transparent;
  transition: border-color var(--transition);
}

.service-card:hover {
  border-top-color: var(--gold);
}

.service-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-card__body {
  font-size: 0.9rem;
  color: #AAB3C5;
  line-height: 1.75;
}

.service-card--light {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-top: 2px solid var(--gold);
  box-shadow: 0 2px 12px rgba(13,27,42,0.05);
}

.service-card--light .service-card__title {
  color: var(--navy);
}

.service-card--light .service-card__body {
  color: var(--text-body);
}

/* ---------------------------------------------------------
   Two-column layout
   --------------------------------------------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.two-col--60-40 {
  grid-template-columns: 3fr 2fr;
}

/* ---------------------------------------------------------
   Who We Work With / When We're Most Useful
   — audience cards: distinct, not parallel sheets
   --------------------------------------------------------- */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.audience-card {
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}

.audience-card--dark {
  background: var(--navy);
  border: 1px solid var(--border-card);
}

/* Dark card atmospheric treatment */
.audience-card--dark::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse at 80% 20%,
    rgba(201,168,76,0.045) 0%,
    transparent 60%);
  pointer-events: none;
}

.audience-card--light {
  background: var(--off-white);
  border: 1px solid var(--border-light);
}

.audience-card__tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.audience-card__headline {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.audience-card--dark .audience-card__headline {
  color: var(--white);
}

.audience-card--light .audience-card__headline {
  color: var(--navy);
}

.audience-card__position {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 28px;
  line-height: 1.5;
}

.audience-card--dark .audience-card__position {
  color: rgba(255,255,255,0.72);
}

.audience-card--light .audience-card__position {
  color: var(--text-body);
}

.audience-card__divider {
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

.audience-card__body {
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 52ch;
}

.audience-card--dark .audience-card__body {
  color: rgba(255,255,255,0.62);
}

.audience-card--light .audience-card__body {
  color: var(--text-body);
}

.audience-card__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.audience-card__bullets li {
  font-size: 0.9rem;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.audience-card--dark .audience-card__bullets li {
  color: #E6EAF0;
}

.audience-card--light .audience-card__bullets li {
  color: var(--text-body);
}

.audience-card__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1.5px;
  background: var(--gold);
}

/* ---------------------------------------------------------
   Services Page — 3 areas, authored not listed
   --------------------------------------------------------- */
.service-area {
  padding: var(--section-v) 0;
}

.service-area__header {
  margin-bottom: 60px;
  max-width: 720px;
}

.service-area__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.service-area__headline {
  margin-bottom: 24px;
}

.service-area__sub {
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: var(--body-width);
}

/* Service items — tighter, no numbers */
.service-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-items-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.service-item {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
}

.service-item--dark {
  background: var(--navy-light);
  border: 1px solid var(--border-card);
}

.service-item--light {
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 10px rgba(13,27,42,0.05);
}

.service-item__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.28;
}

.service-item--dark .service-item__title {
  color: var(--white);
}

.service-item--light .service-item__title {
  color: var(--navy);
}

.service-item__body {
  font-size: 0.875rem;
  line-height: 1.75;
}

.service-item--dark .service-item__body {
  color: #AAB3C5;
}

.service-item--light .service-item__body {
  color: var(--text-body);
}

/* Services page: moment line — Conductor's POV */
.services-pov {
  padding: 72px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin: 48px 0;
}

.services-pov__line {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
  max-width: 72ch;
}

.services-pov__line em {
  font-style: normal;
  color: var(--gold);
}

/* ---------------------------------------------------------
   Approach Page
   --------------------------------------------------------- */
.approach-block {
  max-width: var(--body-width);
}

.approach-block p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
}

.approach-block p:last-child { margin-bottom: 0; }

/* Differentiator boxes — matched sizing */
.approach-differentiator {
  background: var(--navy-card);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--border-card);
  border-top: 3px solid var(--gold);
  height: 100%;
  box-sizing: border-box;
}

/* Fix 4: Two-col differentiator container — equal height boxes */
.two-col.approach-differentiator-row {
  align-items: stretch !important;
}
.two-col.approach-differentiator-row .approach-differentiator {
  height: 100%;
  box-sizing: border-box;
}
/* Fix 4b: original rule */
.two-col.approach-differentiator-row {
  align-items: stretch;
}

.approach-differentiator__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.approach-differentiator__headline {
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.25;
}

.approach-differentiator p {
  color: #AAB3C5;
  line-height: 1.78;
  margin-bottom: 16px;
  max-width: 50ch;
}

.approach-differentiator p:last-child { margin-bottom: 0; }

/* "We start, where you are" box — matched sizing */
.approach-start-box {
  background: var(--navy-card);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--border-card);
  border-top: 3px solid var(--gold);
}

/* Fix 3: Light text inside dark blue box — override all inline styles */
.approach-start-box li,
.approach-start-box p,
.approach-start-box li[style],
.approach-start-box p[style] {
  color: #E6EAF0 !important;
}

/* ---------------------------------------------------------
   Contact Page
   --------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}

.contact-intro {
  color: #AAB3C5;
  font-size: 1.05rem;
  line-height: 1.78;
  max-width: var(--body-width);
  margin-bottom: 44px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.24);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.06);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Trust panel */
.trust-panel {
  background: var(--navy-card);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--border-card);
  border-top: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.trust-panel::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 70%;
  height: 60%;
  background: radial-gradient(ellipse at 80% 20%,
    rgba(201,168,76,0.04) 0%,
    transparent 65%);
  pointer-events: none;
}

.trust-panel__headline {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  position: relative;
}

.trust-panel__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.48);
  margin-bottom: 36px;
  line-height: 1.6;
  position: relative;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 44px;
  position: relative;
}

.trust-list li {
  padding-left: 22px;
  position: relative;
  color: #E6EAF0;
  font-size: 0.93rem;
  line-height: 1.65;
}

.trust-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 1.5px;
  background: var(--gold);
}

.trust-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 36px;
}

.trust-panel__schedule-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
  position: relative;
}

.trust-panel__direct-contact {
  margin-bottom: 36px;
  position: relative;
}

.trust-panel__contact-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.trust-panel__contact-phone {
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 500;
}

.trust-panel__contact-phone a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.trust-panel__contact-phone a:hover {
  color: var(--gold);
}

.calendly-placeholder {
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(201,168,76,0.25);
  border-radius: var(--radius);
  padding: 44px 28px;
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.875rem;
  line-height: 1.65;
}

.calendly-placeholder p:first-child {
  font-weight: 600;
  color: rgba(255,255,255,0.42);
  margin-bottom: 8px;
}

/* Contact closing note */
.contact-closing {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.contact-closing__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 48ch;
  font-weight: 400;
}

/* ---------------------------------------------------------
   About / Bio
   --------------------------------------------------------- */
.bio-block {
  max-width: var(--body-width);
}

.bio-block p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #C8D0DC;
  margin-bottom: 24px;
}

.bio-block p:last-child { margin-bottom: 0; }

/* Signature line — full-width, prominent, centered */
.signature-line {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.signature-line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse at center,
    rgba(201,168,76,0.08) 0%,
    transparent 65%);
  pointer-events: none;
}

.signature-line__text {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.018em;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.signature-line__text em {
  font-style: normal;
  color: var(--gold);
}

.credentials-panel {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.credential-item {
  background: var(--navy-card);
  padding: 28px 36px;
  border-left: 3px solid var(--gold);
}

.credential-item__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.credential-item__text {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

/* ---------------------------------------------------------
   Problem Page — structured blocks
   --------------------------------------------------------- */
.problem-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  align-items: start;
}

.problem-block {
  background: var(--navy-card);
  padding: 52px 48px;
}

.problem-block__tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.problem-block__headline {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.28;
}

.problem-block p {
  color: #AAB3C5;
  font-size: 0.95rem;
  line-height: 1.78;
  margin-bottom: 16px;
  max-width: 52ch;
}

.problem-block p strong {
  color: rgba(255,255,255,0.88);
  font-weight: 600;
}

.problem-block p:last-child { margin-bottom: 0; }

/* Problem conclusion — visual break */
.problem-conclusion {
  background: var(--navy-mid);
  border-top: 2px solid var(--gold);
  padding: 64px 48px;
  margin-top: 3px;
}

.problem-conclusion__headline {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.28;
  max-width: 720px;
}

.problem-conclusion p {
  color: #AAB3C5;
  font-size: 1rem;
  line-height: 1.78;
  max-width: var(--body-width);
}

.problem-conclusion p strong {
  color: var(--gold);
  font-weight: 600;
}

/* ---------------------------------------------------------
   Visual Divider / Section Break
   --------------------------------------------------------- */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
  margin: 0;
}

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 52px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__logo img {
  height: 38px;
  width: auto;
  opacity: 0.85;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.04em;
}

.footer__links {
  display: flex;
  gap: 28px;
}

.footer__links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.32);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}

.footer__links a:hover {
  color: var(--gold);
}

/* ---------------------------------------------------------
   Divider utility
   --------------------------------------------------------- */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

/* ---------------------------------------------------------
   Responsive — Large Desktop (1440px+)
   --------------------------------------------------------- */
@media (min-width: 1280px) {
  :root {
    --max-w: 1200px;
  }
}

/* ---------------------------------------------------------
   Responsive — Laptop (≤1200px)
   — Prevent awkward compression, keep elements designed
   --------------------------------------------------------- */
@media (max-width: 1200px) {
  .container {
    padding: 0 48px;
  }

  /* Credentials panel: top-align at laptop viewport */
  .two-col .credentials-panel {
    position: relative;
    top: 0;
  }

  /* "We start, where you are" — prevent mid-phrase break */
  .approach-start-box {
    padding: 40px;
  }

  /* Service items: keep 3-col until tablet */
  .services-pov__line {
    max-width: 62ch;
  }
}

/* ---------------------------------------------------------
   Responsive — Tablet (≤960px)
   --------------------------------------------------------- */
@media (max-width: 960px) {
  :root {
    --section-v: 80px;
  }

  .container { padding: 0 28px; }

  .nav__logo img { height: 44px; }

  /* Mobile nav: show burger, hide desktop links */
  .nav__burger { display: flex; }
  .nav__links { display: none; }

  .proof-cards {
    grid-template-columns: 1fr;
  }

  .proof-card--secondary {
    margin-top: 0;
  }

  .feature-cards {
    grid-template-columns: 1fr 1fr;
  }

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

  .service-items-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-items-grid--4 {
    grid-template-columns: 1fr 1fr;
  }

  .two-col,
  .two-col--60-40 {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .problem-teaser__inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .problem-blocks {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    justify-content: center;
  }
}

/* ---------------------------------------------------------
   Responsive — Mobile (≤640px)
   --------------------------------------------------------- */
/* ---------------------------------------------------------
   Widow / orphan prevention — text-wrap balance
   --------------------------------------------------------- */
.hero__body,
.hero__sub,
.proof-card__body,
.moment-sub,
.problem-panel__text,
.problem-teaser__key p,
.cta-banner p,
.approach-block p,
.feature-card__body,
.t-sub,
.t-overline,
.proof-strip__headline,
.moment-headline {
  text-wrap: balance;
}

/* ---------------------------------------------------------
   Responsive — Mobile (≤640px)
   --------------------------------------------------------- */
@media (max-width: 640px) {
  :root {
    --section-v: 64px;
  }

  .container { padding: 0 20px; }

  /* Center buttons on mobile */
  .problem-conclusion div[style],
  .cta-banner__btns {
    justify-content: center;
  }

  /* Hero headline line-height fix — remove excess gap between lines */
  .t-h1.hero__headline {
    line-height: 1.05;
  }

  /* Contact form — single column on mobile */
  .form-row {
    grid-template-columns: 1fr;
  }

}
