/* ============================================================
   OLYMPUS WEALTH MANAGEMENT — MASTER STYLESHEET
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy:        #0A1628;
  --navy-light:  #1A2E4A;
  --navy-mid:    #0F1F38;
  --gold:        #C9A84C;
  --gold-light:  #E8C96E;
  --gold-dark:   #A07830;
  --gold-grad:   linear-gradient(135deg, #C9A84C, #E8C96E);
  --white:       #FFFFFF;
  --off-white:   #F8F6F1;
  --text:        #0D0D0D;
  --muted:       #6B7280;
  --border:      #E5E7EB;
  --border-dark: rgba(255,255,255,0.12);
  --overlay:     rgba(10, 22, 40, 0.72);

  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', 'DM Sans', system-ui, sans-serif;

  --max-w: 1280px;
  --nav-h: 80px;
  --nav-h-scrolled: 64px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

/* ---- 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);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

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

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.display-xl {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.display-lg {
  font-size: clamp(2.5rem, 4.5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.1;
}

h1 { font-size: clamp(2.25rem, 3.5vw, 3.5rem); }
h2 { font-size: clamp(1.875rem, 2.8vw, 2.75rem); }
h3 { font-size: clamp(1.375rem, 1.8vw, 1.75rem); }
h4 { font-size: clamp(1.125rem, 1.4vw, 1.375rem); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

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

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

.section {
  padding: 96px 0;
}

.section--lg {
  padding: 128px 0;
}

.section--sm {
  padding: 64px 0;
}

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

.section--off-white {
  background: var(--off-white);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s var(--ease-out);
  border-radius: 3px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.25s;
}

.btn:hover::after { background: rgba(0,0,0,0.08); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.btn-primary {
  background: var(--gold-grad);
  color: var(--navy);
}

.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,0.35); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}

.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-ghost--navy {
  color: var(--navy);
  border-color: var(--navy);
}

.btn-ghost--navy:hover { background: var(--navy); color: var(--white); }

.btn-ghost--gold {
  color: var(--gold);
  border-color: var(--gold);
}

.btn-ghost--gold:hover { background: var(--gold); color: var(--navy); }

.btn-text {
  padding: 0;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.875rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
}

.btn-text svg { transition: transform 0.25s var(--ease-out); }
.btn-text:hover svg { transform: translateX(4px); }
.btn-text::after { display: none; }

/* ---- Alert Banner ---- */
.alert-banner {
  background: var(--gold-grad);
  color: var(--navy);
  text-align: center;
  padding: 12px 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  z-index: 200;
}

.alert-banner a { text-decoration: underline; font-weight: 600; }

.alert-banner__close {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,22,40,0.1);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1;
  transition: background 0.2s;
}

.alert-banner__close:hover { background: rgba(10,22,40,0.2); }
.alert-banner.hidden { display: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), height 0.35s var(--ease-out);
}

.site-nav.has-alert { top: 44px; }

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

.site-nav--scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(10,22,40,0.08);
  height: var(--nav-h-scrolled);
}

