/* ============================================================
   COLTER ACCOUNTING SOLUTIONS — style.css v4.0
   Premium multi-page financial services website
   Deep navy / cream / muted gold
   DM Serif Display + Inter
   Updated: 2026-05-06 — FAQ accordion added, final quality pass
   ============================================================ */

/* === VARIABLES === */
:root {
  /* Core palette */
  --navy:          #0B1929;
  --navy-deep:     #070F1A;
  --navy-card:     #0F2236;
  --navy-mid:      #142C45;
  --cream:         #F7F3EC;
  --cream-warm:    #F0EAE0;
  --cream-border:  #E2D9CC;
  --white:         #FFFFFF;
  --gold:          #C4A357;
  --gold-light:    #D4B870;
  --gold-pale:     rgba(196, 163, 87, 0.12);
  --gold-rule:     rgba(196, 163, 87, 0.35);

  /* Text */
  --text-navy:     #0B1929;
  --text-cream:    #F7F3EC;
  --text-dim:      #C5BBB0;
  --text-body:     #4A4035;
  --text-muted:    #6B6255;
  --text-gray:     #6B7280;

  /* Typography */
  --font-serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max-width:    1200px;
  --max-narrow:   820px;
  --max-text:     680px;
  --nav-height:   104px;

  /* Spacing */
  --section-lg:   120px;
  --section-md:   96px;
  --section-sm:   72px;

  /* Effects */
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
  --shadow-card:  0 2px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-lift:  0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-dark:  0 12px 48px rgba(0, 0, 0, 0.35);
  --radius:       6px;

  /* Card shadow system */
  --card-shadow:      0 2px 8px rgba(0, 0, 0, 0.09), 0 6px 24px rgba(0, 0, 0, 0.08);
  --card-shadow-up:   0 6px 20px rgba(0, 0, 0, 0.13), 0 16px 48px rgba(0, 0, 0, 0.10);
  --glass-shadow:     inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 4px 20px rgba(0, 0, 0, 0.32);
  --glass-shadow-up:  inset 0 1px 0 rgba(255, 255, 255, 0.10), 0 12px 36px rgba(0, 0, 0, 0.45), 0 2px 8px rgba(0, 0, 0, 0.18);
  --ease-card:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--white);
  color: var(--text-body);
  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, ol {
  list-style: none;
}

button {
  font-family: var(--font-sans);
  cursor: pointer;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.container--narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 32px;
}

.container--text {
  max-width: var(--max-text);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: inherit;
}

.display-headline {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.page-headline {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.section-headline {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
}

.card-headline {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  line-height: 1.78;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.72;
  color: var(--text-muted);
}

.lead--light {
  color: var(--text-dim);
}

/* Section label */
.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.eyebrow--dark {
  color: var(--gold);
}

/* Gold rule divider */
.gold-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  border: none;
  margin: 24px 0 32px;
}

.gold-rule--center {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.22s var(--ease);
  border: 1.5px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

/* Gold fill — primary on dark backgrounds */
.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 6px 20px rgba(196, 163, 87, 0.35);
}

/* Navy fill — primary on light backgrounds */
.btn--navy {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.btn--navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10), 0 6px 20px rgba(11, 25, 41, 0.25);
}

/* Ghost on dark */
.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247, 243, 236, 0.48);
}
.btn--ghost-light:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Ghost on light */
.btn--ghost-dark {
  background: transparent;
  color: var(--navy);
  border-color: rgba(11, 25, 41, 0.25);
}
.btn--ghost-dark:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn--large {
  padding: 18px 40px;
  font-size: 0.95rem;
}

.btn--full {
  width: 100%;
}

.btn--icon-right i {
  transition: transform 0.2s var(--ease);
}
.btn--icon-right:hover i {
  transform: translateX(3px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 4px 20px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

/* Transparent pages (index.html) — same white treatment */
.site-nav--transparent {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.07);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 4px 20px rgba(0, 0, 0, 0.07);
}

/* Scrolled / solid — slightly elevated shadow */
.site-nav.is-scrolled,
.site-nav--solid {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.09);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07), 0 6px 32px rgba(0, 0, 0, 0.1);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Desktop nav links — pill container */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(13, 43, 78, 0.05);
  border: 1px solid rgba(13, 43, 78, 0.1);
  border-radius: 100px;
  padding: 6px 8px;
}

