:root {
  --navy: #0B1F3A;
  --navy-mid: #11243F;
  --navy-deep: #081628;
  --ink: #14233B;
  --body-mid: #33425C;
  --body-muted: #5A6678;
  --muted-gray: #8794A8;
  --cream: #FAF8F4;
  --cream-alt: #F2EEE6;
  --gold: #B0894E;
  --gold-light: #C9A86A;
  --gold-dark: #A07E47;
  --serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --sans: 'Libre Franklin', Helvetica, Arial, sans-serif;
  --max: 1280px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--navy); color: var(--cream); }

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 244, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(11, 31, 58, 0.10);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 40px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  white-space: nowrap;
}

.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--navy);
}

.brand-kicker {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--body-mid);
  margin-left: auto;
  margin-right: 30px;
}

.nav-links a { transition: color 0.2s ease; }
.nav-links a:hover { color: var(--navy); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-block;
  font-size: 14.5px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
  text-align: center;
}

.btn-cta {
  font-size: 14px;
  padding: 11px 22px;
  color: var(--cream);
  background: var(--navy);
}
.btn-cta:hover { background: #14233B; }

.btn-light { color: var(--navy); background: var(--cream); }
.btn-light:hover { background: #ECE7DE; }

.btn-ghost { color: var(--cream); border-color: rgba(250, 248, 244, 0.32); }
.btn-ghost:hover { background: rgba(250, 248, 244, 0.08); }

.btn-block { display: block; }

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 38px;
}

/* Kickers / rules */
.kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.kicker-dark { color: var(--gold-light); }

.kicker-label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.rule { width: 30px; height: 1px; background: var(--gold); display: inline-block; }
.rule-dark { background: var(--gold); }
.rule-light { width: 26px; height: 1px; background: var(--gold); display: inline-block; }

/* Hero */
.hero {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 80% -10%, rgba(176, 137, 78, 0.16), transparent 60%);
}

.hero-inner {
  position: relative;
  padding: 96px 40px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.hero-h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #FCFBF8;
  margin-bottom: 26px;
  text-wrap: balance;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(250, 248, 244, 0.74);
  max-width: 540px;
}

.hero-photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(250, 248, 244, 0.16);
  overflow: hidden;
  background: #0E2647;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  display: block;
}

.hero-photo-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 22px;
  background: linear-gradient(transparent, rgba(8, 22, 40, 0.85));
}

.hero-photo-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: #FCFBF8;
}

.hero-photo-role {
  font-size: 12.5px;
  color: rgba(250, 248, 244, 0.72);
  margin-top: 3px;
}

.stat-band {
  margin-top: 72px;
  border-top: 1px solid rgba(250, 248, 244, 0.14);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 28px 24px 34px;
  border-right: 1px solid rgba(250, 248, 244, 0.10);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat:last-child { border-right: none; }

.stat-num {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  color: #FCFBF8;
  line-height: 1.05;
}

.stat-label {
  font-size: 13px;
  color: rgba(250, 248, 244, 0.6);
  line-height: 1.45;
}

/* Strip */
.strip { background: var(--cream); border-bottom: 1px solid rgba(11, 31, 58, 0.08); }

.strip-inner {
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.strip-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-gray);
  max-width: 190px;
  line-height: 1.5;
}

.strip-items {
  display: flex;
  gap: 34px;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
}

.strip-items span {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: #AEB6C2;
  letter-spacing: 0.02em;
}

/* Pull quote */
.quote-section { background: var(--cream); }

.quote-inner {
  padding: 88px 40px;
  text-align: center;
  max-width: 980px;
}

.quote-text {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 24px 0 20px;
  text-wrap: balance;
}

.quote-foot {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--body-muted);
  font-size: 15px;
}

/* Sections */
.section { padding: 96px 0; border-bottom: 1px solid rgba(11, 31, 58, 0.08); }
.section-alt { background: var(--cream-alt); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.section-head > div { max-width: 620px; }

.section-head-sub {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--body-muted);
  max-width: 340px;
}

.section h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--navy);
  text-wrap: balance;
}