.site-nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Logo */
.site-nav__logo {
  flex-shrink: 0;
  margin-right: 3rem;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.site-nav__logo-primary {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.35s;
}

.site-nav__logo-sub {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: color 0.35s;
  margin-top: 3px;
  display: none;
}

.site-nav--scrolled .site-nav__logo-primary { color: var(--navy); }
.site-nav--scrolled .site-nav__logo-sub { color: var(--gold-dark); }

/* Nav links */
.site-nav__links {
  display: none;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 18px;
  height: var(--nav-h);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  transition: color 0.25s, height 0.35s;
  white-space: nowrap;
}

.site-nav--scrolled .site-nav__link { color: var(--navy); height: var(--nav-h-scrolled); }
.site-nav__link:hover { color: var(--gold); }
.site-nav--scrolled .site-nav__link:hover { color: var(--gold-dark); }

.site-nav__chevron {
  width: 10px;
  height: 10px;
  transition: transform 0.2s;
}

.site-nav__item--open .site-nav__chevron { transform: rotate(180deg); }

/* Dropdown overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.5);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.nav-overlay.visible { opacity: 1; pointer-events: all; }

/* Dropdown panels */
.site-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: 0 16px 48px rgba(10,22,40,0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  z-index: 101;
  min-width: 200px;
}

.site-nav__dropdown--mega {
  left: auto;
  right: auto;
  width: 680px;
  transform: translateX(-40%) translateY(-8px);
}

.site-nav__item--open .site-nav__dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.site-nav__item--open .site-nav__dropdown--mega {
  transform: translateX(-40%) translateY(0);
}

.site-nav__dropdown-inner {
  padding: 2rem;
}

.site-nav__dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-nav__dropdown-link {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  border-radius: 4px;
  transition: background 0.18s;
}

.site-nav__dropdown-link:hover { background: var(--off-white); }

.site-nav__dropdown-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.site-nav__dropdown-desc {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}

/* Mega menu */
.site-nav__mega {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.site-nav__mega-col {
  padding: 1.5rem;
}

.site-nav__mega-col:first-child {
  border-right: 1px solid var(--border);
}

.site-nav__mega-heading {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  padding: 0 12px;
}

/* CTA button area in nav */
.site-nav__cta {
  display: none;
}

.site-nav__cta .btn {
  padding: 10px 24px;
  font-size: 0.75rem;
}

/* Hamburger — always visible */
.site-nav__hamburger {
  display: flex;
  margin-left: auto;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.hamburger-line {
  display: block;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s, background 0.35s;
}

.hamburger-line:nth-child(1) { width: 24px; }
.hamburger-line:nth-child(2) { width: 18px; }
.hamburger-line:nth-child(3) { width: 24px; }

.site-nav--scrolled .hamburger-line { background: var(--navy); }

.site-nav__hamburger.is-active .hamburger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  width: 24px;
}

.site-nav__hamburger.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.site-nav__hamburger.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  width: 24px;
}

/* Mobile nav panel */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: var(--navy);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: var(--nav-h);
  border-bottom: 1px solid var(--border-dark);
  flex-shrink: 0;
}

.mobile-nav__logo {
  display: flex;
  flex-direction: column;
}

.mobile-nav__logo-primary {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.mobile-nav__logo-sub {
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 2px;
}

.mobile-nav__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  cursor: pointer;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  transition: all 0.2s;
}

.mobile-nav__close:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }

.mobile-nav__body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 0 2rem;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.mobile-nav__link:hover { color: var(--gold-light); background: rgba(255,255,255,0.04); }

.mobile-nav__link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s;
}

.mobile-nav__sub {
  background: rgba(255,255,255,0.04);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s var(--ease-out);
}

.mobile-nav__sub.is-open { max-height: 600px; }

.mobile-nav__sub a {
  display: block;
  padding: 11px 2.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.mobile-nav__sub a:hover { color: var(--gold-light); }

.mobile-nav__footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-dark);
  flex-shrink: 0;
}

.mobile-nav__footer .btn { width: 100%; justify-content: center; }

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

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

.site-footer__top {
  padding: 72px 0 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.footer-brand__logo-primary {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}

.footer-brand__logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 1.25rem;
}

.footer-brand__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 340px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social__link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  transition: all 0.2s;
  font-style: normal;
}

.footer-social__link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}

.footer-nav__heading {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-nav__list { display: flex; flex-direction: column; gap: 10px; }

.footer-nav__list a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-nav__list a:hover { color: var(--gold-light); }

.site-footer__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 0;
}

.site-footer__legal-row {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 20px;
}

.site-footer__legal-row a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
  white-space: nowrap;
}

.site-footer__legal-row a:hover { color: rgba(255,255,255,0.8); }