.nav-link {
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #0D2B4E;
  padding: 7px 16px;
  border-radius: 100px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  display: none;
}

.nav-link:hover {
  color: #07162E;
  background: rgba(13, 43, 78, 0.09);
}

.nav-link.is-active {
  color: var(--gold);
  background: rgba(196, 163, 87, 0.1);
}

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.nav-phone {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(13, 43, 78, 0.75);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-phone i {
  color: var(--gold);
  font-size: 0.72rem;
}

.nav-phone:hover {
  color: #0D2B4E;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #0D2B4E;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  padding: 16px 0 28px;
  z-index: 99;
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
}

.nav-mobile-link {
  display: block;
  padding: 15px 32px;
  min-height: 48px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0D2B4E;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  -webkit-tap-highlight-color: rgba(196, 163, 87, 0.12);
}

.nav-mobile-link:hover {
  color: #07162E;
  background: rgba(13, 43, 78, 0.05);
}

.nav-mobile-footer {
  padding: 20px 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-mobile-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #0D2B4E;
}

.nav-mobile-phone i {
  color: var(--gold);
}

/* ============================================================
   HERO — VIDEO
   ============================================================ */
.hero-video {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-video__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Multi-layer overlay for text legibility */
.hero-video__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(7, 15, 26, 0.95) 0%, rgba(7, 15, 26, 0.6) 40%, rgba(7, 15, 26, 0.25) 100%),
    linear-gradient(to right, rgba(7, 15, 26, 0.65) 0%, transparent 60%);
}

.hero-video__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(var(--nav-height) + 48px) 0 100px;
}

.hero-video__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  max-width: 860px;
  margin-left: 32px;
}

@media (min-width: 1232px) {
  .hero-video__inner {
    margin-left: calc((100vw - var(--max-width)) / 2 + 32px);
  }
}

.hero-video__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-video__eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-video__eyebrow-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-video__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-video__sub {
  font-size: 1.08rem;
  color: rgba(247, 243, 236, 0.72);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 44px;
}

.hero-video__sub + .hero-video__sub {
  margin-top: -28px;
}

.hero-video__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 56px;
}

.hero-video__trust {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 40px;
  border-top: 1px solid rgba(247, 243, 236, 0.1);
}

.hero-video__trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.hero-video__trust-item {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(247, 243, 236, 0.5);
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid rgba(247, 243, 236, 0.15);
}

.hero-video__trust-item:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.hero-video__trust-item strong {
  color: rgba(247, 243, 236, 0.8);
  font-weight: 600;
}

/* ============================================================
   PAGE HEROES (inner pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-height) + 72px) 0 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 15% 85%, rgba(196, 163, 87, 0.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-rule), transparent);
  z-index: 1;
}

.page-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.page-hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  color: var(--cream);
  margin-bottom: 20px;
  max-width: 760px;
}

.page-hero__sub {
  font-size: 1.08rem;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 580px;
}

/* ============================================================
   SECTIONS — BASE
   ============================================================ */
.section {
  padding: var(--section-lg) 0;
}

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

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

/* Backgrounds */
.bg-navy      { background: var(--navy); }
.bg-navy-deep { background: var(--navy-deep); }
.bg-navy-card { background: var(--navy-card); }
.bg-cream     { background: var(--cream); }
.bg-cream-warm { background: var(--cream-warm); }
.bg-white     { background: var(--white); }

/* Text color helpers */
.on-dark  { color: var(--text-cream); }
.on-light { color: var(--text-navy); }

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

.section-header--center {
  text-align: center;
}

.section-header--center .gold-rule {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   BRAND PROMISE — 3 COLUMNS (cream section)
   ============================================================ */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.promise-card {
  background: var(--white);
  border: 1px solid rgba(11, 25, 41, 0.12);
  border-radius: var(--radius);
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  box-shadow: var(--card-shadow);
  transition: background 0.28s var(--ease-card), transform 0.28s var(--ease-card), box-shadow 0.28s var(--ease-card), border-color 0.28s var(--ease-card);
  will-change: transform, box-shadow;
}

.promise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: var(--radius) var(--radius) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-card);
}

.promise-card:hover {
  border-color: rgba(196, 163, 87, 0.45);
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-up), 0 0 28px rgba(196, 163, 87, 0.07);
}

