:root {
  --bg: #141010;
  --surface: #1e1817;
  --surface-alt: #28201e;
  --text: #f4efe9;
  --text-muted: #b6a79c;
  --border: rgba(244,239,233,0.14);
  --accent: #cfa456;
  --accent-2: #8c6a4f;
  --secondary: #2d2422;
  --on-accent: #181312;
  --deep: #0c0908;
  --radius: 14px;
  --radius-btn: 2px;
  --font-heading: Candara, Optima, "Segoe UI", sans-serif;
  --font-body: "Helvetica Neue", Arial, sans-serif;
  --max: 1400px;
  --pad-y: 136px;
  --header-h: 108px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--text);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: -1.4px;
  line-height: 1.12;
  margin: 0 0 0.6em;
  color: var(--text);
}

h1 {
  font-size: clamp(46px, 8vw, 90px);
  line-height: 1.0;
}

h2 {
  font-size: clamp(30px, 5.2vw, 52px);
}

h3 {
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.8px;
}

p {
  margin: 0 0 1.15em;
}

p:last-child {
  margin-bottom: 0;
}

.wrap {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.kicker {
  margin: 0 0 18px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 400;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--on-accent);
  border: 0;
  border-radius: var(--radius-btn);
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
  line-height: 1.3;
}

.btn:hover {
  color: var(--on-accent);
  box-shadow: 0 16px 36px rgba(12, 9, 8, 0.55);
}

.btn:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible,
.nav-toggle:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--accent);
}

.site-header {
  background: transparent;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 40;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding: 28px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 400;
}

.brand img {
  width: 48px;
  height: 45px;
  object-fit: contain;
}

.brand:hover {
  color: var(--accent);
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-variant: small-caps;
  letter-spacing: 0.22em;
  font-size: 13px;
  font-family: var(--font-heading);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--text);
  position: absolute;
  left: 12px;
}

.nav-toggle span {
  top: 21px;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.independence {
  border-bottom: 1px solid var(--border);
  border-top: 0;
  padding: 10px 0 12px;
  background: var(--bg);
}

.independence p {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 16px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) 2fr;
  align-items: stretch;
  min-height: calc(100vh - 160px);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.hero-visual {
  grid-column: 2;
  grid-row: 1;
  min-height: 560px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.hero-panel {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  position: relative;
  z-index: 2;
  background: var(--surface);
  margin-right: -22%;
  margin-left: max(24px, calc((100% - var(--max)) / 2));
  padding: 64px 56px 68px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.hero-panel h1 {
  margin-bottom: 28px;
}

.hero-panel .lede {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 42ch;
  margin-left: 0;
  margin-right: auto;
}

.section {
  padding: var(--pad-y) 0;
  border-bottom: 1px solid var(--border);
}

.section-head {
  max-width: 46ch;
  margin: 0 0 72px 0;
}

.section-head h2 {
  margin-bottom: 18px;
}

.section-head p {
  color: var(--text-muted);
}

.cat-grid {
  display: grid;
  grid-template-columns: 1fr 0.28fr 1fr;
  gap: 0;
  align-items: start;
}

.cat-grid article:first-child {
  grid-column: 1;
}

.cat-grid article:last-child {
  grid-column: 3;
  margin-top: 96px;
}

.cat-card {
  position: relative;
  min-height: 720px;
  border-radius: var(--radius);
  overflow: hidden;
}

.cat-card:hover,
.venue-card:hover,
.quote-card:hover,
.note-card:hover {
  box-shadow: 0 18px 40px rgba(12, 9, 8, 0.45);
}

.cat-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.cat-card-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 50%;
  background: var(--surface);
  padding: 36px 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
}

.cat-card-panel h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin: 0;
}

.cat-card-panel p {
  color: var(--text-muted);
  margin: 0;
}

.cat-card-panel a {
  align-self: flex-start;
  margin-top: 8px;
}

.notes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.note-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 36px 40px;
  background: var(--surface);
  overflow: hidden;
  min-height: 280px;
}

.note-card .num {
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: clamp(64px, 8vw, 108px);
  font-weight: 300;
  letter-spacing: -3px;
  line-height: 1;
  color: var(--text);
  opacity: 0.08;
}

.note-card h3 {
  position: relative;
  margin-bottom: 12px;
}

.note-card p {
  position: relative;
  color: var(--text-muted);
}

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--border);
}

