/* ============================================
   CELER & FORTIS CAPITAL
   #0D1B3E navy | #C9914A gold | #FFFFFF white
   ============================================ */

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

:root {
  --navy:    #0D1B3E;
  --navy2:   #152A52;
  --gold:    #C9914A;
  --gold2:   #DDA96A;
  --white:   #FFFFFF;
  --smoke:   #F5F3EF;
  --border:  #E0DBD3;
  --muted:   #6B7180;
  --text:    #0D1B3E;
  --serif:   'DM Serif Display', Georgia, serif;
  --sans:    'Inter', system-ui, sans-serif;
  --w:       1120px;
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

/* ── Layout ── */
.wrap { max-width: var(--w); margin: 0 auto; padding: 0 40px; }
.section-light { background: var(--smoke); }
.section-dark  { background: var(--navy); }

/* ── Logo ── */
.logo { display: flex; flex-direction: column; gap: 1px; line-height: 1; }
.logo-name {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.015em;
}
.logo-cap {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 68px;
  display: flex; align-items: center;
  padding: 0 40px;
  transition: background .3s, box-shadow .3s;
}
.nav.solid {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-wrap {
  max-width: var(--w); margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
/* Logo colour on transparent nav */
.nav:not(.solid) .logo-name { color: var(--white); }
.nav:not(.solid) .logo-cap  { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nl {
  font-size: 0.86rem; font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color .15s;
}
.nl.active, .nl:hover { color: var(--white); }
.nav.solid .nl { color: var(--muted); }
.nav.solid .nl.active, .nav.solid .nl:hover { color: var(--navy); }

.nav-btn {
  font-size: 0.83rem; font-weight: 700;
  background: var(--gold); color: var(--navy);
  padding: 9px 22px; border-radius: 3px;
  transition: background .18s, transform .18s;
  letter-spacing: 0.01em;
}
.nav-btn:hover { background: var(--gold2); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: background .2s;
}
.nav.solid .hamburger span { background: var(--navy); }

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--gold); color: var(--navy);
  font-size: 0.88rem; font-weight: 700;
  padding: 13px 30px; border-radius: 3px;
  letter-spacing: 0.02em;
  transition: background .18s, transform .18s, box-shadow .18s;
  border: none; cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,145,74,.32);
}
.btn-primary.mt { margin-top: 36px; }
.btn-primary.lg { padding: 16px 40px; font-size: 0.95rem; }

.btn-text {
  display: inline-block;
  color: rgba(255,255,255,.55);
  font-size: 0.86rem; font-weight: 400;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255,255,255,.25);
  transition: color .15s, border-color .15s;
}
.btn-text:hover { color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.6); }

/* ── Reveal animation ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.on { opacity: 1; transform: none; }

.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.fade-up.on { opacity: 1; transform: none; }
.fd1 { transition-delay: .1s; }
.fd2 { transition-delay: .22s; }
.fd3 { transition-delay: .36s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
/* Animated grid */
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: gridMove 24s linear infinite;
}
@keyframes gridMove { to { background-position: 72px 72px; } }

/* Warm glow centre */
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,145,74,.10) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 820px; padding: 0 24px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7.5vw, 6.4rem);
  font-weight: 400; color: var(--white);
  line-height: 1.06; letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.hero-h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.55);
  line-height: 1.8; font-weight: 300;
  margin-bottom: 48px;
}

/* ── Hero cycling audience block ── */
.hero-cycle {
  position: relative;
  min-height: 88px;
  margin-bottom: 28px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.cycle-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
  pointer-events: none;
}
.cycle-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cycle-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,145,74,.35);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.cycle-slide p {
  font-size: clamp(.95rem, 1.4vw, 1.08rem);
  color: rgba(255,255,255,.58);
  line-height: 1.75;
  font-weight: 300;
  margin: 0;
}

/* Cycle dots */
.cycle-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}
.cdot {
  width: 28px; height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,.2);
  border: none; cursor: pointer;
  transition: background .25s, width .25s;
  padding: 0;
}
.cdot.active {
  background: var(--gold);
  width: 40px;
}

.hero-actions { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }

/* Scroll indicator */
.hero-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,.28); font-size: .65rem; letter-spacing: .16em; text-transform: uppercase;
  z-index: 2;
}
.hi-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:.3 } 50% { opacity:.8 } }
.br-hide { display: inline; }

/* ── WHAT WE DO ── */
.what { padding: 80px 0; border-bottom: 1px solid var(--border); }
.what-inner {
  display: grid; grid-template-columns: 200px 1fr; gap: 80px; align-items: start;
}
.what-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); padding-top: 6px;
}
.what-body p {
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  color: var(--navy); line-height: 1.72; font-weight: 300; margin-bottom: 16px;
}
.what-body p:last-child { margin-bottom: 0; }
.what-body p strong { font-weight: 600; }

