:root {
  color-scheme: light;
  --ink: #171717;
  --charcoal: #22211f;
  --paper: #f6f1e8;
  --warm-white: #fffaf0;
  --gold: #b98a36;
  --red: #8f1f2d;
  --blue: #173a70;
  --green: #315342;
  --line: rgba(23, 23, 23, 0.16);
  --line-light: rgba(255, 250, 240, 0.22);
  --shadow: 0 22px 60px rgba(23, 23, 23, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 40px;
  color: var(--warm-white);
  background: rgba(18, 18, 18, 0.36);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 14px 36px rgba(23, 23, 23, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 3px;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: var(--warm-white);
  outline: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible {
  color: var(--warm-white);
  background: var(--red);
}

.menu-toggle {
  display: none;
  padding: 10px 14px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--warm-white);
  isolation: isolate;
}

.hero-bg,
.section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.82), rgba(8, 8, 8, 0.38), rgba(8, 8, 8, 0.82)),
    linear-gradient(180deg, rgba(8, 8, 8, 0.52), rgba(8, 8, 8, 0.14) 46%, rgba(8, 8, 8, 0.72));
}

.hero-content {
  width: min(980px, calc(100% - 48px));
  padding-top: 86px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-logo {
  width: 116px;
  height: 116px;
  margin: 0 auto 20px;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: 5.6rem;
  font-weight: 700;
  text-transform: uppercase;
  text-wrap: balance;
}

h2 {
  margin: 0;
  font-size: 3.4rem;
  font-weight: 700;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(255, 250, 240, 0.88);
  font-size: 1.24rem;
}

.hero-actions,
.section-heading-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 34px;
}

.primary-action,
.secondary-action,
.text-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.primary-action {
  color: var(--warm-white);
  background: var(--red);
  box-shadow: 0 16px 38px rgba(143, 31, 45, 0.28);
}

.secondary-action {
  color: var(--warm-white);
  border: 1px solid var(--line-light);
}

.compact {
  min-height: 42px;
  margin-top: 18px;
}

.quick-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--warm-white);
  border-bottom: 1px solid var(--line);
}

.quick-details div {
  min-height: 116px;
  padding: 24px 30px;
  border-right: 1px solid var(--line);
}

.quick-details div:last-child {
  border-right: 0;
}

.quick-details span,
.detail-grid span,
.people-list span,
.venue-note span {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-details strong,
.detail-grid strong,
.people-list strong,
.venue-note strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.25;
}

.section-inner {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

.intro-section,
.management-section,
.venue-section {
  padding: 90px 0;
}

.intro-grid,
.guest-grid,
.venue-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}

.intro-copy {
  font-size: 1.08rem;
  color: rgba(23, 23, 23, 0.78);
}

.guest-section {
  padding: 90px 0;
  color: var(--warm-white);
  background: var(--charcoal);
}

.portrait-panel {
  position: relative;
  width: 100%;
  max-width: 420px;
  justify-self: center;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.portrait-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.guest-copy .designation {
  margin: 8px 0 20px;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.guest-copy p:last-child {
  max-width: 620px;
  color: rgba(255, 250, 240, 0.82);
  font-size: 1.08rem;
}

.management-section {
  background: #eef2ef;
}

.management-section h2 {
  max-width: 820px;
}

.people-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.people-list article,
.detail-grid article,
.venue-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.72);
}

.people-list article {
  min-height: 130px;
  padding: 22px;
}

.details-section {
  padding: 90px 0;
  background: var(--warm-white);
}

.section-heading-row {
  justify-content: space-between;
  align-items: end;
  margin-bottom: 34px;
}

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

.text-link {
  color: var(--red);
  border: 1px solid rgba(143, 31, 45, 0.26);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.detail-grid article {
  min-height: 186px;
  padding: 24px;
}

.detail-grid p {
  margin: 12px 0 0;
  color: rgba(23, 23, 23, 0.66);
}

.council-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: var(--warm-white);
  isolation: isolate;
}

.council-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(23, 23, 23, 0.88), rgba(23, 23, 23, 0.64)),
    linear-gradient(180deg, rgba(23, 23, 23, 0.18), rgba(23, 23, 23, 0.72));
}

.council-copy {
  max-width: 760px;
  margin-left: max(24px, calc((100% - 1100px) / 2));
}

.council-copy p {
  max-width: 680px;
  color: rgba(255, 250, 240, 0.82);
  font-size: 1.12rem;
}

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

.venue-grid {
  align-items: stretch;
}

.venue-grid p {
  color: rgba(23, 23, 23, 0.74);
  font-size: 1.08rem;
}

.venue-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(23, 58, 112, 0.1), rgba(143, 31, 45, 0.08)),
    var(--warm-white);
}

.venue-note strong {
  font-size: 2rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 24px;
  color: var(--warm-white);
  background: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

.site-footer img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 4px;
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 250, 240, 0.72);
}

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

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    color: var(--ink);
    background: var(--warm-white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    border-radius: 6px;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .quick-details,
  .people-list,
  .detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-grid,
  .guest-grid,
  .venue-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 640px) {
  .brand span {
    max-width: 190px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    width: min(100% - 32px, 560px);
    padding-top: 78px;
  }

  .hero-logo {
    width: 92px;
    height: 92px;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-subtitle {
    font-size: 1.03rem;
  }

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

  .quick-details,
  .people-list,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .quick-details div {
    min-height: auto;
    padding: 20px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-details div:last-child {
    border-bottom: 0;
  }

  .section-inner {
    width: min(100% - 32px, 560px);
  }

  .intro-section,
  .guest-section,
  .management-section,
  .details-section,
  .venue-section {
    padding: 64px 0;
  }

  .council-section {
    padding: 78px 0;
  }

  .section-heading-row {
    align-items: flex-start;
  }

  .site-footer {
    justify-content: flex-start;
    align-items: flex-start;
  }
}
