/* ═══════════════════════════════════════════
   CSS VARIABLES & RESET
   ═══════════════════════════════════════════ */
:root {
  --navy-950: #0a0f1e;
  --navy-900: #0f1629;
  --navy-800: #162040;
  --navy-700: #1e2d54;
  --navy-600: #2a3d6b;
  --slate-400: #8c95a8;
  --slate-300: #a8b0c0;
  --slate-200: #c8ced8;
  --slate-100: #e2e6ec;
  --slate-50: #f0f2f5;
  --paper: #f6f2ec;              /* Claude Design: warm off-white for About/Approach/People/Credentials */
  --paper-border: #eadfce;       /* Warm border for cards on paper */
  --rust-500: #b06a55;           /* Claude Design: subdued error accent (WCAG-safe on light + dark) */
  --white: #ffffff;
  --gold-500: #b8935a;
  --gold-400: #c9a76c;
  --gold-300: #dbbf8a;
  --gold-200: #e8d4ad;
  --gold-100: #f5ebd8;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--navy-900);
  background: var(--white);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(24px, 4vw, 80px);
  transition: var(--transition-smooth);
  background: transparent;
}

.nav.scrolled {
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(184, 147, 90, 0.1);
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  transition: var(--transition-smooth);
}

.nav.scrolled .nav-inner {
  height: 72px;
}

.nav-lion {
  height: 58px;
  width: auto;
  margin-right: 14px;
  vertical-align: middle;
  display: inline-block;
  position: relative;
  top: -2px;
}

.nav.scrolled .nav-lion {
  height: 38px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
  transition: font-size var(--transition-smooth);
}

.nav.scrolled .nav-logo {
  font-size: 1.85rem;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;                     /* Tightened further to balance enlarged brand */
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-300);
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-500);
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links .nav-cta {
  padding: 10px 28px;
  border: 1px solid var(--gold-500);
  color: var(--gold-400);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  transition: var(--transition-smooth);
}

.nav-links .nav-cta::after {
  display: none;
}

.nav-links .nav-cta:hover {
  background: var(--gold-500);
  color: var(--navy-950);
}

/* Mobile nav toggle (hamburger button) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  z-index: 1102;
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease, background 0.2s ease;
  transform-origin: center;
  pointer-events: none;
}

/* Hamburger -> X animation when menu is open */
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu overlay - full-screen solid navy panel */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy-950);
  background-image:
    radial-gradient(ellipse at 20% 90%, rgba(184, 147, 90, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 10%, rgba(42, 61, 107, 0.4) 0%, transparent 55%);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0.28s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0s;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(24px, 5vw, 40px);
  border-bottom: 1px solid rgba(184, 147, 90, 0.18);
  min-height: 72px;
  /* Reserve space on the right where the nav-toggle (X) button sits */
  padding-right: calc(clamp(24px, 5vw, 40px) + 44px);
}

.mobile-menu-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-brand img {
  height: 28px;
  width: auto;
}

.mobile-menu-brand-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.28em;
  color: var(--white);
  font-weight: 400;
}

.mobile-menu-brand-text .gold {
  color: var(--gold-500);
}

.mobile-menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 32px clamp(24px, 5vw, 40px) 24px;
  gap: 4px;
}