.step {
  position: relative;
  padding-top: 8px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.step h3 {
  margin-bottom: 12px;
}

.step p {
  color: var(--text-muted);
}

.regions {
  background: var(--deep);
  border-bottom: 1px solid var(--border);
  padding: var(--pad-y) 0;
}

.regions .framing {
  max-width: 52ch;
  color: var(--text-muted);
  margin: 0 auto 56px 0;
}

.region-names {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px 48px;
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(36px, 6vw, 72px);
  letter-spacing: 0.08em;
  line-height: 1.05;
  color: var(--text);
}

.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

.quote-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  background: transparent;
}

.quote-card blockquote {
  margin: 0 0 28px;
  padding: 0;
  font-size: 18px;
  color: var(--text);
}

.quote-card cite {
  display: block;
  font-style: normal;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.page-title {
  padding: 88px 0 72px;
  border-bottom: 1px solid var(--border);
  max-width: 46ch;
  margin-left: 0;
  margin-right: auto;
}

.page-title h1 {
  margin-bottom: 22px;
}

.page-title p {
  color: var(--text-muted);
  font-size: 18px;
}

.masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 40px;
  padding: var(--pad-y) 0;
}

.masonry article:nth-child(even) {
  margin-top: 72px;
}

.venue-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.venue-card .stack {
  display: flex;
  flex-direction: column;
}

.venue-card.is-flip .stack {
  flex-direction: column-reverse;
}

.venue-photo {
  position: relative;
}

.venue-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.venue-nameplate {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 22px;
  background: rgba(20, 16, 16, 0.72);
  color: var(--text);
}

.venue-nameplate h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 0;
  letter-spacing: -1px;
}

.venue-body {
  padding: 28px 28px 32px;
}

.venue-place {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.venue-body p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.venue-card .btn {
  align-self: flex-start;
  margin: 0 28px 32px;
}

.catalog-close {
  padding: 0 0 var(--pad-y);
  max-width: 62ch;
  margin-left: 0;
  margin-right: auto;
  color: var(--text-muted);
}

.elite-list {
  padding-top: 0;
}

.elite-band {
  border-bottom: 1px solid var(--border);
  padding: 88px 0;
}

.elite-band img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 48px;
}

.elite-copy {
  text-align: center;
  max-width: 58ch;
  margin: 0 auto;
}

.elite-copy h2 {
  margin-bottom: 10px;
}

.elite-copy .venue-place {
  margin-bottom: 18px;
}

.elite-copy p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.insights-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  padding: var(--pad-y) 0;
  align-items: start;
}

.insights-index {
  position: sticky;
  top: 32px;
}

.insights-index p {
  margin: 0 0 18px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-heading);
}

.insights-index ol {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}

.insights-index a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.45;
}

.insights-index a:hover {
  color: var(--accent);
}

.insights-prose section {
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--border);
}

.insights-prose section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.insights-prose p {
  color: var(--text-muted);
}

.story {
  max-width: 70ch;
  margin: 0 auto;
  padding: var(--pad-y) 0;
}

.story section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.story section:first-child {
  padding-top: 0;
}

.story section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.story p {
  color: var(--text-muted);
}

.contact-page {
  padding: var(--pad-y) 0;
}

.contact-intro {
  max-width: 58ch;
  margin: 0 auto 48px;
  text-align: center;
  color: var(--text-muted);
}

.contact-panel {
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
}

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-heading);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--secondary);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.agree-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 12px;
  align-items: start;
  margin: 8px 0 28px;
}

.agree-row input {
  margin-top: 5px;
}

.agree-row label {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}

.field-error {
  grid-column: 1 / -1;
  color: #e2b08a;
  font-size: 14px;
}

.form-status {
  color: #e2b08a;
  font-size: 14px;
  min-height: 1.4em;
  margin: 0 0 16px;
}

.contact-email {
  max-width: 640px;
  margin: 28px auto 0;
  text-align: center;
  color: var(--text-muted);
}

.confirm-panel {
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 56px 40px;
  text-align: center;
}

.confirm-panel h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.confirm-panel p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.legal-body {
  padding: var(--pad-y) 0;
  max-width: 70ch;
}

.legal-body h1 {
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 12px;
}

.legal-body h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  margin: 48px 0 16px;
}

.legal-body h3 {
  margin: 28px 0 10px;
}