.on-dark { color: #FCFBF8; }
.on-dark-sub { font-size: 16px; line-height: 1.65; color: rgba(250, 248, 244, 0.72); max-width: 420px; margin-top: 18px; }

.prose { font-size: 16px; line-height: 1.7; color: var(--body-muted); margin-bottom: 18px; }
.prose:last-of-type { margin-bottom: 0; }
.prose strong { color: var(--navy); font-weight: 600; }

/* Hairline grid */
.hairline-grid {
  display: grid;
  gap: 1px;
  background: rgba(11, 31, 58, 0.10);
  border: 1px solid rgba(11, 31, 58, 0.10);
}

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

.tile {
  background: var(--cream);
  padding: 38px 32px 42px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  transition: background 0.2s ease;
}

.tile:hover { background: #F4F0E9; }

.tile-num {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.tile h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin: 16px 0 13px;
  line-height: 1.22;
}

.tile p { font-size: 14.5px; line-height: 1.6; color: var(--body-muted); }

/* Experience */
.experience-section { background: var(--navy-mid); color: var(--cream); }

.experience-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.experience-intro { position: sticky; top: 120px; }

.experience-list { display: flex; flex-direction: column; }

.exp-item { padding: 34px 0; border-top: 1px solid rgba(250, 248, 244, 0.16); }
.exp-item:first-child { border-top: none; padding-top: 0; }

.exp-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 14px;
}

.exp-num {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.exp-item h3 {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  color: #FCFBF8;
}

.exp-item p {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(250, 248, 244, 0.7);
  max-width: 560px;
}

/* Principal */
.principal-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.principal-photo-frame {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 58, 0.12);
  background: #E8E3DA;
}

.principal-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  display: block;
}

.principal-role {
  font-size: 15px;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.fact-row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.fact { display: flex; flex-direction: column; gap: 8px; }

.fact-value {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}

.fact-label { font-size: 13.5px; color: var(--body-muted); max-width: 180px; line-height: 1.45; }

/* Chips */
.chip-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
  margin-top: 8px;
}

.chip-cols h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
}

.chip-list { display: flex; flex-wrap: wrap; gap: 10px; }

.chip-list span {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--body-mid);
  background: var(--cream);
  border: 1px solid rgba(11, 31, 58, 0.14);
  padding: 9px 16px;
  border-radius: 2px;
}

/* Engage */
.engage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(11, 31, 58, 0.10);
  border: 1px solid rgba(11, 31, 58, 0.10);
}

.engage-dark { background: var(--navy); color: var(--cream); padding: 52px 46px; }
.engage-light { background: var(--cream); padding: 52px 46px; display: flex; flex-direction: column; justify-content: center; }

.engage-label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 24px;
}

.engage-label-dark { color: var(--gold-light); margin-bottom: 28px; }

.engage-items { display: flex; flex-direction: column; gap: 24px; }

.engage-item { display: grid; grid-template-columns: 24px 1fr; gap: 14px; align-items: start; }

.engage-num {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.5;
}

.engage-item p { font-size: 15.5px; line-height: 1.55; color: rgba(250, 248, 244, 0.82); }

/* CTA */
.cta-section {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 500px at 15% 120%, rgba(176, 137, 78, 0.18), transparent 60%);
}

.cta-inner {
  position: relative;
  padding: 92px 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.cta-actions { display: flex; flex-direction: column; gap: 14px; }

/* Footer */
.site-footer { background: var(--navy-deep); color: rgba(250, 248, 244, 0.7); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding: 64px 40px 50px;
  border-bottom: 1px solid rgba(250, 248, 244, 0.12);
}

.footer-brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.14em;
  color: var(--cream);
  margin-bottom: 6px;
}

.footer-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
}

.footer-grid > div:first-child p { font-size: 14.5px; line-height: 1.6; max-width: 340px; }

.footer-heading {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-gray);
  margin-bottom: 18px;
}

.footer-grid > div { display: flex; flex-direction: column; gap: 11px; }
.footer-grid a, .footer-grid span { font-size: 14.5px; }
.footer-grid a:hover { color: var(--cream); }

.footer-bottom { padding: 26px 40px 38px; font-size: 13px; color: #6B7689; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo-frame { max-width: 340px; }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .experience-grid { grid-template-columns: 1fr; gap: 40px; }
  .experience-intro { position: static; }
  .principal-grid { grid-template-columns: 1fr; }
  .principal-photo-frame { max-width: 300px; }
  .chip-cols { grid-template-columns: 1fr; gap: 32px; }
  .engage-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .hairline-grid.cols-3, .hairline-grid.cols-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .header-inner .btn-cta { display: none; }

  .site-header.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(11, 31, 58, 0.1);
    padding: 20px 32px 28px;
    gap: 18px;
    margin: 0;
  }

  .wrap { padding: 0 22px; }
  .header-inner { padding: 14px 22px; }
  .hero-inner { padding: 72px 22px 0; }
  .section { padding: 68px 0; }
  .strip-inner, .quote-inner, .cta-inner, .footer-grid, .footer-bottom { padding-left: 22px; padding-right: 22px; }
}
