:root {
  --ink: #141416;
  --muted: #67686f;
  --paper: #f7f1e8;
  --paper-strong: #fffaf2;
  --white: #ffffff;
  --red: #b5121b;
  --red-dark: #8f0e16;
  --gold: #d5aa4f;
  --blue: #1a7489;
  --navy: #25374f;
  --line: rgba(20, 20, 22, 0.12);
  --soft-shadow: 0 18px 60px rgba(20, 20, 22, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  margin: 0;
  overflow-x: clip;
}

body.portal-page {
  background: #f4efe6;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  background: var(--ink);
  color: var(--white);
  left: 14px;
  padding: 10px 12px;
  position: absolute;
  top: -60px;
  z-index: 100;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(20px);
  background: rgba(247, 241, 232, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  min-height: 76px;
  padding: 12px 34px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 40;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  min-width: 218px;
  text-decoration: none;
}

.brand img {
  display: none;
  height: 82px;
  object-fit: contain;
  width: auto;
}

.brand-text {
  display: grid;
  gap: 3px;
}

.brand-text strong {
  color: var(--red);
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.brand-text small {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.menu-toggle {
  align-items: center;
  appearance: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(20, 20, 22, 0.08);
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 46px;
  justify-content: center;
  padding: 0;
  width: 46px;
}

.menu-toggle span {
  background: var(--ink);
  border-radius: 999px;
  display: block;
  height: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 20px;
}

.site-header.is-menu-open .menu-toggle span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  align-items: center;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  white-space: nowrap;
}

.nav a {
  border-radius: 999px;
  color: #202027;
  font-size: 14px;
  font-weight: 850;
  padding: 11px 13px;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus,
.nav a[aria-current="page"] {
  background: var(--white);
  color: var(--red);
}

.nav a.nav-ticket {
  background: var(--red);
  color: var(--white);
  margin-left: 8px;
}

.nav a.nav-ticket:hover,
.nav a.nav-ticket:focus,
.nav a.nav-ticket[aria-current="page"] {
  background: var(--red-dark);
  color: var(--white);
}

.hero,
.page-hero {
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.hero {
  min-height: 84vh;
  padding: 160px 34px 46px;
}

.page-hero {
  min-height: 430px;
  padding: 150px 34px 62px;
}

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

.hero-image,
.page-hero-image {
  object-fit: cover;
  z-index: -3;
}

.hero-brand-mark {
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.34));
  height: auto;
  margin: 0 0 24px;
  width: min(330px, 38vw);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 10, 12, 0.9) 0%, rgba(11, 10, 12, 0.54) 48%, rgba(11, 10, 12, 0.14) 100%),
    linear-gradient(180deg, rgba(11, 10, 12, 0.2) 0%, rgba(11, 10, 12, 0.86) 100%);
  z-index: -2;
}

.hero-inner,
.page-hero-inner,
.shell {
  margin: 0 auto;
  max-width: 1220px;
}

.hero-inner {
  margin-left: 0;
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  margin: 0 0 13px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1,
.page-hero h1 {
  font-size: 72px;
  line-height: 0.98;
  margin-bottom: 22px;
  max-width: 800px;
}

.page-hero h1 {
  font-size: 58px;
}

.hero-copy,
.page-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.55;
  margin-bottom: 0;
  max-width: 690px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 950;
  justify-content: center;
  min-height: 52px;
  min-width: 154px;
  padding: 0 24px;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.button.light {
  background: var(--white);
  color: var(--ink);
}

.button.outline {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.compact-button {
  min-height: 42px;
  min-width: auto;
  padding-inline: 18px;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.hero-panel {
  background: rgba(247, 241, 232, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  bottom: 34px;
  box-shadow: var(--soft-shadow);
  color: var(--ink);
  display: block;
  max-width: 360px;
  padding: 22px;
  position: absolute;
  right: 34px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
  z-index: 2;
}

.hero-panel:hover,
.hero-panel:focus {
  box-shadow: 0 22px 70px rgba(20, 20, 22, 0.2);
  transform: translateY(-2px);
}

.hero-panel span {
  color: var(--red);
  display: block;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  font-size: 27px;
  line-height: 1.1;
  margin-top: 8px;
}

.hero-panel p {
  color: var(--muted);
  line-height: 1.45;
  margin: 10px 0 0;
}

.hero-panel em {
  color: var(--red);
  display: inline-block;
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
  margin-top: 16px;
}

.notice-band {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  padding: 18px 34px;
}

.notice-band p {
  line-height: 1.45;
  margin: 0;
}

.notice-band a {
  border-bottom: 2px solid var(--gold);
  color: var(--white);
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.section {
  padding: 82px 34px;
}

.section.compact {
  padding-top: 54px;
}

.section-heading {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin: 0 auto 34px;
  max-width: 1220px;
}

.section-heading > p,
.portal-head div > p:not(.eyebrow),
.footer-intro div > p:not(.eyebrow) {
  display: none;
}

.section-heading h2,
.split-copy h2,
.resource-copy h2 {
  font-size: 44px;
  line-height: 1.05;
  margin-bottom: 0;
}

.lead,
.muted {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
  margin-bottom: 0;
}

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

.quick-grid a {
  background: var(--paper-strong);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 142px;
  padding: 26px 28px;
  text-decoration: none;
}

.quick-grid span,
.stat-label {
  color: var(--red);
  display: block;
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.quick-grid strong {
  display: block;
  font-size: 24px;
  line-height: 1.16;
  max-width: 230px;
}

.quick-grid a:hover,
.quick-grid a:focus {
  background: var(--white);
}

.feature-split,
.resources-section {
  align-items: stretch;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}

.feature-split {
  background: var(--navy);
  color: var(--white);
}

.feature-split img,
.resource-visual img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  width: 100%;
}

.split-copy,
.resource-copy {
  align-self: center;
  max-width: 680px;
  padding: 74px 34px 74px 70px;
}

.split-copy p,
.resource-copy p {
  color: rgba(255, 255, 255, 0.77);
  font-size: 17px;
  line-height: 1.65;
}

.split-copy p:last-child,
.resource-copy p:last-child {
  margin-bottom: 0;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill-row span,
.filter-button {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
  padding: 10px 13px;
}

.card-grid,
.event-preview-grid,
.people-grid,
.resource-card-grid,
.documents-grid {
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: 1220px;
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.event-preview-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.resource-card-grid,
.documents-grid {
  grid-template-columns: repeat(4, 1fr);
}

.info-card,
.event-card,
.person-card,
.resource-card,
.document-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.info-card,
.event-card,
.resource-card,
.document-card {
  padding: 24px;
}

.info-card h3,
.event-card h3,
.resource-card h3,
.document-card h3 {
  font-size: 24px;
  line-height: 1.13;
  margin: 0 0 10px;
}

.info-card p,
.event-card p,
.resource-card p,
.document-card p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.event-card {
  display: grid;
  min-height: 260px;
}

.event-card-link {
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.event-card-link:hover,
.event-card-link:focus {
  border-color: rgba(181, 18, 27, 0.28);
  box-shadow: 0 18px 42px rgba(20, 20, 22, 0.1);
  transform: translateY(-2px);
}

.event-card time {
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.event-card a,
.resource-card a,
.document-card a,
.text-link {
  color: var(--red);
  display: inline-block;
  font-weight: 950;
  margin-top: 18px;
  text-decoration: none;
}

.date-block {
  align-items: center;
  background: var(--ink);
  border-radius: 8px;
  color: var(--white);
  display: grid;
  height: 86px;
  justify-items: center;
  margin-bottom: 18px;
  width: 86px;
}

.date-block span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.date-block strong {
  font-size: 36px;
  line-height: 1;
}

.person-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.person-card h3 {
  font-size: 20px;
  line-height: 1.15;
  margin: 18px 18px 4px;
}

.person-card p {
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  margin: 0 18px 20px;
  text-transform: uppercase;
}

@media (hover: hover) and (pointer: fine) {
  .button,
  .brand,
  .nav a,
  .menu-toggle,
  .quick-grid a,
  .hero-panel,
  .calendar-panel,
  .agenda-panel,
  .portal-panel,
  .info-card,
  .event-card-link,
  .person-card,
  .resource-card,
  .document-card,
  .agenda-item,
  .event-detail-card,
  .event-featured-image,
  .event-content-image,
  .gallery-grid figure,
  .gallery-event-nav a,
  .gallery-event-group,
  .gallery-event-summary,
  .ticket-card,
  .order-card,
  .member-account-card,
  .digital-ticket,
  .success-panel,
  .news-card,
  .news-feature-card,
  .form-card,
  .status-card,
  .event-admin-list,
  .ticket-admin-section,
  .news-admin-section,
  .gallery-admin-section,
  .board-admin-section,
  .admin-event,
  .admin-gallery-item,
  .admin-board-item,
  .event-image-inserter,
  .footer-contact-form,
  .footer-logo,
  .footer-nav a,
  .designer-link,
  .form-actions button,
  .footer-form-actions button,
  .admin-event-actions button,
  .portal-button,
  .ticket-buy-row button,
  .icon-button,
  .agenda-toolbar button,
  .gallery-toolbar button,
  .month-cell.has-event,
  .text-link {
    transition:
      transform 190ms ease,
      box-shadow 190ms ease,
      border-color 190ms ease,
      background-color 190ms ease,
      color 190ms ease;
  }

  .field input,
  .field select,
  .field textarea,
  .footer-contact-form input,
  .footer-contact-form select,
  .footer-contact-form textarea {
    transition:
      border-color 190ms ease,
      box-shadow 190ms ease,
      background-color 190ms ease;
  }

  .brand img,
  .brand-text strong,
  .hero-image,
  .page-hero-image,
  .footer-logo img,
  .person-card img,
  .gallery-grid img,
  .ticket-card-media img,
  .news-card img,
  .news-feature-card img,
  .event-featured-image img,
  .event-content-image img,
  .admin-gallery-item img,
  .admin-board-item img,
  .feature-split > img,
  .resource-visual img {
    transition: transform 260ms ease, filter 260ms ease;
  }

  .brand:hover,
  .brand:focus,
  .menu-toggle:hover,
  .menu-toggle:focus,
  .button:hover,
  .button:focus,
  .form-actions button:hover,
  .form-actions button:focus,
  .footer-form-actions button:hover,
  .footer-form-actions button:focus,
  .admin-event-actions button:hover,
  .admin-event-actions button:focus,
  .portal-button:hover,
  .portal-button:focus,
  .ticket-buy-row button:not(:disabled):hover,
  .ticket-buy-row button:not(:disabled):focus,
  .icon-button:hover,
  .icon-button:focus,
  .agenda-toolbar button:hover,
  .agenda-toolbar button:focus,
  .gallery-toolbar button:hover,
  .gallery-toolbar button:focus,
  .gallery-event-nav a:hover,
  .gallery-event-nav a:focus,
  .footer-nav a:hover,
  .footer-nav a:focus,
  .designer-link:hover,
  .designer-link:focus {
    box-shadow: 0 12px 32px rgba(20, 20, 22, 0.14);
    transform: translateY(-2px);
  }

  .quick-grid a:hover,
  .hero-panel:hover,
  .calendar-panel:hover,
  .agenda-panel:hover,
  .portal-panel:hover,
  .info-card:hover,
  .person-card:hover,
  .resource-card:hover,
  .document-card:hover,
  .agenda-item:hover,
  .event-detail-card:hover,
  .event-featured-image:hover,
  .event-content-image:hover,
  .gallery-grid figure:hover,
  .gallery-event-group:hover,
  .ticket-card:hover,
  .order-card:hover,
  .member-account-card:hover,
  .digital-ticket:hover,
  .success-panel:hover,
  .news-card:hover,
  .news-feature-card:hover,
  .form-card:hover,
  .status-card:hover,
  .event-admin-list:hover,
  .ticket-admin-section:hover,
  .news-admin-section:hover,
  .gallery-admin-section:hover,
  .board-admin-section:hover,
  .admin-event:hover,
  .admin-gallery-item:hover,
  .admin-board-item:hover,
  .event-image-inserter:hover,
  .footer-contact-form:hover,
  .month-cell.has-event:hover {
    border-color: rgba(181, 18, 27, 0.28);
    box-shadow: 0 20px 48px rgba(20, 20, 22, 0.13);
    transform: translateY(-3px);
  }

  .field input:hover,
  .field select:hover,
  .field textarea:hover,
  .footer-contact-form input:hover,
  .footer-contact-form select:hover,
  .footer-contact-form textarea:hover {
    border-color: rgba(181, 18, 27, 0.32);
    box-shadow: 0 8px 24px rgba(20, 20, 22, 0.08);
  }

  .field input:focus,
  .field select:focus,
  .field textarea:focus,
  .footer-contact-form input:focus,
  .footer-contact-form select:focus,
  .footer-contact-form textarea:focus {
    border-color: rgba(181, 18, 27, 0.48);
    box-shadow: 0 0 0 4px rgba(181, 18, 27, 0.12);
    outline: none;
  }

  .brand:hover .brand-text strong,
  .brand:focus .brand-text strong {
    color: var(--red-dark);
  }

  .brand:hover img,
  .brand:focus img,
  .footer-logo:hover img,
  .footer-logo:focus img {
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.18));
    transform: scale(1.02);
  }

  .hero:hover .hero-image,
  .page-hero:hover .page-hero-image {
    filter: saturate(1.04);
    transform: scale(1.015);
  }

  .person-card:hover img,
  .gallery-grid figure:hover img,
  .ticket-card:hover .ticket-card-media img,
  .news-card:hover img,
  .news-feature-card:hover img,
  .event-featured-image:hover img,
  .event-content-image:hover img,
  .admin-gallery-item:hover img,
  .admin-board-item:hover img,
  .feature-split:hover > img,
  .resource-visual:hover img {
    filter: saturate(1.06);
    transform: scale(1.035);
  }

  .text-link:hover,
  .text-link:focus,
  .event-card a:hover,
  .event-card a:focus,
  .resource-card a:hover,
  .resource-card a:focus,
  .document-card a:hover,
  .document-card a:focus {
    color: var(--red-dark);
    transform: translateX(3px);
  }

  .gallery-event-summary:hover {
    background: rgba(181, 18, 27, 0.05);
  }
}

.calendar-shell {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1220px;
}

.calendar-panel,
.agenda-panel,
.portal-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(20, 20, 22, 0.07);
}

.calendar-panel,
.agenda-panel {
  padding: 22px;
}

.calendar-head,
.agenda-head,
.portal-head {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.calendar-head h2,
.agenda-head h2,
.portal-head h1 {
  font-size: 28px;
  margin: 0;
}

.icon-button {
  align-items: center;
  appearance: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 20px;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.weekday-row,
.month-grid {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(7, 1fr);
}

.weekday-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  padding: 0 0 8px;
  text-align: center;
  text-transform: uppercase;
}

.month-cell {
  aspect-ratio: 1 / 1;
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ink);
  display: grid;
  min-width: 0;
  padding: 7px;
}

.month-cell.is-muted {
  color: rgba(20, 20, 22, 0.32);
}

.month-cell.has-event {
  background: #fff5f2;
  border-color: rgba(181, 18, 27, 0.22);
}

.month-cell strong {
  font-size: 14px;
}

.event-dot {
  align-self: end;
  background: var(--red);
  border-radius: 999px;
  height: 7px;
  width: 7px;
}

.agenda-toolbar,
.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.agenda-toolbar button,
.gallery-toolbar button,
.portal-tab {
  appearance: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 950;
  min-height: 40px;
  padding: 0 15px;
}

.agenda-toolbar button.is-active,
.gallery-toolbar button.is-active,
.portal-tab.is-active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.agenda-list {
  display: grid;
  gap: 12px;
}

.agenda-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: 88px 1fr;
  padding: 16px;
}

.agenda-date {
  align-items: center;
  background: var(--ink);
  border-radius: 8px;
  color: var(--white);
  display: grid;
  height: 82px;
  justify-items: center;
  width: 82px;
}

.agenda-date span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.agenda-date strong {
  font-size: 32px;
  line-height: 1;
}

.agenda-item h3 {
  font-size: 22px;
  margin-bottom: 7px;
}

.agenda-meta {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  margin-bottom: 8px;
}

.agenda-item p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.agenda-item:target,
.event-detail-card:target {
  border-color: rgba(181, 18, 27, 0.42);
  box-shadow: 0 22px 54px rgba(20, 20, 22, 0.12);
}

.event-detail-section {
  padding-top: 0;
}

.event-detail-list {
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: 980px;
}

.event-detail-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 22px;
  grid-template-columns: 180px 1fr;
  padding: 24px;
  scroll-margin-top: 120px;
}

.event-detail-thumb {
  aspect-ratio: 1.25 / 1;
  border-radius: 8px;
  background: var(--paper-strong);
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.event-detail-card h3 {
  font-size: 28px;
  line-height: 1.12;
  margin-bottom: 10px;
}

.event-detail-card p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 10px;
}

.event-page-shell {
  padding-top: 46px;
}

.event-page-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) 340px;
  margin: 0 auto;
  max-width: 1220px;
}

.event-page-main,
.event-page-meta {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(20, 20, 22, 0.08);
}

.event-page-main {
  overflow: hidden;
}

.event-featured-image {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  margin: 0;
}

.event-featured-image img {
  aspect-ratio: 16 / 6;
  object-fit: cover;
  width: 100%;
}

.event-rich-content {
  color: var(--ink);
  display: grid;
  gap: 18px;
  font-size: 18px;
  line-height: 1.68;
  padding: clamp(24px, 5vw, 54px);
}

.event-rich-content p {
  line-height: inherit;
  margin: 0;
}

.event-rich-content a {
  color: var(--red);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.event-content-image {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 8px 0;
  overflow: hidden;
}

.event-content-image img {
  background: var(--white);
  max-height: 720px;
  object-fit: contain;
  width: 100%;
}

.event-content-image figcaption {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  padding: 12px 14px;
}

.event-page-meta {
  align-self: start;
  display: grid;
  gap: 18px;
  padding: 24px;
  position: sticky;
  top: 104px;
}

.event-page-meta dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.event-page-meta dt {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.event-page-meta dd {
  color: var(--ink);
  line-height: 1.45;
  margin: 4px 0 0;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.gallery-grid figure {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 34px rgba(20, 20, 22, 0.08);
  color: var(--ink);
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 1220px;
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid a {
  color: inherit;
  display: block;
  text-decoration: none;
}

.gallery-grid img {
  aspect-ratio: 4 / 3;
}

.gallery-grid figcaption {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  min-height: 48px;
  padding: 10px 12px;
}

.gallery-modern-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(181, 18, 27, 0.08), transparent 34%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-strong) 100%);
}

.gallery-event-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px auto 26px;
  max-width: 1220px;
}

.gallery-event-nav a {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
  padding: 10px 14px;
  text-decoration: none;
}

.gallery-event-nav a:hover,
.gallery-event-nav a:focus {
  background: var(--red);
  color: var(--white);
}

.gallery-event-stack {
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: 1220px;
}

.gallery-event-group {
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(20, 20, 22, 0.08);
  overflow: hidden;
}

.gallery-event-summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  list-style: none;
  padding: 18px 20px;
}

.gallery-event-summary::-webkit-details-marker {
  display: none;
}

.gallery-event-summary span {
  display: grid;
  gap: 4px;
}

.gallery-event-summary small {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.gallery-event-summary strong {
  color: var(--ink);
  font-size: 26px;
  line-height: 1.1;
}

.gallery-event-summary em {
  background: var(--ink);
  border-radius: 999px;
  color: var(--white);
  flex: 0 0 auto;
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
  padding: 9px 12px;
}

.gallery-event-group[open] .gallery-event-summary {
  border-bottom: 1px solid var(--line);
}

.gallery-event-group .gallery-grid {
  padding: 18px;
}

.gallery-modern-grid {
  grid-auto-flow: dense;
  grid-auto-rows: 170px;
}

.gallery-modern-grid .gallery-card {
  border: 1px solid rgba(20, 20, 22, 0.08);
  box-shadow: 0 18px 50px rgba(20, 20, 22, 0.12);
}

.gallery-modern-grid .gallery-card.is-wide {
  grid-column: span 2;
}

.gallery-modern-grid .gallery-card.is-tall {
  grid-row: span 2;
}

.gallery-modern-grid .gallery-card.is-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-modern-grid a,
.gallery-modern-grid img {
  height: 100%;
}

.gallery-modern-grid figcaption {
  background: linear-gradient(180deg, transparent 0%, rgba(20, 20, 22, 0.82) 100%);
  bottom: 0;
  color: var(--white);
  left: 0;
  min-height: 0;
  padding: 42px 14px 14px;
  position: absolute;
  right: 0;
}

.gallery-modern-grid figcaption span {
  display: block;
  font-size: 12px;
  font-weight: 950;
  opacity: 0.72;
  text-transform: uppercase;
}

.gallery-modern-grid figcaption strong {
  display: block;
  font-size: 18px;
  line-height: 1.12;
  margin-top: 4px;
}

.uploaded-gallery-section.hidden {
  display: none;
}

.gallery-lightbox {
  align-items: center;
  background: rgba(8, 8, 10, 0.9);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 28px;
  position: fixed;
  z-index: 100;
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox-dialog {
  display: grid;
  gap: 14px;
  max-height: 92vh;
  max-width: 1100px;
  position: relative;
  width: min(100%, 1100px);
}

.gallery-lightbox img {
  background: var(--ink);
  border-radius: 8px;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.36);
  max-height: 78vh;
  object-fit: contain;
  width: 100%;
}

.gallery-lightbox-caption {
  color: var(--white);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.35;
  margin: 0;
}

.gallery-lightbox-close {
  align-items: center;
  appearance: none;
  background: var(--white);
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 28px;
  font-weight: 500;
  height: 48px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: -12px;
  top: -18px;
  width: 48px;
}

.portal-shell {
  margin: 0 auto;
  max-width: 1120px;
  padding: 54px 24px 70px;
}

.portal-panel {
  overflow: hidden;
}

.portal-head {
  background: var(--ink);
  color: var(--white);
  margin: 0;
  padding: 24px;
}

.portal-head p {
  color: rgba(255, 255, 255, 0.72);
  margin: 8px 0 0;
}

.admin-list-head {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 0 0 16px;
}

.admin-list-head h2 {
  font-size: 26px;
  margin: 0;
}

.portal-body {
  display: grid;
  gap: 22px;
  padding: 24px;
}

.login-grid,
.editor-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 0.8fr 1.2fr;
}

.form-card,
.event-admin-list,
.ticket-admin-section,
.news-admin-section,
.gallery-admin-section,
.board-admin-section,
.status-card {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.ticket-admin-section,
.news-admin-section,
.gallery-admin-section,
.board-admin-section {
  display: grid;
  gap: 18px;
  grid-column: 1 / -1;
  grid-template-columns: 0.8fr 1.2fr;
}

.gallery-admin-list,
.board-admin-list {
  display: grid;
  gap: 10px;
}

.admin-gallery-item,
.admin-board-item {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 74px 1fr auto;
  padding: 10px;
}

.admin-gallery-item img,
.admin-board-item img {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
  width: 74px;
}

.admin-gallery-item h3,
.admin-board-item h3 {
  font-size: 17px;
  margin: 0 0 4px;
}

.admin-gallery-item p,
.admin-board-item p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  margin: 0;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.field label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.field input,
.field select,
.field textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}

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

.check-field {
  align-items: center;
  display: flex;
  gap: 10px;
  font-weight: 900;
  margin: 8px 0 0;
}

.check-field input {
  accent-color: var(--red);
  height: 18px;
  width: 18px;
}

.event-image-inserter {
  background: var(--white);
  border: 1px dashed rgba(181, 18, 27, 0.32);
  border-radius: 8px;
  margin: 16px 0;
  padding: 16px;
}

.event-image-inserter h3 {
  font-size: 18px;
  margin: 0 0 12px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.form-actions button,
.portal-button {
  appearance: none;
  background: var(--red);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  font-weight: 950;
  min-height: 46px;
  padding: 0 18px;
}

.form-actions .ghost,
.portal-button.ghost {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
}

.portal-message {
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
  margin: 0;
  min-height: 0;
  padding: 0;
}

.portal-message:not(:empty) {
  background: #fff4c8;
  border: 1px solid rgba(213, 170, 79, 0.55);
  padding: 12px;
}

.form-hero {
  min-height: 390px;
}

.form-page-shell {
  padding-top: 46px;
}

.public-form {
  margin: 0 auto;
  max-width: 980px;
}

.form-note,
.form-success {
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.45;
  margin: 0 0 18px;
  padding: 14px 16px;
}

.form-note {
  background: rgba(26, 116, 137, 0.1);
  border: 1px solid rgba(26, 116, 137, 0.22);
  color: var(--navy);
}

.form-success {
  display: none;
}

.form-success:not(:empty) {
  background: #fff4c8;
  border: 1px solid rgba(213, 170, 79, 0.55);
  color: var(--ink);
  display: block;
}

.ticket-account-section {
  padding: 52px 34px 28px;
}

.ticket-account-section .section-heading {
  margin-bottom: 18px;
  max-width: 820px;
}

.ticket-account-section .member-auth-grid {
  gap: 12px;
  margin: 0 auto;
  max-width: 820px;
}

.ticket-account-section .form-card {
  padding: 16px;
}

.ticket-account-section .form-card h2 {
  font-size: 22px;
  margin: 0 0 12px;
}

.ticket-account-section .field {
  gap: 5px;
  margin-bottom: 10px;
}

.ticket-account-section .field input {
  min-height: 40px;
  padding: 8px 10px;
}

.ticket-account-section .form-actions {
  margin-top: 10px;
}

.ticket-account-section .form-actions button {
  min-height: 40px;
  padding: 0 14px;
}

.member-auth-grid,
.ticket-grid,
.orders-grid,
.news-grid {
  display: grid;
  gap: 16px;
}

.news-grid {
  margin: 0 auto;
  max-width: 1220px;
  width: 100%;
}

.member-auth-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.member-account-card {
  align-items: center;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 20px;
}

.member-account-card span,
.digital-ticket span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.member-account-card strong {
  display: block;
  font-size: 24px;
}

.member-account-card p {
  color: var(--muted);
  margin: 4px 0 0;
}

.ticket-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 420px));
  justify-content: center;
  margin: 0 auto;
  max-width: 1220px;
  width: 100%;
}

