@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=IBM+Plex+Serif:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

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

:root {
  --navy-950: #030b18;
  --navy-900: #08122a;
  --navy-800: #0f1e3d;
  --navy-700: #162950;
  --navy-600: #1e3666;
  --gold-600: #a8852e;
  --gold-500: #c9a84c;
  --gold-400: #d4b96a;
  --gold-300: #e2cf99;
  --gold-100: rgba(201,168,76,0.1);
  --white: #f8fafc;
  --slate-100: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --z-10: 10; --z-20: 20; --z-30: 30; --z-50: 50; --z-100: 100;
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: var(--ease-premium);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 72px;
  --nav-height-scrolled: 60px;
  --bg-light: #F7F8FA;
  --text-on-light: #0B1F3A;
  --text-on-light-muted: #4A5568;
  --gold: #B8932E;
}

.heritage-logo {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1.75rem;
}

.story-stat {
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: border-color 0.3s var(--ease-premium), transform 0.3s var(--ease-premium), box-shadow 0.3s var(--ease-premium);
}

.story-stat-num {
  font-family: 'IBM Plex Serif', serif;
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--gold);
  min-width: 90px;
  text-align: center;
  line-height: 1;
}

.story-stat-title {
  font-weight: 600;
  color: var(--text-on-light);
  margin-bottom: 0.2rem;
}

.story-stat-desc {
  font-size: 0.825rem;
  color: var(--text-on-light-muted);
}

.story-stat--featured {
  background: linear-gradient(135deg, rgba(184, 147, 46, 0.08), rgba(184, 147, 46, 0.03));
  border-color: rgba(184, 147, 46, 0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'IBM Plex Sans', sans-serif;
  background: var(--navy-950);
  color: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Scroll progress bar ────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400), var(--gold-300));
  width: 0%;
  z-index: calc(var(--z-100) + 10);
  box-shadow: 0 0 8px rgba(201,168,76,0.6);
  pointer-events: none;
}

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-50);
  transition: background 0.4s var(--ease-premium), border-color 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
}

.nav.scrolled {
  background: rgba(3, 11, 24, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.35s var(--ease-premium), padding 0.35s var(--ease-premium);
}

.nav.scrolled .nav-inner {
  height: var(--nav-height-scrolled);
  padding: 0 1.75rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  position: relative;
}

.nav-logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy-900);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-premium);
}

.nav-logo-mark::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease-premium);
}

.nav-logo:hover .nav-logo-mark::after { transform: translateX(100%); }
.nav-logo:hover .nav-logo-mark { transform: rotate(-3deg) scale(1.05); }

.nav-logo-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
}

.nav-logo-text span { color: var(--gold-400); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--slate-400);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s var(--ease-premium), background 0.2s var(--ease-premium);
  letter-spacing: 0.02em;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  width: 0; height: 1.5px;
  background: var(--gold-400);
  transform: translateX(-50%);
  transition: width 0.25s var(--ease-premium);
  border-radius: 1px;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 60%; }
.nav-links a.active { color: var(--gold-400); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500)) !important;
  color: var(--navy-900) !important;
  padding: 0.5rem 1.25rem !important;
  font-weight: 600 !important;
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.4s var(--ease-premium);
}

.nav-cta:hover::before { left: 100%; }
.nav-cta:hover { color: var(--navy-900) !important; opacity: 0.95; }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-premium);
}

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

.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(3,11,24,0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201,168,76,0.08);
  padding: 1rem 2rem 1.5rem;
  gap: 0.25rem;
}

.nav-mobile a {
  color: var(--slate-400);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s var(--ease-premium), padding-left 0.2s var(--ease-premium);
}

