:root {
  --bg: #090708;
  --bg-soft: rgba(14, 10, 13, 0.92);
  --panel: rgba(19, 15, 17, 0.84);
  --panel-strong: rgba(9, 7, 9, 0.94);
  --panel-soft: rgba(255, 255, 255, 0.035);
  --line: rgba(232, 184, 77, 0.22);
  --accent: #c78b2c;
  --accent-soft: #ffd86a;
  --accent-rose: #d94da8;
  --accent-sky: #28c8ff;
  --accent-violet: #7a57ff;
  --text: #f9f2e8;
  --muted: #d2c0a4;
  --muted-strong: #9e8764;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1120px, calc(100vw - 32px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(9, 8, 7, 0.2), rgba(9, 8, 7, 0.9)),
    url("../assets/site/background.jpg") center center / cover fixed no-repeat;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 216, 106, 0.16), transparent 28%),
    radial-gradient(circle at 50% 10%, rgba(217, 77, 168, 0.12), transparent 26%),
    radial-gradient(circle at 82% 6%, rgba(40, 200, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.15), rgba(5, 5, 5, 0.75));
  pointer-events: none;
}

body[data-nav-open],
body[data-modal-open] {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 36px 0 72px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  overflow: visible;
  backdrop-filter: blur(18px);
  background: linear-gradient(90deg, rgba(10, 9, 9, 0.92), rgba(41, 19, 35, 0.78) 50%, rgba(11, 30, 44, 0.76));
  border-bottom: 1px solid rgba(255, 216, 106, 0.08);
}

.site-header__inner {
  width: var(--container);
  margin: 0 auto;
  min-height: 10px;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 3;
  transform: translateY(34px);
}

.brand__logo {
  width: clamp(102px, 15vw, 156px);
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.44));
}

.brand__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand__kicker,
.eyebrow {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
  font-size: 0.85rem;
}

.brand__tagline {
  margin: 0;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  letter-spacing: 0.08em;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.brand__slogan {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle span:nth-child(2) {
  transform: translateY(0);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

body[data-nav-open] .nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

body[data-nav-open] .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body[data-nav-open] .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-nav__link {
  padding: 5px 14px;
  border-radius: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: var(--text);
  background: linear-gradient(135deg, rgba(217, 77, 168, 0.1), rgba(40, 200, 255, 0.08));
  transform: translateY(-1px);
}

.site-nav__link--active {
  color: #fff9f2;
  background: linear-gradient(135deg, var(--accent-rose), var(--accent-sky));
  box-shadow: 0 10px 24px rgba(40, 200, 255, 0.18);
}

.panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(22, 18, 19, 0.9), rgba(10, 9, 11, 0.95));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 216, 106, 0.42) 24%,
    rgba(217, 77, 168, 0.38) 54%,
    rgba(40, 200, 255, 0.34) 78%,
    transparent
  );
  pointer-events: none;
}

.hero-panel {
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  margin-bottom: 28px;
  align-items: center;
}

.hero-panel__content,
.hero-panel__media {
  min-width: 0;
}

.hero-panel__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.hero-panel__media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-heading > * {
  position: relative;
  z-index: 1;
}

.section-heading--row {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.section-heading--hero {
  gap: 16px;
  max-width: 560px;
}

.section-heading--page {
  margin-bottom: 22px;
  padding-bottom: 0;
}

.section-heading--page .section-title {
  font-size: clamp(2.4rem, 6vw, 4.35rem);
}

.section-heading--page + .story-layout,
.section-heading--page + .photo-grid,
.section-heading--page + .stage-map,
.section-heading--page + .download-collections {
  margin-top: 0;
}

.section-title {
  margin: 0;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  letter-spacing: 0.05em;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 0.96;
}

.section-title--hero {
  font-size: clamp(3.4rem, 10vw, 6.5rem);
  letter-spacing: 0.04em;
  line-height: 0.88;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 62ch;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  color: #15110d;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(214, 174, 99, 0.16);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(214, 174, 99, 0.22);
}

.button--ghost {
  background: linear-gradient(135deg, rgba(217, 77, 168, 0.08), rgba(40, 200, 255, 0.08));
  color: var(--text);
  border-color: rgba(40, 200, 255, 0.14);
  box-shadow: none;
}

.hero-banner {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(12, 10, 9, 0.12), rgba(12, 10, 9, 0.32)),
    rgba(0, 0, 0, 0.35);
  aspect-ratio: 16 / 7;
}