/* ── WHO WE SERVE ── */
.serve { padding: 100px 0 120px; }

.serve-header { margin-bottom: 56px; text-align: center; }
.section-eyebrow {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
}
.serve-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; color: var(--white);
  line-height: 1.15; letter-spacing: -0.02em;
}

/* Audience tabs */
.audience-nav {
  display: flex; justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,.10);
  margin-bottom: 64px; gap: 0;
}
.aud-tab {
  font-family: var(--sans); font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,.38);
  background: none; border: none; cursor: pointer;
  padding: 14px 32px 18px;
  position: relative; transition: color .2s; letter-spacing: .005em;
}
.aud-tab::after {
  content: ''; position: absolute; bottom: -1px; left: 20px; right: 20px;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transition: transform .25s var(--ease); transform-origin: left;
}
.aud-tab.active { color: var(--white); }
.aud-tab.active::after { transform: scaleX(1); }
.aud-tab:hover { color: rgba(255,255,255,.75); }

/* Audience panels */
.aud-panel { display: none; animation: panelIn .4s var(--ease); }
.aud-panel.active { display: block; }
@keyframes panelIn { from { opacity:0; transform:translateY(14px); } to { opacity:1; transform:none; } }

.aud-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}

.aud-left h3 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 400; color: var(--white);
  line-height: 1.18; letter-spacing: -0.015em; margin-bottom: 24px;
}
.aud-left h3 em { font-style: italic; color: var(--gold); }

.aud-left p {
  font-size: 0.97rem; color: rgba(255,255,255,.52);
  line-height: 1.8; font-weight: 300; margin-bottom: 16px;
}

/* Proof block */
.proof-block { display: flex; flex-direction: column; gap: 0; }
.proof-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.proof-item:last-child { border-bottom: none; }
.proof-mark {
  font-size: 0.72rem; font-weight: 700; color: var(--gold);
  flex-shrink: 0; padding-top: 3px;
}
.proof-item strong {
  display: block; font-size: 0.9rem; font-weight: 700; color: var(--white);
  margin-bottom: 4px;
}
.proof-item p {
  font-size: 0.84rem; color: rgba(255,255,255,.4);
  line-height: 1.6; margin: 0; font-weight: 300;
}

/* ── POSITION STATEMENT ── */
.position { padding: 96px 0; background: var(--smoke); }
.pos-inner {
  display: flex; align-items: center; gap: 48px;
  max-width: 900px; margin: 0 auto; padding: 0 40px;
}
.pos-rule { flex: 1; height: 1px; background: var(--border); }
blockquote {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-style: italic; color: var(--navy);
  line-height: 1.65; text-align: center;
  flex: 2; min-width: 0;
}

/* ── CTA BAND ── */
.cta-band { padding: 120px 0; }
.cta-inner { text-align: center; max-width: 580px; margin: 0 auto; }
.cta-inner h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 400; color: var(--white);
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 18px;
}
.cta-inner p {
  font-size: 1rem; color: rgba(255,255,255,.45);
  line-height: 1.7; font-weight: 300; margin-bottom: 40px;
}

/* ── FOOTER ── */
.footer { background: #07101E; padding-top: 64px; }
.footer-wrap { display: flex; gap: 80px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.05); flex-wrap: wrap; }
.footer-brand { flex: 1.5; min-width: 200px; }
.footer-brand .logo-name { color: var(--white); }
.footer-brand p { font-size: .84rem; color: rgba(255,255,255,.28); line-height: 1.7; margin-top: 14px; font-weight: 300; }
.footer-cols { display: flex; gap: 64px; }
.fcol { display: flex; flex-direction: column; gap: 12px; min-width: 140px; }
.fcol h4 { font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 4px; }
.fcol a { font-size: .86rem; color: rgba(255,255,255,.38); transition: color .15s; }
.fcol a:hover { color: var(--white); }
.footer-bar { padding: 20px 0; }
.footer-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-bar-inner span { font-size: .74rem; color: rgba(255,255,255,.18); }

/* ── THESIS ── */
.thesis { padding: 80px 0; border-bottom: 1px solid var(--border); }
.thesis-inner { display: grid; grid-template-columns: 180px 1fr; gap: 80px; align-items: start; }
.thesis-label { font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); padding-top: 8px; }
.thesis-lead { font-size: clamp(1.15rem, 2vw, 1.4rem); color: var(--navy); font-weight: 300; line-height: 1.6; margin-bottom: 20px; }
.thesis-lead strong { font-weight: 700; }
.thesis-body p { font-size: .97rem; color: var(--muted); line-height: 1.82; font-weight: 300; margin-bottom: 14px; }
.thesis-body p:last-child { margin-bottom: 0; }

