/* ─── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #07192E;
  color: #E8E4DA;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── COLOUR TOKENS ────────────────────────────────────────────── */
:root {
  --navy:       #07192E;
  --navy-mid:   #0D2040;
  --navy-light: #122848;
  --gold:       #C4973A;
  --gold-light: #D4AA55;
  --gold-dark:  #A07820;
  --white:      #F0EDE5;
  --muted:      #8FA3BE;
  --border:     rgba(196,151,58,0.25);
  --border-mid: rgba(196,151,58,0.12);
}

/* ─── TYPOGRAPHY ───────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Lora', serif; font-weight: 600; color: var(--white); }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.15; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.2; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); line-height: 1.3; }
h4 { font-size: 1rem; font-family: 'Poppins', sans-serif; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
p  { color: var(--muted); font-size: 0.97rem; }
a  { color: inherit; text-decoration: none; }

.gold { color: var(--gold); }
.white { color: var(--white); }
.lora { font-family: 'Lora', serif; }

/* ─── LAYOUT ───────────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; width: 100%; box-sizing: border-box; }
section { padding: 100px 0; }

/* ─── NAVIGATION ───────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 0 2rem;
  transition: background 0.4s, box-shadow 0.4s;
  background: transparent;
}
nav.scrolled {
  background: rgba(7,25,46,0.97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex; flex-direction: column; gap: 0; cursor: pointer; text-decoration: none;
}
.nav-logo-main {
  font-family: 'Lora', serif; font-size: 1.35rem; font-weight: 600;
  background: linear-gradient(180deg, #D4AA55 0%, #C4973A 50%, #A07820 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; letter-spacing: 0.01em;
}
.nav-logo-sub {
  font-family: 'Poppins', sans-serif; font-size: 0.55rem; font-weight: 300;
  letter-spacing: 0.35em; color: var(--gold); text-transform: uppercase;
  margin-top: -2px;
}
.nav-links {
  display: flex; align-items: center; gap: 2.5rem; list-style: none;
}
.nav-links li a {
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
  transition: color 0.2s; cursor: pointer;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--white); }
.nav-cta {
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.12em !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

/* ─── MOBILE MENU BUTTON ───────────────────────────────────────── */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px; height: 18px;
  background: none; border: none; cursor: pointer; padding: 0;
  z-index: 1100;
}
.mobile-menu-btn span {
  display: block; width: 100%; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ─── MOBILE MENU DROPDOWN ─────────────────────────────────────── */
.mobile-menu {
  display: none;
  background: rgba(7,25,46,0.99);
  border-top: 1px solid var(--border-mid);
  padding: 1.5rem 2rem 2rem;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { border-bottom: 1px solid var(--border-mid); }
.mobile-menu ul li:last-child { border-bottom: none; }
.mobile-menu ul li a {
  display: block; padding: 1rem 0;
  font-size: 0.9rem; font-weight: 400; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
  transition: color 0.2s;
}
.mobile-menu ul li a:hover { color: var(--white); }
.nav-cta-mobile { color: var(--gold) !important; }

/* ─── HERO ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 0 80px;
  background:
    radial-gradient(ellipse 80% 50% at 50% 110%, rgba(196,151,58,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(13,32,64,0.9) 0%, transparent 80%),
    linear-gradient(180deg, #05121F 0%, #07192E 40%, #0A1E38 100%);
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.8rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 30px; height: 1px;
  background: var(--gold); opacity: 0.6;
}
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1.05rem; color: var(--muted); max-width: 560px;
  margin-bottom: 2.8rem; line-height: 1.8;
}
.hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: center; }

/* ─── BUTTONS ───────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy); font-family: 'Poppins', sans-serif;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(196,151,58,0.25);
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196,151,58,0.35);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: 1px solid rgba(196,151,58,0.45);
  color: var(--white); font-family: 'Poppins', sans-serif;
  font-size: 0.8rem; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; background: transparent; cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  text-decoration: none;
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(196,151,58,0.06);
}

/* ─── STATS STRIP ──────────────────────────────────────────────── */
.stats-strip {
  padding: 0;
  background: rgba(13,32,64,0.6);
  border-top: 1px solid var(--border-mid);
  border-bottom: 1px solid var(--border-mid);
  width: 100%;
  overflow: hidden;
}
.stats-strip .container {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 2.2rem 2rem;
  border-right: 1px solid var(--border-mid);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Lora', serif; font-size: 2.4rem; font-weight: 600;
  background: linear-gradient(180deg, #D4AA55 0%, #C4973A 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: block; line-height: 1.1;
}
.stat-label {
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-top: 0.35rem; display: block;
}

/* ─── SECTION HEADINGS ─────────────────────────────────────────── */
.section-label {
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.9rem; display: block;
}
.section-divider {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.2rem 0 2rem;
}
.section-divider.center { margin: 1.2rem auto 2rem; }
.text-center { text-align: center; }

/* ─── SERVICES GRID (HOME) ─────────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px;
  background: var(--border-mid); margin-top: 3.5rem;
  border: 1px solid var(--border-mid);
}
.service-card {
  background: var(--navy);
  padding: 2.4rem 2rem;
  transition: background 0.3s;
  cursor: pointer;
  position: relative; overflow: hidden;
  display: block; text-decoration: none;
  min-width: 0;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { background: var(--navy-mid); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--gold);
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.8rem; }
.service-card p { font-size: 0.87rem; line-height: 1.7; }
.service-card .learn-more {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-top: 1.2rem;
  transition: gap 0.2s;
}
.service-card:hover .learn-more { gap: 0.7rem; }
.service-card.wide { grid-column: span 2; }

/* ─── WHY THIRD HORIZON ─────────────────────────────────────────── */
.why-section { background: var(--navy-light); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; margin-top: 1rem;
}
.why-list { list-style: none; margin-top: 2rem; }
.why-list li {
  display: flex; gap: 1.2rem; padding: 1.4rem 0;
  border-bottom: 1px solid var(--border-mid);
}
.why-list li:first-child { border-top: 1px solid var(--border-mid); }
.why-bullet {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 0.55rem;
}
.why-list li h4 { font-size: 0.9rem; color: var(--white); margin-bottom: 0.3rem; text-transform: none; letter-spacing: 0; }
.why-list li p { font-size: 0.85rem; }
.why-callout {
  background: linear-gradient(135deg, rgba(196,151,58,0.08) 0%, rgba(196,151,58,0.02) 100%);
  border: 1px solid var(--border);
  padding: 3rem 2.5rem;
  position: relative;
}
.why-callout::before {
  content: '\201C';
  font-family: 'Lora', serif; font-size: 7rem; line-height: 0.8;
  color: var(--gold); opacity: 0.2;
  position: absolute; top: 1.5rem; left: 2rem;
}
.why-callout blockquote {
  font-family: 'Lora', serif; font-size: 1.25rem; font-style: italic;
  color: var(--white); line-height: 1.6; position: relative; z-index: 1;
}
.why-callout cite {
  display: block; margin-top: 1.5rem;
  font-family: 'Poppins', sans-serif; font-style: normal;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
}

/* ─── ABOUT TEASER ──────────────────────────────────────────────── */
.about-teaser-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center;
}
.about-portrait {
  aspect-ratio: 2/3; max-height: 560px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-portrait::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(196,151,58,0.06) 0%, transparent 60%);
}
.portrait-placeholder { text-align: center; z-index: 1; }
.portrait-initials {
  font-family: 'Lora', serif; font-size: 3.5rem; font-weight: 600;
  background: linear-gradient(180deg, #D4AA55, #A07820);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.portrait-name {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-top: 0.5rem;
}
.about-content .tags, .tags {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.5rem 0 2rem;
}
.tag {
  padding: 0.3rem 0.9rem;
  border: 1px solid var(--border);
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); border-radius: 1px;
}

/* ─── HOME CTA ──────────────────────────────────────────────────── */
.cta-section {
  padding: 110px 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(196,151,58,0.07) 0%, transparent 70%),
    linear-gradient(180deg, var(--navy) 0%, #051020 100%);
  text-align: center;
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 400px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.35;
}
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { max-width: 480px; margin: 0 auto 2.5rem; }
.cta-section .hero-actions { justify-content: center; }

/* ─── FOOTER ────────────────────────────────────────────────────── */
footer {
  background: #040F1C;
  border-top: 1px solid var(--border-mid);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-mid);
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-top: 1rem; max-width: 300px; }
.footer-brand .nav-logo-main { font-size: 1.5rem; }
.footer-col h4 { margin-bottom: 1.2rem; font-size: 0.7rem; letter-spacing: 0.2em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.84rem; color: var(--muted);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(143,163,190,0.5); }

