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

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

@font-face {
  font-family: "JetBrains Mono";
  src: url("/assets/fonts/jetbrains-mono/jetbrains-mono-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
}

:root {
  --navy: #07182d;
  --navy-soft: #102b4c;
  --blue: #184c78;
  --gold: #c79a45;
  --gold-light: #e2c783;
  --paper: #f5f0e7;
  --paper-soft: #fbf8f2;
  --mist: #e7edf2;
  --ink: #122034;
  --slate: #536276;
  --line: rgba(7, 24, 45, 0.15);
  --line-light: rgba(245, 240, 231, 0.22);
  --font-display: "Fraunces", Georgia, serif;
  --font-ui: "Inter Tight", Arial, sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --shadow: 0 22px 60px rgba(7, 24, 45, 0.13);
  --radius: 3px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 300;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--paper-soft);
  color: var(--navy);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 86px;
  color: var(--paper-soft);
  background: rgba(7, 24, 45, 0.97);
  border-bottom: 1px solid rgba(226, 199, 131, 0.3);
}

.header-inner {
  width: min(1380px, calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  min-width: 300px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.brand-role {
  color: rgba(245, 240, 231, 0.68);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.desktop-nav > ul {
  display: flex;
  align-items: stretch;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-group {
  position: relative;
}

.nav-trigger,
.nav-direct {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 0;
  color: rgba(245, 240, 231, 0.82);
  background: transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.nav-trigger::after {
  content: "+";
  color: var(--gold-light);
  font-size: 12px;
}

.nav-trigger:hover,
.nav-trigger:focus-visible,
.nav-direct:hover,
.nav-direct:focus-visible,
.nav-group.is-open > .nav-trigger {
  color: var(--paper-soft);
  background: rgba(245, 240, 231, 0.08);
}

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 250px;
  padding: 10px;
  background: var(--paper-soft);
  color: var(--navy);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
}

.nav-group.is-open .dropdown,
.nav-group:focus-within .dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 16px;
}

.dropdown a {
  display: block;
  padding: 11px 13px;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.35;
}

.dropdown a:last-child {
  border-bottom: 0;
}

.dropdown a:hover,
.dropdown a:focus-visible,
.dropdown a[aria-current="page"] {
  color: var(--blue);
  background: var(--mist);
}

.menu-toggle {
  display: none;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(226, 199, 131, 0.65);
  background: transparent;
  color: var(--paper-soft);
  text-transform: uppercase;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.13em;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: none;
  overflow-y: auto;
  color: var(--paper-soft);
  background: var(--navy);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu-inner {
  width: min(720px, 100%);
  min-height: 100%;
  margin-left: auto;
  padding: 28px clamp(22px, 7vw, 64px) 60px;
  background: var(--navy-soft);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-light);
}

.mobile-menu-title,
.eyebrow,
.kicker,
.meta,
.section-index {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.menu-close {
  padding: 8px 11px;
  border: 1px solid var(--line-light);
  background: transparent;
  color: var(--paper-soft);
  cursor: pointer;
}

.mobile-group {
  padding: 26px 0 8px;
  border-bottom: 1px solid var(--line-light);
}

.mobile-group-label {
  display: block;
  margin-bottom: 11px;
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mobile-group a {
  display: block;
  padding: 8px 0;
  color: var(--paper-soft);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: clamp(25px, 7vw, 38px);
  line-height: 1.2;
}

main {
  padding-top: 86px;
}

[data-page] {
  display: none;
}

[data-page="home"] {
  display: block;
}

.container {
  width: min(1220px, calc(100% - 64px));
  margin-inline: auto;
}

.container-wide {
  width: min(1380px, calc(100% - 64px));
  margin-inline: auto;
}

.section {
  padding: clamp(76px, 9vw, 132px) 0;
}

.section-compact {
  padding: clamp(56px, 6vw, 90px) 0;
}

.section-dark {
  color: var(--paper-soft);
  background: var(--navy);
}

.section-blue {
  color: var(--paper-soft);
  background: var(--navy-soft);
}

.section-light {
  background: var(--paper-soft);
}

.section-light .kicker {
  color: #705015;
}

.eyebrow,
.kicker,
.section-index {
  color: var(--gold);
}

.section-heading {
  max-width: 820px;
  margin: 14px 0 22px;
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.section-heading.small {
  font-size: clamp(32px, 4vw, 54px);
}

.lede {
  max-width: 760px;
  color: var(--slate);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.section-dark .lede,
.section-blue .lede {
  color: rgba(245, 240, 231, 0.72);
}

.hero {
  position: relative;
  min-height: calc(100svh - 86px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper-soft);
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 24, 45, 0.54);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1380px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(90px, 13vw, 170px) 0 clamp(72px, 9vw, 115px);
}

.hero-copy {
  max-width: 830px;
}

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

.hero h1 {
  max-width: 730px;
  margin: 18px 0 23px;
  font-family: var(--font-display);
  font-size: clamp(50px, 6.8vw, 94px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-tagline {
  margin: 0;
  color: rgba(245, 240, 231, 0.88);
  font-family: var(--font-display);
  font-size: clamp(21px, 2.4vw, 34px);
  font-style: italic;
  letter-spacing: -0.018em;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button-primary {
  color: var(--navy);
  background: var(--gold-light);
}

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

.button-ghost {
  color: var(--paper-soft);
  border-color: rgba(245, 240, 231, 0.48);
  background: rgba(7, 24, 45, 0.3);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--gold-light);
  background: var(--navy);
}

.button-dark {
  color: var(--paper-soft);
  background: var(--navy);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--blue);
}

.hero-social {
  position: absolute;
  z-index: 3;
  right: 32px;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.social-link {
  min-width: 40px;
  min-height: 40px;
  display: inline-grid;
  place-items: center;
  padding: 0 10px;
  color: var(--paper-soft);
  border: 1px solid rgba(245, 240, 231, 0.38);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--navy);
  border-color: var(--gold-light);
  background: var(--gold-light);
}

.quick-links {
  color: var(--paper-soft);
  background: var(--navy-soft);
  border-top: 1px solid var(--line-light);
}

.quick-links .container-wide {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.quick-link {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 22px;
  border-right: 1px solid var(--line-light);
  color: rgba(245, 240, 231, 0.8);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.quick-link:first-child {
  border-left: 1px solid var(--line-light);
}

.quick-link::after {
  content: "→";
  color: var(--gold-light);
  font-size: 15px;
}

.quick-link:hover,
.quick-link:focus-visible {
  color: var(--paper-soft);
  background: rgba(245, 240, 231, 0.08);
}

.intro-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.intro-statement {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(37px, 5vw, 67px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.intro-copy > p:first-child {
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--navy);
}

.section-topline {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 45px;
}

.section-topline .section-heading {
  margin-bottom: 0;
}

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

.feed-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--paper-soft);
  border: 1px solid var(--line);
  text-decoration: none;
  overflow: hidden;
}

.feed-card:hover,
.feed-card:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 16px 36px rgba(7, 24, 45, 0.11);
}

.feed-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--mist);
}

.feed-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feed-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.feed-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 23px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feed-card p {
  margin: 0 0 26px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.42;
}

.feed-card .meta {
  margin-top: auto;
  color: var(--slate);
}

.events-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(2, minmax(0, 0.8fr));
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
}

.event-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  background: var(--navy-soft);
  cursor: pointer;
}

.event-card:first-child {
  grid-row: 1 / 3;
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  transition: transform 320ms ease;
}

.event-card:hover img,
.event-card:focus-visible img {
  transform: scale(1.035);
}

.event-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 32px 20px 17px;
  color: var(--paper-soft);
  background: rgba(7, 24, 45, 0.82);
  font-size: 13px;
  line-height: 1.35;
}

.fact-grid,
.card-grid,
.board-grid,
.writing-grid,
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.fact-card,
.info-card,
.board-card,
.social-card {
  padding: 28px;
  background: var(--paper-soft);
  border-top: 3px solid var(--gold);
  box-shadow: 0 10px 28px rgba(7, 24, 45, 0.07);
}

.fact-number {
  margin-bottom: 12px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 43px;
  line-height: 1;
}

.fact-label,
.info-card p,
.board-card p {
  margin: 0;
  color: var(--slate);
}

.page-hero {
  color: var(--paper-soft);
  background: var(--navy);
  border-bottom: 1px solid rgba(226, 199, 131, 0.35);
}

.page-hero .container {
  padding-top: clamp(80px, 10vw, 145px);
  padding-bottom: clamp(70px, 9vw, 120px);
}

.page-hero h1 {
  max-width: 1000px;
  margin: 18px 0 25px;
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.page-hero p {
  max-width: 730px;
  margin: 0;
  color: rgba(245, 240, 231, 0.72);
  font-size: clamp(18px, 2vw, 23px);
}

.profile-portrait {
  position: sticky;
  top: 118px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--mist);
}

.profile-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.prose {
  max-width: 780px;
}

.prose > p:first-child {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 37px);
  line-height: 1.32;
  letter-spacing: -0.02em;
}

.prose p {
  color: var(--slate);
}

.quote-panel {
  margin: 46px 0;
  padding: 30px 34px;
  color: var(--paper-soft);
  background: var(--navy-soft);
  border-left: 4px solid var(--gold);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 31px);
  line-height: 1.4;
}

