@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("assets/fonts/inter-latin-var.woff2") format("woff2");
}

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/fraunces-latin-600.woff2") format("woff2");
}

:root {
  color-scheme: light dark;
  --ink: #111827;
  --muted: #586172;
  --line: #d8dde6;
  --paper: #f7f4ee;
  --surface: #ffffff;
  --charcoal: #202833;
  --teal: #087f8c;
  --teal-bright: #0d9aa9;
  --copper: #a45135;
  --steel: #416783;
  --hero-eyebrow: #87d9d8;
  --shadow:
    0 1px 2px rgba(17, 24, 39, 0.05),
    0 14px 36px rgba(17, 24, 39, 0.09);
  --shadow-hover:
    0 2px 4px rgba(17, 24, 39, 0.06),
    0 20px 48px rgba(17, 24, 39, 0.14);
  --font-body:
    "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  font-family: var(--font-body);
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e9ecf2;
    --muted: #a3adbd;
    --line: #2b3442;
    --paper: #10151d;
    --surface: #171e29;
    --charcoal: #1a222d;
    --teal: #3fbfca;
    --teal-bright: #55cdd7;
    --copper: #de8466;
    --steel: #7ea4bf;
    --shadow:
      0 1px 2px rgba(0, 0, 0, 0.3),
      0 14px 36px rgba(0, 0, 0, 0.35);
    --shadow-hover:
      0 2px 4px rgba(0, 0, 0, 0.35),
      0 20px 48px rgba(0, 0, 0, 0.45);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: fixed;
  z-index: 50;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: #111827;
  transform: translateY(-160%);
}

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

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

a:focus-visible {
  outline: 3px solid var(--teal-bright);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(13, 20, 29, 0.66), rgba(13, 20, 29, 0));
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(13, 20, 29, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.wordmark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0;
  background: rgba(13, 20, 29, 0.3);
  backdrop-filter: blur(12px);
  transition: border-color 0.2s ease;
}

.wordmark:hover,
.wordmark:focus-visible {
  border-color: rgba(255, 255, 255, 0.8);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  font-size: 0.92rem;
  font-weight: 500;
}

nav a {
  opacity: 0.82;
  transition: opacity 0.2s ease;
}

nav a:focus-visible,
nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(720px, 88svh);
  padding: 116px clamp(20px, 6vw, 86px) 72px;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 20, 29, 0.9), rgba(13, 20, 29, 0.62) 44%, rgba(13, 20, 29, 0.18)),
    linear-gradient(180deg, rgba(13, 20, 29, 0.1), rgba(13, 20, 29, 0.84));
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 820px;
}

.eyebrow,
.section-label,
.skill-kicker,
.timeline-item span,
.principle > span {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--hero-eyebrow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 600;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.9rem, 6.5vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.85rem, 3.2vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.3;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.hero-actions,
.contact-panel {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 600;
  line-height: 1.1;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease, border-color 0.2s ease;
}

.button.primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 10px 26px rgba(8, 127, 140, 0.28);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--teal-bright);
}

@media (prefers-color-scheme: dark) {
  .button.primary {
    color: #0d141d;
  }
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.8);
}

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

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0;
  scroll-margin-top: 64px;
}

.intro {
  padding-top: clamp(40px, 5vw, 64px);
}

.intro,
.split,
.credentials,
.contact {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 96px;
}

.profile-copy,
.contact-panel p {
  color: var(--muted);
  font-size: 1.12rem;
}

.profile-copy {
  max-width: 720px;
}

.profile-copy p:last-child {
  margin-bottom: 0;
}

.strengths {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding-top: 0;
}

.strength {
  min-height: 250px;
  padding: 30px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strength + .strength {
  border-left: 1px solid var(--line);
}

.skill-kicker {
  display: block;
}

.strength p,
.timeline-item p,
.credential-list,
.site-footer {
  color: var(--muted);
}

.strength p,
.timeline-item p {
  margin-bottom: 0;
  font-size: 0.97rem;
}

.strength:nth-child(2) .skill-kicker {
  color: var(--copper);
}

.strength:nth-child(3) .skill-kicker {
  color: var(--steel);
}

.leadership-band {
  color: #fff;
  background: var(--charcoal);
}

.leadership-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 108px) 0;
}

.leadership-heading {
  display: grid;
  grid-template-columns: minmax(190px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 68px);
}

.leadership-heading .section-label {
  color: var(--hero-eyebrow);
}

.leadership-heading h2 {
  max-width: 760px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.principle {
  padding: 28px 30px 0 0;
}

.principle + .principle {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.principle > span {
  display: block;
  margin-bottom: 24px;
  color: var(--hero-eyebrow);
}

.principle:nth-child(2) > span {
  color: #ef9b7e;
}

.principle:nth-child(3) > span {
  color: #9dc2db;
}

.principle p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.timeline-item {
  position: relative;
  padding: 0 0 42px 18px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  position: absolute;
  top: 5px;
  left: -30px;
  width: 9px;
  height: 9px;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.timeline-item span {
  display: block;
  margin-bottom: 8px;
}

.credential-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.credential-list li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 500;
}

.contact {
  padding-bottom: clamp(70px, 10vw, 120px);
}

.contact-panel {
  align-items: flex-start;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-panel p {
  flex: 1 1 300px;
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 6vw, 86px);
  border-top: 1px solid var(--line);
  background: var(--surface);
  font-size: 0.92rem;
}

@media (prefers-reduced-motion: no-preference) {
  html.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  html.js .reveal.in-view {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .site-header,
  nav a,
  .wordmark {
    transition: none;
  }

  .button:hover,
  .button:focus-visible {
    transform: none;
  }
}

@media (max-width: 920px) {
  .strengths {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .strength {
    border-bottom: 0;
  }

  .strength + .strength {
    border-left: 0;
  }

  .strength:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .strength:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .intro,
  .split,
  .credentials,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-heading {
    position: static;
  }

  .leadership-heading {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 18px;
  }

  nav {
    gap: 11px;
    font-size: 0.8rem;
  }

  .hero {
    min-height: min(720px, calc(100svh - 80px));
    padding: 96px 20px 48px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(13, 20, 29, 0.84), rgba(13, 20, 29, 0.5) 36%, rgba(13, 20, 29, 0.9)),
      linear-gradient(90deg, rgba(13, 20, 29, 0.78), rgba(13, 20, 29, 0.24));
  }

  .hero-content {
    align-self: end;
  }

  .hero-actions .button {
    flex: 1 1 150px;
  }

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

  .strength {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0 !important;
  }

  .strength:last-child {
    border-bottom: 1px solid var(--line);
  }

  .leadership-inner {
    width: min(100% - 40px, 1120px);
  }

  .principles {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .principle,
  .principle + .principle {
    padding: 26px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
  }

  .principle > span {
    margin-bottom: 14px;
  }

  .credential-list {
    grid-template-columns: 1fr;
  }

  .contact-panel .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