.nav-mobile a:hover,
.nav-mobile a.active { color: var(--gold-400); padding-left: 0.5rem; }
.nav-mobile.open { display: flex; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ── Layout ──────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-label::before {
  content: '';
  width: 20px; height: 1.5px;
  background: var(--gold-500);
  display: block;
  border-radius: 1px;
}

.section-title {
  font-family: 'IBM Plex Serif', serif;
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.section-title strong { color: var(--gold-400); font-weight: 600; }
.section-title em { font-style: italic; color: var(--gold-300); font-weight: 300; }

.section-sub {
  font-size: 1.05rem;
  color: var(--slate-400);
  line-height: 1.8;
  max-width: 580px;
}

/* ── Gold divider ────────────────────────────────────────── */
.gold-rule {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
  border-radius: 2px;
  margin-bottom: 1.75rem;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease-premium);
  letter-spacing: 0.03em;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-400) 100%);
  color: var(--navy-900);
  box-shadow: 0 4px 20px rgba(201,168,76,0.25);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s var(--ease-premium);
  z-index: 0;
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--bx, 50%) var(--by, 50%), rgba(255,255,255,0.22) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s var(--ease-premium);
  pointer-events: none;
  z-index: 0;
}

.btn-gold:hover::before { left: 100%; }
.btn-gold:hover::after { opacity: 1; }
.btn-gold:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(201,168,76,0.45);
}
.btn-gold:active { transform: scale(1.01); }
.btn-gold > * { position: relative; z-index: 1; }

.btn-outline {
  background: transparent;
  color: var(--gold-400);
  border: 1.5px solid rgba(201,168,76,0.4);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold-400);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* ── Background patterns ─────────────────────────────────── */
.bg-dark { background: var(--navy-950); }
.bg-deep { background: var(--navy-900); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  --parallax-x: 0px;
  --parallax-y: 0px;
  translate: var(--parallax-x) var(--parallax-y);
}

.hero-glow-1 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: floatGlow 8s ease-in-out infinite;
  pointer-events: none;
  --parallax-x: 0px;
  --parallax-y: 0px;
  translate: var(--parallax-x) var(--parallax-y);
}

.hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,54,102,0.6) 0%, transparent 70%);
  bottom: -50px; left: -80px;
  animation: floatGlow 10s ease-in-out infinite reverse;
  pointer-events: none;
  --parallax-x: 0px;
  --parallax-y: 0px;
  translate: var(--parallax-x) var(--parallax-y);
}

@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.97); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  animation: badgePulse 3s var(--ease-premium) infinite;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease-premium), transform 0.65s var(--ease-premium);
}

.hero-badge.revealed {
  opacity: 1;
  transform: translateY(0);
  animation: badgePulse 3s var(--ease-premium) infinite;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 8px var(--gold-400);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.15); }
  50% { box-shadow: 0 0 0 8px rgba(201,168,76,0); }
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: 'IBM Plex Serif', serif;
  font-size: clamp(2.8rem, 6vw, 4.75rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.75rem;
  max-width: 800px;
  overflow: hidden;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-400);
  display: block;
  font-weight: 300;
}

/* Word reveal animation */
.word-wrap { overflow: hidden; display: inline-block; }
.word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.7s var(--ease-premium), opacity 0.7s var(--ease-premium);
}
.word.revealed { transform: translateY(0); opacity: 1; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--slate-400);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease-premium), transform 0.65s var(--ease-premium);
}

.hero-sub.revealed { opacity: 1; transform: translateY(0); }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease-premium), transform 0.65s var(--ease-premium);
}

.hero-actions.revealed { opacity: 1; transform: translateY(0); }

/* Floating since tag */
.hero-since {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
  pointer-events: none;
  opacity: 0;
  animation: heroSinceFade 1.2s ease 1.2s forwards;
}

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

.hero-since-year {
  font-family: 'IBM Plex Serif', serif;
  font-size: clamp(6rem, 12vw, 11rem);
  font-weight: 300;
  color: rgba(201,168,76,0.06);
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero-since-label {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.3);
  font-weight: 700;
  margin-top: -0.5rem;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: heroSinceFade 1s ease 1.5s forwards;
  cursor: pointer;
}

