:root {
  --ink: #101a37;
  --ink-2: #1d2c54;
  --paper: #f5f0e7;
  --paper-2: #ebe3d6;
  --white: #fffdf8;
  --gold: #c78b3d;
  --gold-soft: #e6c38f;
  --coral: #b85e46;
  --text: #252525;
  --muted: #6f6a62;
  --line: rgba(16, 26, 55, .15);
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shell: min(1320px, calc(100vw - 56px));
  --radius-lg: 34px;
  --radius-md: 22px;
  --shadow: 0 30px 80px rgba(16, 26, 55, .12);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 0, rgba(199, 139, 61, .12), transparent 34rem),
    var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.dialog-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

::selection {
  background: var(--gold-soft);
  color: var(--ink);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-180%);
}

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

.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 240, 231, .92);
  backdrop-filter: blur(18px) saturate(130%);
}

.utility-bar {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: var(--ink);
  color: rgba(255, 255, 255, .82);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.utility-bar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-bar p { margin: 0; }
.utility-bar a { color: var(--gold-soft); text-decoration: none; }

.utility-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(199, 139, 61, .15);
}

.nav-bar {
  min-height: 132px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
}

.brand img {
  width: 116px;
  height: 106px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(16, 26, 55, .10));
}

.brand span {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity .2s ease, transform .2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] { color: #8e5d20; }

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.nav-cta { min-height: 44px; font-size: 12px; white-space: nowrap; }
.nav-cta:hover, .button:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(16, 26, 55, .18); }
.button--gold { background: var(--gold); color: var(--ink); }
.button--light { background: var(--white); color: var(--ink); }
.button--outline { border-color: currentColor; background: transparent; color: var(--ink); }
.button--small { min-height: 42px; padding-inline: 17px; font-size: 12px; }

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .45);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.menu-toggle i,
.menu-toggle i::before,
.menu-toggle i::after {
  display: block;
  width: 17px;
  height: 1.5px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle i { position: relative; }
.menu-toggle i::before, .menu-toggle i::after { content: ""; position: absolute; left: 0; }
.menu-toggle i::before { top: -5px; }
.menu-toggle i::after { top: 5px; }
.menu-toggle[aria-expanded="true"] i { background: transparent; }
.menu-toggle[aria-expanded="true"] i::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] i::after { top: 0; transform: rotate(-45deg); }

main { min-height: 65vh; }

.loading-state {
  min-height: 70vh;
  display: grid;
  place-content: center;
  justify-items: center;
  color: var(--ink);
}

.loading-state p {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 30px;
}

.loading-line {
  width: 160px;
  height: 2px;
  overflow: hidden;
  background: var(--paper-2);
}

.loading-line::after {
  content: "";
  display: block;
  width: 45%;
  height: 100%;
  background: var(--gold);
  animation: loading 1.1s ease-in-out infinite alternate;
}

@keyframes loading { to { transform: translateX(125%); } }

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.display-title,
.page-title,
.section-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: .98;
}

.display-title { max-width: 10ch; font-size: clamp(58px, 6.5vw, 98px); }
.page-title { max-width: 13ch; font-size: clamp(52px, 6vw, 82px); }
.section-title { max-width: 15ch; font-size: clamp(42px, 4.5vw, 64px); }

.lead {
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.65;
}

.home-hero {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.home-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 8vw, 116px) max(28px, calc((100vw - 1320px) / 2));
  padding-right: clamp(42px, 6vw, 90px);
}

.home-hero__copy::before {
  content: "";
  position: absolute;
  top: clamp(54px, 7vw, 94px);
  left: max(28px, calc((100vw - 1320px) / 2));
  width: 68px;
  height: 3px;
  background: var(--gold);
}

.home-hero .eyebrow { margin-top: 28px; color: var(--gold-soft); }
.home-hero .display-title { color: white; }

.hero-brand-mark { display: none; }

.hero-text {
  max-width: 52ch;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
}

.hero-quote {
  max-width: 34ch;
  margin: 22px 0 0;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.35;
}

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

