﻿:root {
  --ink: #000000;
  --muted: #000000;
  --paper: #ffffff;
  --panel: #ffffff;
  --panel-high: #f2e7e8;
  --line: #d9c9cd;
  --graphite: #191a1f;
  --graphite-soft: #3a2028;
  --pwr-red: #8b0030;
  --red: var(--pwr-red);
  --green: #6f1d06;
  --green-dark: #4a1204;
  --copper: #8f4b3f;
  --stone: #6e5c61;
  --gold: #8b0030;
  --gold-bright: #b0003a;
  --rust: #6f1d06;
  --rose: #b23a32;
  --accent-gold: #f0bd36;
  --accent-gold-dark: #c08a12;
  --shadow: 0 18px 48px rgba(25, 26, 31, 0.16);
  --display-font: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
  --header-height: 106px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

.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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  width: min(100%, 1440px);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-height);
  padding: 14px clamp(18px, 4vw, 64px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(139, 0, 48, 0.18);
  backdrop-filter: blur(24px);
  transform: translateX(-50%);
}

main {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding-top: var(--header-height);
  background: var(--paper);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: min(440px, 39vw);
}

.brand-logo {
  display: block;
  width: clamp(300px, 34vw, 490px);
  max-height: 74px;
  object-fit: contain;
  object-position: left center;
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand strong {
  max-width: 440px;
  color: var(--gold);
  font-family: var(--display-font);
  font-size: clamp(0.82rem, 1.2vw, 1.02rem);
  font-weight: 900;
  line-height: 1.12;
}

.brand small {
  max-width: 460px;
  color: var(--ink);
  font-size: clamp(0.58rem, 0.9vw, 0.76rem);
  font-weight: 800;
  line-height: 1.18;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 18px;
  color: rgba(25, 26, 31, 0.78);
  font-size: 0.92rem;
  font-weight: 750;
}

.nav a,
.nav-trigger {
  padding: 8px 10px;
  border: 0;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  transition: color 160ms ease, background 160ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active,
.nav-group.is-active > .nav-trigger,
.nav-group:hover > .nav-trigger,
.nav-group:focus-within > .nav-trigger {
  color: #ffffff;
  background: var(--gold);
}

.nav-group {
  position: relative;
}

.nav-group::after {
  position: absolute;
  top: 100%;
  left: -8px;
  right: -8px;
  height: 14px;
  content: "";
}

.nav-trigger::after {
  content: "";
  display: inline-block;
  width: 0.42em;
  height: 0.42em;
  margin-left: 0.55em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.18em) rotate(45deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  min-width: 240px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 2px solid rgba(139, 0, 48, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(25, 26, 31, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  border-radius: 6px;
  font-weight: 500;
  white-space: nowrap;
}

.nav-cta,
.nav a.nav-cta {
  color: #ffffff;
  border: 2px solid var(--gold);
  background: var(--accent-gold);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.nav a.nav-cta:hover,
.nav a.nav-cta:focus-visible {
  color: #ffffff;
  border-color: var(--accent-gold);
  background: var(--gold);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  place-items: center;
  gap: 5px;
  padding: 9px;
  border: 2px solid rgba(25, 26, 31, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 75vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--graphite);
}

.hero-video,
.hero-fallback,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.hero-fallback {
  z-index: 0;
  background:
    linear-gradient(110deg, rgba(23, 33, 31, 0.86), rgba(23, 33, 31, 0.4)),
    url("assets/hero-poster.jpg") center / cover;
}

.hero-video + .hero-fallback {
  display: none;
}

.hero-overlay {
  z-index: 1;
  background: linear-gradient(90deg, rgba(160, 160, 160, 0.9), rgba(160, 160, 160, 0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1440px, 100%);
  padding: 108px clamp(20px, 5vw, 72px) 150px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--accent-gold);
  font-size: 0.78rem;
  font-weight: 900;
  font-family: var(--display-font);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--accent-gold);
}

:root {
  --description-size: clamp(0.63rem, 1vw, 0.9rem);
}

h1,
h2,
h3,
p,
strong {
  overflow-wrap: anywhere;
}

h1 {
  max-width: none;
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(3rem, 5.45vw, 5.35rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

h2 {
  max-width: 920px;
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2rem, 4.4vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  line-height: 1.25;
  font-family: var(--display-font);
}

.hero h1 {
  color: #ffffff;
  font-size: clamp(1.5rem, 2.725vw, 2.675rem);
  white-space: nowrap;
}

.section-heading h2,
.invitation-copy h2,
.location-copy h3,
.timeline-item h3 {
  color: var(--accent-gold-dark);
}

.hero-subtitle {
  max-width: 980px;
  margin: 20px 0 0;
  color: var(--accent-gold);
  font-family: var(--display-font);
  font-size: clamp(0.625rem, 1vw, 1rem);
  font-weight: 600;
  line-height: 1.25;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-tags span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: rgba(25, 26, 31, 0.38);
  backdrop-filter: blur(20px);
  font-weight: 800;
}

.hero-tags svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--accent-gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-event-cloud {
  width: max-content;
  max-width: 100%;
  margin-top: 16px;
  padding: 14px 16px;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(25, 26, 31, 0.46);
  backdrop-filter: blur(18px);
}

.hero-event-label {
  display: block;
  color: var(--accent-gold);
  font-family: var(--display-font);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-event-cloud strong {
  display: block;
  margin-top: 4px;
  color: #ffffff;
  font-family: var(--display-font);
  font-size: clamp(0.9rem, 1.4vw, 1.12rem);
}

.hero-event-cloud p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: var(--description-size);
  text-align: left;
  text-wrap: balance;
  hyphens: none;
}

.hero-event-button {
  min-height: 40px;
  margin-top: 12px;
  padding: 9px 14px;
  font-size: 0.78rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-family: var(--display-font);
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: #ffffff;
  border-color: var(--accent-gold);
  background: var(--gold);
  box-shadow: none;
}

.button.primary:hover {
  background: var(--gold-bright);
}

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(178, 58, 50, 0.72);
}

.countdown {
  position: absolute;
  top: 102px;
  right: clamp(20px, 5vw, 72px);
  width: min(340px, calc(100% - 40px));
  margin-top: 0;
  padding: 10px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(25, 26, 31, 0.56);
  backdrop-filter: blur(20px);
}

.countdown p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--display-font);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.countdown-grid span {
  min-width: 0;
  padding: 7px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.14);
}

.countdown-grid strong,
.countdown-grid small {
  display: block;
}

.countdown-grid strong {
  color: #ffffff;
  font-family: var(--display-font);
  font-size: clamp(0.95rem, 1.8vw, 1.35rem);
  line-height: 1;
}

.countdown-grid small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.5rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-social {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: 86px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero-social a {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--accent-gold);
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: rgba(25, 26, 31, 0.46);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.hero-social a:hover,
.hero-social a:focus-visible {
  transform: translateY(-2px);
  border-color: #ffffff;
  background: rgba(139, 0, 48, 0.78);
}

.hero-social svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.partner-carousel {
  width: min(1260px, calc(100% - 48px));
  margin: -54px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  justify-content: center;
  gap: clamp(14px, 2vw, 24px);
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.carousel-row {
  display: grid;
  grid-template-columns: repeat(2, 140px);
  gap: 10px;
}

.carousel-row-media,
.carousel-row-patrons,
.carousel-row-partners {
  grid-template-columns: 140px minmax(220px, 260px);
}

.carousel-row-media {
  grid-column: 1 / -1;
  justify-self: center;
}

.patron-empty {
  min-height: 100%;
}

.carousel-row + .carousel-row {
  padding-top: 0;
  border-top: 0;
}

.patron-tile {
  min-height: 96px;
  border: 2px solid rgba(139, 0, 48, 0.18);
  border-radius: 8px;
  background: #ffffff;
}

.patron-title {
  display: grid;
  place-items: center;
  padding: 12px;
  color: #ffffff;
  background: var(--rust);
  text-align: center;
}

a.patron-title {
  text-decoration: none;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

a.patron-title:hover,
a.patron-title:focus-visible {
  background: var(--rust-dark);
  box-shadow: 0 8px 16px rgba(49, 19, 35, 0.2);
  transform: translateY(-2px);
}

a.patron-title:focus-visible {
  outline: 3px solid var(--accent-gold);
  outline-offset: 3px;
}

.patron-title span {
  color: var(--accent-gold);
  font-family: var(--display-font);
  max-width: 16ch;
  font-size: clamp(0.58rem, 0.72vw, 0.72rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.patron-rotator {
  position: relative;
  overflow: hidden;
}

.patron-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 9px 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 460ms ease;
}

.patron-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.patron-slide:focus-visible {
  outline: 3px solid rgba(139, 0, 48, 0.28);
  outline-offset: -5px;
}

.patron-slide img {
  max-width: 92%;
  width: 100%;
  max-height: 74px;
  object-fit: contain;
}

.patron-slide-wca {
  padding: 4px 5px;
}

.patron-slide-wca img {
  max-width: 100%;
  max-height: 86px;
}

.patron-slide > :not(img) {
  display: none !important;
}

@keyframes partner-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section {
  width: 100%;
  margin: 0 auto;
  padding: clamp(68px, 10vw, 118px) 0;
  scroll-margin-top: 96px;
}

.invitation {
  display: block;
  border-top: 0;
}

.mission-main {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.invitation,
.schedule {
  padding-right: clamp(18px, 4vw, 48px);
  padding-left: clamp(18px, 4vw, 48px);
  background: #ffffff;
}

.voices-section,
.why-section,
.location,
.contact {
  padding-right: clamp(18px, 4vw, 48px);
  padding-left: clamp(18px, 4vw, 48px);
  background: rgba(160, 160, 160, 0.18);
}

.voices-section {
  border-top: 1px solid var(--line);
}

.invitation-media {
  position: sticky;
  top: 104px;
  margin: 0;
  overflow: hidden;
  border: 2px solid rgba(225, 179, 130, 0.24);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.invitation-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
}

.invitation-media img.mission-visual {
  display: block;
  height: auto;
  object-fit: contain;
  background: #0b1730;
  transform: none;
}

.invitation-media figcaption {
  padding: 8px 10px;
  color: rgba(25, 26, 31, 0.58);
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.68rem;
  line-height: 1.35;
}

.invitation-copy {
  padding: clamp(24px, 4vw, 48px);
  border: 2px solid rgba(225, 179, 130, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(225, 179, 130, 0.06), transparent 34%),
    var(--panel);
  box-shadow: var(--shadow);
}

.invitation-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(1.26rem, 2vw, 1.8rem);
}

.invitation-copy p {
  color: var(--muted);
  font-size: var(--description-size);
  text-align: justify;
  text-wrap: pretty;
  hyphens: auto;
}

.invitation-copy p + p {
  margin-top: 18px;
}

.invitation-signature {
  display: grid;
  gap: 6px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(225, 179, 130, 0.24);
  justify-items: end;
  text-align: right;
}

.invitation-signature span {
  color: var(--muted);
  font-family: var(--display-font);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.invitation-signature strong {
  color: var(--gold-bright);
  font-family: var(--display-font);
  font-size: clamp(0.63rem, 1vw, 0.9rem);
}

.mission-quote {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(25, 26, 31, 0.16);
  font-style: italic;
}

.voices-heading h2 {
  color: var(--accent-gold-dark);
  font-size: clamp(1.26rem, 2vw, 1.8rem);
}

.voice-slider {
  position: relative;
  width: min(1120px, 100%);
  margin: clamp(30px, 5vw, 58px) auto 0;
  padding: 0 clamp(44px, 5vw, 64px);
}

.voice-track {
  display: grid;
  overflow: hidden;
}

.mission-voice-card {
  grid-area: 1 / 1;
  margin-top: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(26px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.mission-voice-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.voice-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 12px 26px rgba(25, 26, 31, 0.16);
  cursor: pointer;
  transform: translateY(-50%);
}

.voice-arrow span {
  display: block;
  margin-top: -2px;
  font-family: Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
}

.voice-arrow:hover,
.voice-arrow:focus-visible {
  border-color: var(--gold);
  background: var(--accent-gold);
}

.voice-arrow:disabled {
  opacity: 0.38;
  cursor: default;
}

.voice-arrow-prev {
  left: 0;
}

.voice-arrow-next {
  right: 0;
}

.voice-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(170px, 0.28fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: center;
  padding: clamp(20px, 3.2vw, 34px);
  border: 2px solid rgba(139, 0, 48, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 170, 61, 0.08), transparent 38%),
    #ffffff;
  box-shadow:
    0 14px 0 rgba(25, 26, 31, 0.05),
    0 30px 50px rgba(25, 26, 31, 0.14);
  overflow: hidden;
}

.voice-card::before {
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  content: "";
  background: var(--accent-gold);
}

.voice-photo {
  position: relative;
  z-index: 1;
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 22px;
}

.voice-photo img {
  width: min(208px, 100%);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border: 8px solid #ffffff;
  border-radius: 58% 42% 58% 42% / 44% 58% 42% 56%;
  box-shadow:
    0 0 0 2px rgba(139, 0, 48, 0.14),
    0 0 0 7px rgba(214, 170, 61, 0.32),
    0 18px 34px rgba(25, 26, 31, 0.18);
}

.voice-photo-frame {
  display: block;
  width: min(208px, 100%);
  aspect-ratio: 1;
  overflow: hidden;
  border: 8px solid #ffffff;
  border-radius: 58% 42% 58% 42% / 44% 58% 42% 56%;
  box-shadow:
    0 0 0 2px rgba(139, 0, 48, 0.14),
    0 0 0 7px rgba(214, 170, 61, 0.32),
    0 18px 34px rgba(25, 26, 31, 0.18);
}

.voice-photo-zmarzly img {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  object-position: 50% 7%;
  transform: scale(1.3);
  transform-origin: 50% 50%;
}

.voice-photo-zmarzly {
  overflow: visible;
}

.voice-copy {
  position: relative;
  z-index: 1;
  color: var(--ink);
}

.voice-mark {
  position: absolute;
  top: -48px;
  right: 0;
  color: rgba(139, 0, 48, 0.1);
  font-family: Georgia, serif;
  font-size: clamp(6rem, 14vw, 12rem);
  line-height: 1;
}

.voice-institution-logos {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin: 0;
}

.voice-institution-logos img {
  width: clamp(72px, 6vw, 92px);
  height: 54px;
  object-fit: contain;
  padding: 6px;
  border: 1px solid rgba(139, 0, 48, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(25, 26, 31, 0.08);
}

.voice-institution-logos img.voice-logo-wide {
  width: clamp(132px, 11vw, 168px);
  height: 46px;
  max-width: 100%;
  padding: 4px 8px;
  object-fit: contain;
}

.voice-photo-zmarzly .voice-institution-logos {
  margin-top: 2px;
  padding-inline: 2px;
}

.voice-photo-szamalek img {
  object-position: 48% 22%;
}

.voice-copy blockquote {
  margin: 0;
  color: var(--ink);
  font-size: var(--description-size);
  font-style: italic;
  line-height: 1.68;
  text-align: justify;
  text-wrap: pretty;
  hyphens: auto;
}

.voice-copy footer {
  display: grid;
  gap: 4px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(139, 0, 48, 0.16);
}

.voice-copy strong {
  color: var(--gold);
  font-family: var(--display-font);
  font-size: clamp(0.98rem, 1.5vw, 1.2rem);
}

.voice-copy span {
  color: var(--accent-gold-dark);
  font-family: var(--display-font);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.voice-gallery {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: min(1340px, 100%);
  height: clamp(292px, 25vw, 360px);
  min-height: 0;
  margin: clamp(30px, 5vw, 58px) auto 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.voice-profile-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  flex: 1 1 0;
  min-width: 0;
  gap: 0;
  align-items: stretch;
  padding: 0;
  color: var(--ink);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  transition: flex-grow 260ms ease, background-color 260ms ease;
}

.voice-profile-card + .voice-profile-card {
  border-left: 0;
}

.voice-profile-card::before {
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  content: "";
  background: transparent;
}

.voice-profile-card.is-active,
.voice-profile-card:hover,
.voice-profile-card:focus-within {
  grid-template-columns: minmax(152px, 0.62fr) minmax(0, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
  flex-grow: 2.45;
  background: transparent;
  transform: none;
}

.voice-gallery:has(.voice-profile-card:hover) .voice-profile-card.is-active:not(:hover):not(:focus-within),
.voice-gallery:has(.voice-profile-card:focus-within) .voice-profile-card.is-active:not(:hover):not(:focus-within),
.voice-gallery:has(.voice-profile-card:hover) .voice-profile-card:focus-within:not(:hover) {
  grid-template-columns: 1fr;
  flex-grow: 1;
  background: transparent;
}

.voice-profile-photo {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: rgba(25, 26, 31, 0.08);
  clip-path: polygon(13% 0, 100% 0, 87% 100%, 0 100%);
}

.voice-profile-photo img,
.voice-profile-photo .voice-photo-frame {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.voice-profile-photo img {
  object-fit: cover;
}

.voice-profile-photo .voice-photo-frame {
  overflow: hidden;
}

.voice-profile-photo.voice-photo-zmarzly img {
  object-position: 50% 7%;
  transform: scale(1.05);
}

.voice-profile-photo.voice-photo-gancarz img {
  object-position: 50% 13%;
  transform: scale(1.16);
}

.voice-profile-photo.voice-photo-paszkiewicz img {
  object-position: 50% 13%;
  transform: scale(1.08);
}

.voice-profile-photo.voice-photo-szamalek img {
  object-position: 34% 24%;
}

.voice-profile-photo.voice-photo-galos img {
  object-position: 50% 6%;
}

.voice-profile-photo.voice-photo-krol img {
  object-position: 43% 24%;
}

.voice-profile-copy {
  position: relative;
  z-index: 1;
  display: none;
  align-content: center;
  gap: 6px;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: clamp(14px, 1.8vw, 22px) clamp(16px, 2vw, 24px) clamp(14px, 1.8vw, 22px) 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.voice-profile-kicker {
  display: none;
}

.voice-profile-copy h3 {
  margin: 0;
  color: var(--gold);
  font-family: var(--display-font);
  font-size: clamp(0.92rem, 1.35vw, 1.16rem);
  line-height: 1.16;
}

.voice-profile-role {
  justify-self: start;
  margin: 2px 0 0;
  color: #ffffff;
  display: inline-block;
  overflow: visible;
  width: fit-content;
  max-width: 100%;
  min-height: 42px;
  padding: 6px 9px;
  border: 1px solid rgba(214, 170, 61, 0.6);
  border-radius: 6px;
  background: var(--gold);
  box-shadow: 0 8px 18px rgba(25, 26, 31, 0.1);
  font-family: var(--display-font);
  font-size: clamp(0.68rem, 0.78vw, 0.78rem);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.voice-profile-role.voice-profile-role-climate {
  width: 30ch;
  max-width: 100%;
}

.voice-profile-role.voice-profile-role-energy {
  width: 23ch;
  max-width: 100%;
}

.voice-profile-role.voice-profile-role-marshal {
  width: 27ch;
  max-width: 100%;
}

.voice-profile-role.voice-profile-role-kghm {
  width: 23ch;
  max-width: 100%;
}

.voice-profile-role.voice-profile-role-pig {
  width: 24ch;
  max-width: 100%;
}

.voice-profile-role.voice-profile-role-committee {
  width: 23ch;
  max-width: 100%;
}

.voice-profile-copy blockquote {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: clamp(0.76rem, 0.9vw, 0.86rem);
  font-style: italic;
  line-height: 1.42;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.voice-profile-card:not(:hover):not(:focus-within):not(.is-active) .voice-profile-copy {
  opacity: 0;
  transform: translateX(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.voice-profile-card.is-active .voice-profile-copy,
.voice-profile-card:hover .voice-profile-copy,
.voice-profile-card:focus-within .voice-profile-copy {
  display: grid;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 220ms ease 80ms, transform 220ms ease 80ms;
}

.voice-gallery:has(.voice-profile-card:hover) .voice-profile-card.is-active:not(:hover):not(:focus-within) .voice-profile-copy,
.voice-gallery:has(.voice-profile-card:focus-within) .voice-profile-card.is-active:not(:hover):not(:focus-within) .voice-profile-copy,
.voice-gallery:has(.voice-profile-card:hover) .voice-profile-card:focus-within:not(:hover) .voice-profile-copy {
  display: none;
  opacity: 0;
  transform: translateX(14px);
}

.voice-profile-card .voice-institution-logos {
  justify-content: flex-start;
  margin-top: 2px;
}

.voice-profile-card .voice-institution-logos img {
  width: clamp(64px, 5.4vw, 82px);
  height: 54px;
  padding: 2px 4px;
}

.voice-profile-card .voice-institution-logos img.voice-logo-wide {
  width: clamp(116px, 8.6vw, 132px);
  height: 54px;
  padding: 2px 4px;
}

.voice-profile-card .voice-institution-logos img.voice-logo-climate {
  width: clamp(116px, 8.6vw, 132px);
  height: 54px;
  padding: 2px 4px;
}

.voice-profile-card .voice-institution-logos img.voice-logo-marshal {
  width: clamp(116px, 8.6vw, 132px);
  height: 54px;
  padding: 2px 4px;
}

.voice-profile-card .voice-institution-logos img.voice-logo-kghm {
  width: clamp(132px, 10vw, 156px);
  height: 54px;
  padding: 3px 6px;
}

.voice-read-more {
  position: relative;
  z-index: 4;
  justify-self: start;
  margin-top: 0;
  padding-block: 8px;
  font-size: 0.78rem;
}

.voice-modal[hidden] {
  display: none;
}

.voice-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.voice-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(25, 26, 31, 0.58);
  backdrop-filter: blur(4px);
}

.voice-modal-card {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  max-height: min(760px, 86vh);
  overflow: auto;
  padding: clamp(24px, 4vw, 42px);
  border: 2px solid rgba(214, 170, 61, 0.7);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 170, 61, 0.12), transparent 42%),
    #ffffff;
  box-shadow: 0 36px 86px rgba(0, 0, 0, 0.28);
}

.voice-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #ffffff;
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  background: var(--gold);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.voice-modal-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 48px 18px 0;
}

.voice-modal-logos img {
  width: auto;
  max-width: 180px;
  height: 52px;
  object-fit: contain;
  padding: 6px 10px;
  border: 1px solid rgba(139, 0, 48, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.voice-modal-card h3 {
  margin: 0;
  color: var(--gold);
  font-family: var(--display-font);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
}

.voice-modal-role {
  display: inline-block;
  margin: 10px 0 22px;
  padding: 7px 11px;
  color: #ffffff;
  border: 1px solid rgba(214, 170, 61, 0.6);
  border-radius: 6px;
  background: var(--gold);
  box-shadow: 0 8px 18px rgba(25, 26, 31, 0.1);
  font-family: var(--display-font);
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: 0.02em;
}

.voice-modal-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: var(--description-size);
  font-style: italic;
  line-height: 1.72;
  text-align: justify;
  text-wrap: pretty;
}

.why-section {
  border-top: 1px solid var(--line);
  padding-top: clamp(48px, 7vw, 82px);
  padding-bottom: clamp(48px, 7vw, 82px);
}

.why-heading {
  max-width: none;
  width: 100%;
  text-align: left;
}

.why-heading .eyebrow {
  margin-bottom: 13px;
}

.why-heading h2 {
  color: var(--accent-gold-dark);
  font-size: clamp(1.26rem, 2vw, 1.8rem);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2.2vw, 24px);
  align-items: stretch;
  margin-top: clamp(24px, 4vw, 42px);
}

.why-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: clamp(300px, 27vw, 360px);
  padding: clamp(20px, 2.4vw, 28px);
  border: 2px solid rgba(139, 0, 48, 0.2);
  border-radius: 8px;
  background: #ffffff;
  box-shadow:
    0 16px 0 rgba(25, 26, 31, 0.08),
    0 28px 44px rgba(25, 26, 31, 0.18);
  transition: none;
}

@media (min-width: 821px) {
  .why-card {
    height: 100%;
  }
}

.why-card:nth-child(odd) {
  color: #ffffff;
  background: var(--gold);
}

.why-card:nth-child(even) {
  color: var(--gold);
  background: #ffffff;
}

.why-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 20px;
  color: var(--accent-gold);
}

.why-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.why-card h3 {
  min-height: 2.4em;
  margin-bottom: 14px;
  color: var(--accent-gold);
  font-family: var(--display-font);
  font-size: clamp(0.9rem, 1.5vw, 1.12rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.why-card p,
.why-card ul {
  margin: 0;
  color: currentColor;
  font-size: var(--description-size);
  line-height: 1.55;
}

.why-card ul {
  display: grid;
  align-content: start;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.why-card li {
  position: relative;
  padding-left: 1.2em;
}

.why-card li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.45em;
  height: 0.45em;
  content: "";
  background: var(--accent-gold);
  transform: translateY(-50%) rotate(45deg);
}

.schedule {
  border-top: 1px solid var(--line);
}

.schedule .section-heading h2 {
  font-size: clamp(1rem, 2.2vw, 2.12rem);
}

.location .section-heading h2,
.contact .section-heading h2,
.registration-copy h2,
.registration-copy h1 {
  font-size: clamp(1rem, 2.2vw, 2.12rem);
}

.registration-page main {
  min-height: 100vh;
  background: #ffffff;
}

.registration-hero {
  min-height: auto;
}

.registration-form-section {
  padding-top: clamp(44px, 7vw, 72px);
  padding-right: clamp(18px, 4vw, 48px);
  padding-bottom: clamp(58px, 8vw, 92px);
  padding-left: clamp(18px, 4vw, 48px);
  background: #ffffff;
}

.registration-side-card {
  padding: clamp(20px, 3vw, 28px);
  border: 2px solid rgba(139, 0, 48, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 170, 61, 0.08), transparent 36%),
    #ffffff;
  box-shadow: var(--shadow);
}

.prolog-page {
  display: grid;
  gap: 18px;
  min-height: calc(100vh - var(--header-height));
  align-content: center;
}

.prolog-page h1 {
  color: var(--gold);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.prolog-page p:not(.eyebrow) {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.committee-page main {
  padding-top: var(--header-height);
}

.program-page main {
  padding-top: var(--header-height);
  background: #ffffff;
}

.program-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.48fr);
  gap: clamp(20px, 4vw, 52px);
  align-items: center;
  min-height: auto;
  padding-top: clamp(58px, 8vw, 92px);
  padding-bottom: clamp(44px, 7vw, 72px);
  padding-right: clamp(18px, 4vw, 48px);
  padding-left: clamp(18px, 4vw, 48px);
  background:
    radial-gradient(circle at 10% 14%, rgba(214, 170, 61, 0.18), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, rgba(160, 160, 160, 0.18) 58%, #ffffff 100%);
}

.program-hero h1 {
  max-width: 780px;
  color: var(--gold);
  font-size: clamp(1.65rem, 3.2vw, 3.05rem);
  line-height: 1.03;
}

.program-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: var(--description-size);
  line-height: 1.58;
}

.program-hero-card {
  display: grid;
  gap: 6px;
  padding: clamp(18px, 3vw, 26px);
  border: 2px solid rgba(139, 0, 48, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 170, 61, 0.1), transparent 42%),
    #ffffff;
  box-shadow: var(--shadow);
}

.program-hero-card span {
  color: var(--accent-gold-dark);
  font-family: var(--display-font);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-hero-card strong {
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--display-font);
  font-size: clamp(1rem, 1.6vw, 1.38rem);
  line-height: 1.05;
}

.participant-info-page main {
  background: #ffffff;
}

.info-hero {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
}

.info-hero h1 {
  font-size: clamp(1.65rem, 3vw, 2.85rem);
  line-height: 1.08;
}

.info-section {
  position: relative;
  padding-top: clamp(44px, 7vw, 76px);
  padding-right: clamp(18px, 4vw, 48px);
  padding-bottom: clamp(52px, 7vw, 82px);
  padding-left: clamp(18px, 4vw, 48px);
  border-top: 2px solid rgba(139, 0, 48, 0.12);
  background: #ffffff;
}

.info-section-alt {
  background:
    radial-gradient(circle at 86% 12%, rgba(214, 170, 61, 0.13), transparent 26%),
    rgba(160, 160, 160, 0.15);
}

.info-section::before {
  position: absolute;
  top: 0;
  left: clamp(18px, 4vw, 48px);
  width: min(180px, 28vw);
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--accent-gold), rgba(139, 0, 48, 0.72));
}

.info-section .section-heading h2 {
  color: var(--accent-gold-dark);
  font-size: clamp(1rem, 2.2vw, 2.12rem);
  line-height: 1.12;
}

.info-card-grid,
.info-payment-layout {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(24px, 4vw, 42px);
}

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

.info-card-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
}

.info-payment-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: stretch;
}

.info-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 100%;
  padding: clamp(16px, 2.2vw, 24px);
  border: 2px solid rgba(139, 0, 48, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 170, 61, 0.08), transparent 36%),
    #ffffff;
  box-shadow: 0 20px 46px rgba(18, 52, 59, 0.12);
}

.info-card-accent {
  border-color: rgba(214, 170, 61, 0.56);
  background:
    linear-gradient(135deg, rgba(214, 170, 61, 0.14), transparent 42%),
    #ffffff;
}

.info-card time,
.info-date {
  color: var(--red);
  font-family: var(--display-font);
  font-size: clamp(0.74rem, 0.9vw, 0.88rem);
  font-weight: 900;
  line-height: 1.15;
}

.info-card h3 {
  margin: 0;
  color: var(--accent-gold-dark);
  font-family: var(--display-font);
  font-size: clamp(0.86rem, 1.05vw, 1rem);
  line-height: 1.22;
}

.info-card p {
  margin: 0;
  color: #111111;
  font-size: var(--description-size);
  line-height: 1.5;
}

.conference-contact-details {
  display: grid;
  gap: 14px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 2px solid rgba(139, 0, 48, 0.14);
}

.conference-contact-details a {
  color: var(--red);
  font-weight: 850;
  text-decoration: none;
}

.conference-contact-details a:hover,
.conference-contact-details a:focus-visible {
  color: var(--accent-gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.transfer-card dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.transfer-card div {
  display: grid;
  gap: 5px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(139, 0, 48, 0.12);
}

.transfer-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.transfer-card dt {
  color: var(--red);
  font-family: var(--display-font);
  font-size: clamp(0.68rem, 0.86vw, 0.78rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.transfer-card dd {
  margin: 0;
  color: #111111;
  font-size: var(--description-size);
  font-weight: 700;
  line-height: 1.45;
}

.program-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  padding-top: clamp(44px, 7vw, 76px);
  padding-bottom: clamp(44px, 7vw, 76px);
  padding-right: clamp(18px, 4vw, 48px);
  padding-left: clamp(18px, 4vw, 48px);
  background: #ffffff;
}

.program-overview article,
.program-feature,
.program-active-grid article {
  position: relative;
  min-height: 100%;
  padding: clamp(16px, 2.4vw, 24px);
  border: 2px solid rgba(139, 0, 48, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 170, 61, 0.08), transparent 36%),
    #ffffff;
  box-shadow: var(--shadow);
}

.program-overview article span,
.program-feature span {
  display: inline-flex;
  margin-bottom: 11px;
  color: var(--accent-gold);
  font-family: var(--display-font);
  font-size: clamp(1.05rem, 2vw, 1.75rem);
  font-weight: 900;
  line-height: 1;
}

.program-overview h2,
.program-feature h3,
.program-active-grid h3,
.program-slot h3 {
  color: var(--gold);
  font-size: clamp(0.92rem, 1.25vw, 1.08rem);
  line-height: 1.25;
}

.program-overview p,
.program-feature p,
.program-active-grid p,
.program-slot p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: var(--description-size);
  line-height: 1.55;
}

.program-section {
  padding-right: clamp(18px, 4vw, 48px);
  padding-left: clamp(18px, 4vw, 48px);
  padding-top: clamp(52px, 8vw, 88px);
  padding-bottom: clamp(52px, 8vw, 88px);
}

.program-section .section-heading h2 {
  font-size: clamp(1rem, 2.2vw, 2.12rem);
  line-height: 1.12;
}

.program-day-one {
  background: rgba(160, 160, 160, 0.18);
}

.program-prolog,
.program-active {
  background: #ffffff;
}

.program-feature-grid,
.program-active-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(22px, 3vw, 34px);
}

.program-day {
  position: relative;
  display: grid;
  gap: 8px;
  width: min(920px, 100%);
  margin-top: clamp(22px, 3vw, 34px);
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
}

.program-day::before {
  display: none;
}

.program-day-heading h2 span {
  display: block;
}

.program-day-heading h2 span:last-child {
  white-space: nowrap;
}

.program-slot {
  position: relative;
  display: grid;
  grid-template-columns: minmax(88px, 0.14fr) minmax(0, 1fr);
  gap: clamp(10px, 1.5vw, 18px);
  align-items: start;
  padding: clamp(11px, 1.45vw, 15px);
  border: 2px solid rgba(139, 0, 48, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 26px rgba(25, 26, 31, 0.08);
}

.program-slot::before {
  display: none;
}

.program-slot time {
  color: var(--accent-gold-dark);
  font-family: var(--display-font);
  font-size: clamp(0.72rem, 0.86vw, 0.84rem);
  font-weight: 900;
  line-height: 1.2;
}

.program-slot.is-featured,
.program-slot.is-evening {
  border-color: rgba(214, 170, 61, 0.58);
  background:
    linear-gradient(135deg, rgba(214, 170, 61, 0.12), transparent 40%),
    #ffffff;
}

.committee-hero {
  padding-right: clamp(18px, 4vw, 48px);
  padding-left: clamp(18px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(214, 170, 61, 0.08), transparent 34%),
    #ffffff;
}

.committee-merged {
  min-height: calc(100vh - 76px);
  align-content: center;
}

.committee-hero h1 {
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.committee-hero p:not(.eyebrow) {
  max-width: 1180px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: var(--description-size);
}

.committee-intro-line {
  white-space: nowrap;
}

.committee-section {
  padding-right: clamp(18px, 4vw, 48px);
  padding-left: clamp(18px, 4vw, 48px);
  background: rgba(160, 160, 160, 0.18);
}

.committee-section h2 {
  color: var(--accent-gold-dark);
  font-size: clamp(1.26rem, 2vw, 1.8rem);
}

.committee-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 28px);
  margin-top: clamp(30px, 5vw, 58px);
}

.committee-card {
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 100%;
  padding: clamp(18px, 2.6vw, 28px);
  border: 2px solid rgba(139, 0, 48, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 170, 61, 0.08), transparent 36%),
    #ffffff;
  box-shadow:
    0 14px 0 rgba(25, 26, 31, 0.07),
    0 28px 44px rgba(25, 26, 31, 0.14);
  text-align: center;
}

.committee-card-lead {
  border-color: rgba(214, 170, 61, 0.72);
  background:
    linear-gradient(135deg, rgba(139, 0, 48, 0.94), rgba(139, 0, 48, 0.82)),
    var(--gold);
  box-shadow:
    0 18px 0 rgba(139, 0, 48, 0.18),
    0 36px 58px rgba(25, 26, 31, 0.24);
}

.committee-card-lead h3,
.committee-card-lead p {
  color: #ffffff !important;
}

.committee-card-lead h3::after {
  display: block;
  width: 54px;
  height: 3px;
  margin: 12px auto 0;
  content: "";
  background: var(--accent-gold);
}

.committee-card-secretary {
  border-color: rgba(18, 52, 59, 0.36);
  background:
    linear-gradient(135deg, rgba(18, 52, 59, 0.1), transparent 44%),
    linear-gradient(180deg, #ffffff, #f5f8f8);
  box-shadow:
    0 14px 0 rgba(18, 52, 59, 0.09),
    0 28px 44px rgba(18, 52, 59, 0.13);
}

.committee-card-secretary img {
  box-shadow:
    0 0 0 3px rgba(18, 52, 59, 0.58),
    0 14px 26px rgba(25, 26, 31, 0.18);
}

.committee-card-secretary h3 {
  color: var(--night);
}

.committee-card-secretary h3::after {
  display: block;
  width: 54px;
  height: 3px;
  margin: 12px auto 0;
  content: "";
  background: var(--accent-gold);
}

.committee-card-secretary p {
  color: var(--ink);
}

.committee-card img {
  width: min(190px, 78%);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-shadow:
    0 0 0 3px rgba(214, 170, 61, 0.82),
    0 14px 26px rgba(25, 26, 31, 0.18);
}

.committee-card h3 {
  margin-top: 24px;
  color: var(--gold);
  font-family: var(--display-font);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  font-weight: 900;
  line-height: 1.18;
}

.committee-card p {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(0.8rem, 1vw, 0.94rem);
  font-weight: 800;
  line-height: 1.35;
}

.committee-card-lead h3,
.committee-card-lead p {
  color: #ffffff;
}

.committee-lead-row {
  display: grid;
  max-width: 280px;
  margin: clamp(30px, 5vw, 58px) auto 0;
}

.committee-grid-organizing {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.committee-photo-placeholder {
  display: grid;
  width: min(190px, 78%);
  aspect-ratio: 1;
  place-items: center;
  padding: 18px;
  color: rgba(139, 0, 48, 0.82);
  border: 4px solid #ffffff;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(214, 170, 61, 0.22), rgba(139, 0, 48, 0.11)),
    #ffffff;
  box-shadow: 0 10px 24px rgba(18, 52, 59, 0.16);
  font-size: clamp(0.66rem, 0.9vw, 0.78rem);
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.committee-grid-technical {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.25vw, 16px);
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.committee-card-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 178px;
  justify-content: center;
  padding: clamp(11px, 1.2vw, 15px) clamp(8px, 0.85vw, 11px);
}

.committee-card-text h3 {
  width: 100%;
  margin: 0;
  color: var(--red);
  font-size: clamp(0.88rem, 1vw, 1.05rem);
  line-height: 1.28;
}

.committee-card-text h3::after {
  display: block;
  width: 44px;
  height: 3px;
  margin: 14px auto 0;
  content: "";
  background: var(--accent-gold);
}

.committee-hero .committee-card-text p {
  width: 100%;
  margin-top: 10px;
  color: #111111;
  font-size: clamp(0.74rem, 0.78vw, 0.84rem);
  font-weight: 600;
  line-height: 1.52;
}

.timeline {
  position: relative;
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 0;
}

.timeline::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 50%;
  z-index: 0;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(139, 0, 48, 0.46), rgba(214, 170, 61, 0.66), rgba(139, 0, 48, 0.46), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(92px, 0.28fr) minmax(0, 1fr);
  gap: clamp(10px, 1.4vw, 16px);
  width: calc(50% - 24px);
  min-height: 86px;
  padding: clamp(12px, 1.4vw, 16px);
  border: 2px solid rgba(200, 150, 102, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(225, 179, 130, 0.06), transparent 38%),
    var(--panel);
  box-shadow: var(--shadow);
}

.timeline-item:nth-child(odd) {
  justify-self: start;
  grid-template-columns: minmax(0, 1fr) minmax(92px, 0.28fr);
}

.timeline-item:nth-child(even) {
  justify-self: end;
}

.timeline-item.timeline-left {
  justify-self: start;
  grid-template-columns: minmax(0, 1fr) minmax(92px, 0.28fr);
}

.timeline-item.timeline-right {
  justify-self: end;
  grid-template-columns: minmax(92px, 0.28fr) minmax(0, 1fr);
}

.timeline-item:nth-child(odd) time {
  order: 2;
  text-align: right;
}

.timeline-item:nth-child(odd) div {
  order: 1;
}

.timeline-item.timeline-left time {
  order: 2;
  text-align: right;
}

.timeline-item.timeline-left div {
  order: 1;
}

.timeline-item.timeline-right time,
.timeline-item.timeline-right div {
  order: initial;
}

.timeline-item.timeline-right time {
  text-align: left;
}

.timeline-item::before {
  position: absolute;
  top: 16px;
  right: -35px;
  z-index: 2;
  width: 18px;
  height: 18px;
  content: "";
  border: 3px solid #ffffff;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--accent-red) 0 30%, transparent 32%),
    var(--gold);
  box-shadow:
    0 0 0 2px rgba(214, 170, 61, 0.72),
    0 10px 20px rgba(25, 26, 31, 0.16);
}

.timeline-item::after {
  position: absolute;
  top: 25px;
  right: -24px;
  z-index: 1;
  width: 24px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(214, 170, 61, 0.06), rgba(214, 170, 61, 0.84));
}

.timeline-item:nth-child(even)::before {
  right: auto;
  left: -35px;
}

.timeline-item.timeline-left::before {
  right: -35px;
  left: auto;
}

.timeline-item.timeline-right::before {
  right: auto;
  left: -35px;
}

.timeline-item:nth-child(even)::after {
  right: auto;
  left: -24px;
  background: linear-gradient(90deg, rgba(214, 170, 61, 0.84), rgba(214, 170, 61, 0.06));
}

.timeline-item.timeline-left::after {
  right: -24px;
  left: auto;
  background: linear-gradient(90deg, rgba(214, 170, 61, 0.06), rgba(214, 170, 61, 0.84));
}

.timeline-item.timeline-right::after {
  right: auto;
  left: -24px;
  background: linear-gradient(90deg, rgba(214, 170, 61, 0.84), rgba(214, 170, 61, 0.06));
}

.timeline-item.featured {
  border-color: rgba(225, 179, 130, 0.78);
  background:
    linear-gradient(135deg, rgba(139, 0, 48, 0.08), transparent 38%),
    var(--panel);
}

.timeline-item time {
  color: var(--gold-bright);
  font-family: var(--display-font);
  font-size: clamp(0.74rem, 0.9vw, 0.88rem);
  font-weight: 900;
  line-height: 1.15;
  align-self: start;
  padding-top: 14px;
}

.timeline-item h3 {
  margin-bottom: 4px;
  font-size: clamp(0.8rem, 0.95vw, 0.92rem);
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: var(--description-size);
  line-height: 1.46;
  text-wrap: pretty;
}

.timeline-item p + p {
  margin-top: 5px;
}

.timeline-item .timeline-place {
  color: var(--red);
}

.partner-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
  margin-top: clamp(28px, 5vw, 54px);
}

.partner-page-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.partner-page-grid-organizers {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1040px;
}

.partner-page-grid-sponsors {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.7vw, 20px);
}

.partner-page-grid-sponsors-centered {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.partner-page-grid-patronage {
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
}

.partner-page-grid-patronage .patronage-feature-card {
  grid-column: 2;
}

.partner-page-grid-patronage .partner-page-card:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.partner-page-grid-patronage .partner-page-card:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.partner-page-grid-patronage .partner-page-card:nth-child(4) {
  grid-column: 3;
  grid-row: 2;
}

.partner-page-grid-sponsors .partner-page-card {
  gap: 14px;
  padding: clamp(14px, 1.8vw, 20px);
}

.partner-page-grid-compact .partner-page-card {
  gap: 14px;
  padding: clamp(14px, 1.8vw, 20px);
}

.partner-page-grid-sponsors .partner-logo-frame {
  min-height: 118px;
  padding: 12px;
}

.partner-page-grid-compact .partner-logo-frame {
  min-height: 118px;
  padding: 12px;
}

.partner-page-grid-sponsors .partner-logo-frame img {
  max-height: 88px;
}

.partner-page-grid-compact .partner-logo-frame img {
  max-height: 88px;
}

.partner-logo-frame .partner-logo-expanded {
  max-width: none;
  transform-origin: center;
}

.partner-logo-frame .partner-logo-expanded-wca {
  transform: scale(1.18);
}

.partner-logo-frame .partner-logo-expanded-komag {
  transform: scale(1.08);
}

.partner-logo-frame .partner-logo-expanded-giph {
  transform: scale(1.16);
}

.partner-logo-frame .partner-logo-expanded-colas {
  transform: scale(1.24);
}

.partner-logo-frame .partner-logo-expanded-minemaster {
  transform: scale(1.16);
}

.partner-logo-frame .partner-logo-expanded-elektromont {
  transform: scale(1.22);
}

.partner-logo-frame .partner-logo-expanded-eurovia {
  transform: scale(1.18);
}

.partner-page-grid-sponsors .partner-page-card h2 {
  font-size: clamp(0.96rem, 1.2vw, 1.16rem);
}

.partner-page-grid-compact .partner-page-card h2 {
  font-size: clamp(0.96rem, 1.2vw, 1.16rem);
}

.partner-page-grid-sponsors .partner-page-card p {
  font-size: clamp(0.78rem, 0.92vw, 0.9rem);
  line-height: 1.42;
}

.partner-page-grid-compact .partner-page-card p {
  font-size: clamp(0.78rem, 0.92vw, 0.9rem);
  line-height: 1.42;
}

.partner-page-section + .partner-page-section {
  margin-top: clamp(32px, 5vw, 60px);
  padding-top: clamp(28px, 4vw, 48px);
  border-top: 2px solid rgba(139, 0, 48, 0.18);
}

.partner-page-section-heading {
  margin-bottom: 20px;
}

.partner-page-section-heading h2 {
  margin: 0;
  color: var(--rust);
  font-family: var(--display-font);
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: 0;
}

.partner-page-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
  min-height: 100%;
  padding: clamp(18px, 2.8vw, 28px);
  border: var(--border-strong) solid rgba(139, 0, 48, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 50px rgba(18, 52, 59, 0.12);
}

.partner-logo-frame {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 18px;
  overflow: hidden;
  border: var(--border-strong) solid rgba(139, 0, 48, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.partner-logo-frame img {
  display: block;
  max-width: 100%;
  max-height: 112px;
  object-fit: contain;
}

.partner-page-card h2 {
  margin: 0;
  color: var(--red);
  font-family: var(--display-font);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.2;
}

.partner-page-card p {
  margin: 0;
  color: #111111;
  font-size: var(--description-size);
  line-height: 1.5;
}

.partner-page-card a {
  justify-self: start;
}

.section-heading {
  max-width: 920px;
}

.intro,
.location,
.registration,
.updates,
.future,
.side-events,
.schedule {
  border-top: 1px solid var(--line);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
  border-top: 0;
}

.intro-copy > p,
.registration-copy p,
.location-copy p,
.future-note,
.placeholder-card p,
.news-card p,
.quote-panel p {
  color: var(--muted);
  font-size: var(--description-size);
}

.intro-copy > p {
  margin: 6px 0 0;
}

.topic-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.topic-grid article,
.news-card,
.placeholder-card,
.registration-form,
.location-copy,
.quote-panel,
.map-placeholder,
.map-embed {
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.topic-grid article {
  padding: 22px;
}

.topic-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 900;
}

.topic-grid p,
.news-card p,
.placeholder-card p {
  margin: 0;
}

.welcome {
  width: 100%;
  max-width: none;
  padding: clamp(64px, 10vw, 116px) clamp(18px, 5vw, 70px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(14, 14, 14, 0.94), rgba(10, 25, 47, 0.82)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2200&q=80") center / cover;
}

.quote-panel {
  width: min(980px, 100%);
  padding: clamp(26px, 5vw, 52px);
  color: #fff;
  background: rgba(32, 31, 31, 0.82);
  border-color: rgba(225, 179, 130, 0.24);
}

.quote-panel h2 {
  color: #fff;
}

.quote-panel p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.78);
}

.quote-panel footer {
  display: grid;
  gap: 2px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.quote-panel footer span {
  color: rgba(255, 255, 255, 0.7);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1.22fr);
  gap: 18px;
  margin-top: 34px;
}

.contact {
  background:
    radial-gradient(circle at 82% 12%, rgba(214, 170, 61, 0.13), transparent 24%),
    #ffffff;
}

.contact .eyebrow {
  font-size: 0.78rem;
}

.contact.section {
  padding-top: clamp(48px, 7vw, 82px);
  padding-bottom: clamp(48px, 7vw, 82px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(360px, 1.22fr);
  gap: 18px;
  margin-top: 34px;
  align-items: start;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 12px;
  max-width: 520px;
  min-height: 0;
  padding: clamp(18px, 3vw, 26px);
  border: 2px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 170, 61, 0.08), transparent 36%),
    var(--panel);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin: 0;
  color: var(--gold);
  font-family: var(--display-font);
  font-size: clamp(0.8rem, 0.95vw, 0.92rem);
  line-height: 1.3;
}

.contact-card p {
  margin: 0;
  color: var(--ink);
  font-size: var(--description-size);
  line-height: 1.6;
  text-align: justify;
  text-wrap: pretty;
  hyphens: auto;
}

.contact-card a {
  color: var(--red);
  font-weight: 900;
}

.contact-form {
  width: 100%;
  justify-self: stretch;
  padding: clamp(18px, 3vw, 26px);
  box-shadow: 0 14px 34px rgba(25, 26, 31, 0.1);
}

.contact-form .form-section {
  padding: clamp(16px, 2.4vw, 22px);
  border-color: rgba(139, 0, 48, 0.1);
}

.contact-form label {
  font-size: var(--description-size);
  letter-spacing: 0.02em;
}

.contact-form label span {
  font-size: 0.72em;
}

.contact-form input,
.contact-form textarea,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  font-size: var(--description-size);
}

.contact-form textarea {
  min-height: 140px;
}

.location-copy {
  padding: clamp(22px, 4vw, 34px);
}

.location-list {
  display: grid;
  gap: 22px;
}

.location-list article {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(139, 0, 48, 0.18);
}

.location-list article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.location-list h3 {
  color: var(--gold);
}

.location-list p {
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: var(--description-size);
  font-weight: 700;
}

.location-list a {
  display: inline-flex;
  padding: 8px 12px;
  color: #ffffff;
  border: 2px solid var(--gold);
  border-radius: 999px;
  background: var(--accent-gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.location-list a:hover,
.location-list a:focus-visible {
  border-color: var(--accent-gold);
  background: var(--gold);
}

.address {
  margin-top: 0;
  color: var(--gold-bright);
  font-weight: 800;
}

.map-placeholder {
  min-height: 330px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(135deg, rgba(10, 25, 47, 0.88), rgba(32, 31, 31, 0.78)),
    repeating-linear-gradient(45deg, rgba(225, 179, 130, 0.12) 0 1px, transparent 1px 18px);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 900;
}

.map-embed {
  height: clamp(360px, 42vw, 520px);
  min-height: 330px;
  overflow: hidden;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-image-frame {
  height: auto;
  min-height: 0;
  aspect-ratio: 4848 / 3110;
}

.map-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.campus-map {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 330px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 18%, rgba(214, 170, 61, 0.2), transparent 24%),
    radial-gradient(circle at 78% 28%, rgba(139, 0, 48, 0.14), transparent 28%),
    linear-gradient(135deg, #ffffff, rgba(160, 160, 160, 0.18) 58%, #ffffff);
}

.campus-map-photo {
  background: #f9f3f4;
}

.campus-map-base {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.42;
  filter: saturate(0.9) contrast(0.78) brightness(1.12);
  transform: scale(1.02);
}

.campus-map::before {
  position: absolute;
  inset: 16px;
  z-index: 0;
  content: "";
  border: 1px solid rgba(139, 0, 48, 0.12);
  border-radius: 8px;
  background-image:
    linear-gradient(rgba(139, 0, 48, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 0, 48, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
}

.campus-map-photo::before {
  inset: 0;
  z-index: 1;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(248, 240, 241, 0.2)),
    radial-gradient(circle at 18% 62%, rgba(67, 169, 197, 0.2), transparent 28%),
    radial-gradient(circle at 78% 34%, rgba(214, 170, 61, 0.16), transparent 24%);
  backdrop-filter: blur(1px);
}

.campus-map::after {
  position: absolute;
  right: -80px;
  bottom: -120px;
  z-index: 0;
  width: 260px;
  height: 260px;
  content: "";
  border: 34px solid rgba(214, 170, 61, 0.18);
  border-radius: 50%;
}

.campus-map-photo::after {
  inset: 0;
  z-index: 2;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(139, 0, 48, 0.1), transparent 22%, transparent 78%, rgba(139, 0, 48, 0.08)),
    linear-gradient(0deg, rgba(13, 50, 87, 0.1), transparent 28%, transparent 72%, rgba(214, 170, 61, 0.08));
  pointer-events: none;
}

.map-river {
  position: absolute;
  top: 62%;
  left: -8%;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 116%;
  height: 58px;
  padding-left: 61%;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(90deg, rgba(13, 50, 87, 0.82), rgba(56, 139, 180, 0.62));
  font-family: var(--display-font);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(-9deg);
}

.map-water,
.map-street {
  position: absolute;
  z-index: 3;
  color: rgba(25, 26, 31, 0.68);
  font-family: var(--display-font);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.86);
  pointer-events: none;
}

.map-water {
  color: rgba(13, 86, 120, 0.78);
  font-size: clamp(0.78rem, 1.5vw, 1.35rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.map-street {
  padding: 6px 10px;
  color: rgba(18, 52, 59, 0.72);
  border: 1px solid rgba(18, 52, 59, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  font-size: clamp(0.58rem, 1vw, 0.82rem);
  box-shadow: 0 8px 20px rgba(25, 26, 31, 0.06);
}

.map-water-odra {
  left: 50%;
  bottom: 27%;
  transform: rotate(13deg);
}

.map-water-olawa {
  left: 10%;
  top: 36%;
  transform: rotate(72deg);
}

.map-water-stara {
  right: 12%;
  bottom: 42%;
  transform: rotate(3deg);
}

.map-street-wysp {
  left: 35%;
  top: 39%;
  transform: rotate(4deg);
}

.map-street-hoene {
  left: 32%;
  top: 18%;
  transform: rotate(55deg);
}

.map-street-grobla {
  left: 22%;
  bottom: 11%;
  transform: rotate(15deg);
}

.map-road {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 18px;
  color: rgba(25, 26, 31, 0.68);
  border: 1px solid rgba(25, 26, 31, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 22px rgba(25, 26, 31, 0.08);
  font-size: 0.68rem;
  font-weight: 900;
  white-space: nowrap;
}

.map-road-main {
  top: 42%;
  left: 4%;
  width: 92%;
  transform: rotate(-7deg);
}

.map-road-side {
  top: 65%;
  left: 39%;
  width: 56%;
  transform: rotate(-32deg);
}

.map-area {
  position: absolute;
  z-index: 2;
  padding: 9px 12px;
  color: var(--gold);
  border: 2px solid rgba(214, 170, 61, 0.4);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 26px rgba(25, 26, 31, 0.1);
  font-family: var(--display-font);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-area-campus {
  top: 18%;
  left: 14%;
}

.map-area-sks {
  top: 25%;
  right: 10%;
}

.map-pin {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: 34px max-content;
  gap: 10px;
  align-items: center;
}

.map-pin strong {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #ffffff;
  border: 3px solid var(--accent-gold);
  border-radius: 50% 50% 50% 10%;
  background: var(--gold);
  box-shadow: 0 12px 24px rgba(139, 0, 48, 0.22);
  font-family: var(--display-font);
  font-size: 0.84rem;
  line-height: 1;
}


.map-pin em {
  max-width: 170px;
  padding: 8px 10px;
  color: var(--ink);
  border: 1px solid rgba(139, 0, 48, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 26px rgba(25, 26, 31, 0.12);
  font-size: clamp(0.62rem, 0.85vw, 0.75rem);
  font-style: normal;
  font-weight: 800;
  line-height: 1.32;
}

.map-pin-a1 {
  top: 31%;
  right: 11%;
}

.map-pin-sks {
  top: 12%;
  left: 36%;
}

.map-pin-geo {
  bottom: 20%;
  left: 7%;
}

.registration {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 0.95fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
  max-width: 1440px;
}

.registration-copy p {
  margin: 20px 0 0;
}

.check-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 750;
}

.check-list li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 18px;
  height: 18px;
  content: "";
  border-radius: 4px;
  background: var(--gold);
  transform: rotate(45deg);
}

.check-list li::after {
  position: absolute;
  top: 0.47em;
  left: 6px;
  width: 5px;
  height: 9px;
  content: "";
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.registration-form {
  display: grid;
  gap: 16px;
  width: min(900px, 100%);
  justify-self: end;
  padding: clamp(18px, 3vw, 28px);
  border-color: rgba(139, 0, 48, 0.16);
  background:
    linear-gradient(135deg, rgba(214, 170, 61, 0.08), transparent 28%),
    #ffffff;
}

.form-section {
  display: grid;
  gap: 16px;
  min-width: 0;
  margin: 0;
  padding: clamp(18px, 2.8vw, 26px);
  border: 2px solid rgba(139, 0, 48, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 170, 61, 0.07), transparent 36%),
    #ffffff;
}

.form-section legend {
  padding: 0 10px;
  color: var(--gold);
  font-family: var(--display-font);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-section-note,
.payment-note,
.consent-note {
  margin: 0;
  color: var(--muted);
  font-size: var(--description-size);
  line-height: 1.55;
}

.form-section-note span {
  color: var(--gold);
  font-weight: 900;
}

.conditional-fields {
  display: grid;
  gap: 16px;
}

.conditional-fields[hidden] {
  display: none;
}

.conditional-fields-nested {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 2px solid rgba(139, 0, 48, 0.12);
}

.form-subsection {
  display: grid;
  gap: 14px;
  padding: clamp(15px, 2vw, 20px);
  border: 2px solid rgba(139, 0, 48, 0.1);
  border-radius: 6px;
  background: rgba(248, 248, 248, 0.72);
}

.form-subsection h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(0.86rem, 1.1vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ksef-note {
  padding: 12px 14px;
  border-left: 4px solid var(--gold);
  background: rgba(214, 170, 61, 0.08);
}

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

.form-row-full {
  grid-column: 1 / -1;
}

label {
  color: var(--ink);
  font-family: var(--display-font);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

label span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  text-transform: none;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  border: 2px solid var(--line);
  border-radius: 4px;
  background: #ffffff;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(225, 179, 130, 0.18);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #9b3d2f;
}

.consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-weight: 560;
}

.consent input {
  min-height: 20px;
  margin-top: 4px;
}

.consent strong {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: none;
}

.document-link {
  display: inline-flex;
  width: fit-content;
  color: var(--red);
  font-weight: 850;
  line-height: 1.45;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.document-link:hover,
.document-link:focus-visible {
  color: var(--gold-dark);
  text-decoration-color: var(--red);
}

.tax-exemption-note {
  padding: clamp(16px, 2.2vw, 22px);
  border: 2px solid rgba(139, 0, 48, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 170, 61, 0.11), transparent 48%),
    #ffffff;
  box-shadow: 0 8px 20px rgba(20, 20, 20, 0.07);
}

.tax-exemption-note h3 {
  margin: 0;
  color: var(--red);
  font-family: var(--display-font);
  font-size: clamp(0.96rem, 1.2vw, 1.12rem);
}

.tax-exemption-note p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: var(--description-size);
  line-height: 1.55;
}

.tax-exemption-note .tax-exemption-basis {
  color: var(--red);
  font-weight: 800;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-option {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px 14px;
  border: 2px solid rgba(139, 0, 48, 0.14);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
}

.form-option input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.form-option-card {
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(139, 0, 48, 0.07), transparent 44%),
    #ffffff;
}

.form-option strong,
.form-option em {
  display: block;
}

.form-option strong {
  color: var(--gold);
  font-family: var(--display-font);
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
  font-style: normal;
  font-weight: 900;
}

.form-option em {
  margin-top: 2px;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.fee-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  border: 2px solid rgba(214, 170, 61, 0.44);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 15%, rgba(214, 170, 61, 0.18), transparent 28%),
    #ffffff;
}

.fee-summary span {
  color: var(--muted);
  font-family: var(--display-font);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fee-summary strong {
  color: var(--gold);
  font-family: var(--display-font);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1;
}

.error {
  min-height: 18px;
  margin: 0;
  color: #9b3d2f;
  font-size: 0.87rem;
  font-weight: 800;
}

.form-submit {
  width: 100%;
}

.spam-check {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.success-message {
  display: none;
  padding: 14px 16px;
  color: var(--gold-bright);
  border: 2px solid rgba(225, 179, 130, 0.3);
  border-radius: 4px;
  background: rgba(225, 179, 130, 0.1);
  font-weight: 800;
}

.success-message.is-visible {
  display: block;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.news-card,
.placeholder-card {
  padding: 24px;
}

.news-card time {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 900;
}

.news-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-bright);
  font-weight: 900;
}

.future-note {
  max-width: 720px;
  margin: 20px 0 0;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.logo-grid span {
  display: grid;
  min-height: 112px;
  place-items: center;
  color: var(--muted);
  border: 2px dashed #b9ad9b;
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.7);
  font-weight: 850;
}

.footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 0.65fr) minmax(260px, 0.55fr) minmax(620px, 1.35fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 54px) clamp(18px, 5vw, 70px);
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 18%, rgba(214, 170, 61, 0.16), transparent 26%),
    linear-gradient(135deg, #17211f 0%, #21141b 46%, #2d0f1f 100%);
  border-top: 4px solid var(--accent-gold);
}

.footer::before {
  position: absolute;
  inset: 14px;
  content: "";
  border: 1px solid rgba(214, 170, 61, 0.18);
  border-radius: 8px;
  pointer-events: none;
}

.footer::after {
  position: absolute;
  right: -74px;
  bottom: -96px;
  width: 250px;
  height: 250px;
  content: "";
  border: 30px solid rgba(214, 170, 61, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.footer-title strong {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  max-width: 520px;
  font-family: var(--display-font);
  color: #ffffff;
  font-size: clamp(0.95rem, 1.55vw, 1.35rem);
  font-weight: 900;
  line-height: 1.12;
}

.footer-title small {
  display: block;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.72);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(0.64rem, 1vw, 0.78rem);
  font-weight: 800;
  line-height: 1.35;
}

.footer-logos {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  justify-self: center;
  width: min(100%, 180px);
  padding: 12px;
  border: 1px solid rgba(214, 170, 61, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(10px);
}

.footer-logo-link {
  display: grid;
  min-height: 78px;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(214, 170, 61, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.footer-logo-link:hover,
.footer-logo-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.footer-logo-link img {
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
}

.footer-organizers {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(100%, 760px);
  max-width: 760px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(214, 170, 61, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  text-align: right;
}

.footer-logo-list {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.footer-logo-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin: 0;
  padding: 10px;
  border: 2px solid rgba(139, 0, 48, 0.18);
  border-radius: 8px;
  background: rgba(243, 244, 246, 0.72);
}

.footer-logo-item img {
  width: 92px;
  max-height: 52px;
  object-fit: contain;
  padding: 6px;
  border-radius: 6px;
  background: #fff;
}

.footer-logo-item figcaption,
.footer-email,
.footer-site {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.55rem, 1vw, 0.8rem);
  line-height: 1.35;
}

.footer p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.55rem, 1vw, 0.8rem);
}

.footer-organizers p {
  white-space: nowrap;
}

.footer-organizers p:first-child {
  margin-top: 0;
  color: var(--accent-gold);
  font-family: var(--display-font);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-email,
.footer-site {
  display: inline-flex;
  margin-top: 14px;
  padding: 8px 12px;
  color: #ffffff;
  border: 1px solid rgba(214, 170, 61, 0.38);
  border-radius: 999px;
  background: rgba(139, 0, 48, 0.3);
  font-weight: 850;
}

.footer-site {
  margin-left: 8px;
  background: rgba(214, 170, 61, 0.15);
}

.footer-email a,
.footer-site a {
  color: inherit;
  text-decoration: none;
}

.footer-email a:hover,
.footer-site a:hover,
.footer-email a:focus-visible,
.footer-site a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

  .footer-logos,
  .footer-organizers {
    justify-self: start;
  }

  .footer-organizers {
    text-align: left;
  }
}

@media (max-width: 1380px) and (min-width: 821px) {
  .committee-grid-technical {
    max-width: 1120px;
  }

  .committee-card-text {
    min-height: 178px;
  }
}

@media (max-width: 640px) {
  .footer-organizers p {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-video {
    display: none;
  }

  .hero-fallback {
    display: block;
  }

  .partner-track {
    animation: none;
  }
}

@media (max-width: 1060px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 8px 18px 18px;
    background: rgba(23, 33, 31, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a,
  .nav-trigger {
    padding: 13px 4px;
    color: #ffffff;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
  }

  .nav-group {
    display: grid;
  }

  .nav-dropdown {
    position: static;
    top: auto;
    left: auto;
    min-width: 0;
    width: 100%;
    display: none;
    gap: 0;
    padding: 0 0 0 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-group:hover .nav-dropdown,
  .nav-group:focus-within .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-group.is-expanded > .nav-dropdown {
    display: grid;
  }

  .nav-group.is-expanded > .nav-trigger {
    color: #ffffff;
    background: rgba(139, 0, 48, 0.78);
  }

  .nav-dropdown a {
    color: rgba(255, 255, 255, 0.82);
    white-space: normal;
  }

  .nav-cta,
  .nav a.nav-cta {
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: 999px;
    text-align: center;
  }

  .menu-toggle {
    display: grid;
    flex: 0 0 auto;
  }

  .brand strong {
    max-width: 58vw;
  }

  .intro,
  .location-layout,
  .contact-layout,
  .registration,
  .mission-main,
  .voice-card,
  .program-hero,
  .program-overview,
  .program-feature-grid,
  .program-active-grid,
  .program-slot,
  .info-hero,
  .info-payment-layout {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    width: 100%;
    justify-self: stretch;
  }

  .timeline-item:nth-child(odd) {
    grid-template-columns: 1fr;
  }

  .timeline-item:nth-child(odd) time,
  .timeline-item:nth-child(odd) div,
  .timeline-item.timeline-left time,
  .timeline-item.timeline-left div,
  .timeline-item.timeline-right time,
  .timeline-item.timeline-right div {
    order: initial;
    text-align: left;
  }

  .timeline-item.timeline-left,
  .timeline-item.timeline-right {
    grid-template-columns: 1fr;
    justify-self: stretch;
  }

  .timeline {
    padding-left: 28px;
  }

  .timeline::before {
    left: 8px;
    transform: none;
  }

  .timeline-item::before,
  .timeline-item:nth-child(odd)::before,
  .timeline-item:nth-child(even)::before {
    right: auto;
    left: -26px;
  }

  .timeline-item::after,
  .timeline-item:nth-child(even)::after {
    top: 25px;
    right: auto;
    left: -18px;
    width: 18px;
    background: linear-gradient(90deg, rgba(214, 170, 61, 0.84), rgba(214, 170, 61, 0.06));
  }

  .invitation-media {
    position: static;
  }

  .voice-slider {
    padding: 0 clamp(34px, 6vw, 46px);
  }

  .voice-arrow {
    width: 36px;
    height: 36px;
  }

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

  .committee-intro-line {
    white-space: normal;
  }

}

@media (max-width: 820px) {
  .hero-content {
    padding: 112px 18px 240px;
  }

  .countdown {
    position: static;
    width: min(340px, 100%);
    margin-top: 18px;
  }

  .hero h1 {
    white-space: normal;
  }

  .form-grid,
  .card-grid,
  .logo-grid,
  .why-grid,
  .timeline,
  .committee-grid,
  .info-card-grid,
  .info-card-grid-two {
    grid-template-columns: 1fr;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-social {
    right: 18px;
    bottom: 80px;
  }

  .partner-carousel {
    margin-top: 0;
    width: calc(100% - 28px);
    max-width: 620px;
    grid-template-columns: repeat(3, max-content);
    justify-content: center;
    gap: 6px;
    padding: 8px;
  }

  .carousel-row {
    grid-template-columns: repeat(2, 76px);
    gap: 6px;
  }

  .carousel-row-media,
  .carousel-row-patrons,
  .carousel-row-partners {
    grid-template-columns: 76px 104px;
  }

  .carousel-row-media {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .carousel-row + .carousel-row {
    padding-top: 0;
    border-top: 0;
  }

  .registration-form {
    width: 100%;
    justify-self: stretch;
  }

  .patron-title,
  .patron-rotator {
    min-height: 76px;
  }

  .patron-title {
    padding: 8px;
  }

  .patron-title span {
    font-size: 0.48rem;
    line-height: 1.14;
    letter-spacing: 0.04em;
  }

  .patron-slide {
    padding: 7px;
  }

  .patron-slide img {
    max-height: 56px;
  }

  .patron-slide-wca {
    padding: 3px;
  }

  .patron-slide-wca img {
    max-height: 66px;
  }

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

  .footer-logos {
    justify-self: start;
  }

  .footer-organizers {
    justify-self: start;
    text-align: left;
  }

  .footer-logo-item {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .footer-logo-item img {
    width: 78px;
  }

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

  .partner-page-grid-sponsors:not(.partner-page-grid-sponsors-centered) {
    grid-template-columns: 1fr;
  }

  .partner-page-grid.partner-page-grid-patronage {
    grid-template-columns: 1fr;
  }

  .partner-page-grid-patronage .patronage-feature-card,
  .partner-page-grid-patronage .partner-page-card:nth-child(2),
  .partner-page-grid-patronage .partner-page-card:nth-child(3),
  .partner-page-grid-patronage .partner-page-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .partner-page-grid.partner-page-grid-sponsors-centered {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .committee-grid.committee-grid-technical {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .committee-grid-technical .committee-card-text {
    min-height: 168px;
  }

  .partner-page-grid-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1040px;
  }

  .partner-page-grid-organizers {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1040px;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 82px;
  }

  .partner-page-grid-sponsors,
  .partner-page-grid.partner-page-grid-sponsors-centered,
  .partner-page-grid-compact {
    grid-template-columns: 1fr;
  }

  .partner-page-grid-patronage .patronage-feature-card {
    grid-column: auto;
  }

  .partner-page-grid-patronage .partner-page-card:nth-child(2),
  .partner-page-grid-patronage .partner-page-card:nth-child(3),
  .partner-page-grid-patronage .partner-page-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .partner-page-grid-organizers {
    grid-template-columns: 1fr;
  }

  .committee-grid.committee-grid-technical {
    grid-template-columns: 1fr;
  }

  .partner-carousel {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 8px;
  }

  .carousel-row {
    grid-template-columns: minmax(98px, 0.82fr) minmax(142px, 1.18fr);
    gap: 8px;
    width: 100%;
  }

  .carousel-row-media,
  .carousel-row-patrons,
  .carousel-row-partners {
    grid-template-columns: minmax(98px, 0.82fr) minmax(142px, 1.18fr);
    width: 100%;
  }

  .carousel-row + .carousel-row {
    padding-top: 0;
    border-top: 0;
  }

  .patron-title,
  .patron-rotator {
    min-height: 82px;
  }

  .site-header {
    min-height: 70px;
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: clamp(178px, 56vw, 286px);
    max-height: 56px;
  }

  .brand strong {
    font-size: 0.74rem;
  }

  .brand small {
    font-size: 0.54rem;
  }

  .nav {
    top: 100%;
  }

  .hero {
    min-height: 640px;
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 4.1rem);
  }

  .hero-content {
    padding-top: 112px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-tags,
  .hero-tags span,
  .countdown,
  .hero-event-cloud {
    width: 100%;
  }

  .section {
    width: min(100% - 28px, 1440px);
  }

  .map-area {
    padding: 7px 9px;
    font-size: 0.58rem;
  }

  .map-area-sks {
    top: 18%;
    right: 5%;
    max-width: 152px;
    text-align: center;
  }

  .map-pin {
    grid-template-columns: 28px minmax(92px, 1fr);
    gap: 7px;
  }

  .map-pin strong {
    width: 28px;
    height: 28px;
    border-width: 2px;
    font-size: 0.72rem;
  }

  .map-pin em {
    max-width: 132px;
    padding: 6px 8px;
    font-size: 0.58rem;
  }

  .map-pin-a1 {
    left: 8%;
  }

  .map-pin-sks {
    top: 39%;
    right: 6%;
  }

  .map-pin-geo {
    right: 6%;
    bottom: 15%;
  }
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .voice-gallery {
    height: auto;
    min-height: 0;
  }

  .voice-profile-card {
    grid-template-columns: minmax(104px, 0.48fr) minmax(0, 1fr);
  }

  .voice-profile-photo img,
  .voice-profile-photo .voice-photo-frame {
    min-height: 260px;
  }
}

@media (max-width: 760px) {
  .voice-gallery {
    display: grid;
    gap: 18px;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .voice-profile-card,
  .voice-profile-card.is-active,
  .voice-profile-card:hover,
  .voice-profile-card:focus-within {
    grid-template-columns: 1fr;
    padding: clamp(16px, 4vw, 22px);
    border: 2px solid rgba(139, 0, 48, 0.12);
    border-radius: 8px;
    box-shadow:
      0 10px 0 rgba(25, 26, 31, 0.05),
      0 24px 42px rgba(25, 26, 31, 0.12);
    transform: none;
  }

  .voice-profile-card + .voice-profile-card {
    border-left: 2px solid rgba(139, 0, 48, 0.12);
  }

  .voice-profile-card:not(:hover):not(:focus-within):not(.is-active) .voice-profile-copy,
  .voice-profile-card .voice-profile-copy {
    display: grid;
    opacity: 1;
    transform: none;
  }

  .voice-profile-photo {
    min-height: 230px;
    clip-path: polygon(9% 0, 100% 0, 91% 100%, 0 100%);
  }

  .voice-profile-photo img,
  .voice-profile-photo .voice-photo-frame {
    min-height: 230px;
  }

  .voice-profile-card .voice-institution-logos {
    justify-content: flex-start;
  }

  .voice-modal {
    padding: 14px;
  }

  .voice-modal-card {
    max-height: 88vh;
    padding: 24px 18px;
  }

  .voice-modal-logos {
    margin-right: 42px;
  }

  .voice-modal-logos img {
    max-width: 144px;
    height: 46px;
  }
}