.mobile-menu-nav a {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a:active {
  color: var(--gold-400);
  padding-left: 8px;
}

.mobile-menu-nav a::after {
  content: '\2192';
  color: rgba(184, 147, 90, 0.45);
  font-size: 1rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-menu-nav a:hover::after,
.mobile-menu-nav a:active::after {
  color: var(--gold-500);
  transform: translateX(4px);
}

.mobile-menu-footer {
  padding: 24px clamp(24px, 5vw, 40px) calc(32px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(184, 147, 90, 0.18);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  background: var(--gold-500);
  color: var(--navy-950);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.1s ease;
  min-height: 56px;
}

.mobile-menu-cta:hover,
.mobile-menu-cta:active {
  background: var(--gold-400);
}

.mobile-menu-contact-info {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.mobile-menu-contact-info a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

/* Lock body scroll when mobile menu is open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* When menu is open, lift the nav above the menu so the X (toggle) button stays clickable */
body.menu-open .nav {
  z-index: 1103;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

/* Hide the nav logo (left side) when menu is open — the menu has its own brand.
   Use visibility:hidden (not display:none) so the toggle button keeps its right-aligned position. */
body.menu-open .nav-logo {
  visibility: hidden;
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-950);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* Subtle textured gradient */
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(184, 147, 90, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(42, 61, 107, 0.3) 0%, transparent 50%),
    linear-gradient(170deg, var(--navy-950) 0%, var(--navy-900) 100%);
}

/* Subtle grid overlay for texture */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(184, 147, 90, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 147, 90, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
  width: 100%;
}

.hero-overline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.55s 0.1s forwards;  /* Claude Design: hero stagger tightened */
}

.hero-overline::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold-500);
  vertical-align: middle;
  margin-right: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  max-width: 800px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.55s 0.2s forwards;  /* Claude Design: hero stagger tightened */
}

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

.hero-stats {
  display: flex;
  gap: 56px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(184, 147, 90, 0.15);
  opacity: 0;
  animation: fadeUp 0.55s 0.35s forwards;  /* Claude Design: hero stagger tightened */
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-display);
  /* Claude Design 2a: gold-300 numerals for 10.8:1 AA on navy-950 */
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--gold-300);
  line-height: 1;
  margin-bottom: 8px;
}

/* Claude Design 2a: R / Bn / + glyphs one step down for depth */
.hero-stat-number .hero-stat-glyph {
  color: var(--gold-500);
  font-weight: 400;
}

.hero-title-tail {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-400);
  font-weight: 300;             /* Claude Design 2a: 400 -> 300 for softer inline tail */
  font-size: 0.8em;             /* Claude Design 2a: 0.8em relative to hero-title */
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.15em;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
  opacity: 0;
  animation: fadeUp 0.55s 0.3s forwards;  /* Claude Design: hero stagger tightened */
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.hero-cta-primary {
  background: var(--gold-500);
  color: var(--navy-950);
  border-color: var(--gold-500);
  /* Claude Design 2a: subtle gold glow, only appears on hover to avoid page-load noise */
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.3s ease, transform 0.15s ease;
}

.hero-cta-primary:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  box-shadow: 0 0 0 1px rgba(219, 191, 138, 0.35), 0 8px 24px -8px rgba(184, 147, 90, 0.4);
}

.hero-cta-primary:active {
  transform: translateY(1px);
}

.hero-cta-secondary {
  background: transparent;
  color: var(--gold-300);
  border-color: rgba(184, 147, 90, 0.5);
}

.hero-cta-secondary:hover {
  background: rgba(184, 147, 90, 0.08);
  border-color: var(--gold-400);
  color: var(--gold-200);
}

.hero-stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-400);
}

/* .hero-scroll (removed — replaced by CTA buttons in hero) */

/* Skip link for keyboard/screen-reader users */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--gold-500);
  color: var(--navy-950);
  padding: 12px 20px;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* Mid-page CTA (used after Services + after Insights) */
.midcta {
  margin-top: 56px;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(184, 147, 90, 0.35);
  background: rgba(10, 15, 30, 0.35);
}
.section:not(.section-dark) .midcta {
  background: rgba(184, 147, 90, 0.06);
  border-color: rgba(184, 147, 90, 0.4);
}
.midcta-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 12px;
}
.midcta-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 20px;
  color: inherit;
}
.midcta-heading em {
  font-style: italic;
  color: var(--gold-400);
}
.midcta-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.midcta-actions .hero-cta { padding: 14px 28px; font-size: 0.78rem; }
@media (max-width: 720px) {
  .midcta { padding: 32px 20px; margin-top: 40px; }
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ═══════════════════════════════════════════
   SECTION STYLING (shared)
   ═══════════════════════════════════════════ */
.section {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 4vw, 80px);
}

.section-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 20px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy-900);
  margin-bottom: 24px;
}

.section-heading em {
  font-style: italic;
}

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

/* dark section variant */
.section-dark {
  background: var(--navy-950);
}

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

.section-dark .section-text {
  color: var(--slate-300);
}

.section-dark .midcta-heading {
  color: var(--white);
}

