:root {
  --blue-950: #071d3c;
  --blue-900: #0a2a56;
  --blue-800: #0f3f78;
  --blue-700: #145ca8;
  --blue-600: #1f77c8;
  --blue-100: #e8f3ff;
  --blue-050: #f4f9ff;
  --white: #ffffff;
  --ink: #102033;
  --muted: #607086;
  --line: #d8e4f2;
  --shadow: 0 18px 50px rgba(7, 29, 60, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.schedule {
  white-space: pre-line;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}

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

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

p {
  color: var(--muted);
  line-height: 1.7;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.topbar {
  background: var(--blue-950);
  color: var(--white);
  font-size: 0.875rem;
}

.topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar a {
  opacity: 0.88;
}

.topbar a:hover {
  opacity: 1;
}

.topbar__socials {
  display: flex;
  gap: 14px;
  margin-left: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand__mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: radial-gradient(circle at 35% 30%, var(--blue-600), var(--blue-900));
  font-weight: 800;
  overflow: hidden;
  border: 2px solid var(--blue-100);
}

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

.brand__text {
  display: grid;
}

.brand__text strong {
  font-size: 1rem;
  color: var(--blue-900);
}

.brand__text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--blue-900);
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a.is-active {
  background: var(--blue-100);
  color: var(--blue-700);
}

.main-nav a.nav-fest {
  color: #8a2f00;
}

.main-nav a.nav-fest:hover,
.main-nav a.nav-fest.is-active {
  background: #fff0df;
  color: #df5a00;
}

.nav-item {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 190px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
  z-index: 40;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.dropdown-menu a {
  display: block;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-900);
}

.hero {
  position: relative;
  min-height: clamp(540px, 78vh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--blue-950);
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 29, 60, 0.9) 0%, rgba(7, 29, 60, 0.74) 34%, rgba(7, 29, 60, 0.28) 72%),
    linear-gradient(0deg, rgba(7, 29, 60, 0.16), rgba(7, 29, 60, 0.16));
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: 64px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #cfe6ff;
}

.hero h1,
.page-hero h1 {
  max-width: 780px;
  margin: 0;
  color: inherit;
  font-size: clamp(2.45rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
}

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

.button--ghost {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.button--light {
  background: var(--white);
  color: var(--blue-900);
  white-space: nowrap;
}

.button--outline {
  border-color: var(--blue-700);
  color: var(--blue-800);
  background: var(--white);
}

.section {
  padding: 76px 0;
}

.section--white {
  background: var(--white);
}

.section--soft {
  background: var(--blue-050);
}

.section--blue {
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
  color: var(--white);
}

.section--blue p {
  color: rgba(255, 255, 255, 0.82);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.split h2,
.section-heading h2,
.content-layout h2,
.callout h2,
.empty-state h2,
.legal-placeholder h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-lead {
  margin: 0;
  font-size: 1.08rem;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 28px;
}

.section-heading--action {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.nucleus-card,
.info-panel,
.event-preview,
.stats-card,
.portrait-card,
.legal-placeholder {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-document {
  display: grid;
  grid-template-columns: minmax(240px, 330px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.legal-summary {
  position: sticky;
  top: 118px;
  padding: 28px;
  border: 1px solid rgba(20, 92, 168, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(20, 92, 168, 0.1), rgba(255, 255, 255, 0.96)),
    var(--white);
  box-shadow: var(--shadow);
}

.legal-summary h2 {
  margin: 0 0 16px;
  color: var(--blue-950);
  font-size: 1.75rem;
  line-height: 1.12;
}

.legal-summary p:last-child {
  margin-bottom: 0;
}

.legal-sections {
  display: grid;
  gap: 16px;
}

.legal-block {
  position: relative;
  padding: 24px 28px 24px 86px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(7, 29, 60, 0.07);
}

.legal-block span {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue-700);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.legal-block h2 {
  margin: 0 0 12px;
  color: var(--blue-950);
  font-size: 1.35rem;
  line-height: 1.18;
}

.legal-block p {
  margin: 0 0 10px;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--ink);
}

.legal-block--contact a {
  display: inline-flex;
  margin-top: 2px;
  color: var(--blue-700);
  font-weight: 900;
}

.history-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 84px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 29, 60, 0.98), rgba(20, 92, 168, 0.9)),
    var(--blue-950);
}

.history-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--white), var(--blue-600), var(--white));
  opacity: 0.62;
}