.promise-card:hover::before {
  transform: scaleX(1);
}

.promise-card__number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 4px;
}

.promise-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-navy);
  line-height: 1.2;
}

.promise-card__rule {
  width: 32px;
  height: 2px;
  background: var(--gold);
  border: none;
}

.promise-card__copy {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.72;
}

/* ============================================================
   PROBLEM / VALUE (navy section)
   ============================================================ */
.value-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.value-layout__left {}

.value-layout__headline {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  color: var(--cream);
  margin-bottom: 28px;
}

.value-layout__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.value-layout__body p {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.78;
}

.value-pullquote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--cream);
  font-style: italic;
  line-height: 1.55;
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  background: var(--navy-card);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 20px rgba(0, 0, 0, 0.28);
}

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

.value-layout__right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.value-stat {
  padding: 32px;
  border: 1px solid rgba(196, 163, 87, 0.26);
  border-radius: var(--radius);
  background: var(--navy-card);
  box-shadow: var(--glass-shadow);
  transition: border-color 0.28s var(--ease-card), transform 0.28s var(--ease-card), box-shadow 0.28s var(--ease-card), background 0.28s var(--ease-card);
  will-change: transform, box-shadow;
}

.value-stat:hover {
  border-color: rgba(196, 163, 87, 0.52);
  background: var(--navy-mid);
  transform: translateY(-6px);
  box-shadow: var(--glass-shadow-up);
}

.value-stat__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.value-stat__text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--cream);
  line-height: 1.4;
}

/* ============================================================
   SERVICES CARDS (cream section)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(11, 25, 41, 0.12);
  border-radius: var(--radius);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--card-shadow);
  transition: transform 0.28s var(--ease-card), box-shadow 0.28s var(--ease-card), border-color 0.28s var(--ease-card);
  will-change: transform, box-shadow;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-up), 0 0 32px rgba(196, 163, 87, 0.09);
  border-color: rgba(196, 163, 87, 0.55);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 28px;
  flex-shrink: 0;
  border: 1px solid rgba(196, 163, 87, 0.18);
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-navy);
  margin-bottom: 14px;
  line-height: 1.25;
}

.service-card__copy {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 32px;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: auto;
  transition: gap 0.2s var(--ease), color 0.2s;
}

.service-card__cta i {
  transition: transform 0.2s var(--ease);
  font-size: 0.7rem;
}

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

.service-card:hover .service-card__cta i {
  transform: translateX(3px);
}

/* ============================================================
   APPROACH (navy section)
   ============================================================ */
.approach-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.approach-layout__intro {
  position: sticky;
  top: calc(var(--nav-height) + 40px);
}

.approach-layout__headline {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  color: var(--cream);
  margin-bottom: 24px;
}

.approach-layout__copy {
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 36px;
  line-height: 1.78;
}

.approach-points {
  display: flex;
  flex-direction: column;
}

.approach-point {
  display: flex;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(247, 243, 236, 0.07);
  align-items: flex-start;
  transition: border-color 0.22s var(--ease-card);
}

.approach-point:hover {
  border-bottom-color: rgba(196, 163, 87, 0.22);
}

.approach-point:hover .approach-point__num {
  opacity: 0.45;
}

.approach-point:first-child {
  border-top: 1px solid rgba(247, 243, 236, 0.07);
}

.approach-point__num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
  padding-top: 2px;
}

.approach-point__label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.approach-point__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.3;
}

.approach-point__copy {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.72;
}

.approach-footer {
  margin-top: 48px;
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  background: var(--navy-card);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 20px rgba(0, 0, 0, 0.28);
}

.approach-footer p {
  font-size: 1rem;
  color: var(--text-dim);
  font-style: italic;
  line-height: 1.65;
}

/* ============================================================
   ABOUT PREVIEW (cream section)
   ============================================================ */
.about-preview {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}

.about-preview__photo-wrap {
  position: relative;
}

.about-preview__photo-frame {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-border);
  box-shadow: var(--shadow-lift);
}

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

.about-preview__photo-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--navy);
  border: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-preview__photo-badge strong {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--cream);
  line-height: 1.2;
}

.about-preview__photo-badge span {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.about-preview__content {}

.about-preview__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-navy);
  margin-bottom: 4px;
}

.about-preview__title {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.55;
}