/* ═══════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 64px;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #4a5568;
  margin-bottom: 24px;
}

.about-text p:first-of-type::first-line {
  font-weight: 500;
  color: var(--navy-900);
}

.about-principles {
  list-style: none;
  margin: -8px 0 24px;
  padding: 0;
}

.about-principles li {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #4a5568;
  padding-left: 28px;
  position: relative;
}

.about-principles li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0.88em;
  width: 12px;
  height: 1px;
  background: var(--gold-500);
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.about-value {
  padding: 32px;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  transition: var(--transition-smooth);
}

.about-value:hover {
  border-color: var(--gold-300);
  background: var(--gold-100);
}

.about-value h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.about-value p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--slate-400);
  margin: 0;
}

/* ═══════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
  background: rgba(184, 147, 90, 0.15);
}

.service-card {
  background: var(--navy-900);
  padding: clamp(32px, 4vw, 56px);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

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

.service-card:hover {
  background: var(--navy-800);
}

.service-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(184, 147, 90, 0.15);
  line-height: 1;
  margin-bottom: 24px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--slate-300);
}

/* ═══════════════════════════════════════════
   TEAM SECTION
   ═══════════════════════════════════════════ */
.team-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

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

.team-member {
  position: relative;
}

.team-photo-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  margin-bottom: 24px;
  background: var(--slate-100);
}

.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  filter: none;
}

.team-member:hover .team-photo-wrap img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 30, 0.6) 0%, transparent 50%);
  pointer-events: none;
}

h3.team-name,
.team-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy-900);
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.team-role {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
}

.team-quals {
  font-size: 0.85rem;
  color: var(--slate-400);
  line-height: 1.5;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #4a5568;
}

.team-bio-toggle {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-500);
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  margin-top: 8px;
  transition: var(--transition-fast);
}

.team-bio-toggle:hover {
  color: var(--navy-900);
}

.team-bio-full {
  display: none;
  margin-top: 12px;
}

.team-bio-full.active {
  display: block;
}

/* ═══════════════════════════════════════════
   CREDENTIALS BAR
   ═══════════════════════════════════════════ */
.credentials {
  padding: 56px clamp(24px, 4vw, 80px);
  background: var(--slate-50);
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
}

.credentials-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 6vw, 80px);
  flex-wrap: wrap;
}

.credential-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.6;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.credential-item:hover {
  opacity: 1;
}

.credential-logo {
  height: 44px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  filter: none;
  transition: var(--transition-smooth);
}

.credential-logo-wide {
  max-width: 120px;
  height: 36px;
}

.credential-item:hover .credential-logo {
  transform: scale(1.05);
}

.credential-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy-700);
  text-align: center;
  line-height: 1.3;
}

/* ═══════════════════════════════════════════
   APPROACH SECTION
   ═══════════════════════════════════════════ */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
}

.approach-step {
  padding: 48px 32px;
  position: relative;
  border-right: 1px solid var(--slate-100);
}

.approach-step:last-child {
  border-right: none;
}

.approach-step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold-200);
  line-height: 1;
  margin-bottom: 24px;
}

.approach-step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 12px;
}

.approach-step p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--slate-400);
}

/* ═══════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  margin-top: 64px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-800);
  color: var(--gold-400);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 1.1rem;
  color: var(--slate-200);
  line-height: 1.5;
}

.contact-item-value a {
  color: var(--slate-200);
  transition: var(--transition-fast);
}

.contact-item-value a:hover {
  color: var(--gold-400);
}

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

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

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

.form-field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-300);
}

.form-field input,
.form-field textarea,
.form-field select {
  padding: 14px 16px;
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--slate-400);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--gold-500);
}

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

.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238c95a8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-field select option {
  background: var(--navy-900);
  color: var(--white);
}

.form-submit {
  padding: 16px 40px;
  background: var(--gold-500);
  border: none;
  color: var(--navy-950);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--gold-400);
}

/* AI at Westrust section */
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
  align-items: start;
}

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

.ai-text p:first-child { max-width: 46ch; }

.ai-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.ai-beta-pill {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(184, 147, 90, 0.14);
  border: 1px solid var(--gold-500);
  color: var(--gold-300);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
}

.ai-capabilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.ai-capability {
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(184, 147, 90, 0.18);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.ai-capability:hover {
  background: rgba(184, 147, 90, 0.06);
  border-color: var(--gold-500);
}

.ai-capability-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold-400);
  margin-bottom: 8px;
}

.ai-capability h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}

.ai-capability p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--slate-300);
}