.history-hero__content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.history-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 1;
}

.history-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.history-down,
.history-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--blue-900);
  box-shadow: 0 14px 34px rgba(7, 29, 60, 0.16);
}

.history-down {
  width: 52px;
  height: 52px;
  margin-top: 24px;
  border-radius: 50%;
}

.history-down span,
.history-next strong {
  font-size: 1.45rem;
  line-height: 1;
}

.history-timeline {
  padding: 72px 0;
  background: var(--blue-050);
}

.history-panel {
  scroll-margin-top: 92px;
}

.history-panel + .history-panel {
  margin-top: 34px;
}

.history-panel__grid {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.history-panel--reverse .history-panel__media {
  order: 2;
}

.history-panel__media {
  min-height: 100%;
  background: var(--blue-100);
}

.history-panel__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.history-panel__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 52px);
}

.history-panel__copy > span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.history-panel__copy h2 {
  margin: 0 0 18px;
  color: var(--blue-950);
  font-size: clamp(1.75rem, 3.6vw, 3.35rem);
  line-height: 1.06;
}

.history-panel__copy p {
  margin: 0 0 14px;
  font-size: 1.04rem;
}

.history-next {
  align-self: flex-start;
  gap: 12px;
  min-height: 46px;
  margin-top: 18px;
  padding: 0 12px 0 18px;
  border: 1px solid var(--blue-700);
  border-radius: 999px;
  font-weight: 900;
}

.history-next small {
  color: var(--blue-900);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.history-next strong {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue-700);
  color: var(--white);
  font-size: 1.05rem;
}

.history-empty {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 210px;
  padding: 22px;
}

.feature-card span,
.nucleus-card__header span,
.event-preview span {
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-card h3,
.event-preview h3,
.nucleus-card h2 {
  margin: 14px 0 8px;
  color: var(--blue-950);
  font-size: 1.15rem;
}

.feature-card p,
.event-preview p {
  margin: 0;
}

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

.callout h2 {
  color: var(--white);
  max-width: 680px;
}

.callout p {
  max-width: 720px;
}

.history-home {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 29, 60, 0.98), rgba(20, 92, 168, 0.94)),
    var(--blue-900);
}

.history-home__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.history-home h2 {
  max-width: 700px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.9rem, 3.5vw, 3.4rem);
  line-height: 1.08;
}

.history-home p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
}

.page-hero {
  padding: 88px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 29, 60, 0.98), rgba(20, 92, 168, 0.9)),
    var(--blue-900);
}

.page-hero--compact {
  padding: 74px 0;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
}

.page-hero .eyebrow {
  color: #cfe6ff;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 48px;
  align-items: center;
}

.portrait-card,
.stats-card {
  min-height: 250px;
  display: grid;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  box-shadow: none;
}

.stats-card {
  padding: 26px;
  align-content: end;
}

.portrait-card {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
}

.portrait-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.portrait-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 72px 24px 24px;
  background: linear-gradient(180deg, rgba(7, 29, 60, 0), rgba(7, 29, 60, 0.88));
  display: grid;
  gap: 4px;
}

.portrait-card span,
.stats-card strong {
  font-weight: 700;
  color: #dbeeff;
}

.portrait-card strong,
.stats-card span {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.portrait-card small {
  color: rgba(255, 255, 255, 0.78);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
  align-items: start;
}

.text-block p:first-of-type {
  margin-top: 22px;
}

.text-block p {
  font-size: 1rem;
}

.info-panel {
  padding: 24px;
}

.info-panel h2 {
  font-size: 1.35rem;
}

.fact-list {
  display: grid;
  gap: 16px;
  margin: 22px 0 0;
}

.fact-list div,
.nucleus-card dl div {
  display: grid;
  gap: 4px;
}

.fact-list dt,
.nucleus-card dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.fact-list dd,
.nucleus-card dd {
  margin: 0;
  color: var(--blue-950);
  font-weight: 700;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-list span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue-900);
  font-weight: 800;
}

