:root {
  --ink: #171414;
  --muted: #5d5652;
  --paper: #fffaf3;
  --white: #ffffff;
  --rose: #b13a4e;
  --plum: #46213d;
  --teal: #0b6f6b;
  --gold: #c28a2c;
  --line: rgba(23, 20, 20, 0.16);
  --shadow: 0 18px 50px rgba(23, 20, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(18, 13, 14, 0.78), rgba(18, 13, 14, 0));
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(12px, 2.2vw, 26px);
  font-size: 0.9rem;
}

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

nav a:hover,
.site-footer a:hover {
  text-decoration: underline;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 13, 14, 0.84), rgba(18, 13, 14, 0.5) 38%, rgba(18, 13, 14, 0.18) 72%),
    linear-gradient(0deg, rgba(18, 13, 14, 0.68), rgba(18, 13, 14, 0.08) 52%);
}

.hero-content {
  position: relative;
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 78px;
}

.eyebrow,
.section-kicker,
.media-card span,
.award-item span {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.03;
}

h1 {
  max-width: 660px;
  margin-bottom: 18px;
  font-size: clamp(4rem, 9.8vw, 8.2rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 5vw, 4.8rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}

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

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.74);
  color: var(--white);
}

.band {
  background: var(--white);
}

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 10vw, 116px) 0;
}

.intro-grid,
.split-section,
.resume-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
}

.section-heading.wide {
  max-width: 920px;
}

.awards-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.award-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.award-item p,
.role-card p,
.resume-layout p,
.resume-facts dd {
  color: var(--muted);
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.role-card {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.role-card h3 {
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.media-heading {
  margin-bottom: 28px;
}

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

.media-card {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 6px;
  color: var(--white);
  text-decoration: none;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.media-card.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 540px;
}

.media-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 13, 14, 0.88), rgba(18, 13, 14, 0.18) 62%);
}

.media-card div {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.media-card:hover img {
  transform: scale(1.04);
}

.media-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
}

.resume-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.resume-facts {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.resume-facts div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.resume-facts dt {
  font-weight: 800;
  color: var(--teal);
}

.resume-facts dd {
  margin: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 64px);
  color: var(--white);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  nav {
    max-width: 230px;
  }

  .intro-grid,
  .split-section,
  .resume-layout,
  .award-item {
    grid-template-columns: 1fr;
  }

  .award-item {
    gap: 6px;
  }

  .role-grid,
  .media-grid {
    grid-template-columns: 1fr 1fr;
  }

  .media-card.large {
    grid-column: span 2;
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 16px 20px;
  }

  nav {
    font-size: 0.82rem;
    gap: 10px;
  }

  .hero {
    min-height: 84vh;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-bottom: 48px;
  }

  h1 {
    font-size: clamp(3.4rem, 22vw, 5.8rem);
  }

  .section-inner {
    width: calc(100% - 32px);
  }

  .role-grid,
  .media-grid,
  .media-card.large {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .media-card,
  .media-card.large {
    min-height: 300px;
  }

  .resume-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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