.site-footer__legal-sep {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}

.site-footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 2rem 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__copyright {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

.site-footer__disclaimer {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto;
}

/* ============================================================
   HERO — SCROLL SNAP CAROUSEL
   ============================================================ */

.hero-carousel {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  position: relative;
}

/* Hide scrollbar */
.hero-carousel::-webkit-scrollbar { display: none; }
.hero-carousel { -ms-overflow-style: none; scrollbar-width: none; }

.hero-slide {
  height: 100vh;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 10s ease-out;
}

.hero-slide.is-active .hero-slide__bg { transform: scale(1.04); }

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,22,40,0.55) 0%,
    rgba(10,22,40,0.70) 50%,
    rgba(10,22,40,0.80) 100%
  );
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
  text-align: center;
  color: var(--white);
}

.hero-slide__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s var(--ease-out) 0.1s, transform 0.8s var(--ease-out) 0.1s;
}

.hero-slide__heading {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out) 0.25s, transform 0.8s var(--ease-out) 0.25s;
}

.hero-slide__sub {
  font-size: clamp(1rem, 1.4vw, 1.175rem);
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s var(--ease-out) 0.4s, transform 0.8s var(--ease-out) 0.4s;
}

.hero-slide__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s var(--ease-out) 0.55s, transform 0.8s var(--ease-out) 0.55s;
}

.hero-slide.is-active .hero-slide__eyebrow,
.hero-slide.is-active .hero-slide__heading,
.hero-slide.is-active .hero-slide__sub,
.hero-slide.is-active .hero-slide__actions {
  opacity: 1;
  transform: translateY(0);
}

/* Stats bar inside hero slide */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 2rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s var(--ease-out) 0.65s, transform 0.8s var(--ease-out) 0.65s;
}

.hero-slide.is-active .hero-stats { opacity: 1; transform: translateY(0); }

.hero-stat {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

.hero-stat + .hero-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.2);
}

.hero-stat__number {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.hero-stat__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* Carousel controls */
.hero-carousel__controls {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
}

.hero-dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.25);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.8s var(--ease-out) 1s;
}

.hero-slide.is-active .scroll-indicator { opacity: 1; }

.scroll-indicator__line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.scroll-indicator__text {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Video play/pause */
.hero-video-control {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: all 0.25s;
  font-size: 0.875rem;
}

.hero-video-control:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* ============================================================
   PAGE HERO (non-homepage)
   ============================================================ */

.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--navy);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.page-hero--split {
  padding: 0;
  min-height: 520px;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.page-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.page-hero__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  max-width: 720px;
  margin-bottom: 1.25rem;
}

.page-hero__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: 1.65;
}

/* Split hero */
.page-hero--split .page-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.page-hero--split .hero-split-img {
  background-size: cover;
  background-position: center;
}

.page-hero--split .hero-split-text {
  background: var(--navy);
  padding: calc(var(--nav-h) + 80px) 4rem 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ============================================================
   STATS BAR
   ============================================================ */

.stats-bar {
  background: var(--navy);
  padding: 56px 0;
}

.stats-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 2rem;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.stat-item__number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.stat-item__label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header--left {
  text-align: left;
  margin: 0 0 3rem;
}

.section-header .eyebrow { margin-bottom: 12px; }

.section-header__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 2.8vw, 2.75rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

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

.section-header__sub {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.7;
}

.section--navy .section-header__sub { color: rgba(255,255,255,0.65); }

/* ============================================================
   SERVICES GRID
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: background 0.25s;
  position: relative;
}

.service-card:hover { background: var(--off-white); }

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.service-card__icon svg { width: 100%; height: 100%; }

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.service-card__desc {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: gap 0.2s;
}

.service-card__link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* ============================================================
   WHO WE SERVE
   ============================================================ */

.serve-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.serve-section__img {
  position: relative;
  height: 500px;
  background: var(--off-white);
  overflow: hidden;
}

.serve-section__img img,
.serve-section__img .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-placeholder {
  background: linear-gradient(135deg, #c8cdd4, #e5e7eb);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.2);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
}

.serve-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.serve-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s;
}

.serve-item:hover { border-color: var(--gold); background: #fffdf7; }

.serve-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 5px;
}

.serve-item__label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.35;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 1px;
  background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
  opacity: 0.4;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-card__number {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: -1.5rem;
  display: block;
}

.step-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--gold-light);
  position: relative;
  z-index: 1;
}