.timeline {
  max-width: 1000px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 35px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

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

.timeline-label {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-copy h2,
.info-card h2,
.board-card h2 {
  margin: 0 0 11px;
  font-family: var(--font-display);
  font-size: clamp(23px, 2.5vw, 32px);
  font-weight: 500;
  line-height: 1.25;
}

.timeline-copy p {
  margin: 0;
  color: var(--slate);
}

.board-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.board-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.board-card .section-index {
  margin-bottom: 35px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 38px;
}

.filter-button {
  padding: 9px 13px;
  color: var(--navy);
  border: 1px solid var(--line);
  background: transparent;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-button[aria-pressed="true"],
.filter-button:hover,
.filter-button:focus-visible {
  color: var(--paper-soft);
  border-color: var(--navy);
  background: var(--navy);
}

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

.gallery-item {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: var(--mist);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 48px 18px 16px;
  color: var(--paper-soft);
  background: rgba(7, 24, 45, 0.84);
  font-size: 13px;
  opacity: 0;
  transition: opacity 160ms ease;
}

.gallery-item:hover figcaption,
.gallery-item:focus-visible figcaption {
  opacity: 1;
}

.writing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.writing-card {
  display: flex;
  flex-direction: column;
  min-height: 440px;
  color: var(--ink);
  background: var(--paper-soft);
  border: 1px solid var(--line);
  text-decoration: none;
}

.writing-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.writing-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 23px;
}

.writing-card h2 {
  margin: 11px 0 14px;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.28;
}

.writing-card .meta {
  margin-top: auto;
  color: var(--slate);
}

.empty-state {
  padding: clamp(40px, 6vw, 80px);
  color: var(--paper-soft);
  background: var(--navy-soft);
  border-left: 4px solid var(--gold);
}

.empty-state h2 {
  max-width: 720px;
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.15;
}

.empty-state p {
  max-width: 720px;
  color: rgba(245, 240, 231, 0.7);
}

.talks-list,
.press-list {
  border-top: 1px solid var(--line);
}

.talk-card,
.press-item {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 110px;
  gap: 30px;
  align-items: start;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.talk-card img {
  width: 190px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.talk-card h2,
.press-item h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 31px);
  font-weight: 500;
  line-height: 1.3;
}

.talk-card p,
.press-item p {
  margin: 0;
  color: var(--slate);
}

.publication-placeholder {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(35px, 7vw, 90px);
  align-items: center;
}

.book-outline {
  min-height: 480px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(226, 199, 131, 0.5);
  background: var(--navy-soft);
}

.book-outline-inner {
  width: 66%;
  aspect-ratio: 2 / 3;
  display: grid;
  place-items: center;
  padding: 30px;
  color: var(--gold-light);
  border: 1px solid rgba(226, 199, 131, 0.55);
  text-align: center;
  font-family: var(--font-display);
  font-size: 28px;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding: 23px 0;
  border-top: 1px solid var(--line);
}

.contact-label {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-list a {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  text-decoration: none;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--blue);
}

.social-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.social-card {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--navy);
  text-decoration: none;
}

.social-card strong {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 500;
}

.social-card span {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  color: var(--paper-soft);
  background: #061426;
  border-top: 1px solid rgba(226, 199, 131, 0.28);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 60px;
  padding: 70px 0 55px;
}

.footer-title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 500;
}