.hero-banner--standalone {
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.embed-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.embed-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.media-caption {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-panel {
  padding: 28px;
  margin-bottom: 28px;
}

.status-box {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.status-box[data-state="error"] {
  border-color: rgba(255, 124, 124, 0.32);
  color: #ffd5d5;
}

.status-box[data-state="empty"] {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}

.agenda-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.agenda-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 207, 114, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03));
}

.agenda-item__identity {
  min-width: 0;
}

.agenda-item__venue {
  margin: 0 0 6px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.agenda-item__location,
.agenda-item__notes {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.agenda-item__notes {
  margin-top: 8px;
  color: var(--accent-soft);
}

.agenda-item__meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.agenda-date {
  min-width: 80px;
  text-align: right;
}

.agenda-date strong {
  display: block;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 2.35rem;
  letter-spacing: 0.06em;
  line-height: 0.9;
}

.agenda-date span {
  display: block;
  margin-top: 4px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.18em;
  color: var(--accent-soft);
  text-transform: uppercase;
}

.section-grid {
  display: grid;
  gap: 28px;
}

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

.info-stack,
.link-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.info-row__label {
  color: var(--muted-strong);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-row__value {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.15;
}

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

.info-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(40, 200, 255, 0.16);
  background: linear-gradient(135deg, rgba(217, 77, 168, 0.08), rgba(40, 200, 255, 0.08));
  color: var(--text);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.18rem;
  letter-spacing: 0.05em;
  line-height: 1;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.info-action:hover,
.info-action:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 207, 114, 0.28);
  background: linear-gradient(135deg, rgba(217, 77, 168, 0.14), rgba(40, 200, 255, 0.14));
}

.social-link {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 207, 114, 0.16);
}

.social-link__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(217, 77, 168, 0.88), rgba(40, 200, 255, 0.9));
  color: #fff9f2;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 22px rgba(40, 200, 255, 0.12);
}

.social-link__label {
  color: var(--muted);
}

.app-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 22px;
}

.audio-card {
  margin-top: 22px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(214, 174, 99, 0.2);
  background: linear-gradient(135deg, rgba(214, 174, 99, 0.18), rgba(217, 77, 168, 0.1) 42%, rgba(16, 13, 15, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 207, 114, 0.08);
}

.audio-card audio {
  width: 100%;
  accent-color: var(--accent);
  color-scheme: dark;
}

.audio-card audio::-webkit-media-controls-panel {
  background: linear-gradient(135deg, rgba(214, 174, 99, 0.26), rgba(217, 77, 168, 0.14), rgba(11, 9, 10, 0.98));
}

.audio-card audio::-webkit-media-controls-current-time-display,
.audio-card audio::-webkit-media-controls-time-remaining-display {
  color: var(--text);
}

.story-panel {
  padding: 30px;
}

.story-hero {
  margin: 0 0 28px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
  aspect-ratio: 16 / 7;
}

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

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.75fr);
  gap: 26px;
  margin-top: 26px;
}

.story-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.story-facts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fact-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.fact-card__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-strong);
}

.fact-card__value {
  display: block;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.05em;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.photo-card {
  position: relative;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  aspect-ratio: 1 / 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.24));
  pointer-events: none;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo-card:hover,
.photo-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 207, 114, 0.18);
}