.step-card__icon svg { width: 32px; height: 32px; }

.step-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.step-card__desc {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   FOUNDER / SPLIT SECTIONS
   ============================================================ */

.founder-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--off-white);
}

.founder-section__img {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.founder-section__img img,
.founder-section__img .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-section__content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-section__name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.founder-section__title {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.75rem;
}

.founder-section__bio {
  font-size: 1.0625rem;
  color: var(--text);
  line-height: 1.75;
}

.founder-section__bio p + p { margin-top: 1rem; }

.founder-section__sig {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--navy);
  margin: 1.5rem 0;
  opacity: 0.8;
}

/* Pull quote */
.pull-quote {
  position: relative;
  padding: 2rem 2.5rem;
  border-left: 3px solid var(--gold);
  margin: 2rem 0;
  background: var(--off-white);
  border-radius: 0 4px 4px 0;
}

.pull-quote__text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.pull-quote__author {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 4px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.15;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.875rem;
}

.testimonial-card__quote {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
}

.testimonial-card__role {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ============================================================
   INSIGHTS / ARTICLES
   ============================================================ */

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.article-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.article-card:hover {
  box-shadow: 0 8px 32px rgba(10,22,40,0.1);
  transform: translateY(-2px);
}

.article-card__img {
  height: 200px;
  background: linear-gradient(135deg, #c8cdd4, #e5e7eb);
  overflow: hidden;
  position: relative;
}

.article-card__img img { width: 100%; height: 100%; object-fit: cover; }

.article-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold-grad);
  color: var(--navy);
  padding: 3px 10px;
  border-radius: 2px;
}

.article-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.article-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.article-card:hover .article-card__title { color: var(--gold-dark); }

.article-card__excerpt {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.article-card__footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article-card__author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--border);
  overflow: hidden;
}

.article-card__author-name {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy);
}

.article-card__read-more {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* Featured article */
.article-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.article-featured__img {
  background: linear-gradient(135deg, #c8cdd4, #d5d8dc);
  min-height: 400px;
  position: relative;
}

.article-featured__body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.article-featured__tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold-grad);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.article-featured__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.article-featured__excerpt {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Filter bar */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-pill {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--muted);
  transition: all 0.2s;
}

.filter-pill.is-active,
.filter-pill:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Email signup */
.email-signup {
  background: var(--off-white);
  padding: 3rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.email-signup__text h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.email-signup__text p {
  font-size: 0.9375rem;
  color: var(--muted);
}

.email-signup__form {
  display: flex;
  gap: 0;
  flex: 1;
  max-width: 420px;
}

.email-signup__input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: 3px 0 0 3px;
  font-size: 0.9375rem;
  outline: none;
  background: var(--white);
  transition: border-color 0.2s;
}

.email-signup__input:focus { border-color: var(--navy); }

.email-signup__form .btn {
  border-radius: 0 3px 3px 0;
}

/* ============================================================
   LEAD CAPTURE FORM
   ============================================================ */

.lead-capture {
  background: var(--navy);
  position: relative;
  overflow: visible;
  padding: 96px 0;
}

.lead-capture__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.lead-capture__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.lead-capture__text { color: var(--white); }

.lead-capture__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}

.lead-capture__text p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.lead-capture__form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 2.5rem;
}

/* ============================================================
   FORMS
   ============================================================ */

.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.form--dark .form-label { color: rgba(255,255,255,0.6); }