.ticket-card,
.order-card,
.success-panel,
.news-card,
.news-feature-card {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(20, 20, 22, 0.08);
  overflow: hidden;
}

.ticket-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
}

.ticket-card-media {
  aspect-ratio: auto;
  min-height: 100%;
  position: relative;
}

.ticket-card-media img,
.news-feature-card img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.ticket-card-media span {
  background: rgba(20, 20, 22, 0.82);
  border-radius: 999px;
  bottom: 10px;
  color: var(--white);
  font-size: 10px;
  font-weight: 950;
  left: 10px;
  padding: 6px 8px;
  position: absolute;
}

.ticket-card-body,
.order-card,
.success-panel,
.news-card div,
.news-feature-card div {
  padding: 14px;
}

.ticket-card h3,
.order-card h3,
.news-card h3,
.news-feature-card h3 {
  font-size: 19px;
  line-height: 1.12;
  margin: 0 0 6px;
}

.ticket-card p,
.order-card p,
.news-card p,
.news-feature-card p {
  color: var(--muted);
  line-height: 1.36;
  margin: 0;
}

.ticket-card-body > p:not(.eyebrow) {
  display: -webkit-box;
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.ticket-facts {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 7px 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 10px 0;
  padding-top: 10px;
}

.ticket-facts div {
  min-width: 0;
}

.ticket-facts dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.ticket-facts dd {
  font-size: 12px;
  font-weight: 850;
  margin: 3px 0 0;
}

.ticket-buy-row {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: space-between;
  padding-top: 10px;
}

.ticket-buy-row strong {
  font-size: 18px;
}

.ticket-buy-row label {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.ticket-buy-row label span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.ticket-buy-row select {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 32px;
  padding: 0 8px;
}

.ticket-buy-row button {
  appearance: none;
  background: var(--red);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  font-weight: 950;
  min-height: 34px;
  padding: 0 12px;
}

.ticket-buy-row button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.orders-grid {
  grid-template-columns: 1fr;
}

.order-card-head {
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: -20px -20px 18px;
  padding: 20px;
}

.order-card-head > strong {
  color: var(--red);
  font-size: 22px;
}

.ticket-list {
  display: grid;
  gap: 12px;
}

.digital-ticket {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 110px 1fr;
  padding: 12px;
}

.digital-ticket-qr {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
}

.digital-ticket-qr svg {
  display: block;
  width: 100%;
}

.digital-ticket strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.success-panel {
  margin: 0 auto;
  max-width: 820px;
  padding: 26px;
}

.news-feature-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) 1fr;
}