/* ─── PAGE HERO (inner pages) ───────────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  background:
    radial-gradient(ellipse 60% 50% at 30% 60%, rgba(196,151,58,0.05) 0%, transparent 60%),
    linear-gradient(160deg, #040F1C 0%, #07192E 60%, #0A1E38 100%);
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.page-hero-content { max-width: 660px; }

/* ─── ABOUT PAGE ────────────────────────────────────────────────── */
.about-full-grid {
  display: grid; grid-template-columns: 1fr 2fr; gap: 5rem;
  padding: 80px 0;
}
.about-sidebar .portrait-large {
  aspect-ratio: 2/3;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2rem;
}
.about-sidebar .portrait-initials { font-size: 4rem; }
.credential-list { list-style: none; margin-top: 1.5rem; }
.credential-list li {
  display: flex; gap: 0.8rem; align-items: flex-start;
  padding: 0.7rem 0; border-bottom: 1px solid var(--border-mid);
  font-size: 0.84rem;
}
.credential-list li::before {
  content: '◆'; color: var(--gold); font-size: 0.5rem; margin-top: 0.45rem; flex-shrink: 0;
}
.about-body h2 { margin: 2.5rem 0 1rem; }
.about-body h2:first-child { margin-top: 0; }
.about-body p { margin-bottom: 1.2rem; font-size: 0.95rem; line-height: 1.85; }
.philosophy-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin: 2rem 0;
}
.philosophy-card {
  padding: 1.8rem;
  border: 1px solid var(--border-mid);
  background: rgba(196,151,58,0.03);
  transition: border-color 0.3s, background 0.3s;
}
.philosophy-card:hover {
  border-color: var(--border);
  background: rgba(196,151,58,0.06);
}
.philosophy-card h4 { margin-bottom: 0.6rem; font-size: 0.82rem; }
.philosophy-card p { font-size: 0.84rem; }

