:root {
  --navy: #14213D;
  --navy-deep: #0A1220;
  --paper: #F6F3EC;
  --paper-raised: #FFFFFF;
  --ink: #232A33;
  --ink-soft: #4C5765;
  --steel: #7A8494;
  --red: #B8112C;
  --red-deep: #8E0D22;
  --gold: #A9812F;
  --gold-soft: #D9C48F;
  --line: #E1D9C8;
  --line-navy: rgba(255,255,255,0.14);
  --radius: 2px;
  --serif: 'Source Serif 4', Georgia, serif;
  --sans: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'IBM Plex Mono', 'SFMono-Regular', Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.utility {
  background: var(--navy-deep);
  color: #CFD8E7;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.utility .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  gap: 12px;
  flex-wrap: wrap;
}
.utility a { text-decoration: none; color: #CFD8E7; }
.utility .phone { color: var(--gold-soft); font-weight: 600; }
.utility .divider { opacity: 0.35; margin: 0 8px; }

.site {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line-navy);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 32px;
  position: relative;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  min-width: 0;
}
.brand-mark {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
  box-shadow: 0 0 0 1px var(--line-navy);
}
.brand-text {
  font-family: var(--serif);
  line-height: 1.15;
}
.brand-text .line1 { font-size: 17px; font-weight: 600; letter-spacing: 0.01em; }
.brand-text .line2 {
  font-size: 12.5px;
  color: var(--gold-soft);
  font-family: var(--sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.main {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.main a {
  color: #D7DCE6;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  padding: 10px 10px;
  border-radius: var(--radius);
  letter-spacing: 0.01em;
  transition: color .15s, background .15s;
}
.main a:hover { color: #fff; background: rgba(255,255,255,0.06); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--line-navy);
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  align-items: center;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: #fff;
  transition: transform .2s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.vitals {
  width: 100%;
  height: 34px;
  overflow: hidden;
  background: var(--paper);
}
.vitals svg { width: 100%; height: 100%; display: block; }
.vitals path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: draw 2.6s ease-out .3s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.page-shell { padding: 48px 0 72px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  display: inline-block;
}

.story-hero {
  padding: 0 0 20px;
}
.story-hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.story-hero h1 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy);
  font-weight: 700;
}
.story-hero p {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0;
}
.story-photo {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 30px -28px rgba(20,33,61,0.5);
}
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 36px;
  align-items: start;
}
.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 0 0 26px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0f1b33;
  border: 1px solid var(--line);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.story-body {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 30px;
}
.story-body p,
.story-body li,
.story-body blockquote {
  font-size: 16px;
  color: var(--ink-soft);
}
.story-body p {
  margin: 0 0 18px;
}
.story-body p strong,
.story-body li strong { color: var(--navy); }
.story-body ul {
  margin: 0 0 18px 22px;
  padding: 0;
}
.story-body li { margin-bottom: 8px; }
.story-body blockquote {
  margin: 26px 0 22px;
  padding: 0 0 0 18px;
  border-left: 3px solid var(--gold);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.45;
  color: var(--navy);
}
.story-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.research-group {
  margin-bottom: 36px;
}
.research-group:last-child {
  margin-bottom: 0;
}
.research-group h3 {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--navy);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.research-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.research-item {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.research-item .rtitle {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.4;
}
.research-item .rsub {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.research-item p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0 0 10px;
  line-height: 1.55;
}
.research-item a {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
}

.callout {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.callout.navy {
  background: var(--navy);
  border-left-color: var(--gold);
}
.callout h3,
.callout h4,
.callout h5 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 13.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--mono);
}
.callout p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}
.callout.navy h3,
.callout.navy h4,
.callout.navy h5,
.callout.navy p {
  color: #DFE7F5;
}
.callout a { color: var(--red); font-weight: 700; text-decoration: none; }

.story-strip {
  margin-top: 42px;
}
.story-strip .wrap {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.story-mini {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  text-decoration: none;
}
.story-mini .thumb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--navy);
  box-shadow: 0 0 0 1px var(--line);
}
.story-mini .thumb img { width: 100%; height: 100%; object-fit: cover; }
.story-mini h4 {
  margin: 0 0 6px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.2;
}
.story-mini p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.5;
}
.story-mini .read {
  display: inline-block;
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--red);
}

footer {
  background: var(--navy-deep);
  color: #9AA6B8;
  padding: 56px 0 28px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.foot-grid h6 {
  margin: 0 0 14px;
  color: #fff;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.foot-grid p,
.foot-grid li {
  margin: 0;
  color: #8C96A7;
  font-size: 14px;
  line-height: 1.7;
}
.foot-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-grid a { color: #B9C2D2; text-decoration: none; }
.foot-grid a:hover { color: #fff; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: #6D7889;
  font-size: 12.5px;
}

@media (max-width: 980px) {
  .story-hero .wrap,
  .story-layout,
  .story-strip .wrap,
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .story-strip .wrap { display: grid; }
  .story-hero .wrap { gap: 24px; }
  .utility-address { display: none; }
  .nav-row { gap: 10px; }
  .brand { flex-shrink: 1; min-width: 0; gap: 8px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-text .line1 { font-size: 14px; }
  .brand-text .line2 { font-size: 9.5px; letter-spacing: 0.03em; }
  .nav-toggle { display: flex; }
  .main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    border-top: 1px solid var(--line-navy);
    flex-direction: column;
    gap: 0;
    padding: 8px 16px 16px;
    box-shadow: 0 16px 24px -12px rgba(0,0,0,0.4);
  }
  .main.open { display: flex; }
  .main a { width: 100%; padding: 13px 10px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .main a:last-child { border-bottom: none; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .nav-row { padding: 14px 20px; }
  .story-body { padding: 20px 18px; }
  .story-hero h1 { font-size: 34px; }
  .story-hero p { font-size: 15.5px; }
}