.hero-scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-500);
  font-weight: 600;
}

.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--gold-500), 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; }
}

@media (max-width: 768px) {
  .hero-since { display: none; }
  .hero-title { font-size: 2.4rem; }
}

/* ── Stat strip ──────────────────────────────────────────── */
.stats-strip {
  background: var(--navy-800);
  border-top: 1px solid rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.03) 50%, transparent);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 1rem 2rem;
  position: relative;
  transition: transform 0.3s var(--ease-premium), box-shadow 0.3s var(--ease-premium), border-color 0.3s var(--ease-premium);
}

.stat-card {
  background: var(--navy-800);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s var(--ease-premium), box-shadow 0.3s var(--ease-premium), border-color 0.3s var(--ease-premium);
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 0 1px rgba(201,168,76,0.08);
}

.stat-card--featured {
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.04));
  border-color: rgba(201,168,76,0.25);
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(201,168,76,0.12);
}

.stat-num {
  font-family: 'IBM Plex Serif', serif;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 300;
  color: var(--gold-400);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
}

.stat-num-suffix {
  font-size: 1.5rem;
  font-weight: 400;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--slate-500);
  margin-top: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after,
  .stat-item:nth-child(4)::after { display: none; }
}

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--navy-800);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: border-color 0.3s var(--ease-premium), transform 0.3s var(--ease-premium), box-shadow 0.3s var(--ease-premium);
}

/* Shimmer sweep on hover */
.card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(201,168,76,0.06) 50%, transparent 60%);
  transition: left 0.5s var(--ease-premium);
  pointer-events: none;
}

.card:hover::before { left: 100%; }

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(201,168,76,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s var(--ease-premium);
  pointer-events: none;
}

.card:hover::after { opacity: 1; }

.card:hover {
  border-color: rgba(201,168,76,0.28);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.06);
}

.card-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s var(--ease-premium), transform 0.3s var(--ease-premium);
}

.card:hover .card-icon {
  background: rgba(201,168,76,0.14);
  transform: scale(1.1) rotate(-3deg);
}

.card-icon svg { width: 24px; height: 24px; stroke: var(--gold-500); }

.card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
  transition: color 0.2s var(--ease-premium);
}

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

.card-text {
  font-size: 0.875rem;
  color: var(--slate-400);
  line-height: 1.75;
}

/* ── Grid ─────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
}

/* ── Animations ──────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  /* Staggered cascade — children animate when parent enters viewport */
  .stagger > *,
  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease-premium), transform 0.6s var(--ease-premium);
  }

  .stagger.visible > *:nth-child(1),
  .reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
  .stagger.visible > *:nth-child(2),
  .reveal-stagger.visible > *:nth-child(2) { transition-delay: 100ms; }
  .stagger.visible > *:nth-child(3),
  .reveal-stagger.visible > *:nth-child(3) { transition-delay: 200ms; }
  .stagger.visible > *:nth-child(4),
  .reveal-stagger.visible > *:nth-child(4) { transition-delay: 300ms; }
  .stagger.visible > *:nth-child(5),
  .reveal-stagger.visible > *:nth-child(5) { transition-delay: 400ms; }
  .stagger.visible > *:nth-child(6),
  .reveal-stagger.visible > *:nth-child(6) { transition-delay: 500ms; }
  .stagger.visible > *:nth-child(7),
  .reveal-stagger.visible > *:nth-child(7) { transition-delay: 600ms; }
  .stagger.visible > *:nth-child(8),
  .reveal-stagger.visible > *:nth-child(8) { transition-delay: 700ms; }
  .stagger.visible > *:nth-child(9),
  .reveal-stagger.visible > *:nth-child(9) { transition-delay: 800ms; }
  .stagger.visible > *:nth-child(10),
  .reveal-stagger.visible > *:nth-child(10) { transition-delay: 900ms; }
  .stagger.visible > *:nth-child(11),
  .reveal-stagger.visible > *:nth-child(11) { transition-delay: 1000ms; }
  .stagger.visible > *:nth-child(12),
  .reveal-stagger.visible > *:nth-child(12) { transition-delay: 1100ms; }

  .stagger.visible > *,
  .reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
  }

  /* Fade slide */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s var(--ease-premium), transform 0.65s var(--ease-premium);
  }

  .reveal.visible { opacity: 1; transform: translateY(0); }

  .reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.65s var(--ease-premium), transform 0.65s var(--ease-premium);
  }

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

  .reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.65s var(--ease-premium), transform 0.65s var(--ease-premium);
  }

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