.about-preview__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.about-preview__copy p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.78;
}

.about-preview__creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.cred-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--navy);
  background: var(--gold-pale);
  border: 1px solid rgba(196, 163, 87, 0.28);
  padding: 6px 14px;
  border-radius: 3px;
}

/* ============================================================
   INDUSTRIES PREVIEW (navy section)
   ============================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.industry-card {
  border: 1px solid rgba(196, 163, 87, 0.22);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: var(--navy-card);
  box-shadow: var(--glass-shadow);
  transition: border-color 0.28s var(--ease-card), background 0.28s var(--ease-card), transform 0.28s var(--ease-card), box-shadow 0.28s var(--ease-card);
  will-change: transform, box-shadow;
}

.industry-card:hover {
  border-color: rgba(196, 163, 87, 0.50);
  background: var(--navy-mid);
  transform: translateY(-6px);
  box-shadow: var(--glass-shadow-up);
}

.industry-card__icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 14px;
  opacity: 0.75;
}

.industry-card__name {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.35;
}

/* ============================================================
   CONSULTATION CTA BAND (deep navy)
   ============================================================ */
.cta-band {
  padding: var(--section-md) 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(196, 163, 87, 0.09) 0%, transparent 65%);
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 32px;
}

.cta-band__headline {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  color: var(--cream);
  margin-bottom: 20px;
}

.cta-band__sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.72;
  margin-bottom: 40px;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-bottom: 36px;
}

.cta-band__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.cta-band__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-dim);
  transition: color 0.2s;
}

.cta-band__contact-item i {
  color: var(--gold);
  font-size: 0.8rem;
}