.news-feature-card img {
  min-height: 420px;
}

.news-feature-card h3 {
  font-size: 42px;
}

.news-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.news-card img {
  aspect-ratio: 16 / 10;
  display: block;
  height: clamp(210px, 18vw, 260px);
  object-fit: cover;
  width: 100%;
}

.form-fields.two-column {
  display: grid;
  gap: 0 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-event {
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr auto;
  margin-bottom: 10px;
  padding: 14px;
}

.admin-event h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.admin-event p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

.admin-event-actions {
  display: flex;
  gap: 8px;
}

.admin-event-actions button {
  appearance: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 950;
  min-height: 36px;
  padding: 0 12px;
}

.admin-event-actions .danger {
  color: var(--red);
}

.hidden {
  display: none !important;
}

.footer {
  background:
    linear-gradient(135deg, rgba(181, 18, 27, 0.28), transparent 36%),
    linear-gradient(180deg, #151416 0%, #080809 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 58px 34px 24px;
}

.footer-shell {
  align-items: flex-start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(260px, 390px) minmax(340px, 1fr);
  margin: 0 auto;
  max-width: 1220px;
}

.footer-intro {
  display: grid;
  gap: 22px;
}

.footer-logo {
  display: inline-block;
  justify-self: start;
  margin-left: 0;
  text-align: left;
  width: min(360px, 100%);
}

.footer-logo img {
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.32));
  height: auto;
  object-fit: contain;
  object-position: left center;
  width: 100%;
}