.photo-card:hover img,
.photo-card:focus-visible img {
  transform: scale(1.05);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(4, 4, 4, 0.85);
  backdrop-filter: blur(22px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__dialog {
  width: min(1100px, calc(100vw - 32px));
  display: grid;
  gap: 14px;
}

.lightbox__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.lightbox__caption {
  color: var(--muted);
}

.lightbox__actions {
  display: flex;
  gap: 8px;
}

.lightbox__button {
  min-width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.lightbox__frame {
  border-radius: 26px;
  overflow: hidden;
  background: #000;
  max-height: calc(100vh - 180px);
}

.lightbox__frame img {
  width: 100%;
  max-height: calc(100vh - 180px);
  object-fit: contain;
}

.download-collections {
  display: grid;
  gap: 20px;
  margin-top: 26px;
}

.download-card {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 24px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.download-card__cover {
  overflow: hidden;
  border-radius: 20px;
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

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

.download-card__content {
  min-width: 0;
}

.download-card__content h2 {
  margin: 6px 0 8px;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  letter-spacing: 0.06em;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.download-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.download-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.download-list__item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 207, 114, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.download-list__item span {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.04em;
  font-size: 1.08rem;
}

.download-list__item a {
  flex-shrink: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(217, 77, 168, 0.18), rgba(40, 200, 255, 0.16));
  color: #fff7ef;
  border: 1px solid rgba(40, 200, 255, 0.18);
}

.stage-map {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.stage-map__frame {
  display: block;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.stage-map__frame img {
  width: 100%;
  height: auto;
}

.stage-map__caption {
  color: var(--muted);
}

.stage-map__actions {
  margin-top: 2px;
}

.site-footer {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto 30px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  color: var(--muted-strong);
  font-size: 0.92rem;
  text-align: center;
}

.site-footer__inner p {
  margin: 0;
}

.no-js .site-nav {
  position: static;
  opacity: 1;
  visibility: visible;
}

.no-js .nav-toggle {
  display: none;
}

@media (max-width: 980px) {
  .hero-panel,
  .story-layout,
  .download-card,
  .section-grid--two {
    grid-template-columns: 1fr;
  }

  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand__copy {
    display: none;
  }

  .nav-toggle {
    position: relative;
    display: inline-flex;
    z-index: 6;
  }

  .site-nav {
    display: none;
    position: fixed;
    inset: 44px 16px auto;
    z-index: 5;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: rgba(8, 8, 8, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    transform: translateY(-8px);
  }

  body[data-nav-open] .site-nav {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  body[data-nav-open] .brand {
    pointer-events: none;
  }

  .site-nav__link {
    text-align: center;
  }

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

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

@media (max-width: 760px) {
  .page-shell {
    padding-top: 20px;
  }

  .site-header__inner {
    min-height: 10px;
    padding: 0;
  }

  .brand {
    transform: translateY(20px);
  }

  .brand__logo {
    width: clamp(84px, 22vw, 118px);
  }

  .hero-panel,
  .section-panel,
  .story-panel {
    padding: 20px;
  }

  .story-hero {
    margin-bottom: 20px;
  }

  .hero-banner--standalone {
    margin-bottom: 20px;
  }

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

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

  .info-actions {
    flex-direction: column;
  }

  .info-action {
    width: 100%;
  }

  .section-heading--row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .section-heading--page {
    margin-bottom: 18px;
    padding-bottom: 14px;
  }

  .agenda-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 16px;
  }

  .agenda-item__identity {
    order: 1;
  }

  .agenda-item__meta {
    width: auto;
    order: -1;
    justify-content: flex-start;
    align-items: flex-start;
    align-self: stretch;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .agenda-item__venue {
    margin-bottom: 4px;
    font-size: 1.22rem;
    line-height: 1.05;
  }

  .agenda-item__location,
  .agenda-item__notes {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .agenda-date {
    min-width: 0;
    min-height: 100%;
    padding: 10px 12px;
    border-radius: 0;
    border: 1px solid rgba(214, 174, 99, 0.2);
    background: linear-gradient(135deg, rgba(214, 174, 99, 0.14), rgba(214, 174, 99, 0.04));
    text-align: center;
  }

  .agenda-date strong {
    font-size: 2rem;
  }

  .agenda-date span {
    margin-top: 2px;
    letter-spacing: 0.14em;
  }

  .download-list__item {
    flex-direction: column;
    align-items: flex-start;
  }

  .download-card__cover {
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 20px, 1120px);
  }

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

  .section-title {
    font-size: 2rem;
  }

  .site-footer__inner {
    flex-direction: column;
  }
}
