:root {
  color-scheme: light;
  --ink: #101820;
  --ink-soft: #34414a;
  --paper: #f7f4ed;
  --paper-bright: #fffdf8;
  --line: #d8d2c4;
  --orange: #e96b2c;
  --orange-dark: #bd4b18;
  --mint: #71d6c5;
  --blue: #4d96d7;
  --shadow: 0 20px 60px rgba(16, 24, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(16, 24, 32, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 32, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-180%);
  border-radius: 4px;
  background: var(--ink);
  color: white;
  padding: 0.7rem 1rem;
  text-decoration: none;
}

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

.site-header,
main,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
}

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

.brand-mark {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 11px;
  background: var(--ink);
  box-shadow: 4px 4px 0 var(--orange);
  color: white;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

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

.brand strong {
  font-size: 0.96rem;
  letter-spacing: 0.025em;
}

.brand small {
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

nav a {
  font-size: 0.83rem;
  font-weight: 750;
  text-decoration: none;
}

.nav-cta {
  border: 1px solid var(--ink);
  border-radius: 5px;
  padding: 0.58rem 0.85rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0 4.5rem;
}

.eyebrow,
.fit-label,
.company,
.award-year,
.side-kicker {
  margin: 0;
  color: var(--orange-dark);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin: 0.45rem 0 0;
  font-size: clamp(3.6rem, 10vw, 8rem);
  line-height: 0.84;
  letter-spacing: -0.075em;
}

.hero-role {
  margin: 1.5rem 0 0;
  color: var(--orange-dark);
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  font-weight: 850;
  letter-spacing: -0.025em;
}

.hero-lede {
  max-width: 710px;
  margin: 1.15rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.target-line {
  display: inline-block;
  margin: 1.5rem 0 0;
  border-left: 4px solid var(--orange);
  padding-left: 0.9rem;
  font-size: 0.85rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 5px;
  padding: 0.72rem 1.05rem;
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

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

.button-primary {
  background: var(--ink);
  box-shadow: 4px 4px 0 var(--orange);
  color: white;
}

.button-secondary {
  background: var(--paper-bright);
}

.text-link {
  margin-left: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 800;
  text-underline-offset: 4px;
}

.fit-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: var(--ink);
  box-shadow: 10px 10px 0 var(--mint), var(--shadow);
  color: white;
  padding: clamp(1.6rem, 4vw, 2.5rem);
}

.fit-card::before {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  content: "";
}

.fit-label {
  color: var(--mint);
}

.fit-card h2 {
  margin: 0.75rem 0 1.2rem;
  font-size: clamp(1.6rem, 3.2vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.fit-card ul,
.role ul {
  margin: 0;
  padding-left: 1.2rem;
}

.fit-card li + li,
.role li + li {
  margin-top: 0.65rem;
}

.fit-card li::marker,
.role-featured li::marker {
  color: var(--orange);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.proof-strip article {
  min-height: 132px;
  border-right: 1px solid var(--line);
  padding: 1.7rem 1.25rem;
}

.proof-strip article:first-child {
  padding-left: 0;
}

.proof-strip article:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--orange-dark);
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.proof-strip span {
  max-width: 170px;
  margin-top: 0.55rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
}

.resume-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(2.5rem, 7vw, 6.5rem);
  padding: 5.5rem 0 6rem;
}

.resume-section + .resume-section {
  margin-top: 5rem;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.section-heading span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-size: 0.68rem;
  font-weight: 900;
}

.section-heading h2,
.side-section h2 {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.summary-copy {
  max-width: 780px;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.role {
  border-top: 1px solid var(--line);
  padding: 2rem 0 0;
}

.role + .role {
  margin-top: 2.8rem;
}

.role header {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.role h3 {
  margin: 0.25rem 0 0;
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}

.role-scope {
  margin: 0.35rem 0 0;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.role-meta,
.side-meta {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 780;
  white-space: nowrap;
}

.role li,
.role > p {
  color: var(--ink-soft);
}

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

.impact-grid article {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 253, 248, 0.66);
  padding: 1.3rem;
}

.impact-grid h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
}

.impact-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

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

.recognition-grid article {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 253, 248, 0.66);
  padding: 1.25rem;
}

.recognition-grid h3 {
  margin: 0.4rem 0 0.75rem;
  font-size: 1rem;
  line-height: 1.2;
}

.recognition-grid p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.secondary-column {
  align-self: start;
  border-left: 1px solid var(--line);
  padding-left: 2rem;
}

.side-section + .side-section {
  margin-top: 2.8rem;
  border-top: 1px solid var(--line);
  padding-top: 2.8rem;
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.skill-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-bright);
  padding: 0.38rem 0.68rem;
  font-size: 0.73rem;
  font-weight: 720;
}

.digital-summary {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.side-kicker {
  margin-top: 1.2rem;
}

.side-section h3 {
  margin: 0.45rem 0 0.35rem;
  font-size: 1.02rem;
  line-height: 1.3;
}

.side-section > p:last-child,
.supporting-proof p {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.supporting-proof a {
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 850;
  text-underline-offset: 4px;
}

.closing {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--orange);
  color: white;
  padding: clamp(2.2rem, 6vw, 4.5rem);
}

.closing::after {
  position: absolute;
  right: -40px;
  bottom: -65px;
  width: 230px;
  height: 230px;
  border: 28px solid rgba(113, 214, 197, 0.16);
  border-radius: 50%;
  content: "";
}

.closing .eyebrow {
  color: var(--mint);
}

.closing h2 {
  max-width: 850px;
  margin: 0.7rem 0 1rem;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.closing > p:not(.eyebrow) {
  max-width: 700px;
  color: #d7dde1;
}

.closing .button-primary {
  background: var(--orange);
  box-shadow: none;
}

.closing .button-secondary {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
  color: white;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 3.5rem 0;
  font-size: 0.76rem;
  font-weight: 720;
}

footer p {
  margin: 0;
}

footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

footer a {
  color: var(--ink-soft);
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .hero,
  .resume-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem;
  }

  .fit-card {
    max-width: 620px;
  }

  .secondary-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-top: 3rem;
    padding-left: 0;
  }

  .side-section + .side-section {
    margin-top: 0;
    border-top: 0;
    padding-top: 0;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 76px;
  }

  nav > a:not(.nav-cta) {
    display: none;
  }

  .brand small {
    display: none;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip article:nth-child(2) {
    border-right: 0;
  }

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

  .proof-strip article:first-child,
  .proof-strip article:nth-child(3) {
    padding-left: 1rem;
  }

  .impact-grid,
  .recognition-grid,
  .secondary-column {
    grid-template-columns: 1fr;
  }

  .role header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .role-meta {
    white-space: normal;
  }
}

@media (max-width: 460px) {
  .site-header,
  main,
  footer {
    width: min(100% - 24px, 1180px);
  }

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

  .nav-cta {
    padding: 0.5rem 0.65rem;
    font-size: 0.73rem;
  }

  .hero {
    padding-top: 3.2rem;
  }

  h1 {
    font-size: clamp(3.2rem, 19vw, 5.2rem);
  }

  .hero-actions,
  .closing-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .text-link {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .proof-strip article {
    min-height: 118px;
    padding: 1.35rem 0.8rem;
  }

  .proof-strip strong {
    font-size: 1.8rem;
  }
}

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

  .button {
    transition: none;
  }
}

@media print {
  body {
    background: white;
  }

  .site-header,
  .hero-actions,
  .closing,
  footer,
  .supporting-proof {
    display: none;
  }

  main {
    width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 0 0 1.5rem;
  }

  .fit-card {
    display: none;
  }

  .resume-layout {
    gap: 2rem;
    grid-template-columns: 1fr 250px;
    padding: 2rem 0;
  }
}