.form-input,
.form-select,
.form-textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form--dark .form-input,
.form--dark .form-select,
.form--dark .form-textarea {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}

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

.form--dark .form-input:focus,
.form--dark .form-select:focus,
.form--dark .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

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

.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.form-select option {
  background: var(--white);
  color: var(--text);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold-dark);
  cursor: pointer;
}

.form-checkbox__label {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

.form--dark .form-checkbox__label { color: rgba(255,255,255,0.6); }

.form-checkbox__label a { color: var(--gold-light); text-decoration: underline; }

.form-error {
  font-size: 0.75rem;
  color: #dc2626;
  margin-top: 4px;
}

.form-success {
  padding: 1.5rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold);
  border-radius: 4px;
  text-align: center;
  color: var(--gold-dark);
  font-weight: 500;
  display: none !important;
}

.form-success.visible { display: block !important; }

.form-input.error,
.form-select.error,
.form-textarea.error { border-color: #dc2626; }

/* ============================================================
   PRE-FOOTER CTA
   ============================================================ */

.pre-footer-cta {
  background: var(--navy);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pre-footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(201,168,76,0.1), transparent);
}

.pre-footer-cta__inner {
  position: relative;
  z-index: 2;
}

.pre-footer-cta .eyebrow { margin-bottom: 16px; }

.pre-footer-cta__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.pre-footer-cta__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

/* ============================================================
   PHILOSOPHY PILLARS
   ============================================================ */

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  position: relative;
  transition: border-color 0.25s, box-shadow 0.25s;
  background: var(--white);
}

.pillar-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(10,22,40,0.08);
}

.pillar-card__number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pillar-card__title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1rem;
}

.pillar-card__desc {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   VALUES
   ============================================================ */

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.25s;
}

.value-card:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.value-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--gold);
}

.value-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
  transition: color 0.25s;
}

.value-card:hover .value-card__title { color: var(--gold-light); }

.value-card__desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  transition: color 0.25s;
}

.value-card:hover .value-card__desc { color: rgba(255,255,255,0.7); }

/* ============================================================
   TEAM
   ============================================================ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.team-card:hover { box-shadow: 0 8px 32px rgba(10,22,40,0.1); }

.team-card__img {
  height: 280px;
  background: linear-gradient(135deg, #c8cdd4, #e5e7eb);
  overflow: hidden;
}

.team-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.team-card__body {
  padding: 1.5rem;
}

.team-card__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 2px;
}

.team-card__title {
  font-size: 0.875rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 6px;
}

.team-card__creds {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.team-card__bio {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.team-card__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: color 0.2s;
}

.team-card__linkedin:hover { color: var(--navy); }

/* Founder featured card */
.team-card--founder {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 360px 1fr;
}

.team-card--founder .team-card__img {
  height: auto;
  min-height: 400px;
}

.team-card--founder .team-card__body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-card--founder .team-card__name {
  font-size: 2rem;
  margin-bottom: 4px;
}

/* ============================================================
   SERVICES DETAIL
   ============================================================ */

.service-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 80px 0;
}

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

.service-detail__eyebrow { margin-bottom: 10px; }

.service-detail__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 2.5vw, 2.5rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.service-detail__desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.service-detail__desc p + p { margin-top: 1rem; }

.capability-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 2rem;
}

.capability-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text);
}

.capability-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

.service-detail__img {
  height: 440px;
  background: linear-gradient(135deg, #c8cdd4, #e5e7eb);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.service-detail__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  opacity: 0.06;
}

/* Fee table */
.fee-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.fee-table th {
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
}

.fee-table td {
  padding: 14px 20px;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--border);
}

.fee-table tr:last-child td { border-bottom: none; }
.fee-table tr:nth-child(even) td { background: var(--off-white); }

