:root {
  --navy: #0b1f33;
  --navy-2: #123250;
  --ink: #17212f;
  --muted: #5d6876;
  --line: #d8dee7;
  --gray: #f4f6f8;
  --white: #ffffff;
  --gold: #b89045;
  --teal: #2c8c87;
  --teal-dark: #1d6765;
  --shadow: 0 18px 50px rgba(11, 31, 51, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

p {
  margin: 0;
}

ul,
dl {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.08;
}

h1 {
  font-size: 3.85rem;
  max-width: 760px;
}

h2 {
  font-size: 3.45rem;
}

h3 {
  font-size: 1.25rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.6rem 0.9rem;
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(216, 222, 231, 0.85);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(100% - 2rem, var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: grid;
  gap: 0.1rem;
  color: var(--navy);
  font-weight: 800;
}

.brand small {
  color: var(--muted);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a.active {
  color: var(--navy);
  border-color: var(--gold);
}

.article-page .nav {
  flex-wrap: wrap;
  padding: 0.75rem 0;
}

.article-page .nav-links {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle-line {
  width: 20px;
  height: 2px;
  background: var(--navy);
}

.hero {
  width: min(100% - 2rem, var(--max));
  min-height: 600px;
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(2.4rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  grid-template-areas:
    "copy headshot"
    "support headshot";
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.hero-copy {
  grid-area: copy;
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.hero-subhead {
  max-width: 840px;
  color: var(--navy-2);
  font-size: 1.32rem;
  line-height: 1.42;
  font-weight: 700;
}

.hero-support {
  grid-area: support;
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.hero-support p {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-headshot {
  grid-area: headshot;
  margin: 0;
  display: grid;
  gap: 0.9rem;
  align-self: center;
  min-width: 0;
}

.hero-headshot img {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  object-fit: cover;
  object-position: center bottom;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--soft);
}

.hero-headshot figcaption {
  display: grid;
  gap: 0.25rem;
  color: var(--navy);
}

.hero-headshot figcaption strong {
  font-size: 1.1rem;
  line-height: 1.2;
}

.hero-headshot figcaption span {
  color: var(--muted);
  font-size: 0.95rem;
}

.headshot-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.headshot-highlights span {
  padding: 0.45rem 0.6rem;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
}

.eyebrow {
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding-top: 0.4rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--navy);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus {
  background: var(--navy-2);
}

.button-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus {
  border-color: var(--gold);
}

.reporting-visual {
  width: 100%;
  min-height: 370px;
  padding: 1rem;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 1rem;
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visual-top {
  display: flex;
  gap: 0.45rem;
}

.visual-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.visual-top span:nth-child(2) {
  background: var(--teal);
}

.visual-top span:nth-child(3) {
  background: #eef3f6;
}

.visual-heading,
.visual-footer {
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.visual-heading {
  display: grid;
  gap: 0.3rem;
}

.visual-heading p {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.visual-heading strong {
  font-size: 2rem;
}

.visual-grid {
  display: grid;
  gap: 0.8rem;
  align-content: center;
  padding: 0.9rem;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
}

.visual-grid span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.bar {
  height: 16px;
  border-radius: 999px;
  background: #e8edf2;
  overflow: hidden;
}

.bar::before {
  content: "";
  display: block;
  width: var(--bar-value);
  height: 100%;
  background: var(--navy-2);
}

.bar.teal::before {
  background: var(--teal);
}

.bar.gold::before {
  background: var(--gold);
}

.visual-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.visual-footer div {
  display: grid;
  gap: 0.2rem;
}

.metric {
  color: var(--gold);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.impact-strip {
  background: var(--navy);
  color: var(--white);
}

.impact-strip ul {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 1.2rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.impact-strip li {
  min-height: 118px;
  padding: 1rem;
  display: grid;
  align-content: start;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
}

.impact-strip strong {
  color: var(--gold);
  font-size: 1rem;
}

.impact-strip span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.section {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

main section[id] {
  scroll-margin-top: 92px;
}

.section-muted {
  width: 100%;
  max-width: none;
  padding-left: max(1rem, calc((100vw - var(--max)) / 2));
  padding-right: max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--gray);
}

.section-dark {
  width: 100%;
  max-width: none;
  padding-left: max(1rem, calc((100vw - var(--max)) / 2));
  padding-right: max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--navy);
  color: var(--white);
}

.section-dark .eyebrow,
.section-dark h2 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 7vw, 6rem);
}

.section-heading {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.section-heading.wide {
  max-width: 900px;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-body {
  display: grid;
  gap: 1rem;
  color: var(--muted);
  font-size: 1.06rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card-grid.five {
  grid-template-columns: repeat(5, 1fr);
}

.card-grid.six {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.case-card,
.insight-card,
.timeline-item,
.coso-grid article {
  border-radius: var(--radius);
}

.info-card {
  min-height: 310px;
  padding: 1.25rem;
  display: grid;
  align-content: start;
  gap: 0.9rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.info-card p,
.case-card dd,
.insight-card p,
.timeline-item p {
  color: var(--muted);
}

.card-number {
  color: var(--gold);
  font-weight: 900;
}

.focus-list,
.skill-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding-top: 0.5rem;
}

.focus-list li,
.skill-chips li {
  padding: 0.48rem 0.65rem;
  color: var(--navy);
  background: #eef3f6;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 800;
}

.development-copy p:first-child {
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 750;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  top: 1rem;
  bottom: 1rem;
  width: 2px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  padding: 1.4rem 1.4rem 1.4rem 3.3rem;
  display: grid;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0.82rem;
  top: 1.7rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px var(--gray);
}

.role-label {
  display: inline-block;
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-weight: 900;
}

.role-achievements {
  display: grid;
  gap: 0.45rem;
  padding-left: 1.1rem;
}

.role-achievements li {
  color: var(--muted);
  list-style: disc;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.case-card {
  padding: 1.35rem;
  display: grid;
  gap: 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(11, 31, 51, 0.06);
}

.case-card dl {
  display: grid;
  gap: 0.85rem;
}

.case-card div {
  display: grid;
  gap: 0.15rem;
}

.case-card dt {
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-list {
  display: grid;
  gap: 0.45rem;
  padding-left: 1rem;
}

.case-list li {
  color: var(--muted);
  list-style: disc;
}

.coso-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.coso-grid article {
  min-height: 230px;
  padding: 1.2rem;
  display: grid;
  align-content: start;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.coso-grid span {
  color: var(--gold);
  font-weight: 900;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.insight-card {
  min-height: 210px;
  padding: 1.2rem;
  display: grid;
  align-content: start;
  gap: 0.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.insight-card:hover,
.insight-card:focus {
  transform: translateY(-2px);
  border-color: rgba(184, 144, 69, 0.55);
  box-shadow: 0 14px 34px rgba(11, 31, 51, 0.08);
}

.read-more {
  align-self: end;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.article-page {
  background: var(--gray);
}

.article-main {
  width: min(100% - 2rem, 920px);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.article-hero {
  display: grid;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.article-hero h1 {
  max-width: 850px;
  font-size: 3.4rem;
}

.article-intro {
  color: var(--navy-2);
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.5;
}

.article-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.article-content {
  display: grid;
  gap: 1.5rem;
  padding-top: 2rem;
}

.article-content section {
  display: grid;
  gap: 0.55rem;
}

.article-content h2 {
  font-size: 1.45rem;
  color: var(--navy);
}

.article-content p,
.article-content li {
  color: var(--muted);
}

.article-content ul {
  display: grid;
  gap: 0.45rem;
  padding-left: 1.25rem;
}

.article-content li {
  list-style: disc;
}

.takeaway {
  padding: 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding-top: 0.5rem;
}

.article-tags li {
  padding: 0.35rem 0.55rem;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 800;
  list-style: none;
}

.resume-panel {
  padding: 1.5rem;
  background: var(--gray);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.resume-panel .button {
  justify-self: start;
  margin-top: 0.5rem;
}

.contact-section {
  width: 100%;
  max-width: none;
  padding-left: max(1rem, calc((100vw - var(--max)) / 2));
  padding-right: max(1rem, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 7vw, 6rem);
  color: var(--white);
  background: var(--navy);
}

.contact-section .eyebrow,
.contact-section h2 {
  color: var(--white);
}

.contact-content {
  display: grid;
  gap: 1.5rem;
}

.contact-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.contact-list {
  display: grid;
  gap: 0.75rem;
}

.contact-list li {
  min-height: 64px;
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.contact-list span {
  color: var(--gold);
  font-weight: 900;
}

.contact-list a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 1.3rem 1rem;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
  text-align: center;
}

@media (max-width: 1120px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  .hero-subhead {
    font-size: 1.22rem;
  }

  .nav-links {
    gap: 0.7rem;
    font-size: 0.84rem;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "headshot"
      "support";
    min-height: auto;
  }

  .hero-headshot {
    max-width: 560px;
  }

  .reporting-visual {
    max-width: 680px;
  }

  .impact-strip ul,
  .card-grid.five,
  .card-grid.six,
  .coso-grid,
  .insight-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .nav {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 68px 0 auto 0;
    max-height: calc(100vh - 68px);
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    overflow: auto;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    min-height: 48px;
    padding: 0 0.8rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .article-page .nav-links {
    position: static;
    display: flex;
    max-height: none;
    padding: 0;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
  }

  .article-page .nav-links a {
    min-height: 40px;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .two-column,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .article-hero h1 {
    font-size: 2.35rem;
  }

  .article-main {
    width: min(100% - 1rem, 920px);
  }

  .hero-subhead {
    font-size: 1.08rem;
  }

  .visual-heading strong {
    font-size: 1.55rem;
  }

  .hero {
    width: min(100% - 1rem, var(--max));
    padding-bottom: 3rem;
  }

  .hero-headshot {
    gap: 0.75rem;
  }

  .hero-headshot img {
    aspect-ratio: 1 / 1.08;
    max-height: none;
  }

  .headshot-highlights span {
    flex: 1 1 100%;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .button {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .reporting-visual {
    min-height: 360px;
  }

  .visual-footer,
  .impact-strip ul,
  .card-grid.five,
  .card-grid.six,
  .coso-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .impact-strip ul {
    width: min(100% - 1rem, var(--max));
  }

  .section,
  .section-muted,
  .section-dark,
  .contact-section {
    padding-top: 3.8rem;
    padding-bottom: 3.8rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .info-card,
  .insight-card,
  .timeline-item,
  .case-card,
  .resume-panel {
    padding: 1rem;
  }

  .timeline-item {
    padding-left: 2.7rem;
  }

  .contact-list li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}