.home-hero__media {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #172346;
}

.home-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 0, transparent 24%),
    linear-gradient(0deg, rgba(16, 26, 55, .42), transparent 45%);
}

.home-hero__media > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(1.03);
}

.hero-inset {
  position: absolute;
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(24px, 4vw, 54px);
  z-index: 2;
  width: min(34%, 250px);
  aspect-ratio: .82;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, .38);
  background: rgba(245, 240, 231, .15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .24);
  backdrop-filter: blur(8px);
}

.hero-inset img { width: 100%; height: 100%; object-fit: cover; }

.hero-caption {
  position: absolute;
  bottom: 30px;
  left: 34px;
  z-index: 2;
  max-width: 20ch;
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.next-band {
  position: relative;
  z-index: 3;
  margin-top: -34px;
}

.next-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 32px 38px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.date-tile {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 15px;
  padding-right: 28px;
  border-right: 1px solid var(--line);
  color: var(--ink);
}

.date-tile strong {
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 500;
  line-height: 1;
}

.date-tile span { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.next-card__content .eyebrow { margin-bottom: 7px; }
.next-card__content h2 { margin: 0; color: var(--ink); font-family: var(--serif); font-size: clamp(27px, 2.4vw, 38px); font-weight: 500; line-height: 1.12; }
.next-card__content p { margin: 8px 0 0; color: var(--muted); font-size: 13px; }

.section {
  padding-block: clamp(86px, 10vw, 145px);
}

.section--tight { padding-block: clamp(64px, 7vw, 96px); }
.section--ink { background: var(--ink); color: white; }
.section--paper-2 { background: var(--paper-2); }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.section-heading__copy { max-width: 64ch; }
.section-heading .lead { margin: 20px 0 0; }
.section-link { flex: 0 0 auto; color: var(--ink); font-size: 13px; font-weight: 700; text-decoration: none; }
.section-link:hover { color: var(--gold); }

.program-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}

.poster-card {
  position: sticky;
  top: 28px;
  overflow: hidden;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.poster-card button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.poster-card img { width: 100%; border-radius: 10px; }
.poster-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 4px 2px; color: rgba(255, 255, 255, .65); font-size: 11px; }
.poster-card__footer a { color: var(--gold-soft); font-weight: 700; text-decoration: none; }

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

.event-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition: padding .2s ease, color .2s ease;
}

.event-row:hover { padding-left: 10px; color: var(--gold); }
.event-row__date { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.event-row__body strong { display: block; color: var(--ink); font-family: var(--serif); font-size: 24px; font-weight: 500; line-height: 1.15; }
.event-row__body span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; }
.event-row__status { padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.event-row__status--next { border-color: rgba(199, 139, 61, .55); background: rgba(199, 139, 61, .11); color: #8c5b1e; }

.manifesto {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: end;
}

.manifesto .section-title { max-width: 17ch; color: white; }
.manifesto .lead { margin: 28px 0 0; color: rgba(255, 255, 255, .67); }

.manifesto-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .17);
  border-left: 1px solid rgba(255, 255, 255, .17);
}

.manifesto-point { min-height: 150px; padding: 24px; border-right: 1px solid rgba(255, 255, 255, .17); border-bottom: 1px solid rgba(255, 255, 255, .17); }
.manifesto-point strong { display: block; color: var(--gold-soft); font-family: var(--serif); font-size: 34px; font-weight: 500; }
.manifesto-point span { color: rgba(255, 255, 255, .58); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.story-card {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, .72);
  color: inherit;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.story-card:hover { transform: translateY(-6px); background: var(--white); box-shadow: 0 24px 55px rgba(16, 26, 55, .1); }
.story-card__date { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.story-card h3 { margin: auto 0 18px; color: var(--ink); font-family: var(--serif); font-size: 34px; font-weight: 500; line-height: 1.05; }
.story-card__speaker { margin: 0 0 18px; color: var(--ink); font-size: 13px; font-weight: 700; }
.story-card__excerpt { margin: 0; color: var(--muted); font-size: 13px; }
.story-card__more { margin-top: 25px; color: var(--ink); font-size: 12px; font-weight: 700; }

.photo-ribbon {
  display: grid;
  grid-template-columns: 1.25fr .75fr 1fr;
  gap: 10px;
  padding: 10px;
  background: var(--ink);
}

.photo-ribbon figure { position: relative; min-height: 440px; margin: 0; overflow: hidden; }
.photo-ribbon figure:nth-child(2) { min-height: 370px; align-self: center; }
.photo-ribbon img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82); transition: transform .6s ease, filter .6s ease; }
.photo-ribbon figure:hover img { transform: scale(1.035); filter: saturate(1); }

