:root {
  --ink: #0a1220;
  --ink-soft: #162134;
  --night: #070d17;
  --ivory: #f4efe3;
  --paper: #ece4d3;
  --gold: #d1b36a;
  --gold-soft: #ead8a4;
  --muted: #9ca4af;
  --line-dark: rgba(255, 255, 255, 0.15);
  --line-light: rgba(10, 18, 32, 0.18);
  --max: 1240px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--night);
}

html[data-language="sr"] [data-lang="en"],
html[data-language="en"] [data-lang="sr"] {
  display: none !important;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--night);
  background: var(--gold-soft);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 3rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--ivory);
  background: linear-gradient(180deg, rgba(4, 9, 17, 0.96), rgba(4, 9, 17, 0.76));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  background: rgba(4, 9, 17, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.header-inner {
  width: min(calc(100% - 2.5rem), 1380px);
  min-height: 76px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  transform: rotate(9deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 5px 6px;
  border-left: 1px solid rgba(244, 239, 227, 0.8);
  border-right: 1px solid rgba(244, 239, 227, 0.35);
  transform: rotate(-9deg);
}

.brand-mark span {
  position: absolute;
  left: 50%;
  top: -1px;
  width: 1px;
  height: 44px;
  background: var(--gold);
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-copy strong {
  font-size: 0.76rem;
  letter-spacing: 0.13em;
}

.brand-copy small {
  margin-top: 0.3rem;
  color: var(--gold-soft);
  font-size: 0.61rem;
  letter-spacing: 0.12em;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.3rem);
}

.main-nav a {
  position: relative;
  color: rgba(244, 239, 227, 0.78);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ivory);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.language-switcher {
  display: flex;
  align-items: center;
  color: rgba(244, 239, 227, 0.35);
  font-size: 0.78rem;
}

.language-switcher button {
  padding: 0.25rem 0.35rem;
  color: rgba(244, 239, 227, 0.5);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

.language-switcher button[aria-pressed="true"] {
  color: var(--gold-soft);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 770px;
  color: var(--ivory);
  background: var(--night);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 18, 0.98) 0%, rgba(5, 10, 18, 0.9) 31%, rgba(5, 10, 18, 0.36) 67%, rgba(5, 10, 18, 0.1) 100%),
    linear-gradient(0deg, rgba(5, 10, 18, 0.8) 0%, transparent 28%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 700px;
  padding-top: 155px;
  padding-bottom: 78px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1.5rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.45rem, 6.6vw, 6.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.hero-intro {
  max-width: 650px;
  margin: 2rem 0 0;
  color: rgba(244, 239, 227, 0.82);
  font-size: clamp(1.05rem, 1.5vw, 1.23rem);
  line-height: 1.55;
}

.date-lockup {
  margin-top: 2rem;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.1rem;
  border-left: 2px solid var(--gold);
}

.date-lockup strong {
  color: var(--gold-soft);
  font-size: 0.83rem;
  letter-spacing: 0.12em;
}

.date-lockup > span {
  color: rgba(244, 239, 227, 0.67);
  font-size: 0.91rem;
}

.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  min-height: 50px;
  padding: 0.8rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button-gold {
  color: var(--night);
  background: var(--gold);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: var(--gold-soft);
}

.button-ghost {
  color: var(--ivory);
  border-color: rgba(244, 239, 227, 0.4);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--ivory);
  background: rgba(255, 255, 255, 0.07);
}

.button-dark {
  width: 100%;
  color: var(--ivory);
  background: var(--ink);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #1b2a42;
}

.hero-status {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  min-height: 70px;
  display: flex;
  align-items: center;
  background: rgba(6, 11, 19, 0.78);
  border-top: 1px solid var(--line-dark);
  backdrop-filter: blur(12px);
}

.status-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.status-inner p {
  margin: 0;
  color: rgba(244, 239, 227, 0.72);
  font-size: 0.88rem;
}

.status-inner a {
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.live-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(209, 179, 106, 0.13);
}

.section {
  padding: clamp(5.5rem, 9vw, 9rem) 0;
}

.section-dark {
  color: var(--ivory);
  background: var(--ink);
}

.section-cream {
  background: var(--paper);
}

.manifesto {
  background:
    linear-gradient(rgba(10, 18, 32, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 18, 32, 0.06) 1px, transparent 1px),
    var(--ivory);
  background-size: 42px 42px;
}

.manifesto-grid,
.partners-grid,
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.manifesto-copy {
  padding-top: 3.3rem;
  font-size: 1.1rem;
}

.manifesto-copy p {
  margin: 0 0 1.3rem;
}

.pillars {
  margin-top: clamp(4rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.pillars article {
  padding: 2rem 1.5rem 2.3rem;
  border-left: 1px solid var(--line-light);
}

.pillars article:last-child {
  border-right: 1px solid var(--line-light);
}

.pillars article > span {
  color: #896f32;
  font-family: var(--serif);
  font-size: 1.3rem;
}

.pillars h3 {
  min-height: 3.2em;
  margin: 2rem 0 0.8rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.15;
}

.pillars p {
  margin: 0;
  color: #596171;
  font-size: 0.94rem;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.5fr);
  gap: 3rem;
  align-items: end;
}

.split-heading > p {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 1rem;
}

.programme-grid {
  margin-top: 4.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.programme-card {
  min-height: 370px;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: #0d1727;
}

.programme-card.feature-card {
  background:
    linear-gradient(140deg, rgba(209, 179, 106, 0.13), transparent 48%),
    #111d2e;
}

.card-meta,
.news-date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.status {
  padding: 0.35rem 0.55rem;
  display: inline-flex;
  align-items: center;
  color: var(--ivory);
  border: 1px solid currentColor;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.1;
}

.status-confirmed {
  color: var(--gold-soft);
}

.status-development {
  color: #b9cbea;
}

.status-tentative,
.status-selection {
  color: #c7c8cd;
}

.programme-card h3 {
  max-width: 580px;
  margin: 3rem 0 1rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.programme-card p {
  max-width: 600px;
  margin: 0;
  color: #aeb6c2;
}

.programme-card .card-lead {
  margin-bottom: 1.1rem;
  color: var(--ivory);
  font-size: 1.05rem;
}

.programme-card .card-bio {
  margin-top: 1.1rem;
}

.status-legend {
  margin-top: 3rem;
  padding: 2rem;
  border: 1px solid var(--line-dark);
}

.status-legend h3 {
  margin: 0 0 1.5rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.status-legend dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.status-legend dl > div {
  display: grid;
  gap: 0.5rem;
}

.status-legend dt {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-legend dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.legend-swatch {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c7c8cd;
}

.legend-swatch.confirmed {
  background: var(--gold);
}

.legend-swatch.development {
  background: #7693c6;
}

.news {
  background: var(--ivory);
}

.tickets-strip {
  color: var(--night);
  background: var(--gold);
  border-top: 1px solid rgba(10, 18, 32, 0.2);
  border-bottom: 1px solid rgba(10, 18, 32, 0.2);
}

.tickets-inner {
  min-height: 210px;
  padding-block: 2.4rem;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr) auto;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.tickets-inner h2 {
  margin: 0.85rem 0 0;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.tickets-inner p {
  max-width: 630px;
  margin: 0;
  color: #302a1e;
  font-size: 1rem;
}

.status-tickets {
  color: var(--night);
  border-color: rgba(10, 18, 32, 0.55);
}

.button-ticket {
  color: var(--ivory);
  background: var(--night);
  white-space: nowrap;
}

.button-ticket:hover,
.button-ticket:focus-visible {
  background: var(--ink-soft);
}

.news-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.news-card {
  min-height: 390px;
  padding: 2rem;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.news-card-primary {
  background: var(--paper);
}

.news-date {
  align-items: flex-start;
  color: #5d6570;
}

.news-date .status {
  color: #4f5660;
}

.news-date .status-confirmed {
  color: #715a21;
}

.news-date .status-development {
  color: #405f92;
}

.news-card h3 {
  margin: 3.5rem 0 1rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.7vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.news-card p {
  margin: 0;
  color: #535b68;
}

.volunteers {
  position: relative;
  overflow: hidden;
  background: #d9c89d;
}

.volunteers::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -260px;
  right: -180px;
  border: 1px solid rgba(10, 18, 32, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(10, 18, 32, 0.025),
    0 0 0 140px rgba(10, 18, 32, 0.025);
}

.volunteer-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.volunteer-intro > p:not(.section-kicker):not(.small-note) {
  max-width: 580px;
  margin: 2rem 0;
  font-size: 1.05rem;
}

.role-list {
  margin: 2rem 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1.5rem;
  list-style: none;
}

.role-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.role-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.73em;
  width: 5px;
  height: 5px;
  background: var(--ink);
  transform: rotate(45deg);
}

.small-note {
  max-width: 570px;
  color: #4f4c44;
  font-size: 0.86rem;
}

.volunteer-form {
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--ivory);
  box-shadow: 0 28px 70px rgba(42, 34, 17, 0.16);
}

.form-header {
  margin-bottom: 2rem;
  padding-bottom: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  border-bottom: 1px solid var(--line-light);
}

.form-header h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.form-number {
  color: #8a6f31;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.volunteer-form label {
  margin-bottom: 1rem;
  display: grid;
  gap: 0.4rem;
  color: #293346;
  font-size: 0.82rem;
  font-weight: 800;
}

.volunteer-form input,
.volunteer-form select,
.volunteer-form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  color: var(--ink);
  background: #fbf8f0;
  border: 1px solid #bbb3a3;
  border-radius: 0;
  outline: none;
}

.volunteer-form input:focus,
.volunteer-form select:focus,
.volunteer-form textarea:focus {
  border-color: #765f2b;
  box-shadow: 0 0 0 3px rgba(118, 95, 43, 0.14);
}

.consent {
  margin: 0.5rem 0 1.2rem !important;
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.65rem !important;
  font-weight: 500 !important;
  line-height: 1.45;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  accent-color: var(--ink);
}

.form-note {
  margin: 0.85rem 0 0;
  color: #636a75;
  font-size: 0.8rem;
  text-align: center;
}

.partners-grid > div:last-child {
  padding-top: 3.4rem;
  font-size: 1.06rem;
}

.partner-types {
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.partner-types > span {
  padding: 0.45rem 0.65rem;
  border: 1px solid #afa58e;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #6c541c;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.media {
  color: var(--ivory);
  background: #111923;
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.media-grid > div:first-child > p:not(.section-kicker) {
  max-width: 560px;
  margin: 2rem 0 0;
  color: #aeb5bf;
}

.media-actions {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.media-actions > * {
  min-height: 104px;
  padding: 1.2rem 0;
  display: grid;
  align-content: center;
  gap: 0.2rem;
  border-bottom: 1px solid var(--line-dark);
  text-decoration: none;
}

.media-actions > a {
  transition: padding 160ms ease, color 160ms ease;
}

.media-actions > a:hover,
.media-actions > a:focus-visible {
  padding-left: 1rem;
  color: var(--gold-soft);
}

.media-actions strong {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-actions span {
  color: #929ba8;
  font-size: 0.91rem;
}

.about {
  background:
    radial-gradient(circle at 12% 120%, rgba(209, 179, 106, 0.14), transparent 35%),
    var(--ink);
  border-top: 1px solid var(--line-dark);
}

.about h2 span {
  color: var(--gold-soft);
  font-size: 0.45em;
  letter-spacing: 0;
}

.about-grid > div:last-child {
  padding-top: 3.4rem;
}

.about-grid p {
  margin: 0;
  color: #b4bbc5;
  font-size: 1.04rem;
}

.site-footer {
  padding: 4rem 0 1.8rem;
  color: var(--ivory);
  background: var(--night);
  border-top: 1px solid var(--line-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 0.25rem;
}

.footer-grid strong {
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-grid span,
.footer-grid a {
  color: #959eaa;
  font-size: 0.86rem;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--gold-soft);
}

.footer-brand strong {
  color: var(--gold-soft);
  font-size: 0.9rem;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 1.3rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  color: #6f7885;
  border-top: 1px solid var(--line-dark);
  font-size: 0.75rem;
}

:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    min-height: 44px;
    padding: 0.4rem 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--ivory);
    background: transparent;
    border: 0;
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .menu-lines,
  .menu-lines::before,
  .menu-lines::after {
    width: 20px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .menu-lines {
    position: relative;
  }

  .menu-lines::before,
  .menu-lines::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-lines::before {
    top: -6px;
  }

  .menu-lines::after {
    top: 6px;
  }

  .menu-toggle[aria-expanded="true"] .menu-lines {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] .menu-lines::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-lines::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 76px 0 auto;
    max-height: 0;
    padding: 0 1.5rem;
    display: grid;
    justify-content: stretch;
    gap: 0;
    overflow: hidden;
    background: rgba(4, 9, 17, 0.98);
    transition: max-height 220ms ease, padding 220ms ease;
  }

  .main-nav.open {
    max-height: calc(100vh - 76px);
    padding-block: 1rem 2rem;
    border-bottom: 1px solid var(--line-dark);
  }

  .main-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line-dark);
  }

  .main-nav a::after {
    display: none;
  }

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

  .pillars article:nth-child(3) {
    border-top: 1px solid var(--line-light);
  }

  .pillars article:nth-child(4) {
    border-top: 1px solid var(--line-light);
  }

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

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

  .tickets-inner .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .news-card-primary {
    grid-column: 1 / -1;
  }

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

  .volunteer-intro {
    max-width: 800px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 2rem), var(--max));
  }

  .header-inner {
    width: calc(100% - 1rem);
    min-height: 68px;
    gap: 0.35rem;
  }

  .brand {
    gap: 0.5rem;
  }

  .brand-mark {
    width: 27px;
    height: 36px;
  }

  .brand-mark span {
    height: 36px;
  }

  .brand-copy strong {
    font-size: 0.61rem;
  }

  .brand-copy small {
    font-size: 0.5rem;
  }

  .menu-toggle {
    padding-inline: 0.3rem;
    font-size: 0;
  }

  .menu-toggle .menu-lines {
    margin-right: 0.2rem;
  }

  .language-switcher {
    font-size: 0.7rem;
  }

  .main-nav {
    inset-block-start: 68px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    width: 155%;
    max-width: none;
    left: -44%;
    right: auto;
    object-position: 62% center;
    opacity: 0.72;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 10, 18, 0.95) 0%, rgba(5, 10, 18, 0.62) 100%),
      linear-gradient(0deg, rgba(5, 10, 18, 0.96) 0%, rgba(5, 10, 18, 0.15) 55%, rgba(5, 10, 18, 0.58) 100%);
  }

  .hero-content {
    min-height: 690px;
    padding-top: 120px;
    padding-bottom: 110px;
    justify-content: flex-start;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(3rem, 14.8vw, 4.7rem);
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
  }

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

  .hero-status {
    min-height: 84px;
  }

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

  .status-inner a {
    display: none;
  }

  .section {
    padding-block: 5rem;
  }

  .manifesto-grid,
  .partners-grid,
  .about-grid,
  .split-heading,
  .media-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .manifesto-copy,
  .partners-grid > div:last-child,
  .about-grid > div:last-child {
    padding-top: 0;
  }

  .section h2 {
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }

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

  .pillars article {
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
  }

  .pillars article:last-child {
    border-bottom: 0;
  }

  .pillars h3 {
    min-height: 0;
    margin-top: 1.2rem;
  }

  .programme-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .tickets-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .tickets-inner .button {
    width: 100%;
    grid-column: auto;
  }

  .programme-card {
    min-height: 0;
  }

  .news-card-primary {
    grid-column: auto;
  }

  .news-card {
    min-height: 0;
  }

  .status-legend dl {
    grid-template-columns: 1fr;
  }

  .volunteer-grid {
    gap: 3rem;
  }

  .role-list,
  .field-row {
    grid-template-columns: 1fr;
  }

  .volunteer-form {
    margin-inline: -0.4rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
  }
}

@media (max-width: 430px) {
  .brand-copy small {
    display: none;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