/* ── Floating geometric shapes ───────────────────────────── */
.geo-shape {
  position: absolute;
  pointer-events: none;
  --parallax-x: 0px;
  --parallax-y: 0px;
  translate: var(--parallax-x) var(--parallax-y);
  opacity: 0;
  animation: geoFadeIn 1s ease forwards;
}

@keyframes geoFadeIn { to { opacity: 1; } }

.geo-ring {
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.1);
  animation: geoRotate 20s linear infinite, geoFadeIn 1.5s ease 0.5s both;
}

@keyframes geoRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.geo-dot {
  border-radius: 50%;
  background: var(--gold-500);
  animation: geoPulse 4s ease-in-out infinite, geoFadeIn 1s ease 0.3s both;
}

@keyframes geoPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.5); opacity: 0.8; }
}

/* ── Separator ───────────────────────────────────────────── */
.sep {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.15), transparent);
  margin: 0;
}

/* ── Mission quote block ─────────────────────────────────── */
.quote-block {
  background: var(--navy-800);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease-premium), box-shadow 0.3s var(--ease-premium);
}

.quote-block:hover {
  border-color: rgba(201,168,76,0.28);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.quote-block::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.quote-mark {
  font-family: 'IBM Plex Serif', serif;
  font-size: 7rem;
  color: rgba(201,168,76,0.1);
  line-height: 0.8;
  margin-bottom: 0.5rem;
  font-style: italic;
}

.quote-text {
  font-family: 'IBM Plex Serif', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--slate-200);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.quote-author { font-weight: 600; color: var(--gold-400); font-size: 0.875rem; }
.quote-attribution { font-size: 0.8rem; color: var(--slate-500); margin-top: 0.2rem; }

/* ── Testimonial ─────────────────────────────────────────── */
.testimonial {
  background: var(--navy-800);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease-premium), transform 0.3s var(--ease-premium), box-shadow 0.3s var(--ease-premium);
}

.testimonial:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.testimonial-mark {
  font-family: 'IBM Plex Serif', serif;
  font-size: 4.5rem;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  font-style: italic;
  position: absolute;
  top: 1.25rem; right: 1.75rem;
}

.testimonial-text {
  font-family: 'IBM Plex Serif', serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--slate-200);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-author { font-weight: 600; color: var(--gold-400); font-size: 0.875rem; }

/* ── CTA band ────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Animated border */
.cta-band::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  animation: borderSlide 4s linear infinite;
}

@keyframes borderSlide {
  from { left: -100%; }
  to { left: 100%; }
}