/* ─── SERVICES PAGE ─────────────────────────────────────────────── */
.services-page-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border-mid);
  margin-bottom: 60px;
}
.core-services-list { margin-top: 1rem; }
.core-service-item {
  padding: 2.5rem;
  border: 1px solid var(--border-mid);
  margin-bottom: 1.5px;
  background: var(--navy);
  transition: background 0.3s, border-color 0.3s;
}
.core-service-item:hover {
  background: var(--navy-mid);
  border-color: var(--border);
}
.core-service-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 0.8rem;
}
.service-number {
  font-family: 'Lora', serif; font-size: 2.2rem; font-weight: 600;
  color: rgba(196,151,58,0.2); line-height: 1;
}
.core-service-item h3 { margin-bottom: 0.7rem; font-size: 1.3rem; }
.core-service-item p { font-size: 0.9rem; max-width: 680px; margin-bottom: 1.2rem; }
.outcomes { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.outcome-tag {
  padding: 0.25rem 0.8rem;
  background: rgba(196,151,58,0.08);
  border: 1px solid rgba(196,151,58,0.18);
  font-size: 0.72rem; letter-spacing: 0.08em;
  color: var(--gold-light); border-radius: 1px;
}
.additional-services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 1rem;
}
.add-service-card {
  padding: 1.6rem;
  border: 1px solid var(--border-mid);
  background: rgba(13,32,64,0.4);
  transition: border-color 0.3s, background 0.3s;
}
.add-service-card:hover { border-color: var(--border); background: var(--navy-mid); }
.add-service-card h4 { font-size: 0.78rem; margin-bottom: 0.5rem; letter-spacing: 0.1em; }
.add-service-card p { font-size: 0.83rem; }
.engagement-section {
  background: var(--navy-light);
  padding: 80px 0;
  margin-top: 60px;
}
.engagement-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin-top: 3rem;
}
.engagement-card {
  padding: 2rem 1.8rem;
  border: 1px solid var(--border-mid);
  background: var(--navy);
  text-align: center;
}
.engagement-card h3 { font-size: 1.1rem; margin: 1rem 0 0.7rem; }
.engagement-card p { font-size: 0.85rem; }
.engagement-icon { font-size: 1.8rem; color: var(--gold); }