a.cta-band__contact-item:hover {
  color: var(--cream);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(196, 163, 87, 0.1);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand__logo {
  height: 64px;
  width: auto;
  margin-bottom: 18px;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 6px;
  opacity: 0.9;
}

.footer-brand__tagline {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 220px;
}

.footer-col__heading {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

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

.footer-nav__link {
  font-size: 0.88rem;
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-nav__link:hover {
  color: var(--cream);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.55;
  transition: color 0.2s;
}

.footer-contact__item i {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

a.footer-contact__item:hover {
  color: var(--cream);
}

.footer-bottom {
  border-top: 1px solid rgba(247, 243, 236, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom__copy {
  font-size: 0.8rem;
  color: rgba(247, 243, 236, 0.28);
}

.footer-bottom__links {
  display: flex;
  gap: 20px;
}

.footer-bottom__link {
  font-size: 0.8rem;
  color: rgba(247, 243, 236, 0.28);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

/* ============================================================
   SERVICES PAGE — DEEP DIVE
   ============================================================ */
.service-deep {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.service-deep--reverse {
  direction: rtl;
}

.service-deep--reverse > * {
  direction: ltr;
}

.service-deep__content {}

.service-deep__icon {
  width: 60px;
  height: 60px;
  background: var(--gold-pale);
  border: 1px solid rgba(196, 163, 87, 0.22);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 28px;
}

.service-deep__icon--light {
  background: var(--cream-warm);
  border-color: var(--cream-border);
  color: var(--navy);
}

.service-deep__headline {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  margin-bottom: 20px;
}

.service-deep__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.service-deep__copy p {
  font-size: 1rem;
  line-height: 1.78;
}

.service-deep__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-deep__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-deep__list-item i {
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 6px;
  flex-shrink: 0;
}

.service-deep__aside {
  padding: 40px 36px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(11, 25, 41, 0.12);
  box-shadow: var(--card-shadow);
}

.service-deep__aside--dark {
  background: var(--navy-card);
  border-color: rgba(196, 163, 87, 0.24);
  box-shadow: var(--glass-shadow);
}

.service-deep__aside-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-deep__aside-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-deep__aside-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.55;
}

.service-deep__aside-item i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Divider between service sections */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--cream-border), transparent);
  margin: 0;
  border: none;
}

.section-divider--dark {
  background: linear-gradient(to right, transparent, rgba(196, 163, 87, 0.15), transparent);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.founder-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}

.founder-photo-wrap {
  position: sticky;
  top: calc(var(--nav-height) + 32px);
}

.founder-photo-frame {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-border);
  box-shadow: var(--shadow-lift);
  margin-bottom: 24px;
}

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

.founder-creds {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.founder-cred-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(11, 25, 41, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 3px 10px rgba(0, 0, 0, 0.06);
  transition: border-color 0.22s var(--ease-card), transform 0.22s var(--ease-card), box-shadow 0.22s var(--ease-card);
}

.founder-cred-item:hover {
  border-color: rgba(196, 163, 87, 0.42);
  transform: translateX(3px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(0, 0, 0, 0.10);
}

.founder-cred-item i {
  color: var(--gold);
  font-size: 1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.founder-cred-item strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-navy);
  display: block;
  line-height: 1.3;
}

.founder-cred-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.founder-content {}

.founder-content__name {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--text-navy);
  margin-bottom: 6px;
}

.founder-content__title {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.founder-content__bio {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

.founder-content__bio p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
}

.founder-content__section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  margin-top: 48px;
}

.experience-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.experience-area {
  padding: 18px 20px;
  border: 1px solid rgba(11, 25, 41, 0.12);
  border-radius: var(--radius);
  background: var(--cream-warm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-navy);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: border-color 0.22s var(--ease-card), box-shadow 0.22s var(--ease-card), transform 0.22s var(--ease-card);
}

.experience-area:hover {
  border-color: rgba(196, 163, 87, 0.42);
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 8px 20px rgba(0, 0, 0, 0.09);
}

.experience-area i {
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ============================================================
   INDUSTRIES PAGE
   ============================================================ */
.industries-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industry-page-card {
  padding: 36px 32px;
  border: 1px solid rgba(11, 25, 41, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
  transition: transform 0.28s var(--ease-card), box-shadow 0.28s var(--ease-card), border-color 0.28s var(--ease-card);
  will-change: transform, box-shadow;
}

.industry-page-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-up), 0 0 32px rgba(196, 163, 87, 0.09);
  border-color: rgba(196, 163, 87, 0.52);
}

.industry-page-card__icon {
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: 0.8;
}

.industry-page-card__name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-navy);
  margin-bottom: 12px;
}

.industry-page-card__copy {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.72;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-primary__headline {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
}

.contact-primary__sub {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-primary__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--cream-border);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
}

.contact-info-item__icon {
  width: 36px;
  height: 36px;
  background: var(--gold-pale);
  border: 1px solid rgba(196, 163, 87, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.contact-info-item__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.contact-info-item__value {
  font-size: 0.95rem;
  color: var(--text-navy);
  font-weight: 500;
  transition: color 0.2s;
}

a .contact-info-item__value:hover,
a:hover .contact-info-item__value {
  color: var(--gold);
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid rgba(11, 25, 41, 0.12);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--card-shadow);
}

.form-heading {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-navy);
  margin-bottom: 8px;
}

.form-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-safety-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 14px;
  line-height: 1.55;
  opacity: 0.75;
}

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

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

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

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-navy);
}

.form-required {
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--cream);
  border: 1.5px solid var(--cream-border);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-navy);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  min-height: 48px;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.65;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(196, 163, 87, 0.1);
}

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

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thankyou-page {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 40px) 32px 80px;
}

.thankyou-wrap {
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
}

.thankyou-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 28px;
}

.thankyou-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--cream);
  margin-bottom: 18px;
}

.thankyou-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  margin-bottom: 12px;
  line-height: 1.72;
}

.thankyou-alt {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 36px;
}