.form-submit:disabled,
.form-submit.is-loading {
  cursor: wait;
  opacity: 0.7;
}

.form-submit-spinner {
  display: none;
  width: 14px;
  height: 14px;
  margin-left: 10px;
  border: 2px solid rgba(10,15,30,0.25);
  border-top-color: var(--navy-950);
  border-radius: 50%;
  vertical-align: middle;
  animation: cf-spin 0.7s linear infinite;
}

.form-submit.is-loading .form-submit-spinner {
  display: inline-block;
}

@keyframes cf-spin {
  to { transform: rotate(360deg); }
}

.form-hint {
  margin-top: 8px;
  font-size: 0.72rem;
  color: var(--slate-400);
  letter-spacing: 0.04em;
}

.form-consent {
  margin-top: 4px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--slate-300);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--gold-500);
  cursor: pointer;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  margin-top: 4px;
  font-size: 0.82rem;
  line-height: 1.5;
  min-height: 1.2em;
  color: var(--slate-300);
}

/* Claude Design item 1: subdued rust error, panel above form, preserves input */
.form-status.is-error {
  color: var(--rust-500);
  padding: 14px 18px;
  border-top: 1px solid var(--rust-500);
  background: rgba(176, 106, 85, 0.06);
  font-size: 0.85rem;
}

.form-status.is-error strong {
  color: var(--rust-500);
  font-weight: 600;
}

.form-status.is-error a {
  color: var(--rust-500);
  text-decoration: underline;
}

.form-status.is-success {
  color: var(--gold-300);
}

/* Claude Design item 1: inline success replacement — replaces the form entirely.
   Displayed instead of the form on submit success (JS toggles .is-form-sent on
   the form's parent, hiding the form and revealing this block). */
.form-success {
  display: none;
  padding: 28px 0 4px;
  border-top: 1px solid var(--gold-500);
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 400;
  color: var(--white);
  margin: 20px 0 12px;
  line-height: 1.2;
}
.form-success h3 em {
  font-style: italic;
  color: var(--gold-300);
}
.form-success p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--slate-300);
  line-height: 1.65;
  max-width: 480px;
}
.is-form-sent #contact-form { display: none; }
.is-form-sent .form-success { display: block; }

.cf-turnstile {
  margin: 4px 0;
}

/* ═══════════════════════════════════════════
   CLAUDE DESIGN VISUAL PASS — Items 3, 5, 6, 8, 9, 10
   Applied on top of the shipped baseline. Preserves all P0/P1/P2 fixes.
   ═══════════════════════════════════════════ */

/* Item 5: warm paper backgrounds for editorial (About / Approach / Team already set inline) */
.section.section-paper {
  background: var(--paper);
}
.section.section-paper .section-heading { color: var(--navy-950); }
.section.section-paper .section-text { color: var(--navy-900); }

/* Item 5: credentials sits on light warm paper, not navy */
.credentials {
  background: var(--paper);
  border-top: 1px solid var(--paper-border);
  border-bottom: 1px solid var(--paper-border);
}

/* Item 6a: credential logos at 48px row height, warm paper backdrop */
.credentials .credential-logo,
.credentials .credential-logo-wide {
  height: 48px !important;
  width: auto !important;
  max-width: 180px;
  object-fit: contain;
  filter: none;                  /* full colour — SARS+FSCA official marks stay accurate */
}
.credentials .credential-item {
  min-height: 96px;              /* 48px logo + label breathing room */
}
.credentials .credential-text {
  color: var(--navy-900);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Item 10: AI at Westrust — gold hairline above H2 + Closed Beta pill */
#ai-westrust {
  background: var(--navy-900);   /* Item 5: mid-tone (was already section-dark navy-950) */
  position: relative;
}
#ai-westrust::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 1px;
  background: var(--gold-500);
  opacity: 0.55;
}
.beta-pill {
  display: inline-block;
  padding: 2px 10px;
  margin-left: 8px;
  border: 1px solid var(--gold-500);
  border-radius: 999px;
  color: var(--gold-400);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  vertical-align: middle;
  line-height: 1.4;
}

/* Item 4: Services mid-CTA as navy-950 strip with gold hairline inside navy-900 Services */
.section.section-dark .midcta.midcta-strip {
  background: var(--navy-950);
  border: 0;
  border-top: 1px solid var(--gold-500);
  border-radius: 0;
  padding: 40px 32px 44px;
}