.home-closing {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: clamp(54px, 7vw, 90px);
  border-radius: var(--radius-lg);
  background: var(--coral);
  color: white;
}

.home-closing .section-title { max-width: 18ch; color: white; }
.home-closing p { max-width: 58ch; margin: 22px 0 0; color: rgba(255, 255, 255, .75); }

.page-hero {
  padding: clamp(84px, 10vw, 140px) 0 clamp(68px, 8vw, 108px);
  border-bottom: 1px solid var(--line);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: clamp(42px, 8vw, 120px);
  align-items: end;
}

.page-hero .lead { margin: 28px 0 0; }

.page-note {
  padding: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.page-note strong { display: block; color: var(--ink); font-family: var(--serif); font-size: 28px; font-weight: 500; }
.page-note span { color: var(--muted); font-size: 13px; }

.calendar-feature {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 36px;
  align-items: center;
  margin-bottom: 66px;
  padding: 38px;
  border-radius: var(--radius-md);
  background: var(--ink);
  color: white;
}

.calendar-feature__date { padding-right: 36px; border-right: 1px solid rgba(255, 255, 255, .18); }
.calendar-feature__date strong { display: block; color: var(--gold-soft); font-family: var(--serif); font-size: 74px; font-weight: 500; line-height: .85; }
.calendar-feature__date span { font-size: 12px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.calendar-feature h2 { margin: 0; font-family: var(--serif); font-size: clamp(30px, 3vw, 44px); font-weight: 500; line-height: 1.05; }
.calendar-feature p { margin: 10px 0 0; color: rgba(255, 255, 255, .65); font-size: 13px; }

.season-block + .season-block { margin-top: 80px; }
.season-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 25px; }
.season-heading h2 { margin: 0; color: var(--ink); font-family: var(--serif); font-size: 42px; font-weight: 500; }
.season-heading span { color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.archive-tools {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) repeat(3, minmax(150px, .55fr));
  gap: 12px;
  margin-bottom: 26px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, .7);
}

.field { display: grid; gap: 6px; }
.field label { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  background: var(--white);
  color: var(--ink);
}

.field textarea { min-height: 160px; padding-block: 13px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(199, 139, 61, .13); }

.result-count { margin: 0 0 24px; color: var(--muted); font-size: 12px; }

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.archive-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  color: inherit;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.archive-card:hover { transform: translateY(-5px); border-color: rgba(199, 139, 61, .55); box-shadow: 0 20px 45px rgba(16, 26, 55, .09); }
.archive-card__top { display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.archive-card h2 { margin: auto 0 18px; color: var(--ink); font-family: var(--serif); font-size: 30px; font-weight: 500; line-height: 1.08; }
.archive-card__speaker { margin: 0 0 16px; color: var(--ink); font-size: 12px; font-weight: 700; }
.archive-card__excerpt { margin: 0; color: var(--muted); font-size: 12px; }
.empty-state { grid-column: 1 / -1; padding: 70px 30px; border: 1px dashed var(--line); border-radius: var(--radius-md); text-align: center; }
.empty-state h2 { margin: 0; color: var(--ink); font-family: var(--serif); font-size: 38px; font-weight: 500; }

.detail-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 135px) 0 70px;
  background: var(--ink);
  color: white;
}