.legal-body p,
.legal-body li {
  color: var(--text-muted);
}

.legal-body button[data-cookie-settings] {
  background: none;
  border: 0;
  padding: 0;
  color: var(--accent);
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.sitemap-page {
  padding: var(--pad-y) 0 160px;
}

.sitemap-page .framing {
  max-width: 62ch;
  color: var(--text-muted);
  margin: 0 auto 40px 0;
}

.sitemap-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 0;
  color: var(--text-muted);
}

.sitemap-row a {
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.sitemap-row a:hover {
  color: var(--accent);
}

.sitemap-row .dot {
  margin: 0 14px;
  color: var(--accent-2);
}

.site-footer {
  background: var(--surface);
  border-top: 2px solid var(--accent);
}

.footer-upper {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) 1.4fr;
  gap: 64px;
  padding: 72px 0 64px;
}

.footer-brand .brand {
  margin-bottom: 22px;
}

.footer-brand .blurb {
  color: var(--text-muted);
  max-width: 46ch;
  margin-bottom: 22px;
}

.footer-regions {
  color: var(--text);
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  font-size: 14px;
  margin: 0;
}

.footer-groups {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.footer-group h2 {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: lowercase;
  font-variant: small-caps;
  font-weight: 400;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.footer-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-group li {
  margin: 0 0 8px;
}

.footer-group a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
}

.footer-group a:hover {
  color: var(--accent);
}

.footer-lower {
  background: var(--deep);
  padding: 32px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-lower .wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-lower p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.footer-lower .notice {
  max-width: 78ch;
}

.cookie-line {
  font-size: 12px;
}

.cookie-line button {
  background: none;
  border: 0;
  padding: 0;
  color: var(--text-muted);
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.cookie-line button:hover {
  color: var(--accent);
}

.requisites {
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transition: opacity 240ms ease;
}

.reveal.is-in {
  opacity: 1;
}

.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 28px 0 calc(28px + env(safe-area-inset-bottom));
  box-shadow: none;
}

.consent-inner {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}

.consent-copy h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 10px;
}

.consent-copy p {
  color: var(--text-muted);
  font-size: 15px;
}

.consent-cats {
  display: grid;
  gap: 8px;
  margin: 16px 0 20px;
}

.consent-cats label {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--text-muted);
  font-size: 14px;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.is-hidden {
  display: none !important;
}

@media (max-width: 1024px) {
  .hero-panel {
    margin-left: 24px;
    padding: 48px 36px;
  }

  .cat-grid {
    grid-template-columns: 1fr 24px 1fr;
  }

  .cat-card {
    min-height: 620px;
  }

  .footer-upper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .elite-band img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 28px;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .site-nav a {
    display: block;
    padding: 12px 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-visual {
    grid-column: 1;
    grid-row: 1;
    min-height: 42vw;
    height: 48vw;
  }

  .hero-panel {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .insights-layout {
    display: block;
  }

  .insights-index {
    position: static;
    margin-bottom: 48px;
  }

  .insights-index ol {
    border-top: 0;
    list-style: disc;
    padding-left: 1.2em;
  }

  .insights-index a {
    border-bottom: 0;
    padding: 6px 0;
    display: inline;
  }

  .masonry {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .masonry article:nth-child(even) {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .wrap,
  .header-inner,
  .independence p,
  .footer-upper,
  .consent-inner {
    width: min(100% - 32px, var(--max));
  }

  .cat-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cat-grid article:last-child {
    margin-top: 0;
  }

  .cat-card {
    min-height: 520px;
  }

  .notes-grid,
  .steps,
  .quotes,
  .footer-groups {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }

  .region-names {
    flex-direction: column;
    gap: 12px;
  }

  .consent-inner {
    grid-template-columns: 1fr;
  }

  .contact-panel,
  .confirm-panel {
    padding: 36px 22px;
  }
}

@media (max-width: 560px) {
  .quotes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .header-inner {
    padding: 18px 0;
  }

  .hero-panel {
    padding: 36px 22px 40px;
  }

  .section,
  .regions,
  .legal-body,
  .story,
  .contact-page,
  .insights-layout,
  .masonry {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .note-card {
    padding: 36px 22px 28px;
    min-height: 0;
  }

  .venue-photo img,
  .elite-band img {
    aspect-ratio: 4 / 5;
  }

  .page-title {
    padding: 56px 0 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transition: none;
  }
}