.footer h2 {
  color: var(--white);
  font-size: 36px;
  line-height: 1.05;
  margin: 0 0 14px;
  max-width: 440px;
}

.footer p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  margin: 0;
  max-width: 460px;
}

.footer-contact-form {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
  padding: 24px;
}

.footer-form-head {
  align-items: end;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.footer-form-head span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-form-head strong {
  color: var(--white);
  font-size: 24px;
  line-height: 1.1;
}

.footer-form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.footer-contact-form label {
  display: grid;
  gap: 7px;
}

.footer-contact-form label span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-contact-form input,
.footer-contact-form select,
.footer-contact-form textarea {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--ink);
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}

.footer-contact-form textarea {
  resize: vertical;
}

.footer-message-field {
  grid-column: 1 / -1;
}

.footer-form-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.footer-form-actions button {
  appearance: none;
  background: var(--red);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  font-weight: 950;
  min-height: 48px;
  padding: 0 22px;
}

.footer-form-actions p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  max-width: 420px;
}

.footer-nav {
  align-content: start;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  grid-column: 1 / -1;
  justify-content: flex-start;
  margin-top: 4px;
}

.footer-nav a {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--white);
  font-size: 14px;
  font-weight: 950;
  padding: 11px 14px;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus {
  background: var(--red);
  border-color: var(--red);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 14px;
  justify-content: space-between;
  margin: 34px auto 0;
  max-width: 1220px;
  padding-top: 18px;
}