.cta-band-title {
  font-family: 'IBM Plex Serif', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-band-sub {
  color: var(--slate-400);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* ── Page hero (inner pages) ─────────────────────────────── */
.page-hero {
  padding-top: calc(72px + 5rem);
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 0% 100%, rgba(22,41,80,0.4) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-geo {
  position: absolute;
  right: -80px; top: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.05);
  animation: geoRotate 30s linear infinite;
  pointer-events: none;
}

.page-hero-geo::before {
  content: '';
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
}

.page-hero-geo::after {
  content: '';
  position: absolute;
  inset: 120px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero-title {
  font-family: 'IBM Plex Serif', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.page-hero-title strong { color: var(--gold-400); font-weight: 600; }

.page-hero-sub {
  font-size: 1.05rem;
  color: var(--slate-400);
  max-width: 540px;
  line-height: 1.8;
}

/* ── Pillar cards ────────────────────────────────────────── */
.pillar {
  background: var(--navy-800);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease-premium), transform 0.3s var(--ease-premium), box-shadow 0.3s var(--ease-premium);
}

.pillar::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--gold-500), transparent);
  transform: scaleY(0);
  transition: transform 0.4s var(--ease-premium);
  border-radius: 0 2px 2px 0;
}

.pillar:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 0 1px rgba(201,168,76,0.08);
}
.pillar:hover::before { transform: scaleY(1); }

.pillar-num {
  font-family: 'IBM Plex Serif', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(201,168,76,0.18);
  line-height: 1;
  min-width: 3rem;
  transition: color 0.3s var(--ease-premium);
}

.pillar:hover .pillar-num { color: rgba(201,168,76,0.35); }

.pillar-title { font-weight: 600; color: var(--white); margin-bottom: 0.5rem; font-size: 1rem; }
.pillar-text { font-size: 0.875rem; color: var(--slate-400); line-height: 1.75; }

/* ── Team cards ──────────────────────────────────────────── */
.team-card {
  background: var(--navy-800);
  border: 1px solid rgba(201,168,76,0.07);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease-premium), transform 0.3s var(--ease-premium), box-shadow 0.3s var(--ease-premium);
}

.team-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,168,76,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s var(--ease-premium);
}

.team-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 0 1px rgba(201,168,76,0.08);
}
.team-card:hover::before { opacity: 1; }

.team-avatar {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  border: 2px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: 'IBM Plex Serif', serif;
  font-size: 1.3rem;
  color: var(--gold-400);
  font-weight: 400;
  position: relative;
  transition: border-color 0.3s var(--ease-premium), box-shadow 0.3s var(--ease-premium);
}

.team-card:hover .team-avatar {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 0 20px rgba(201,168,76,0.2);
}

.team-name { font-weight: 600; color: var(--white); font-size: 1rem; margin-bottom: 0.3rem; }
.team-role { font-size: 0.75rem; color: var(--gold-500); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.3rem; }
.team-qual { font-size: 0.78rem; color: var(--slate-500); }

/* ── Service detail blocks ───────────────────────────────── */
.service-panel {
  background: var(--navy-800);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  transition: border-color 0.3s var(--ease-premium), transform 0.3s var(--ease-premium), box-shadow 0.3s var(--ease-premium);
  scroll-margin-top: calc(var(--nav-height) + 16px);
}

.service-panel:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 0 1px rgba(201,168,76,0.08);
}

.service-panel-header {
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-bottom: 1px solid rgba(201,168,76,0.06);
}

.service-panel-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s var(--ease-premium), transform 0.3s var(--ease-premium);
}

.service-panel:hover .service-panel-icon {
  background: rgba(201,168,76,0.14);
  transform: scale(1.05);
}

.service-panel-icon svg { width: 24px; height: 24px; stroke: var(--gold-500); }

.service-panel-title { font-size: 1.25rem; font-weight: 600; color: var(--white); }
.service-panel-sub { font-size: 0.8rem; color: var(--slate-500); margin-top: 0.15rem; }

.service-panel-body { padding: 2rem 2.5rem 2.5rem; }

.service-panel-intro {
  color: var(--slate-400);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

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

@media (max-width: 768px) {
  .service-sub-grid, .service-sub-grid-3 { grid-template-columns: 1fr; }
}

.service-mini-card {
  background: var(--navy-900);
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color 0.2s var(--ease-premium), background 0.2s var(--ease-premium);
}

.service-mini-card:hover {
  border-color: rgba(201,168,76,0.12);
  background: rgba(15,30,61,0.8);
}

.service-mini-title { font-weight: 600; color: var(--gold-400); font-size: 0.875rem; margin-bottom: 0.6rem; }
.service-mini-text { font-size: 0.825rem; color: var(--slate-400); line-height: 1.65; }

.bullet-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.bullet-list li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.875rem; color: var(--slate-400); line-height: 1.65;
}