/* ── MARKET CONTEXT ── */
.market { padding: 100px 0; }
.market-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.market-left h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; color: var(--white); line-height: 1.15; letter-spacing: -.02em; margin-top: 20px; }
.market-right p { font-size: .97rem; color: rgba(255,255,255,.52); line-height: 1.82; font-weight: 300; margin-bottom: 16px; }
.market-right p:last-child { margin-bottom: 0; }

/* ── WHAT WE DO ── */
.whatwedo { padding: 100px 0; }
.section-header-centered { text-align: center; margin-bottom: 72px; }
.section-eyebrow-centered { font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.section-eyebrow-centered::before, .section-eyebrow-centered::after { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.section-header-centered h2 { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; color: var(--navy); line-height: 1.15; letter-spacing: -.02em; }
.section-header-centered h2.light { color: var(--white); }

.verticals-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.vertical-card { background: var(--white); padding: 48px 40px; transition: background .2s; }
.vertical-card:hover { background: var(--smoke); }
.vc-number { font-family: var(--serif); font-size: 3rem; color: rgba(201,145,74,.25); line-height: 1; margin-bottom: 20px; font-style: italic; }
.vertical-card h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; color: var(--navy); line-height: 1.25; margin-bottom: 16px; letter-spacing: -.01em; }
.vertical-card p { font-size: .9rem; color: var(--muted); line-height: 1.75; margin-bottom: 20px; font-weight: 300; }
.vc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; padding-top: 16px; border-top: 1px solid var(--border); }
.vc-list li { font-size: .84rem; color: var(--muted); padding-left: 16px; position: relative; line-height: 1.5; }
.vc-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: .75rem; }

/* ── PHILOSOPHY ── */
.philosophy { padding: 100px 0; border-bottom: 1px solid var(--border); }
.philosophy-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.section-eyebrow-left { font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.section-eyebrow-left::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.phil-left h2 { font-family: var(--serif); font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 400; color: var(--navy); line-height: 1.2; letter-spacing: -.02em; margin-bottom: 20px; }
.phil-left p { font-size: .95rem; color: var(--muted); line-height: 1.75; font-weight: 300; }
.phil-intro { font-size: .88rem; color: var(--muted); margin-bottom: 20px; font-weight: 400; }
.phil-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.phil-tags span { font-size: .8rem; font-weight: 500; color: var(--navy); background: rgba(13,27,62,.06); border: 1px solid rgba(13,27,62,.12); padding: 7px 14px; border-radius: 2px; }

/* ── WHY C&F ── */
.whycf { padding: 100px 0; }
.pillars-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.06); border-radius: 4px; overflow: hidden; margin-top: 56px; }
.pillar { background: var(--navy); padding: 44px 36px; transition: background .2s; }
.pillar:hover { background: var(--navy2); }
.pillar-num { font-family: var(--serif); font-size: 2.2rem; color: rgba(201,145,74,.25); line-height: 1; margin-bottom: 20px; font-style: italic; }
.pillar h3 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.pillar p { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.7; font-weight: 300; }

/* ── FOCUS AREAS ── */
.focus { padding: 80px 0; border-top: 1px solid var(--border); }
.focus-inner { display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start; }
.focus-left h2 { font-family: var(--serif); font-size: clamp(1.5rem, 2.2vw, 2rem); font-weight: 400; color: var(--navy); line-height: 1.2; letter-spacing: -.015em; margin-top: 20px; }
.focus-tags { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 8px; }
.focus-tags span { font-size: .8rem; font-weight: 600; color: var(--navy); background: var(--white); border: 1px solid var(--border); padding: 8px 16px; border-radius: 2px; transition: background .15s, border-color .15s, color .15s; cursor: default; }
.focus-tags span:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── CTA updates ── */
.cta-rule { width: 48px; height: 2px; background: var(--gold); margin: 0 auto 36px; }
.cta-bold { font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: 36px; }
.cta-inner p { font-size: .97rem; }