/* ─── CONTACT PAGE ──────────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem;
  padding: 80px 0;
}
.contact-info-list { list-style: none; margin: 2rem 0; }
.contact-info-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.4rem 0; border-bottom: 1px solid var(--border-mid);
}
.contact-info-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
}
.contact-info-list li .info-text { display: flex; flex-direction: column; }
.contact-info-list li .info-label {
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.2rem;
}
.contact-info-list li .info-value { font-size: 0.9rem; color: var(--white); }
.contact-form-wrap {
  background: rgba(13,32,64,0.4);
  border: 1px solid var(--border-mid);
  padding: 3rem;
}
.contact-form-wrap h3 { margin-bottom: 0.5rem; }
.contact-form-wrap > p { margin-bottom: 2rem; font-size: 0.87rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block; font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.8rem 1rem;
  background: rgba(7,25,46,0.8);
  border: 1px solid rgba(143,163,190,0.2);
  color: var(--white); font-family: 'Poppins', sans-serif;
  font-size: 0.87rem; font-weight: 300;
  outline: none; transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--navy-mid); color: var(--white); }
.form-submit {
  width: 100%; padding: 1rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy); font-family: 'Poppins', sans-serif;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(196,151,58,0.2);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196,151,58,0.3);
}
.privacy-note {
  font-size: 0.75rem; color: rgba(143,163,190,0.5);
  text-align: center; margin-top: 1rem;
}
/* ─── INSIGHTS PAGE ─────────────────────────────────────────────── */
.insights-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border-mid);
  margin-bottom: 60px;
}
.insights-notify-box {
  background: #1B2E4B;
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
}
.insights-notify-box .section-label { color: var(--gold); }
.insights-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.insight-card {
  border: 1px solid var(--border-mid);
  background: var(--navy);
  transition: border-color 0.3s, background 0.3s;
}
.insight-card:hover {
  border-color: var(--border);
  background: var(--navy-mid);
}
.insight-card--placeholder { opacity: 0.6; }
.insight-card--placeholder:hover { opacity: 1; }
.insight-card-inner { padding: 1.8rem; }
.insight-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 0.8rem;
}
.insight-card h3 { font-size: 1rem; margin-bottom: 0.6rem; }
.insight-card p { font-size: 0.83rem; line-height: 1.75; }
/* ─── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .stats-strip .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(even) { border-right: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card.wide { grid-column: span 1; }
  .why-grid, .about-teaser-grid, .about-full-grid,
  .services-page-intro, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .form-row { grid-template-columns: 1fr; }
  .additional-services-grid,
  .engagement-grid { grid-template-columns: 1fr 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
.insights-intro { grid-template-columns: 1fr; gap: 2.5rem; }
.insights-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  section { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-strip .container { grid-template-columns: repeat(2, 1fr); padding: 0 1rem; }
  .stat-item { padding: 1.2rem 0.5rem; min-width: 0; }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-number { font-size: 1.5rem; }
  .stat-label { font-size: 0.62rem; letter-spacing: 0.08em; }
  .additional-services-grid,
  .engagement-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
.insights-grid { grid-template-columns: 1fr; }
}

/* ─── SCROLL ANIMATIONS ─────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:0s; }
.stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.1s; }
.stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.2s; }
.stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.3s; }
.stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:0.4s; }
.stagger.visible > *:nth-child(n+6) { opacity:1; transform:none; transition-delay:0.5s; }

/* Logo image sizing */
.nav-logo-img {
  height: 60px;
  width: auto;
  max-width: none;
  object-fit: contain;
  display: block;
}

.footer-brand .nav-logo {
  display: block;
  padding: 0;
  margin: 0;
}
}
}