.bullet-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
  margin-top: 7px;
  box-shadow: 0 0 4px rgba(201,168,76,0.4);
}

/* ── Sidebar service nav ─────────────────────────────────── */
.service-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  color: var(--slate-400);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s var(--ease-premium);
  border-left: 2px solid transparent;
  margin-bottom: 0.15rem;
}

.service-nav-link:hover,
.service-nav-link.active {
  color: var(--gold-400);
  background: rgba(201,168,76,0.06);
  border-left-color: var(--gold-500);
  padding-left: 1.1rem;
}

/* ── Contact form ────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--slate-200);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-label span { color: var(--gold-500); }

.form-input {
  width: 100%;
  background: var(--navy-900);
  border: 1.5px solid rgba(201,168,76,0.12);
  color: var(--white);
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.25s var(--ease-premium), box-shadow 0.25s var(--ease-premium), background 0.25s var(--ease-premium);
  outline: none;
  -webkit-appearance: none;
}

.form-input::placeholder { color: var(--slate-600); }

.form-input:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.1);
  background: rgba(8,18,42,0.8);
}

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

/* ── Hours card ──────────────────────────────────────────── */
.hours-card {
  background: var(--navy-800);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 16px;
  padding: 2rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.9rem;
  transition: padding-left 0.2s var(--ease-premium);
}

.hours-row:hover { padding-left: 0.5rem; }
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--slate-400); font-weight: 500; }
.hours-time { color: var(--white); font-weight: 600; }
.hours-closed { color: var(--slate-600); font-style: italic; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(201,168,76,0.08);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.1), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

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

.footer-brand { margin-bottom: 1rem; }
.footer-brand-name { font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 0.75rem; }
.footer-brand-name span { color: var(--gold-400); }

.footer-tagline {
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col-title::before {
  content: '';
  width: 14px; height: 1.5px;
  background: var(--gold-500);
  border-radius: 1px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

.footer-links a {
  color: var(--slate-500);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s var(--ease-premium), padding-left 0.2s var(--ease-premium);
  display: inline-block;
}

.footer-links a:hover { color: var(--gold-400); padding-left: 0.4rem; }

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.footer-contact-row svg {
  width: 15px; height: 15px;
  stroke: var(--gold-500);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-row span,
.footer-contact-row a {
  font-size: 0.85rem;
  color: var(--slate-500);
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s var(--ease-premium);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy { font-size: 0.78rem; color: var(--slate-600); }

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: 0.78rem;
  color: var(--slate-600);
  text-decoration: none;
  transition: color 0.2s var(--ease-premium);
}
.footer-legal a:hover { color: var(--gold-400); }

/* ── Utilities ───────────────────────────────────────────── */
.text-gold { color: var(--gold-400); }
.text-center { text-align: center; }
.center-label { justify-content: center; }
.gold-rule-center { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

/* ── Map embed ───────────────────────────────────────────── */
.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.1);
  height: 300px;
  position: relative;
}

.map-wrap iframe {
  width: 100%; height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) saturate(0.4) brightness(0.85);
}

.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 768px) {
  .two-col-grid { grid-template-columns: 1fr; }
}

/* ── Light section banding (must follow base component styles) ─ */
.section-light {
  background: var(--bg-light);
  color: var(--text-on-light);
}

.section-light .section-title,
.section-light .page-hero-title { color: var(--text-on-light); }

.section-light .section-title strong { color: var(--gold); }

.section-light .section-sub,
.section-light .page-hero-sub { color: var(--text-on-light-muted); }