/* ── PAGE HERO (interior) ── */
.page-hero {
  background: var(--navy);
  padding: 148px 0 88px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 72px 72px;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-eyebrow {
  font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.page-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400; color: var(--white);
  line-height: 1.1; letter-spacing: -0.02em;
  max-width: 720px; margin-bottom: 22px;
}
.page-hero p { font-size: 1.02rem; color: rgba(255,255,255,.48); max-width: 540px; line-height: 1.78; font-weight: 300; }

/* ── ABOUT PAGE ── */
.about-section { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.about-text .section-tag {
  font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.about-text .section-tag::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 400; color: var(--navy);
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 28px;
}
.about-text p { font-size: .96rem; color: var(--muted); line-height: 1.82; font-weight: 300; margin-bottom: 18px; }
.about-panel {
  background: var(--navy); border-radius: 4px; padding: 52px 48px;
}
.about-panel-stat { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.about-panel-stat:last-child { border-bottom: none; padding-bottom: 0; }
.about-panel-stat:first-child { padding-top: 0; }
.about-panel-stat .num {
  font-family: var(--serif);
  font-size: 2.4rem; color: var(--white);
  letter-spacing: -0.02em; display: block; margin-bottom: 6px;
}
.about-panel-stat .lbl { font-size: .8rem; color: rgba(255,255,255,.38); line-height: 1.5; }

.principles { margin-top: 56px; display: flex; flex-direction: column; }
.prin {
  display: grid; grid-template-columns: 48px 1fr; gap: 20px;
  padding: 24px 0; border-bottom: 1px solid var(--border); align-items: start;
}
.prin:first-child { border-top: 1px solid var(--border); }
.prin-n { font-family: var(--serif); font-size: 1rem; font-style: italic; color: var(--gold); }
.prin h4 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.prin p { font-size: .86rem; color: var(--muted); line-height: 1.65; margin: 0; font-weight: 300; }

/* ── CONTACT PAGE ── */
.contact-section { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 100px; align-items: start; }
.contact-left h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--navy); margin-bottom: 14px; }
.contact-left p { font-size: .92rem; color: var(--muted); line-height: 1.78; font-weight: 300; margin-bottom: 36px; }
.who-item { padding: 18px 0; border-bottom: 1px solid var(--border); }
.who-item:first-of-type { border-top: 1px solid var(--border); }
.who-item strong { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--navy); margin-bottom: 4px; }
.who-item p { font-size: .86rem; color: var(--muted); margin: 0; line-height: 1.6; font-weight: 300; }
.contact-detail { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }
.cdet strong { display: block; font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--navy); margin-bottom: 3px; }
.cdet span { font-size: .88rem; color: var(--muted); }

.contact-form-box { background: var(--white); border: 1px solid var(--border); padding: 52px 48px; border-radius: 4px; }
.form-heading { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--navy); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.fg label { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); }
.fg input, .fg select, .fg textarea {
  font-family: var(--sans); font-size: .9rem; color: var(--text);
  background: var(--smoke); border: 1px solid var(--border);
  border-radius: 3px; padding: 12px 15px; width: 100%;
  outline: none; transition: border-color .15s, box-shadow .15s, background .15s;
  -webkit-appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--navy); background: var(--white);
  box-shadow: 0 0 0 3px rgba(13,27,62,.06);
}
.fg textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .76rem; color: var(--muted); margin-bottom: 22px; line-height: 1.6; }
.form-submit {
  width: 100%; padding: 15px; font-size: .9rem; font-weight: 700;
  cursor: pointer; border-radius: 3px; border: none;
  background: var(--navy); color: var(--white);
  letter-spacing: .04em; transition: background .2s, transform .15s;
}
.form-submit:hover { background: var(--navy2); transform: translateY(-1px); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .what-inner { grid-template-columns: 1fr; gap: 24px; }
  .aud-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .pos-inner { flex-direction: column; gap: 20px; }
  .pos-rule { width: 48px; height: 1px; flex: none; }
  .thesis-inner { grid-template-columns: 1fr; gap: 20px; }
  .market-inner { grid-template-columns: 1fr; gap: 40px; }
  .verticals-grid { grid-template-columns: 1fr; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 48px; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .focus-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  .wrap { padding: 0 24px; }
  .nav { padding: 0 24px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; padding: 28px 24px; gap: 20px; background: var(--navy); }
  .nav.solid .nav-links { background: var(--white); border-top: 1px solid var(--border); }
  .nav.solid .nl { color: var(--muted); }
  .nav.solid .nl.active { color: var(--navy); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-h1 { font-size: clamp(2.6rem, 10vw, 4rem); }
  .hero-sub { font-size: .94rem; }
  .br-hide { display: none; }
  .aud-tab { padding: 12px 18px 16px; font-size: .82rem; }
  .audience-nav { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .footer-wrap { flex-direction: column; gap: 40px; }
  .footer-cols { gap: 36px; }
  .footer-bar-inner { flex-direction: column; gap: 6px; text-align: center; }
  .contact-form-box, .contact-section { padding: 32px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 116px 0 64px; }
  .about-section, .contact-section { padding: 72px 0; }
  .pillars-grid { grid-template-columns: 1fr; }
  .verticals-grid { gap: 1px; }
}