.footer-copy {
  max-width: 420px;
  color: rgba(245, 240, 231, 0.58);
}

.footer-heading {
  display: block;
  margin-bottom: 17px;
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: rgba(245, 240, 231, 0.74);
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 22px 0;
  border-top: 1px solid var(--line-light);
  color: rgba(245, 240, 231, 0.5);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lightbox {
  position: fixed;
  z-index: 400;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background: rgba(6, 20, 38, 0.95);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-figure {
  max-width: min(1100px, 86vw);
  max-height: 86vh;
  margin: 0;
}

.lightbox img {
  max-height: 76vh;
  margin: 0 auto;
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 14px;
  color: rgba(245, 240, 231, 0.72);
  text-align: center;
  font-size: 14px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-light);
  color: var(--paper-soft);
  background: var(--navy);
  cursor: pointer;
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .header-inner {
    gap: 16px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 78px);
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
  }

  .quick-links .container-wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quick-link:nth-child(4),
  .quick-link:nth-child(5) {
    border-top: 1px solid var(--line-light);
  }

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

  .social-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 899px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 16px;
  }

  .site-header {
    height: 72px;
  }

  .header-inner,
  .container,
  .container-wide,
  .hero-content {
    width: min(100% - 40px, 1220px);
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 37px;
    height: 37px;
    font-size: 16px;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-role {
    display: none;
  }

  main {
    padding-top: 72px;
  }

  .hero {
    min-height: calc(100svh - 72px);
    align-items: flex-end;
  }

  .hero-media img {
    object-position: 67% center;
  }

  .hero-media::after {
    background: rgba(7, 24, 45, 0.61);
  }

  .hero-content {
    padding: 115px 0 66px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(42px, 11.5vw, 72px);
  }

  .hero-social {
    display: none;
  }

  .quick-links .container-wide {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .quick-link,
  .quick-link:first-child {
    min-height: 62px;
    border-left: 0;
    border-right: 1px solid var(--line-light);
    border-top: 1px solid var(--line-light);
  }

  .quick-link:nth-child(5) {
    grid-column: 1 / -1;
  }

  .intro-grid,
  .split-grid,
  .contact-grid,
  .publication-placeholder {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .profile-portrait {
    position: relative;
    top: auto;
    max-height: 620px;
  }

  .feed-grid,
  .fact-grid,
  .card-grid,
  .writing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .events-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 360px repeat(2, 210px);
  }

  .event-card:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

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

  .timeline-item,
  .talk-card,
  .press-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .talk-card img {
    width: 100%;
    max-width: 390px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .header-inner,
  .container,
  .container-wide,
  .hero-content {
    width: min(100% - 32px, 1220px);
  }

  .brand-copy {
    max-width: calc(100vw - 150px);
  }

  .brand-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-toggle {
    min-height: 38px;
    padding-inline: 11px;
  }

  .hero {
    min-height: 730px;
  }

  .hero-media img {
    object-position: 69% center;
  }

  .hero h1 {
    font-size: clamp(38px, 11.5vw, 52px);
    line-height: 0.98;
  }

  .hero-tagline {
    max-width: 330px;
    font-size: 19px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 270px;
  }

  .section-topline {
    align-items: start;
    flex-direction: column;
  }

  .feed-grid,
  .fact-grid,
  .card-grid,
  .board-grid,
  .writing-grid,
  .gallery-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .events-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .event-card,
  .event-card:first-child {
    min-width: 82vw;
    height: 320px;
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: start;
  }

  .timeline-item {
    padding: 25px 0;
  }

  .page-hero h1 {
    font-size: clamp(45px, 14vw, 70px);
  }

  .book-outline {
    min-height: 390px;
  }

  .contact-list a {
    overflow-wrap: anywhere;
  }

  .footer-main,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-main > div:first-child {
    grid-column: auto;
  }

  .lightbox {
    padding: 22px;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 15px;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