/* Item 9: FAQ mid-CTA — lighter, right-aligned, no card */
.midcta.midcta-inline {
  background: transparent !important;
  border: 0 !important;
  padding: 24px 0 8px;
  text-align: right;
  margin-top: 40px;
  border-top: 1px solid rgba(184, 147, 90, 0.2);
}
.midcta.midcta-inline .midcta-eyebrow { display: none; }
.midcta.midcta-inline .midcta-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--slate-200);
  margin-bottom: 0;
  display: inline;
  margin-right: 12px;
}
.midcta.midcta-inline .midcta-heading em { color: var(--gold-300); }
.midcta.midcta-inline .midcta-actions {
  display: inline-flex;
  gap: 20px;
}
.midcta.midcta-inline .midcta-actions .hero-cta {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  color: var(--gold-300) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  box-shadow: none !important;
}
.midcta.midcta-inline .midcta-actions .hero-cta:hover {
  color: var(--gold-200) !important;
  box-shadow: none !important;
}

/* Item 9: FAQ editorial preface — Cormorant italic, 720px measure, 48px gold rule below */
.faq-preface {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.35rem;
  line-height: 1.55;
  color: var(--slate-200);
  max-width: 720px;
  margin: 8px 0 28px;
  border: 0 !important;
  padding: 0;
}
.faq-preface::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold-500);
  margin-top: 20px;
}

/* Item 8: footer — Services column widens ~18px to absorb 'Business Rescue Advisory' */
.footer-col.footer-col-services {
  min-width: 200px;              /* wide enough for 'Business Rescue Advisory' single-line at 1320px */
}
@media (max-width: 1320px) {
  .footer-col.footer-col-services {
    min-width: 0;
  }
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: #f5f0e6;
  border-top: 1px solid rgba(184, 147, 90, 0.25);
  padding: 64px clamp(24px, 4vw, 80px) 32px;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-left {
  max-width: 460px;
}

.footer-mark {
  display: block;
  height: auto;
  width: 100%;
  max-width: 340px;
  margin-bottom: 24px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: #5c5a55;
  line-height: 1.6;
}

.footer-right {
  display: flex;
  gap: 64px;
}

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-900);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-size: 0.88rem;
  color: #5c5a55;
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--navy-900);
}

.footer-bottom {
  max-width: 1320px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(184, 147, 90, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: #7a7770;
}

.footer-bottom a {
  color: #7a7770;
  transition: var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--navy-900);
}

/* ═══════════════════════════════════════════
   DIVIDER
   ═══════════════════════════════════════════ */
.section-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.section-divider .line {
  height: 1px;
  width: 48px;
  background: var(--gold-500);
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(16px);   /* Claude Design: 30 -> 16 */
  transition: opacity 0.45s ease, transform 0.45s ease;  /* Claude Design: 0.7 -> 0.45 */
}

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

/* Claude Design item 11: full motion suppression */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid,
  .team-intro,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

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

  .approach-step {
    border-bottom: 1px solid var(--slate-100);
  }

  .approach-step:nth-child(2) {
    border-right: none;
  }
}

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

  .nav-toggle {
    display: flex;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

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

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

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

  .approach-step {
    border-right: none;
    border-bottom: 1px solid var(--slate-100);
  }

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

  .footer-right {
    flex-direction: column;
    gap: 32px;
  }

  .credentials-inner {
    gap: 32px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   FAQ / INSIGHTS SECTION
   ═══════════════════════════════════════════ */
.faq-grid {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--navy-900);
  border: none;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition-smooth);
  list-style: none;
  position: relative;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; content: ''; }

.faq-question::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold-500);
  transition: var(--transition-fast);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-question:hover {
  background: var(--navy-800);
  color: var(--gold-400);
}