/* ============================================================
   CONTACT
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.contact-info__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact-info__title {
  font-size: 0.875rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
}

.contact-detail__icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail__text {
  font-size: 0.9375rem;
  color: var(--text);
}

.contact-detail__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-hours {
  background: var(--off-white);
  padding: 1.5rem;
  border-radius: 4px;
  margin-top: 1.5rem;
}

.contact-hours__title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}

.contact-hours__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}

.contact-hours__row:last-child { border-bottom: none; }

.contact-commitment {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  border-left: 3px solid var(--gold);
  background: rgba(201,168,76,0.06);
}

.contact-commitment p {
  font-size: 0.875rem;
  color: var(--navy);
  font-style: italic;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
  gap: 1rem;
}

.faq-question:hover { background: var(--off-white); }

.faq-question-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
  transition: all 0.25s;
  font-size: 1rem;
  line-height: 1;
}

.faq-item.is-open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}

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

.faq-answer__inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 80;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  box-shadow: 0 4px 16px rgba(10,22,40,0.2);
}

.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-dark); }

/* ============================================================
   ANIMATION CLASSES (IntersectionObserver)
   ============================================================ */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in--delay-1 { transition-delay: 0.1s; }
.fade-in--delay-2 { transition-delay: 0.2s; }
.fade-in--delay-3 { transition-delay: 0.3s; }
.fade-in--delay-4 { transition-delay: 0.4s; }

.fade-in--left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-in--left.visible { opacity: 1; transform: translateX(0); }

.fade-in--right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-in--right.visible { opacity: 1; transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-in, .fade-in--left, .fade-in--right { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-slide__bg { transition: none; }
  .scroll-indicator__line { animation: none; }
}

/* ============================================================
   LEGAL / STUB PAGES
   ============================================================ */

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 64px) 2rem 96px;
}

.legal-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.75rem);
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.legal-content .last-updated {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
}

