@font-face {
  font-family: "Playfair";
  src: url("fonts/PlayfairDisplay-Variable.ttf") format("truetype");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair";
  src: url("fonts/PlayfairDisplay-Italic-Variable.ttf") format("truetype");
  font-weight: 400 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Variable.ttf") format("truetype");
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Cinzel";
  src: url("fonts/Cinzel-Variable.ttf") format("truetype");
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant";
  src: url("fonts/CormorantGaramond-Italic-Variable.ttf") format("truetype");
  font-weight: 400 600;
  font-style: italic;
  font-display: swap;
}

:root {
  --gold: #c6a45a;
  --gold-light: #d6ba7a;
  --cream: #f5f1ea;
  --cream-soft: #ece6dc;
  --charcoal: #11100f;
  --charcoal-soft: #1c1a18;
  --ink: #161412;
  --muted: #b0a89c;
  --nav-h: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--charcoal);
  color: var(--cream);
  font-family: "Montserrat", "Avenir Next", sans-serif;
  font-weight: 400;
  line-height: 1.45;
  overflow: hidden;
}

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

.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 50;
  background: transparent;
}

.progress i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  background: linear-gradient(to bottom, rgba(8, 8, 8, 0.72), transparent);
}

.nav-brand img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a,
.nav-index {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.nav-links a:hover,
.nav-links a.is-active,
.nav-index:hover {
  color: var(--gold-light);
}

#deck {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.slide {
  position: relative;
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  background-color: var(--charcoal);
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.veil {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.42);
  z-index: 0;
}

.veil-left {
  background: linear-gradient(90deg, rgba(10, 9, 8, 0.82) 0%, rgba(10, 9, 8, 0.45) 48%, rgba(10, 9, 8, 0.12) 100%);
}

.veil-center {
  background: rgba(10, 9, 8, 0.55);
}

.slide-body,
.split-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: calc(var(--nav-h) + 48px) 72px 100px;
}

.slide-body.align-center {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.kicker {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}

h1, h2 {
  font-family: "Playfair", Georgia, serif;
  font-weight: 500;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(56px, 7vw, 96px); }
h2 { font-size: clamp(40px, 4.6vw, 68px); margin-bottom: 22px; }

.lede {
  margin-top: 18px;
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
}

.deck {
  margin-top: 22px;
  font-size: 20px;
  max-width: 34em;
  color: var(--cream-soft);
}

.slide-body p + p,
.split-copy p + p {
  margin-top: 16px;
  font-size: 17px;
  color: var(--cream-soft);
}

.pillars-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 36px;
}

.pillars-line a {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid transparent;
}

.pillars-line a:hover { border-bottom-color: var(--gold); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-image: none;
}

.split-copy {
  background: var(--cream);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 32px) 72px 100px;
}

.split.dark .split-copy {
  background: var(--charcoal-soft);
  color: var(--cream);
}

.split-copy h2 { color: inherit; }

.split-copy p,
.split-copy dd {
  color: #4a4540;
}

.split.dark .split-copy p,
.split.dark .split-copy dd {
  color: var(--muted);
}

.split-photo {
  min-height: 100vh;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
}

dl { margin-top: 28px; display: grid; gap: 18px; }

dt {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.split.dark dt { color: var(--gold-light); }

dd { font-size: 16px; }

dl.inline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.cards {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.cards-5 { grid-template-columns: repeat(5, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }

.cards a,
.cards article {
  display: block;
  padding: 20px 18px 22px;
  background: rgba(17, 16, 15, 0.42);
  border: 1px solid rgba(198, 164, 90, 0.28);
  min-height: 160px;
}

.cards strong {
  display: block;
  font-family: "Playfair", Georgia, serif;
  font-style: italic;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px;
}

.cards span {
  display: block;
  font-size: 14px;
  color: var(--cream-soft);
}

.cards a:hover { border-color: var(--gold); }

.people-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.people-grid figure {
  background-image: var(--bg);
  background-size: cover;
  background-position: center 22%;
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.split.dark .text-link { color: var(--gold-light); }

.next {
  position: absolute;
  right: 36px;
  bottom: 32px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.split .next,
.split.dark .next { color: var(--gold); }
.split .next { mix-blend-mode: normal; }

.center .closing {
  margin-top: 36px;
  font-family: "Playfair", Georgia, serif;
  font-style: italic;
  font-size: 28px;
  color: var(--gold-light);
}

.quote {
  margin-top: 48px;
  font-family: "Cormorant", Georgia, serif;
  font-style: italic;
  font-size: 24px;
  color: var(--muted);
}

.index {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(12, 11, 10, 0.94);
  overflow: auto;
  padding: 110px 72px 72px;
}

.index-inner { max-width: 720px; }

.index h2 {
  margin-bottom: 32px;
}

.index-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.index-list a {
  display: flex;
  gap: 18px;
  align-items: baseline;
  font-size: 22px;
  font-family: "Playfair", Georgia, serif;
  font-style: italic;
  padding: 8px 0;
  border-bottom: 1px solid rgba(198, 164, 90, 0.18);
}

.index-list em {
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--gold);
  min-width: 32px;
}

.index-list a:hover { color: var(--gold-light); }

@media (max-width: 980px) {
  .nav { padding: 0 18px; }
  .nav-links { display: none; }
  .slide-body,
  .split-copy { padding: calc(var(--nav-h) + 28px) 24px 88px; }
  .split { grid-template-columns: 1fr; }
  .split-photo { min-height: 48vh; }
  .split-copy { min-height: auto; }
  .cards-5,
  .cards-4,
  dl.inline { grid-template-columns: 1fr; }
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  .index { padding: 96px 24px 40px; }
}
