@import url("https://fonts.googleapis.com/css2?family=Archivo+Narrow:wght@400;500;600;700&family=Cormorant+Garamond:wght@500;600;700&display=swap");

:root {
  --ink: #090806;
  --charcoal: #14120f;
  --graphite: #211f1a;
  --ivory: #f8f1e6;
  --paper: #eadfcf;
  --mist: rgba(248, 241, 230, 0.72);
  --line: rgba(248, 241, 230, 0.16);
  --teal: #167c75;
  --teal-dark: #0d4f4f;
  --ember: #d94f2a;
  --gold: #c6a15b;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Archivo Narrow", "Aptos Narrow", sans-serif;
  --container: 1180px;
  --pad: 24px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(248, 241, 230, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    radial-gradient(circle at 82% 8%, rgba(217, 79, 42, 0.16), transparent 32rem),
    radial-gradient(circle at 4% 32%, rgba(22, 124, 117, 0.18), transparent 30rem),
    var(--ink);
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.42;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

p + p {
  margin-top: 1.1rem;
}

.site-shell {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(248, 241, 230, 0.12);
  background: rgba(9, 8, 6, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--container));
  min-height: 76px;
  margin: 0 auto;
  padding: 0 var(--pad);
  gap: 24px;
}

.brand {
  display: grid;
  gap: 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 0.95;
}

.brand span {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--mist);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--ivory);
  border-color: var(--line);
  background: rgba(248, 241, 230, 0.06);
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section {
  padding: 92px 0;
}

.section--tight {
  padding: 54px 0;
}

.band {
  border-block: 1px solid var(--line);
  background: rgba(20, 18, 15, 0.72);
}

.eyebrow {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-title {
  max-width: 850px;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 0.95;
}

.section-kicker {
  max-width: 720px;
  margin-top: 20px;
  color: var(--mist);
  font-size: 1.12rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ivory);
  background: rgba(248, 241, 230, 0.06);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.button:hover {
  border-color: rgba(198, 161, 91, 0.78);
  background: rgba(198, 161, 91, 0.14);
}

.button--solid {
  border-color: var(--ember);
  background: var(--ember);
  color: #fff7ef;
}

.button--solid:hover {
  border-color: #ee6a45;
  background: #ee6a45;
}

.hero {
  position: relative;
  min-height: 91vh;
  display: grid;
  align-items: end;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 16%;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.92) 0%, rgba(9, 8, 6, 0.48) 43%, rgba(9, 8, 6, 0.05) 72%),
    linear-gradient(0deg, var(--ink) 0%, rgba(9, 8, 6, 0) 30%);
}

.hero__content {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 130px var(--pad) 54px;
}

.hero__label {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 6.8rem;
  font-weight: 700;
  line-height: 0.82;
}

.hero__summary {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(248, 241, 230, 0.86);
  font-size: 1.22rem;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, var(--container));
  margin: 34px auto 0;
  background: var(--line);
}

.hero__meta div {
  min-height: 112px;
  padding: 18px;
  background: rgba(9, 8, 6, 0.82);
}

.hero__meta strong {
  display: block;
  color: var(--ivory);
  font-size: 1.55rem;
  line-height: 1;
}

.hero__meta span {
  display: block;
  margin-top: 10px;
  color: var(--mist);
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: center;
}

.split--wide {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.portrait-stack {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 16px;
  align-items: end;
}

.portrait-stack img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.portrait-stack img:first-child {
  height: 390px;
  object-position: center 16%;
}

.feature-image {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pullquote {
  margin-top: 28px;
  padding-left: 18px;
  border-left: 3px solid var(--ember);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1.1;
}

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

.stat {
  padding: 24px;
  background: rgba(33, 31, 26, 0.82);
}

.stat strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 2.35rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 9px;
  color: var(--mist);
  font-size: 0.92rem;
}

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

.tile {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--graphite);
}

.tile img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.tile__body {
  padding: 18px;
}

.tile h3 {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
}

.tile p {
  margin-top: 9px;
  color: var(--mist);
  font-size: 0.98rem;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 190px;
  gap: 10px;
  margin-top: 38px;
}

.mosaic figure {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--graphite);
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.mosaic figure:hover img {
  transform: scale(1.05);
}

.mosaic .wide {
  grid-column: span 3;
}

.mosaic .tall {
  grid-row: span 2;
}

.mosaic .large {
  grid-column: span 2;
  grid-row: span 2;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.video-tile {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(33, 31, 26, 0.9);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #050403;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-tile__body {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
}

.video-tile h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.video-tile span {
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.timeline {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.timeline__item {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  padding: 24px;
  background: rgba(20, 18, 15, 0.9);
}

.timeline__date {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.timeline h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.timeline p {
  margin-top: 9px;
  color: var(--mist);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: end;
}

.contact-links {
  display: grid;
  gap: 10px;
}

.contact-links a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  min-height: 56px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--paper);
  font-size: 1.3rem;
}

.contact-links a span {
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--mist);
  background: #070604;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--ivory);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.page-hero {
  padding: 96px 0 58px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.9), rgba(9, 8, 6, 0.54)),
    var(--page-image, none) center / cover;
}

.page-hero h1 {
  max-width: 880px;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 5.4rem;
  line-height: 0.88;
}

.page-hero p {
  max-width: 680px;
  margin-top: 22px;
  color: var(--mist);
  font-size: 1.22rem;
}

.list-columns {
  columns: 2 320px;
  column-gap: 42px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
}

.list-columns li {
  break-inside: avoid;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--mist);
}

.quote-band {
  padding: 44px 0;
  border-block: 1px solid var(--line);
  background: var(--teal-dark);
}

.quote-band p {
  max-width: 1020px;
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1.05;
}

.resume-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 241, 230, 0.06);
}

.resume-strip p {
  color: var(--mist);
}

@media (max-width: 960px) {
  body {
    font-size: 18px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 16px;
  }

  .nav__links {
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: 4.7rem;
  }

  .hero__meta,
  .stats,
  .tile-grid,
  .video-grid,
  .contact-panel,
  .split,
  .split--wide {
    grid-template-columns: 1fr;
  }

  .portrait-stack img,
  .feature-image {
    min-height: 0;
    height: auto;
  }

  .mosaic {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
}

@media (max-width: 640px) {
  :root {
    --pad: 18px;
  }

  .section {
    padding: 66px 0;
  }

  .hero {
    min-height: 88vh;
  }

  .hero__content {
    padding-top: 86px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 3.45rem;
  }

  .section-title {
    font-size: 2.55rem;
  }

  .quote-band p {
    font-size: 1.9rem;
  }

  .mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .mosaic .wide,
  .mosaic .large {
    grid-column: span 2;
  }

  .mosaic .tall {
    grid-row: span 1;
  }

  .timeline__item,
  .resume-strip,
  .video-tile__body,
  .contact-links a {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .portrait-stack {
    grid-template-columns: 1fr;
  }
}