.gallery-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 42px;
  align-items: center;
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-strip h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.08;
}

.timeline {
  position: relative;
  display: grid;
  gap: 12px;
}

.timeline__item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.timeline__item span {
  color: var(--blue-700);
  font-weight: 800;
}

.timeline__item p {
  margin: 0;
  color: var(--ink);
}

.empty-state {
  max-width: 760px;
}

.event-preview {
  margin-top: 28px;
  padding: 24px;
}

.agenda-section .section-heading,
.agenda-finished .section-heading {
  margin-bottom: 28px;
}

.agenda-counter {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--blue-700);
  border-radius: 999px;
  color: var(--blue-800);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.agenda-counter--muted {
  border-color: var(--line);
  color: var(--muted);
}

.agenda-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.event-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.event-card__date {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
  color: var(--white);
}

.event-card__date span {
  color: var(--white);
  font-weight: 950;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.event-card__content {
  padding: 24px;
}

.event-card__content h2 {
  margin: 0 0 10px;
  color: var(--blue-950);
  font-size: 1.35rem;
  line-height: 1.18;
}

.event-card__content strong,
.finished-event__body strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-700);
  font-size: 0.92rem;
}

.event-card__content p {
  margin: 0;
}

.event-card__link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin-top: 18px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--blue-700);
  color: var(--white);
  font-weight: 900;
}

.agenda-empty {
  max-width: 820px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.finished-list {
  display: grid;
  gap: 14px;
}

.finished-event {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(216, 228, 242, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(7, 29, 60, 0.06);
}

.finished-event__mark {
  display: flex;
  align-items: center;
  justify-content: center;
}

.finished-event__mark span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-700);
  font-weight: 950;
}

.finished-event__body > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.finished-event__body h3 {
  margin: 8px 0 8px;
  color: var(--blue-950);
  font-size: 1.16rem;
}

.finished-event__body p {
  margin: 0;
}

.finished-event__body a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue-700);
  font-weight: 900;
}

.nuclei-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.nuclei-list {
  display: grid;
  gap: 18px;
}

.nucleus-card {
  padding: 24px;
}

.nucleus-card__header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.nucleus-card__header strong {
  min-width: 160px;
  color: var(--blue-800);
  text-align: right;
}

.nucleus-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 22px;
}

.map-panel {
  position: sticky;
  top: 100px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--blue-050);
}

.map-panel h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: 1.55rem;
}

.map-placeholder {
  height: 300px;
  margin: 22px 0;
  display: grid;
  place-items: center;
  border: 1px solid #bcd6f2;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(31, 119, 200, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 119, 200, 0.12) 1px, transparent 1px),
    var(--white);
  background-size: 28px 28px;
}

.map-placeholder span {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-800);
  color: var(--white);
  font-weight: 800;
  font-size: 1.5rem;
}

.legal-placeholder {
  max-width: 760px;
  padding: 28px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.news-grid--home {
  align-items: stretch;
}

.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.news-card__image {
  display: block;
  overflow: hidden;
  background: var(--blue-100);
}

.news-card__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 220ms ease;
}

.news-card:hover .news-card__image img {
  transform: scale(1.035);
}

.news-card__body {
  padding: 22px;
}

.news-card__body span,
.news-meta span {
  color: var(--blue-700);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.news-card__body h2,
.news-card__body h3 {
  margin: 10px 0 10px;
  color: var(--blue-950);
  font-size: 1.24rem;
  line-height: 1.18;
}

.news-card__body p {
  margin: 0;
}

.news-card__link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue-700);
  font-weight: 800;
}

.news-detail__hero {
  padding: 80px 0 68px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 29, 60, 0.98), rgba(20, 92, 168, 0.88)),
    var(--blue-900);
}

.news-detail__hero h1 {
  max-width: 900px;
  margin: 14px 0 0;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 1;
}