.thankyou-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  color: var(--text-dim);
  transition: color 0.2s;
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {
  :root {
    --section-lg: 88px;
    --section-md: 72px;
  }

  .promise-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .value-layout,
  .approach-layout,
  .about-preview,
  .founder-layout,
  .contact-layout,
  .service-deep {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .service-deep--reverse {
    direction: ltr;
  }

  .approach-layout__intro {
    position: static;
  }

  .about-preview__photo-wrap {
    max-width: 360px;
  }

  .about-preview__photo-badge {
    bottom: -16px;
    right: -12px;
  }

  .founder-photo-wrap {
    position: static;
    max-width: 340px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

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

  .industries-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .experience-areas {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-lg: 72px;
    --section-md: 60px;
    --section-sm: 52px;
    --nav-height: 80px;
  }

  /* Nav */
  .nav-links,
  .nav-phone,
  .nav-cta { display: none; }

  .nav-toggle { display: flex; }

  .nav-logo-img {
    height: 60px;
  }

  /* Hero video */
  .hero-video {
    min-height: 90vh;
  }

  .hero-video__content {
    padding-bottom: 72px;
  }

  .hero-video__inner {
    margin-left: 0;
    padding: 0 20px;
  }

  .hero-video__ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-video__ctas .btn {
    width: 100%;
  }

  .hero-video__trust {
    flex-direction: column;
    gap: 16px;
  }

  .hero-video__trust-items {
    flex-direction: column;
    gap: 8px;
  }

  .hero-video__trust-item {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }

  /* Form row */
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }

  .contact-layout {
    gap: 40px;
  }

  /* Industries */
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-page-grid {
    grid-template-columns: 1fr;
  }

  /* CTA band */
  .cta-band__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-band__actions .btn {
    width: 100%;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

@media (max-width: 480px) {
  .container,
  .container--narrow,
  .container--text {
    padding: 0 20px;
  }

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

  .page-hero__inner,
  .nav-inner {
    padding: 0 20px;
  }

  .page-hero {
    padding-bottom: 56px;
  }

  .btn--large {
    padding: 16px 28px;
    min-height: 52px;
  }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }
.reveal--delay-4 { transition-delay: 0.32s; }

/* ============================================================
   FOCUS VISIBLE
   ============================================================ */
*:focus {
  outline: none;
}

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

.btn:focus-visible {
  outline-offset: 4px;
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 163, 87, 0.15);
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* ============================================================
   FAQ SECTION
   ============================================================ */

/* Preview grid on homepage (light section cards) */
.faq-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.faq-preview-card {
  background: var(--white);
  border: 1px solid rgba(11, 25, 41, 0.12);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--card-shadow);
  transition: transform 0.28s var(--ease-card), box-shadow 0.28s var(--ease-card), border-color 0.28s var(--ease-card);
  will-change: transform, box-shadow;
}

.faq-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-up), 0 0 28px rgba(196, 163, 87, 0.07);
  border-color: rgba(196, 163, 87, 0.35);
}

.faq-preview-card__question {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-navy);
  margin-bottom: 14px;
  line-height: 1.3;
}

.faq-preview-card__answer {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.72;
}

.faq-preview-footer {
  text-align: center;
}

.faq-see-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}

.faq-see-all i {
  transition: transform 0.2s var(--ease);
  font-size: 0.75rem;
}

.faq-see-all:hover {
  color: var(--gold);
}

.faq-see-all:hover i {
  transform: translateX(3px);
}

/* Full accordion on contact.html */
.faq-section {
  background: var(--cream);
}

.faq-compliance-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 48px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid rgba(11, 25, 41, 0.09);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(11, 25, 41, 0.08);
}

.faq-item:first-child {
  border-top: 1px solid rgba(11, 25, 41, 0.08);
}

.faq-item > summary,
.faq-item[open] > summary {
  /* reset native list marker */
  list-style: none;
}

.faq-item > summary::-webkit-details-marker {
  display: none;
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  background: var(--white);
  border: none;
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: background 0.22s var(--ease), border-color 0.22s var(--ease);
  outline: none;
}

.faq-item[open] .faq-summary {
  border-left-color: var(--gold);
  background: var(--white);
}

.faq-summary:hover {
  background: var(--cream);
}

.faq-summary__question {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-navy);
  line-height: 1.35;
  flex: 1;
}

.faq-summary__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.78rem;
  transition: transform 0.28s var(--ease);
}

.faq-item[open] .faq-summary__arrow {
  transform: rotate(180deg);
}

.faq-panel {
  background: var(--white);
  border-top: 1px solid rgba(11, 25, 41, 0.08);
  padding: 20px 28px 28px 60px;
}

.faq-panel p {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.78;
}

/* Reduced motion: disable accordion arrow transition */
@media (prefers-reduced-motion: reduce) {
  .faq-summary__arrow {
    transition: none;
  }
}

/* Responsive: 2-col then 1-col for preview grid */
@media (max-width: 960px) {
  .faq-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .faq-summary {
    padding: 20px 20px;
  }

  .faq-panel {
    padding: 16px 20px 24px 20px;
  }

  .faq-summary__question {
    font-size: 1rem;
  }
}

/* ============================================================
   AFTER-HOURS ASSISTANT WIDGET
   ============================================================ */

.chat-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}