.section-light .section-label { color: var(--gold); }

.section-light .section-label::before { background: var(--gold); }

.section-light .card,
.section-light .pillar,
.section-light .team-card,
.section-light .stat-card,
.section-light .service-panel,
.service-panel.section-light {
  background: #FFFFFF;
  border: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: 0 2px 12px rgba(11, 31, 58, 0.06);
  color: var(--text-on-light);
}

.section-light .card:hover,
.section-light .pillar:hover,
.section-light .team-card:hover,
.section-light .service-panel:hover,
.service-panel.section-light:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.12);
}

.section-light .card-title,
.section-light .pillar-title,
.section-light .team-name,
.section-light .service-panel-title,
.service-panel.section-light .service-panel-title { color: var(--text-on-light); }

.section-light .card-text,
.section-light .pillar-text,
.section-light .team-qual,
.section-light .service-panel-intro,
.section-light .service-panel-sub,
.service-panel.section-light .service-panel-intro,
.service-panel.section-light .service-panel-sub { color: var(--text-on-light-muted); }

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

.section-light .card-icon svg,
.section-light .service-panel-icon svg,
.service-panel.section-light .service-panel-icon svg { stroke: var(--gold); }

.section-light .team-role,
.service-panel.section-light .service-mini-title { color: var(--gold); }

.section-light .stat-num,
.stats-strip.section-light .stat-num { color: var(--gold); }

.section-light .stat-label,
.stats-strip.section-light .stat-label { color: var(--text-on-light-muted); }

.section-light .card::after {
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(184, 147, 46, 0.1) 0%, transparent 60%);
}

.section-light .team-card::before {
  background: radial-gradient(circle at 50% 0%, rgba(184, 147, 46, 0.08) 0%, transparent 60%);
}

.section-light .team-card:hover,
.section-light .card:hover,
.section-light .pillar:hover,
.service-panel.section-light:hover {
  transform: translateY(-6px);
}

.section-light .testimonial,
.section-light .story-stat {
  background: #FFFFFF;
  border: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: 0 2px 12px rgba(11, 31, 58, 0.06);
}

.section-light .story-stat--featured {
  background: linear-gradient(135deg, rgba(184, 147, 46, 0.08), rgba(184, 147, 46, 0.03));
  border-color: rgba(184, 147, 46, 0.2);
}

.section-light .testimonial:hover,
.section-light .story-stat:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.12);
  transform: translateY(-3px);
}

.section-light .testimonial-text { color: var(--text-on-light-muted); }

.section-light .testimonial-author { color: var(--gold); }

.section-light .testimonial-mark { color: rgba(184, 147, 46, 0.15); }

.section-light .btn-outline {
  color: var(--gold);
  border-color: rgba(184, 147, 46, 0.45);
}

.section-light .btn-outline:hover {
  background: rgba(184, 147, 46, 0.08);
  border-color: var(--gold);
  color: var(--gold);
}

.service-panel.section-light .service-mini-card {
  background: var(--bg-light);
  border-color: rgba(11, 31, 58, 0.06);
}

.service-panel.section-light .service-mini-card:hover {
  border-color: rgba(184, 147, 46, 0.2);
  background: #FFFFFF;
}

.service-panel.section-light .service-mini-text,
.service-panel.section-light .bullet-list li { color: var(--text-on-light-muted); }

.service-panel.section-light .service-panel-header {
  border-bottom-color: rgba(11, 31, 58, 0.06);
}

.stats-strip.section-light {
  background: var(--bg-light);
  border-top-color: rgba(11, 31, 58, 0.06);
  border-bottom-color: rgba(11, 31, 58, 0.06);
}

.stats-strip.section-light::before {
  background: linear-gradient(90deg, transparent, rgba(184, 147, 46, 0.04) 50%, transparent);
}

.stats-strip.section-light .stat-item:not(:last-child)::after {
  background: rgba(11, 31, 58, 0.08);
}
