:root {
  color-scheme: dark;
  --midnight: #08111f;
  --midnight-2: #101d2e;
  --charcoal: #1d1d1f;
  --paper: #fbf7ee;
  --paper-soft: #efe9dc;
  --gold: #d2aa62;
  --wine: #7d1f2d;
  --ink: #11151b;
  --muted: rgba(251, 247, 238, 0.72);
  --line: rgba(251, 247, 238, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--midnight);
  color: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
}

body.light {
  color-scheme: light;
  --midnight: #f8f2e7;
  --midnight-2: #fffaf1;
  --paper: #11151b;
  --paper-soft: #2b3440;
  --muted: rgba(17, 21, 27, 0.7);
  --line: rgba(17, 21, 27, 0.16);
  --shadow: 0 20px 60px rgba(20, 28, 40, 0.14);
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: 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(18px, 4vw, 56px);
  background: linear-gradient(to bottom, rgba(8, 17, 31, 0.82), rgba(8, 17, 31, 0));
  transition: background 180ms ease, border-color 180ms ease;
}

body.light .site-header {
  background: linear-gradient(to bottom, rgba(248, 242, 231, 0.88), rgba(248, 242, 231, 0));
}

.site-header.scrolled {
  background: rgba(8, 17, 31, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

body.light .site-header.scrolled {
  background: rgba(248, 242, 231, 0.86);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.92;
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0;
}

.brand strong {
  color: var(--gold);
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a {
  transition: color 160ms ease;
}

.nav a:hover {
  color: var(--paper);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 42px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.language-switcher button {
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.language-switcher button.active {
  background: var(--gold);
  color: #12100c;
}

.icon-button,
.menu-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
  cursor: pointer;
}

.menu-button {
  display: none;
  gap: 5px;
}

.menu-button span {
  width: 17px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 86% 58%;
  filter: saturate(0.98) brightness(0.84);
  transform: scale(1.08);
}

.hero-overlay {
  background:
    radial-gradient(circle at 82% 48%, rgba(210, 170, 98, 0.08), transparent 28%),
    linear-gradient(90deg, rgba(8, 17, 31, 0.98) 0%, rgba(8, 17, 31, 0.76) 40%, rgba(8, 17, 31, 0.08) 100%),
    linear-gradient(0deg, var(--midnight) 0%, rgba(8, 17, 31, 0) 28%);
}

body.light .hero-overlay {
  background:
    radial-gradient(circle at 82% 48%, rgba(210, 170, 98, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(248, 242, 231, 0.97) 0%, rgba(248, 242, 231, 0.74) 40%, rgba(248, 242, 231, 0.08) 100%),
    linear-gradient(0deg, var(--midnight) 0%, rgba(248, 242, 231, 0) 28%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(710px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 72px;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
blockquote {
  margin: 0;
  font-family: var(--serif);
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 720px;
  font-size: clamp(76px, 11vw, 160px);
  font-weight: 700;
}

h2 {
  font-size: clamp(40px, 5.5vw, 82px);
  font-weight: 650;
}

h3 {
  font-size: clamp(25px, 3vw, 36px);
}

.hero-kicker {
  max-width: 540px;
  margin: 20px 0 24px;
  color: var(--paper-soft);
  font-size: clamp(20px, 2.2vw, 30px);
}

.hero blockquote {
  max-width: 560px;
  margin: 0 0 36px;
  color: var(--muted);
  font-size: clamp(28px, 3.6vw, 52px);
  font-style: italic;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #12100c;
}

.button.secondary {
  background: rgba(251, 247, 238, 0.1);
  color: var(--paper);
}

.button.ghost {
  color: var(--paper);
}

.hero-meta {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 50px;
  z-index: 3;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 430px;
}

.hero-meta span,
.principles span,
.topic-grid span,
.world-map span {
  border: 1px solid var(--line);
  background: rgba(251, 247, 238, 0.08);
  color: var(--paper-soft);
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-credit {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 18px;
  z-index: 3;
  margin: 0;
  color: rgba(251, 247, 238, 0.58);
  font-size: 11px;
  font-weight: 700;
}

body.light .hero-credit {
  color: rgba(17, 21, 27, 0.62);
}

.hero-credit a {
  color: var(--gold);
}

.section {
  padding: clamp(72px, 11vw, 150px) clamp(18px, 5vw, 72px);
}

.intro-grid,
.split,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1fr);
  gap: clamp(34px, 7vw, 108px);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 22px);
}

.intro-copy p:first-child {
  margin-top: 0;
}

.roles-section {
  padding-top: 0;
}

.roles,
.event-list,
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.roles article,
.event-list article,
.media-grid article {
  min-height: 240px;
  padding: clamp(24px, 3vw, 40px);
  background: var(--midnight-2);
}

.roles span,
.media-grid span,
.timeline span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.roles p,
.event-list p,
.media-grid p,
.timeline p,
.section-head p,
.split p,
.contact-copy p,
.philosophy-panel p {
  color: var(--muted);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  margin-bottom: 44px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.timeline article {
  position: relative;
  padding: 34px 24px 0 0;
}

.timeline article::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(210, 170, 98, 0.12);
}

.philosophy {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  background: linear-gradient(135deg, rgba(125, 31, 45, 0.34), rgba(16, 29, 46, 0.8));
}

body.light .philosophy {
  background: linear-gradient(135deg, rgba(125, 31, 45, 0.14), rgba(255, 250, 241, 0.9));
}

.philosophy-panel {
  max-width: 900px;
}

.philosophy-panel p {
  max-width: 760px;
  font-size: clamp(18px, 1.7vw, 23px);
}

.principles,
.topic-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.quote-stack {
  display: grid;
  gap: 18px;
  align-content: center;
}

.quote-stack blockquote {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  color: var(--paper-soft);
  font-size: clamp(29px, 4vw, 54px);
  font-style: italic;
}

.world-map {
  position: relative;
  min-height: clamp(360px, 48vw, 600px);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 44%, rgba(210, 170, 98, 0.24), transparent 18%),
    radial-gradient(circle at 52% 35%, rgba(251, 247, 238, 0.15), transparent 18%),
    radial-gradient(circle at 77% 52%, rgba(125, 31, 45, 0.26), transparent 18%),
    linear-gradient(135deg, rgba(251, 247, 238, 0.08), rgba(251, 247, 238, 0.02));
}

.world-map::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(210, 170, 98, 0.22);
  border-radius: 50%;
  transform: skewX(-12deg);
}

.world-map span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
}

.marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.marquee span {
  padding: 18px 22px;
  border: 1px solid var(--line);
  background: var(--midnight-2);
  color: var(--paper-soft);
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 42px);
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--gold);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.calendar,
.media {
  background: var(--midnight-2);
}

.event-list article,
.media-grid article {
  background: var(--midnight);
}

.event-list time {
  color: var(--gold);
  font-weight: 800;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filters button {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filters button.active {
  background: var(--gold);
  color: #12100c;
}

.media-grid article.is-hidden {
  display: none;
}

.contact {
  background: linear-gradient(180deg, var(--midnight), #070a10);
}

body.light .contact {
  background: linear-gradient(180deg, var(--midnight), #fffaf1);
}

.contact-links {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: var(--gold);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  background: rgba(251, 247, 238, 0.06);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
  padding: 14px 15px;
  outline: none;
}

body.light .contact-form input,
body.light .contact-form select,
body.light .contact-form textarea {
  background: rgba(17, 21, 27, 0.04);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--gold);
  font-weight: 700;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer div {
  display: flex;
  gap: 18px;
}

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

  .header-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: min(270px, 70vw);
  }

  .language-switcher {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .language-switcher button {
    flex: 1;
    padding-left: 8px;
    padding-right: 8px;
  }

  .nav {
    position: fixed;
    inset: 116px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: rgba(8, 17, 31, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  body.light .nav {
    background: rgba(248, 242, 231, 0.96);
  }

  .nav.open {
    display: flex;
  }

  .menu-button {
    display: grid;
  }

  .hero {
    min-height: 96svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 17, 31, 0.97), rgba(8, 17, 31, 0.68)),
      linear-gradient(0deg, var(--midnight) 0%, rgba(8, 17, 31, 0) 35%);
  }

  .hero-meta {
    left: 18px;
    right: 18px;
    justify-content: flex-start;
  }

  .intro-grid,
  .split,
  .contact,
  .section-head,
  .philosophy {
    grid-template-columns: 1fr;
  }

  .roles,
  .event-list,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .timeline article {
    padding: 0 0 28px 28px;
  }

  .timeline article::before {
    top: 6px;
    left: -6px;
  }

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

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

  .brand {
    font-size: 22px;
  }

  .header-actions {
    max-width: 220px;
  }

  .language-switcher button {
    font-size: 10px;
    letter-spacing: 0;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding-top: 94px;
  }

  .hero-image {
    object-position: 36% 60%;
    transform: scale(1.06);
  }

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

  .button {
    width: 100%;
  }

  .hero-meta {
    display: none;
  }

  .hero-credit {
    left: 16px;
    right: 16px;
    bottom: 14px;
  }

  .section {
    padding: 64px 16px;
  }

  .world-map span {
    font-size: 10px;
    padding: 8px 9px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (min-width: 520px) and (max-width: 700px) {
  .hero-content {
    width: min(390px, 62vw);
  }

  h1 {
    font-size: 68px;
  }

  .hero-kicker {
    font-size: 20px;
  }

  .hero blockquote {
    font-size: 28px;
  }
}