.detail-hero::after {
  content: "“";
  position: absolute;
  right: 4vw;
  bottom: -130px;
  color: rgba(255, 255, 255, .035);
  font-family: var(--serif);
  font-size: 520px;
  line-height: 1;
}

.detail-hero__inner { position: relative; z-index: 2; max-width: 1040px; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-bottom: 30px; color: var(--gold-soft); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.detail-hero h1 { max-width: 19ch; margin: 0; font-family: var(--serif); font-size: clamp(48px, 6vw, 82px); font-weight: 500; line-height: .98; letter-spacing: -.035em; }
.detail-speaker { margin: 30px 0 0; color: rgba(255, 255, 255, .68); font-size: 18px; }

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.detail-summary {
  margin-bottom: 45px;
  padding: 30px 34px;
  border-left: 3px solid var(--gold);
  background: rgba(230, 195, 143, .15);
}

.detail-summary .eyebrow { margin-bottom: 10px; }
.detail-summary p { margin: 0; color: var(--ink); font-family: var(--serif); font-size: 25px; line-height: 1.35; }

.report-content { color: #393733; }
.report-content p { margin: 0 0 22px; font-size: 16px; line-height: 1.85; }
.report-section { margin: 0 0 12px; border-top: 1px solid var(--line); }
.report-section summary { position: relative; padding: 22px 40px 22px 0; color: var(--ink); font-family: var(--serif); font-size: 27px; font-weight: 500; line-height: 1.2; cursor: pointer; list-style: none; }
.report-section summary::-webkit-details-marker { display: none; }
.report-section summary::after { content: "+"; position: absolute; right: 4px; top: 20px; color: var(--gold); font-family: var(--sans); font-size: 24px; font-weight: 400; }
.report-section[open] summary::after { content: "−"; }
.report-section__body { padding: 0 0 12px; }

.detail-aside { position: sticky; top: 30px; }
.info-card { padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.info-card + .info-card { margin-top: 14px; }
.info-card .eyebrow { margin-bottom: 10px; }
.info-card p { margin: 0 0 18px; color: var(--muted); font-size: 13px; }
.info-card strong { display: block; color: var(--ink); font-family: var(--serif); font-size: 25px; font-weight: 500; line-height: 1.2; }
.info-actions { display: grid; gap: 8px; }
.info-actions .button { width: 100%; }

.club-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.club-intro__image { position: relative; min-height: 590px; }
.club-intro__image img:first-child { width: 84%; height: 520px; object-fit: cover; border-radius: 2px; }
.club-intro__image img:last-child { position: absolute; right: 0; bottom: 0; width: 48%; aspect-ratio: .88; object-fit: cover; border: 9px solid var(--paper); box-shadow: var(--shadow); }
.club-intro__copy .lead { margin: 25px 0 0; }
.club-intro__copy p:not(.eyebrow):not(.lead) { color: var(--muted); }

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.principle { min-height: 280px; padding: 38px; border-right: 1px solid rgba(255, 255, 255, .18); border-bottom: 1px solid rgba(255, 255, 255, .18); }
.principle span { color: var(--gold-soft); font-family: var(--serif); font-size: 50px; }
.principle h3 { margin: 60px 0 12px; color: white; font-family: var(--serif); font-size: 34px; font-weight: 500; }
.principle p { margin: 0; color: rgba(255, 255, 255, .58); font-size: 13px; }

.principles--steps {
  grid-template-columns: repeat(4, 1fr);
  border-color: var(--line);
}
.principles--steps .principle { border-color: var(--line); background: var(--white); }
.principles--steps .principle span { color: var(--gold); }
.principles--steps .principle h3 { color: var(--ink); font-size: 29px; }
.principles--steps .principle p { color: var(--muted); }

.form-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.form-intro { position: sticky; top: 30px; }
.form-intro .lead { margin: 24px 0 0; }
.proposal-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 34px; border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow); }
.proposal-form .field--full { grid-column: 1 / -1; }
.proposal-form .button { justify-self: start; margin-top: 8px; }
.form-note { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: 11px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.contact-card { min-height: 330px; display: flex; flex-direction: column; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.contact-card--primary { grid-column: span 3; }
.contact-card--social { grid-column: span 2; }
.contact-card--accent { background: var(--coral); color: white; }
.contact-card .eyebrow { margin-bottom: auto; }
.contact-card h2 { margin: 70px 0 16px; color: var(--ink); font-family: var(--serif); font-size: 42px; font-weight: 500; line-height: 1; }
.contact-card--social h2 { font-size: 34px; }
.contact-card--accent h2 { color: white; }
.contact-card p { margin: 0 0 22px; color: var(--muted); }
.contact-card--accent p { color: rgba(255, 255, 255, .7); }
.contact-card a { align-self: flex-start; font-weight: 700; text-underline-offset: 4px; }

.site-footer {
  padding-top: 70px;
  background: #0a132c;
  color: rgba(255, 255, 255, .66);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr .7fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}

.footer-intro img { width: 120px; filter: brightness(0) invert(1); opacity: .92; }
.footer-intro p { max-width: 34ch; margin: 20px 0 0; }
.footer-label { margin: 0 0 17px; color: var(--gold-soft); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.site-footer a { display: block; width: fit-content; margin: 7px 0; color: rgba(255, 255, 255, .68); text-decoration: none; }
.site-footer a:hover { color: var(--gold-soft); }
.site-footer p { font-size: 13px; }

.footer-bottom {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom p { margin: 0; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.poster-dialog {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 34px;
  background: rgba(6, 12, 29, .92);
  backdrop-filter: blur(12px);
}

.poster-dialog[hidden] { display: none; }
.poster-dialog img { max-height: 90vh; box-shadow: 0 30px 90px rgba(0, 0, 0, .4); }
.poster-dialog__close { position: absolute; top: 20px; right: 20px; min-height: 44px; padding: 0 17px; border: 1px solid rgba(255, 255, 255, .35); border-radius: 999px; background: transparent; color: white; cursor: pointer; }

.route-enter { animation: route-enter .42s ease both; }
@keyframes route-enter { from { opacity: 0; transform: translateY(10px); } }

@media (max-width: 1120px) {
  :root { --shell: min(100% - 40px, 1040px); }
  .nav-bar { gap: 16px; }
  .main-nav a { padding-inline: 8px; font-size: 12px; }
  .main-nav a::after { right: 8px; left: 8px; }
  .nav-cta { display: none; }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-tools { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 760px); --radius-lg: 26px; }
  .utility-bar__inner { min-height: 40px; }
  .utility-bar__inner p { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
  .nav-bar { min-height: 106px; }
  .brand img { width: 88px; height: 81px; }
  .brand { gap: 11px; }
  .brand span { font-size: 18px; letter-spacing: .12em; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .main-nav {
    position: absolute;
    top: calc(100% - 1px);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .site-header.menu-visible .main-nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { min-height: 48px; padding: 0 12px; border-bottom: 1px solid var(--line); font-size: 14px; }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav a::after { display: none; }
  .home-hero { min-height: 0; grid-template-columns: 1fr; }
  .home-hero__copy { min-height: 590px; padding: 86px 32px 70px; }
  .home-hero__copy::before { top: 62px; left: 32px; }
  .hero-brand-mark {
    position: absolute;
    top: 70px;
    right: clamp(30px, 8vw, 72px);
    width: clamp(165px, 26vw, 215px);
    height: auto;
    display: block;
    opacity: .92;
    filter: grayscale(1) brightness(0) invert(1) drop-shadow(0 14px 28px rgba(0, 0, 0, .22));
  }
  .home-hero__media { min-height: 530px; }
  .home-hero__media::after { background: linear-gradient(0deg, rgba(16, 26, 55, .54), transparent 48%); }
  .next-band { margin-top: -22px; }
  .next-card { grid-template-columns: 130px minmax(0, 1fr); padding: 28px; }
  .next-card > .button { grid-column: 1 / -1; justify-self: stretch; }
  .program-grid, .manifesto, .page-hero__grid, .club-intro, .form-layout { grid-template-columns: 1fr; }
  .poster-card { position: static; max-width: 560px; margin-inline: auto; }
  .manifesto { align-items: start; }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .story-card { min-height: 390px; }
  .story-card:last-child { grid-column: 1 / -1; min-height: 340px; }
  .photo-ribbon { grid-template-columns: 1fr 1fr; }
  .photo-ribbon figure { min-height: 360px; }
  .photo-ribbon figure:last-child { grid-column: 1 / -1; }
  .home-closing { grid-template-columns: 1fr; padding: 54px 38px; }
  .home-closing .button { justify-self: start; }
  .calendar-feature { grid-template-columns: 160px 1fr; }
  .calendar-feature > .button { grid-column: 1 / -1; justify-self: stretch; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-aside, .form-intro { position: static; }
  .club-intro__copy { order: -1; }
  .principles { grid-template-columns: 1fr 1fr; }
  .principles--steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.3fr 1fr; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 28px); }
  .utility-bar__inner { justify-content: center; }
  .utility-bar__inner a { display: none; }
  .display-title { font-size: clamp(52px, 15vw, 70px); }
  .page-title { font-size: clamp(48px, 14vw, 66px); }
  .section-title { font-size: 43px; }
  .home-hero__copy { min-height: 550px; padding: 74px 24px 60px; }
  .home-hero__copy::before { top: 52px; left: 24px; }
  .hero-brand-mark { display: none; }
  .home-hero__media { min-height: 420px; }
  .hero-inset { width: 38%; right: 18px; bottom: 18px; padding: 4px; }
  .hero-caption { bottom: 20px; left: 20px; }
  .hero-actions { display: grid; }
  .next-card { grid-template-columns: 1fr; gap: 22px; padding: 25px; }
  .date-tile { padding: 0 0 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .date-tile strong { font-size: 52px; }
  .next-card > .button { grid-column: auto; }
  .section { padding-block: 78px; }
  .section-heading { align-items: start; flex-direction: column; margin-bottom: 35px; }
  .event-row { grid-template-columns: 68px minmax(0, 1fr); gap: 15px; padding: 20px 0; }
  .event-row__body strong { font-size: 22px; }
  .event-row__status { grid-column: 2; justify-self: start; }
  .manifesto-points { grid-template-columns: 1fr; }
  .manifesto-point { min-height: 120px; }
  .story-grid, .archive-grid, .contact-grid { grid-template-columns: 1fr; }
  .contact-card--primary, .contact-card--social { grid-column: auto; }
  .story-card, .story-card:last-child { grid-column: auto; min-height: 360px; }
  .photo-ribbon { grid-template-columns: 1fr; }
  .photo-ribbon figure, .photo-ribbon figure:nth-child(2), .photo-ribbon figure:last-child { grid-column: auto; min-height: 320px; }
  .home-closing { padding: 46px 25px; }
  .page-hero { padding-top: 72px; }
  .page-note { padding: 22px 0; }
  .calendar-feature { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
  .calendar-feature__date { padding: 0 0 22px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .18); }
  .calendar-feature > .button { grid-column: auto; }
  .archive-tools { grid-template-columns: 1fr; padding: 14px; }
  .archive-card { min-height: 340px; }
  .detail-hero { padding-top: 70px; }
  .detail-hero h1 { font-size: 48px; }
  .detail-summary { padding: 24px; }
  .detail-summary p { font-size: 22px; }
  .club-intro__image { min-height: 450px; }
  .club-intro__image img:first-child { height: 400px; }
  .principles { grid-template-columns: 1fr; }
  .principles--steps { grid-template-columns: 1fr; }
  .principle { min-height: 230px; padding: 30px; }
  .principle h3 { margin-top: 40px; }
  .proposal-form { grid-template-columns: 1fr; padding: 24px; }
  .proposal-form .field--full, .form-note { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 20px; }
  .poster-dialog { padding: 60px 14px 20px; }
}

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