.news-detail__hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.news-detail__hero .eyebrow {
  color: #cfe6ff;
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.back-link:hover {
  color: var(--white);
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.news-meta span {
  color: #cfe6ff;
}

.news-detail__body {
  max-width: 900px;
}

.news-detail__image {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.news-content {
  margin-top: 34px;
}

.news-content p {
  color: var(--ink);
  font-size: 1.08rem;
}

.loading-card {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--muted);
  box-shadow: var(--shadow);
}

.news-grid > .empty-state,
.agenda-grid > .empty-state,
.finished-list > .empty-state,
.gallery-grid > .empty-state,
.history-timeline > .empty-state {
  grid-column: 1 / -1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gallery-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--blue-100);
}

.gallery-card__body {
  padding: 22px;
}

.gallery-card__body h2 {
  margin: 0 0 10px;
  color: var(--blue-950);
  font-size: 1.22rem;
  line-height: 1.18;
}

.gallery-card__body p {
  margin: 0;
}

[hidden] {
  display: none !important;
}

.people-section {
  background:
    linear-gradient(180deg, var(--white), var(--blue-050));
}

.people-list {
  display: grid;
  gap: 48px;
}

.person-row {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.person-row--reverse {
  grid-template-columns: minmax(0, 1fr) 260px;
}

.person-row--reverse .person-photo {
  order: 2;
}

.person-row--reverse .person-copy {
  order: 1;
}

.person-photo {
  width: min(260px, 100%);
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border: 8px solid var(--blue-100);
  border-radius: 50%;
  background: var(--blue-100);
  box-shadow: 0 20px 48px rgba(7, 29, 60, 0.16);
}

.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-copy h2 {
  margin: 0 0 14px;
  color: var(--blue-950);
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1.02;
}

.person-copy p {
  max-width: 720px;
}

.person-copy p:last-child {
  margin-bottom: 0;
}

.site-footer {
  background: var(--blue-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr 1fr;
  gap: 32px;
  padding: 56px 0;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer nav,
.site-footer section,
.social-list {
  display: grid;
  gap: 10px;
}

.site-footer a,
.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.fest-page {
  --fest-black: #070000;
  --fest-wine: #2b0700;
  --fest-red: #5c1200;
  --fest-orange: #ff6a00;
  --fest-gold: #ffb000;
  --fest-cream: #fff6eb;
  --fest-cyan: #00d5ff;
  background: var(--fest-black);
  color: var(--fest-cream);
  overflow: hidden;
}

.fest-page p {
  color: rgba(255, 246, 235, 0.76);
}

.fest-hero {
  position: relative;
  min-height: clamp(640px, 84vh, 880px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--fest-black);
}

.fest-hero__bg,
.fest-hero__heat,
.fest-story__media {
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}

.fest-hero__bg {
  position: absolute;
  inset: -8% 0 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.08);
  opacity: 0.72;
}

.fest-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 0, 0, 0.94), rgba(43, 7, 0, 0.72) 44%, rgba(7, 0, 0, 0.32)),
    linear-gradient(0deg, rgba(7, 0, 0, 0.72), rgba(7, 0, 0, 0.08) 48%, rgba(7, 0, 0, 0.68));
  z-index: 1;
}

.fest-hero__heat {
  position: absolute;
  width: min(74vw, 880px);
  aspect-ratio: 1;
  right: -10vw;
  top: 18%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 176, 0, 0.42), rgba(255, 106, 0, 0.22) 42%, rgba(92, 18, 0, 0) 70%);
  z-index: 1;
}

.fest-hero__content {
  position: relative;
  z-index: 2;
  padding: 82px 0;
}

.fest-kicker {
  margin: 0 0 14px;
  color: var(--fest-gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fest-hero h1 {
  max-width: 880px;
  margin: 0;
  color: var(--fest-orange);
  font-size: clamp(4rem, 13vw, 9.5rem);
  font-style: italic;
  font-weight: 900;
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow: 0 12px 38px rgba(7, 0, 0, 0.62);
}

.fest-hero p {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 246, 235, 0.86);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
}

.fest-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--fest-cream);
  color: #2a0a00;
  font-weight: 900;
}

.fest-intro {
  padding: 82px 0;
  background:
    linear-gradient(180deg, var(--fest-black), #120100),
    var(--fest-black);
}

.fest-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 46px;
  align-items: start;
}

.fest-intro h2,
.fest-story h2,
.fest-finale h2 {
  margin: 0;
  color: var(--fest-cream);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
}