.legacy-site-bridge {
  background: #141414;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 16px;
  text-align: center;
}

.legacy-site-bridge a {
  align-items: center;
  background: var(--red);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  line-height: 1;
  min-height: 42px;
  padding: 0 22px;
  text-decoration: none;
  text-transform: uppercase;
}

.legacy-site-bridge a:hover,
.legacy-site-bridge a:focus {
  background: #8f0e16;
  color: var(--white);
  text-decoration: none;
}

.designer-link {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
  text-decoration: none;
}

.designer-link:hover,
.designer-link:focus {
  color: var(--white);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .nav {
    max-width: 100%;
    width: 100%;
  }

  .hero {
    padding-top: 190px;
  }

  .page-hero {
    padding-top: 190px;
  }

  .hero-panel {
    margin-top: 34px;
    max-width: none;
    position: relative;
    right: auto;
    bottom: auto;
  }

  .hero-brand-mark {
    width: 260px;
  }

  .quick-grid,
  .event-preview-grid,
  .calendar-shell,
  .card-grid,
  .resource-card-grid,
  .documents-grid,
  .feature-split,
  .resources-section,
  .login-grid,
  .editor-grid,
  .ticket-admin-section,
  .news-admin-section,
  .gallery-admin-section,
  .board-admin-section,
  .member-auth-grid,
  .ticket-grid,
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-feature-card {
    grid-template-columns: 1fr;
  }

  .people-grid,
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-heading {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    padding: 14px 18px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand img {
    display: none;
  }

  .brand-text {
    display: block;
  }

  .brand-text strong {
    font-size: 19px;
  }

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

  .nav {
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(20, 20, 22, 0.16);
    display: none;
    flex-direction: column;
    flex-wrap: nowrap;
    flex: 0 0 100%;
    gap: 2px;
    margin-top: 4px;
    max-height: calc(100vh - 108px);
    overflow: auto;
    padding: 8px;
    white-space: normal;
  }

  .site-header.is-menu-open .nav {
    display: flex;
  }

  .nav a {
    font-size: 13px;
    padding: 12px 14px;
  }

  .nav a.nav-ticket {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 128px 18px 42px;
  }

  .page-hero {
    min-height: 420px;
    padding: 136px 18px 48px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .hero-copy,
  .page-copy {
    font-size: 18px;
  }

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

  .hero .eyebrow {
    font-size: 12px;
    line-height: 1.25;
    max-width: 280px;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 24px;
    max-width: 250px;
  }

  .hero-actions .button {
    min-width: 0;
    width: 100%;
  }

  .hero-panel {
    margin-top: 24px;
    max-width: none;
    padding: 18px;
    width: 100%;
  }

  .hero-panel strong {
    font-size: 24px;
  }

  .hero-panel em {
    margin-top: 14px;
  }

  .notice-band,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .notice-band {
    padding: 18px;
  }

  .section {
    padding: 60px 18px;
  }

  .section-heading h2,
  .split-copy h2,
  .resource-copy h2 {
    font-size: 34px;
  }

  .quick-grid,
  .event-preview-grid,
  .calendar-shell,
  .card-grid,
  .people-grid,
  .resource-card-grid,
  .documents-grid,
  .feature-split,
  .resources-section,
  .gallery-grid,
  .login-grid,
  .editor-grid,
  .ticket-admin-section,
  .news-admin-section,
  .gallery-admin-section,
  .board-admin-section,
  .member-auth-grid,
  .ticket-grid,
  .news-grid,
  .news-feature-card {
    grid-template-columns: 1fr;
  }

  .news-feature-card img {
    min-height: 260px;
  }

  .news-feature-card h3 {
    font-size: 31px;
  }

  .member-account-card,
  .order-card-head {
    align-items: stretch;
    flex-direction: column;
  }

  .digital-ticket {
    grid-template-columns: 1fr;
  }

  .ticket-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ticket-facts div:nth-child(3) {
    grid-column: 1 / -1;
  }

  .ticket-card {
    grid-template-columns: 1fr;
  }

  .ticket-card-media {
    aspect-ratio: 20 / 7;
    min-height: auto;
  }

  .digital-ticket-qr {
    max-width: 160px;
  }

  .quick-grid a {
    min-height: 116px;
    padding: 22px 18px;
  }

  .feature-split img,
  .resource-visual img {
    min-height: 340px;
  }

  .split-copy,
  .resource-copy {
    padding: 54px 18px;
  }

  .agenda-item,
  .event-detail-card {
    grid-template-columns: 1fr;
  }

  .event-page-layout {
    grid-template-columns: 1fr;
  }

  .event-page-meta {
    position: static;
  }

  .gallery-modern-grid {
    grid-auto-rows: 260px;
  }

  .gallery-event-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .gallery-event-summary strong {
    font-size: 22px;
  }

  .gallery-modern-grid .gallery-card.is-wide,
  .gallery-modern-grid .gallery-card.is-featured {
    grid-column: auto;
  }

  .gallery-modern-grid .gallery-card.is-tall,
  .gallery-modern-grid .gallery-card.is-featured {
    grid-row: auto;
  }

  .portal-shell {
    padding: 124px 18px 54px;
  }

  .form-fields.two-column {
    grid-template-columns: 1fr;
  }

  .portal-body,
  .portal-head {
    padding: 18px;
  }

  .admin-list-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-event {
    grid-template-columns: 1fr;
  }

  .admin-gallery-item,
  .admin-board-item {
    grid-template-columns: 64px 1fr;
  }

  .admin-gallery-item .admin-event-actions,
  .admin-board-item .admin-event-actions {
    grid-column: 1 / -1;
  }

  .footer {
    padding: 28px 18px;
  }

  .footer-shell,
  .footer-form-grid {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    width: min(300px, 100%);
  }

  .footer h2 {
    font-size: 30px;
  }

  .footer-contact-form {
    padding: 18px;
  }

  .footer-nav,
  .footer-bottom {
    justify-content: flex-start;
  }
}