.faq-answer {
  padding: 0 32px 28px;
  color: var(--slate-300);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-answer p {
  margin-bottom: 16px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  color: var(--white);
  font-weight: 600;
}

.faq-answer ul, .faq-answer ol {
  margin: 12px 0 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-answer li {
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   MULTI-PAGE ADDITIONS
   Layout-only helpers for the service pages and
   Insights hub. No new colours, fonts or scales —
   everything below uses the existing tokens.
   ═══════════════════════════════════════════ */

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

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-caret {
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: var(--transition-fast);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -24px;
  min-width: 290px;
  list-style: none;
  padding: 10px 0;
  background: rgba(10, 15, 30, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(184, 147, 90, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: var(--transition-fast);
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-caret,
.nav-dropdown.is-open .nav-caret {
  transform: translateY(1px) rotate(225deg);
}

.nav-links .nav-dropdown-menu a {
  display: block;
  padding: 11px 24px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--slate-200);
}

.nav-links .nav-dropdown-menu a::after {
  display: none;
}

.nav-links .nav-dropdown-menu a:hover {
  color: var(--gold-300);
  background: rgba(184, 147, 90, 0.08);
}

.nav-dropdown-all {
  border-top: 1px solid rgba(184, 147, 90, 0.18);
  margin-top: 8px;
  padding-top: 6px;
}

.nav-links .nav-dropdown-all a {
  color: var(--gold-400);
}

/* Mobile menu service sub-links */
.mobile-menu-sublinks {
  display: flex;
  flex-direction: column;
  padding-left: 16px;
  border-left: 1px solid rgba(184, 147, 90, 0.25);
  margin: 4px 0 8px;
}

.mobile-menu-nav .mobile-menu-sublinks a {
  font-size: 0.95rem;
  color: var(--slate-200);
  padding: 13px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Compact page hero band for subpages */
.page-hero {
  padding-top: clamp(132px, 15vh, 176px);
  padding-bottom: clamp(56px, 7vw, 88px);
  background: var(--navy-950);
  border-bottom: 1px solid rgba(184, 147, 90, 0.2);
}

.page-hero .page-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 900px;
}

.page-hero .page-hero-heading em {
  font-style: italic;
  color: var(--gold-300);
}

.page-hero-lede {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--slate-300);
  max-width: 720px;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 26px;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.breadcrumb a {
  color: var(--slate-300);
  transition: var(--transition-fast);
}

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

.breadcrumb li + li::before {
  content: '/';
  color: rgba(184, 147, 90, 0.55);
  margin-right: 10px;
}

.breadcrumb [aria-current="page"] {
  color: var(--gold-400);
}

/* Long-form body copy, reusing the site's type scale */
.prose {
  max-width: 780px;
}

.prose p,
.prose li {
  font-size: 1.02rem;
  line-height: 1.85;
  color: #4a5568;               /* same body-copy grey as .about-text p */
}

.prose p {
  margin-bottom: 20px;
}

.section-dark .prose p,
.section-dark .prose li {
  color: var(--slate-300);
}

.prose h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--navy-900);
  margin: 40px 0 16px;
}

.section-dark .prose h3 {
  color: var(--white);
}

.prose ul,
.prose ol {
  margin: 0 0 24px 22px;
}

.prose li {
  margin-bottom: 10px;
}

.prose strong {
  color: var(--navy-800);
  font-weight: 600;
}

.section-dark .prose strong {
  color: var(--slate-100);
}

.prose a {
  color: var(--navy-700);
  text-decoration: underline;
  text-decoration-color: var(--gold-500);
  text-underline-offset: 3px;
}

.prose a:hover {
  color: var(--navy-900);
}

.section-dark .prose a {
  color: var(--gold-400);
}

/* Related links row */
.related-links {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(184, 147, 90, 0.28);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
}

.related-links a {
  display: block;
  padding: 22px 24px;
  background: rgba(184, 147, 90, 0.05);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--navy-800);
  transition: var(--transition-smooth);
}

.section-dark .related-links a {
  background: var(--navy-900);
  color: var(--slate-200);
}

.related-links a:hover {
  background: rgba(184, 147, 90, 0.14);
  color: var(--navy-950);
}

.section-dark .related-links a:hover {
  color: var(--gold-300);
}

/* Insights hub card grid */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: rgba(184, 147, 90, 0.15);
}

.insight-card {
  background: var(--navy-900);
  padding: clamp(32px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.insight-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--white);
}

.insight-card p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--slate-300);
  flex: 1;
}

.insight-card-meta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.coming-pill {
  align-self: flex-start;
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid rgba(184, 147, 90, 0.4);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  background: rgba(184, 147, 90, 0.06);
}

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