.chat-trigger,
.chat-panel.is-open {
  pointer-events: auto;
}

/* Trigger button */
.chat-trigger {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  border-radius: 50px;
  padding: 13px 20px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(196, 163, 87, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.22s var(--ease-card), box-shadow 0.22s var(--ease-card), background 0.22s;
  white-space: nowrap;
}

.chat-trigger:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 163, 87, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.chat-trigger__icon {
  font-size: 0.95rem;
}

/* Panel */
.chat-panel {
  width: 370px;
  max-height: 585px;
  background: var(--navy);
  border: 1px solid rgba(196, 163, 87, 0.22);
  border-radius: 12px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.55), 0 2px 12px rgba(0, 0, 0, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.28s var(--ease-card), transform 0.28s var(--ease-card);
}

.chat-panel.is-open {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.chat-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(196, 163, 87, 0.14);
  flex-shrink: 0;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-header-avatar {
  width: 34px;
  height: 34px;
  background: rgba(196, 163, 87, 0.1);
  border: 1px solid rgba(196, 163, 87, 0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.chat-header-name {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}

.chat-header-sub {
  font-size: 0.67rem;
  color: var(--text-dim);
  margin-top: 2px;
  opacity: 0.72;
}

.chat-close-btn {
  width: 30px;
  height: 30px;
  background: rgba(247, 243, 236, 0.05);
  border: 1px solid rgba(247, 243, 236, 0.1);
  border-radius: 50%;
  color: var(--text-dim);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  flex-shrink: 0;
}

.chat-close-btn:hover {
  background: rgba(247, 243, 236, 0.12);
  color: var(--cream);
  border-color: rgba(247, 243, 236, 0.2);
}

/* Messages */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 13px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-height: 60px;
  scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar { width: 3px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(196, 163, 87, 0.22);
  border-radius: 2px;
}

.chat-msg {
  max-width: 90%;
  font-size: 0.84rem;
  line-height: 1.6;
  border-radius: 10px;
  padding: 9px 13px;
  word-break: break-word;
}

.chat-msg--bot {
  background: var(--navy-card);
  border: 1px solid rgba(196, 163, 87, 0.28);
  color: var(--cream);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}

.chat-msg--user {
  background: var(--navy-mid);
  border: 1px solid rgba(247, 243, 236, 0.20);
  color: var(--cream);
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}

.chat-msg strong { color: var(--gold-light); }

.chat-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.chat-cta-link {
  display: inline-block;
  padding: 6px 13px;
  background: var(--gold);
  color: var(--navy-deep) !important;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: background 0.18s, transform 0.18s;
  white-space: nowrap;
}

.chat-cta-link:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.chat-cta-link--ghost {
  background: transparent !important;
  border: 1px solid rgba(247, 243, 236, 0.24);
  color: var(--text-dim) !important;
  box-shadow: none;
}

.chat-cta-link--ghost:hover {
  background: rgba(247, 243, 236, 0.06) !important;
  border-color: rgba(247, 243, 236, 0.4);
  color: var(--cream) !important;
}

/* Tally gate (shown before visitor acknowledges submitting) */
.chat-tally-gate {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(196, 163, 87, 0.12);
  flex-shrink: 0;
}

.chat-tally-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  border-radius: 5px;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  min-height: 44px;
  width: 100%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: background 0.18s, transform 0.18s var(--ease-card), box-shadow 0.18s;
}

.chat-tally-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 4px 14px rgba(196, 163, 87, 0.32);
}

.chat-submitted-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(247, 243, 236, 0.16);
  border-radius: 5px;
  padding: 10px 16px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dim);
  cursor: pointer;
  min-height: 42px;
  width: 100%;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}

.chat-submitted-btn:hover {
  border-color: rgba(196, 163, 87, 0.4);
  color: var(--cream);
  background: rgba(196, 163, 87, 0.06);
}

.chat-submitted-btn i {
  color: var(--gold);
  font-size: 0.85rem;
}

.chat-gate-note {
  font-size: 0.65rem;
  color: var(--text-dim);
  line-height: 1.5;
  opacity: 0.65;
  text-align: center;
}

/* Conversation (post lead capture) */
.chat-conversation {
  padding: 8px 12px 12px;
  border-top: 1px solid rgba(196, 163, 87, 0.12);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  max-height: 118px;
  overflow-y: auto;
}