.legal-content p {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .steps-grid::before { display: none; }

  .site-footer__top { grid-template-columns: 1fr 1fr; }

  .article-featured { grid-template-columns: 1fr; }
  .article-featured__img { min-height: 260px; }

  .founder-layout { grid-template-columns: 1fr !important; }
  .founder-layout > *:first-child { position: static !important; }

  /* Reduce large inline gaps at tablet sizes */
  .team-culture-grid { gap: 3rem !important; }
  .team-careers-grid { gap: 3rem !important; }
  .about-story-grid { gap: 2.5rem !important; }
  .serve-section { gap: 3rem; }
  .lead-capture__inner { gap: 3rem; }
  .contact-layout { gap: 3rem; }

  /* Services intro collapses to 1 column at tablet */
  .services-intro-grid { grid-template-columns: 1fr !important; border-right: none !important; }
  .services-intro-grid > a { border-right: none !important; border-bottom: 1px solid var(--border); }
  .services-intro-grid > a:last-child { border-bottom: none; }

  /* Nav inner padding + logo spacing */
  .site-nav__inner { padding: 0 1.5rem; }
  .site-nav__logo { margin-right: 1.5rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .container { padding: 0 1.25rem; }
  .site-nav__inner { padding: 0 1.25rem; }
  .site-nav__logo { margin-right: auto; }
  .site-nav__logo-sub { display: none; }

  .hero-stat__number { font-size: 1.5rem; }
  .hero-stat { padding: 0 0.75rem; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat + .hero-stat::before { display: none; }

  .hero-carousel__controls {
    display: flex;
    flex-direction: row;
    top: auto;
    bottom: 1.5rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    gap: 8px;
  }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr !important; max-width: 100% !important; }
  .team-grid--2col { grid-template-columns: 1fr !important; }
  .steps-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }

  .serve-section { grid-template-columns: 1fr; }
  .serve-section__img { height: 280px; }
  .serve-list { grid-template-columns: 1fr; }

  .founder-section { grid-template-columns: 1fr; }
  .founder-section__content { padding: 2.5rem 1.5rem; }

  .lead-capture { padding: 64px 0; overflow: visible; }
  .lead-capture__inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 0 1.25rem; }
  .lead-capture__inner > * { min-width: 0; }
  .lead-capture__form-wrap { padding: 1.5rem; min-width: 0; width: 100%; }
  .form-input, .form-select, .form-textarea { max-width: 100%; }

  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }

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

  .site-footer__top { grid-template-columns: 1fr; gap: 2rem; }

  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .stat-item + .stat-item::before { display: none; }

  .team-card--founder { grid-template-columns: 1fr; }
  .team-card--founder .team-card__img { min-height: 280px; height: 280px; }

  .page-hero { padding: calc(var(--nav-h) + 48px) 0 48px; min-height: 360px; }
  .page-hero__content { padding: 0 1.25rem; }
  .page-hero--split .page-hero__inner { grid-template-columns: 1fr; }
  .page-hero--split .hero-split-img { min-height: 260px; }
  .page-hero--split .hero-split-text { padding: 2.5rem 1.5rem; }

  .email-signup { flex-direction: column; }
  .email-signup__form { max-width: 100%; width: 100%; }

  .service-section { grid-template-columns: 1fr; direction: ltr !important; }
  .service-section--reverse > * { direction: ltr; }
  .serve-section[style*="direction:rtl"],
  .serve-section[style*="direction: rtl"] { direction: ltr !important; }

  .capability-list { grid-template-columns: 1fr; }

  .section { padding: 64px 0; }
  .section--lg { padding: 80px 0; }

  .pre-footer-cta { padding: 64px 0; }

  .site-footer__legal-row { flex-direction: column; align-items: center; gap: 10px; }
  .site-footer__legal-sep { display: none; }

  /* Inline-grid overrides — about.html */
  .about-story-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .about-story-grid > *:first-child { position: static !important; }
  .about-serve-grid { grid-template-columns: 1fr !important; }
  .about-team-grid { grid-template-columns: 1fr !important; }

  /* Inline-grid overrides — team.html */
  .team-culture-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .team-careers-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }

  /* Inline-grid overrides — process.html */
  .process-why-grid { grid-template-columns: 1fr !important; }

  /* Inline-grid overrides — services.html */
  .services-intro-grid { grid-template-columns: 1fr !important; border-right: none !important; }
  .services-intro-grid > a { border-right: none !important; border-bottom: 1px solid var(--border); }
  .services-intro-grid > a:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  .hero-slide__actions { flex-direction: column; width: 100%; }
  .hero-slide__actions .btn { width: 100%; justify-content: center; }

  .stats-bar__inner { grid-template-columns: 1fr; }
  .stat-item__number { font-size: 1.75rem; }
  .values-grid { grid-template-columns: 1fr; }

  .article-featured { grid-template-columns: 1fr; }

  /* Ensure single column on smallest screens */
  .about-serve-grid { grid-template-columns: 1fr !important; }
  .about-team-grid { grid-template-columns: 1fr !important; }
  .process-why-grid { grid-template-columns: 1fr !important; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }

  /* Page hero image height on small phones */
  .page-hero--split .hero-split-img { min-height: 220px; aspect-ratio: 16/9; }

  /* Nav on smallest phones */
  .site-nav__logo-sub { display: none; }
  .site-nav__logo-primary { font-size: 1.2rem; }

  /* Lead capture form */
  .lead-capture { padding: 48px 0; }
  .lead-capture__inner { gap: 1.5rem; padding: 0 1rem; }
  .lead-capture__form-wrap { padding: 1.25rem; }
  .lead-capture__text h2 { font-size: 1.75rem; }
  .lead-capture__form-wrap .btn { font-size: 0.75rem; padding: 12px 16px; white-space: normal; text-align: center; }

  /* Section padding tighter on small phones */
  .section { padding: 48px 0; }
  .pre-footer-cta { padding: 48px 0; }
}