.fest-intro p:last-child {
  margin: 0;
  font-size: 1.1rem;
}

.fest-stories {
  position: relative;
  padding: 34px 0 96px;
  background:
    radial-gradient(circle at 8% 24%, rgba(255, 106, 0, 0.18), transparent 32%),
    radial-gradient(circle at 88% 62%, rgba(0, 213, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #120100, #070000);
}

.fest-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 42px;
  align-items: center;
  padding: clamp(28px, 4vw, 48px) 0;
}

.fest-story--reverse {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
}

.fest-story--reverse .fest-story__media {
  order: 2;
}

.fest-story__media {
  overflow: hidden;
  border: 1px solid rgba(255, 176, 0, 0.24);
  border-radius: var(--radius);
  background: var(--fest-wine);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

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

.fest-story__copy {
  padding: 28px;
  border: 1px solid rgba(255, 246, 235, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 246, 235, 0.08), rgba(255, 246, 235, 0.03));
}

.fest-story__copy span {
  display: inline-flex;
  margin: 18px 0 10px;
  color: var(--fest-cyan);
  font-weight: 900;
}

.fest-story__copy p {
  margin: 14px 0 0;
}

.fest-finale {
  padding: 90px 0 110px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 176, 0, 0.24), transparent 34%),
    var(--fest-black);
  text-align: center;
}

.fest-finale .shell {
  max-width: 820px;
}

@media (max-width: 920px) {
  .topbar__inner {
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .topbar__socials {
    width: 100%;
    margin-left: 0;
  }

  .history-home__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    inset: 76px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 14px;
  }

  .nav-item {
    display: grid;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin-top: 4px;
    padding: 6px 0 0 12px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .main-nav.is-open .nav-item--dropdown .dropdown-menu,
  .nav-item:focus-within .dropdown-menu {
    display: grid;
  }

  .split,
  .content-layout,
  .gallery-strip,
  .page-hero__grid,
  .nuclei-layout,
  .legal-document,
  .fest-intro__grid,
  .fest-story,
  .fest-story--reverse,
  .history-panel__grid,
  .history-panel--reverse .history-panel__grid,
  .person-row,
  .person-row--reverse {
    grid-template-columns: 1fr;
  }

  .history-timeline {
    background: var(--blue-050);
  }

  .history-panel {
    min-height: auto;
  }

  .history-panel::before {
    display: none;
  }

  .history-panel--reverse .history-panel__media {
    order: 0;
  }

  .fest-story--reverse .fest-story__media {
    order: 0;
  }

  .person-row--reverse .person-photo,
  .person-row--reverse .person-copy {
    order: initial;
  }

  .person-photo {
    justify-self: center;
  }

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

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

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

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

  .map-panel {
    position: static;
  }

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

  .legal-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  .brand {
    min-width: auto;
  }

  .brand__text small {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .fest-hero {
    min-height: 640px;
  }

  .fest-hero__content {
    padding: 64px 0;
  }

  .history-hero {
    min-height: auto;
    padding: 68px 0;
  }

  .history-panel__copy {
    padding: 24px;
  }

  .history-home::before,
  .history-home::after {
    display: none;
  }

  .fest-story__copy {
    padding: 22px;
  }

  .hero__overlay {
    background: linear-gradient(90deg, rgba(7, 29, 60, 0.92), rgba(7, 29, 60, 0.5));
  }

  .section {
    padding: 56px 0;
  }

  .card-grid--four,
  .news-grid,
  .gallery-grid,
  .event-card,
  .nucleus-card dl,
  .timeline__item {
    grid-template-columns: 1fr;
  }

  .event-card__date {
    justify-content: flex-start;
  }

  .event-card__date span {
    text-align: left;
  }

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

  .finished-event__mark {
    justify-content: flex-start;
  }

  .section-heading--action {
    align-items: flex-start;
    flex-direction: column;
  }

  .callout,
  .nucleus-card__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-block {
    padding: 22px;
  }

  .legal-block span {
    position: static;
    margin-bottom: 14px;
  }

  .legal-block ul {
    grid-template-columns: 1fr;
  }

  .nucleus-card__header strong {
    text-align: left;
  }

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