.chat-faq-btn {
  background: var(--navy-card);
  border: 1px solid rgba(196, 163, 87, 0.24);
  border-radius: 4px;
  color: var(--text-dim);
  font-family: var(--font-sans);
  font-size: 0.71rem;
  font-weight: 500;
  padding: 5px 10px;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  line-height: 1.3;
  text-align: left;
}

.chat-faq-btn:hover {
  background: var(--navy-mid);
  border-color: rgba(196, 163, 87, 0.48);
  color: var(--cream);
}

.chat-input-row {
  display: flex;
  gap: 7px;
  align-items: center;
}

#chat-input {
  flex: 1;
  background: var(--navy-card);
  border: 1px solid rgba(247, 243, 236, 0.18);
  border-radius: 5px;
  padding: 8px 11px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--cream);
  outline: none;
  min-height: 38px;
  transition: border-color 0.18s;
  -webkit-appearance: none;
  appearance: none;
}

#chat-input::placeholder {
  color: var(--text-dim);
  opacity: 0.5;
}

#chat-input:focus {
  border-color: rgba(196, 163, 87, 0.45);
}

.chat-send-btn {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border: none;
  border-radius: 5px;
  color: var(--navy-deep);
  font-size: 0.82rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.18s, transform 0.18s;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.chat-send-btn:hover {
  background: var(--gold-light);
  transform: scale(1.06);
}

/* Footer disclaimer */
.chat-panel__footer {
  padding: 7px 13px 9px;
  border-top: 1px solid rgba(196, 163, 87, 0.08);
  background: rgba(7, 15, 26, 0.72);
  flex-shrink: 0;
}

.chat-panel__footer p {
  font-size: 0.62rem;
  color: var(--text-dim);
  opacity: 0.6;
  line-height: 1.4;
}

.chat-panel__footer p + p {
  margin-top: 3px;
}

/* Mobile */
@media (max-width: 520px) {
  .chat-widget {
    bottom: 16px;
    right: 12px;
  }

  .chat-panel {
    width: calc(100vw - 24px);
    max-height: 72vh;
  }

  .chat-trigger__label {
    display: none;
  }

  .chat-trigger {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }

  .chat-trigger__icon {
    font-size: 1.1rem;
  }
}

/* ============================================================
   V4.1 VISIBILITY RECOVERY: DISABLE HIDDEN REVEAL STATES

   The IntersectionObserver reveal system can leave content
   hidden (opacity: 0) if the observer fires late or fails.
   This block is a hard override — all reveal/animation states
   are forced visible regardless of observer status.

   JS (main.js v4.1) also stamps .is-visible on all .reveal
   elements immediately on load as a synchronous fail-safe.
   ============================================================ */

/* Force all reveal-pattern selectors visible */
.reveal,
.reveal-up,
.fade-up,
.fade-in,
.animate-on-scroll,
.scroll-reveal,
[data-reveal],
[data-animate],
.section-reveal,
.card-reveal,
.is-hidden,
.pre-animation {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* Ensure all card and tile surfaces are solid and visible */
.promise-card,
.service-card,
.value-stat,
.industry-card,
.industry-page-card,
.approach-point,
.approach-layout__intro,
.value-layout__left,
.value-pullquote,
.about-preview,
.founder-cred-item,
.experience-area,
.service-deep,
.service-deep__aside,
.faq-preview-card,
.faq-item,
.faq-accordion,
.cta-band__inner,
.contact-layout,
.approach-footer,
.engagement-item,
.systems-content {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   COMMON ENGAGEMENT AREAS (services.html)
   ============================================================ */

/* Anchor scroll offset for fixed nav */
#fractional-controller,
#financial-cleanup-optimization,
#fpa {
  scroll-margin-top: calc(var(--nav-height) + 16px);
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 36px;
}

.engagement-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  letter-spacing: 0.01em;
  line-height: 1.4;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.engagement-item:hover {
  border-color: rgba(196, 163, 87, 0.5);
  box-shadow: 0 2px 14px rgba(196, 163, 87, 0.1);
  transform: translateY(-2px);
}

.engagement-item__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   SYSTEMS & SCALABILITY — about.html
   ============================================================ */
.systems-content {
  max-width: 680px;
  margin-top: 24px;
}

.systems-content p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
}

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

