:root {
  --ink: #17202a;
  --muted: #5c6570;
  --soft: #f7f8f6;
  --paper: #ffffff;
  --line: #d9dfdf;
  --blue: #1c72a7;
  --blue-dark: #14577f;
  --green: #73a873;
  --copper: #c47b45;
  --shadow: 0 22px 60px rgba(23, 32, 42, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(217, 223, 223, 0.82);
  background: rgba(247, 248, 246, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(820px, calc(100vh - 76px));
  border-bottom: 1px solid var(--line);
}

.hero-background {
  display: none;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.58;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(23, 32, 42, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 32, 42, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 82%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
  width: min(1180px, calc(100% - 40px));
  min-height: min(820px, calc(100vh - 76px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 112px) 0;
}

.hero-copy,
.hero-identity,
.identity-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 8px;
  font-size: clamp(4.5rem, 11vw, 9.8rem);
  line-height: 0.9;
  font-weight: 790;
  letter-spacing: 0;
}

.name-line {
  margin-bottom: 34px;
  color: var(--blue-dark);
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  font-weight: 680;
}

.lead {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 3.2vw, 2.8rem);
  line-height: 1.05;
  font-weight: 720;
}

.support {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  color: #fff;
  background: var(--ink);
}

.button.secondary {
  border-color: rgba(23, 32, 42, 0.22);
  background: rgba(255, 255, 255, 0.62);
}

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

.hero-identity {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 22px;
  align-items: end;
  padding: 22px 0 0 22px;
  border-left: 1px solid rgba(23, 32, 42, 0.16);
}

.portrait {
  width: 128px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.identity-copy p {
  margin-bottom: 22px;
  color: var(--muted);
}

.identity-copy dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.identity-copy dt {
  color: var(--blue-dark);
  font-size: 0.74rem;
  font-weight: 760;
  text-transform: uppercase;
}

.identity-copy dd {
  margin: 3px 0 0;
  font-weight: 670;
  overflow-wrap: anywhere;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(66px, 9vw, 110px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(20px, 5vw, 80px);
  align-items: start;
  margin-bottom: 36px;
}

.section-heading h2,
.evidence-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.info-card,
.contact-card,
.resource-row article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.info-card {
  min-height: 280px;
  padding: 22px;
}

.card-index {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--copper);
  font-weight: 780;
}

.info-card h3,
.work-list h3,
.resource-row h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.info-card p,
.work-list p,
.resource-row p,
.evidence-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.band {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f2f5f4;
}

.work-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.work-list article {
  padding-top: 18px;
  border-top: 2px solid #b9c7ca;
}

.work-list article:first-child {
  border-top-color: var(--copper);
}

.evidence {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.evidence-copy p:last-child {
  max-width: 620px;
  margin-top: 24px;
  font-size: 1.08rem;
}

.metrics {
  display: grid;
  gap: 12px;
}

.metrics div {
  padding: 18px 0 18px 18px;
  border-left: 3px solid var(--copper);
}

.metrics span,
.metrics strong {
  display: block;
}

.metrics span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
  text-transform: uppercase;
}

.metrics strong {
  margin-top: 6px;
  font-size: 1.08rem;
}

.contact-section {
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.contact-card {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 108px;
  padding: 18px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.contact-card.highlight {
  border-color: rgba(28, 114, 167, 0.38);
  box-shadow: var(--shadow);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(23, 32, 42, 0.14);
  border-radius: var(--radius);
  color: var(--blue-dark);
  background: var(--soft);
}

.contact-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card.highlight .contact-icon {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.linkedin-icon {
  color: #0a66c2;
}

.contact-card strong,
.contact-card small {
  display: block;
}

.contact-card small {
  margin-top: 4px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.resources {
  padding-top: 44px;
}

.resource-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.resource-row article {
  padding: 22px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero-inner,
  .section-heading,
  .evidence {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: start;
    min-height: auto;
  }

  .card-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-list,
  .resource-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 54px;
    padding-bottom: 66px;
  }

  .hero-copy,
  .hero-identity,
  .section-heading,
  .evidence {
    width: 100%;
    max-width: calc(100vw - 40px);
  }

  h1 {
    font-size: clamp(3.25rem, 17vw, 4.15rem);
    max-width: 6ch;
    overflow-wrap: normal;
  }

  .lead {
    max-width: 12.5ch;
    font-size: clamp(1.42rem, 7.2vw, 1.9rem);
    overflow-wrap: break-word;
  }

  .support {
    max-width: 29ch;
  }

  .section-heading h2,
  .evidence-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    max-width: 8.8ch;
    overflow-wrap: break-word;
  }

  .evidence-copy h2 {
    max-width: 16ch;
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .evidence-copy p:last-child {
    max-width: 29ch;
  }

  .hero-identity {
    display: none;
  }

  .card-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .info-card,
  .contact-card,
  .resource-row article,
  .work-list article {
    max-width: calc(100vw - 40px);
  }

  .info-card p,
  .work-list p,
  .resource-row p,
  .evidence-copy p,
  .contact-card small {
    max-width: 29ch;
    overflow-wrap: anywhere;
  }

  .info-card {
    min-height: auto;
  }

  .card-index {
    margin-bottom: 24px;
  }

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

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

  .button,
  .contact-card {
    transition: none;
  }
}
