:root {
  --ink: #0c0c0c;
  --charcoal: #171717;
  --paper: #f0eee9;
  --white: #ffffff;
  --muted: #6b6965;
  --line: #cbc8c1;
  --red: #a90f1b;
  --red-dark: #710811;
  --yellow: #e5b936;
  --wrap: 1240px;
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

button,
input,
textarea {
  font: inherit;
}

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

::selection {
  background: var(--red);
  color: var(--white);
}

.wrap {
  width: min(var(--wrap), calc(100% - 64px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

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

.event-alert {
  background: var(--red);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.alert-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.alert-inner strong {
  padding-right: 20px;
  border-right: 1px solid rgba(255,255,255,.4);
  font-weight: 900;
}

.alert-inner span {
  flex: 1;
}

.alert-inner a {
  font-weight: 900;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 12, 12, .96);
  border-bottom: 1px solid #2e2e2e;
  color: var(--white);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  font-family: var(--display);
  font-size: 1rem;
  font-stretch: condensed;
  font-weight: 950;
  letter-spacing: -.06em;
}

.brand > span:last-child {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-family: var(--display);
  font-size: 1.05rem;
  font-stretch: condensed;
  font-weight: 950;
  letter-spacing: -.025em;
}

.brand small {
  margin-top: 4px;
  color: #aaa;
  font-size: .65rem;
  font-weight: 750;
  letter-spacing: .22em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.desktop-nav a {
  color: #ccc;
  font-size: .81rem;
  font-weight: 800;
  letter-spacing: .075em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .15s ease;
}

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

.header-cta {
  padding: 12px 18px;
  background: var(--red);
  color: var(--white);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-menu {
  display: none;
  margin-left: auto;
  position: relative;
}

.mobile-menu summary {
  cursor: pointer;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  list-style: none;
  text-transform: uppercase;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  position: absolute;
  top: 44px;
  right: 0;
  width: 240px;
  display: grid;
  background: var(--charcoal);
  border: 1px solid #393939;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.mobile-menu nav a {
  padding: 16px 18px;
  border-bottom: 1px solid #333;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.55) contrast(1.08) brightness(.66);
  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.68) 43%, rgba(0,0,0,.16) 72%, rgba(0,0,0,.38) 100%),
    linear-gradient(0deg, rgba(0,0,0,.75), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 108px 94px;
}

.kicker,
.eyebrow,
.section-number {
  margin: 0 0 18px;
  color: var(--red);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero .kicker {
  color: var(--white);
}

.hero .kicker::before {
  content: "";
  width: 46px;
  height: 4px;
  display: inline-block;
  margin: 0 13px 2px 0;
  background: var(--red);
}

.hero h1,
.section h2,
.event-section h2,
.team-section h2,
.final-call h2,
.admin-page h1 {
  margin: 0;
  font-family: var(--display);
  font-stretch: condensed;
  font-weight: 950;
  letter-spacing: -.055em;
  line-height: .9;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 870px;
  font-size: clamp(3.8rem, 7.2vw, 7rem);
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero-lead {
  max-width: 640px;
  margin: 30px 0 0;
  color: #e0e0e0;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions,
.event-actions,
.material-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 21px;
  border: 2px solid transparent;
  color: inherit;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

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

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

.button-red:hover {
  background: #c01422;
  border-color: #c01422;
}

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

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

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

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

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

.button-line {
  border-color: var(--ink);
  color: var(--ink);
}

.hero-credit {
  position: absolute;
  right: 20px;
  bottom: 16px;
  z-index: 2;
  margin: 0;
  color: rgba(255,255,255,.6);
  font-size: .68rem;
  letter-spacing: .06em;
}

.declaration {
  background: var(--red);
  color: var(--white);
  overflow: hidden;
}

.declaration .wrap {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.2vw, 1.9rem);
  font-stretch: condensed;
  font-weight: 950;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.declaration strong {
  color: var(--yellow);
}

.section {
  padding-block: 120px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 8vw;
}

.section h2,
.event-section h2,
.team-section h2 {
  font-size: clamp(2.8rem, 5vw, 5.1rem);
}

.editorial-copy {
  max-width: 710px;
}

.editorial-copy p {
  color: #45433f;
  font-size: 1.05rem;
}

.editorial-copy .large-copy {
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 650;
  letter-spacing: -.025em;
  line-height: 1.38;
}

blockquote {
  position: relative;
  margin: 54px 0 0;
  padding: 30px 0 0 48px;
  border-top: 5px solid var(--red);
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  font-stretch: condensed;
  font-weight: 950;
  letter-spacing: -.035em;
  line-height: 1;
  text-transform: uppercase;
}

blockquote span {
  position: absolute;
  left: 0;
  top: 28px;
  font-size: 4rem;
  line-height: .7;
}

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

.section-heading {
  max-width: 830px;
  margin-bottom: 58px;
}

.section-heading > p:last-child {
  max-width: 670px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.light-heading > p:last-child {
  color: #bdbdbd;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #454545;
  border-bottom: 1px solid #454545;
}

.process-grid article {
  min-height: 310px;
  padding: 42px 36px;
  border-right: 1px solid #454545;
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid article > span {
  display: block;
  margin-bottom: 64px;
  color: var(--red);
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 950;
}

.process-grid h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 2.15rem;
  font-stretch: condensed;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.process-grid p {
  margin: 14px 0 0;
  color: #aaa;
  font-size: .96rem;
}

.law-panel {
  margin-top: 78px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 55px;
  padding: 58px;
  background: var(--red);
  color: var(--white);
}

.law-mark {
  font-family: Georgia, serif;
  font-size: 9rem;
  font-weight: 700;
  line-height: .8;
  opacity: .28;
}

.law-panel .eyebrow {
  color: var(--white);
}

.law-panel h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4.25rem);
  font-stretch: condensed;
  letter-spacing: -.045em;
  line-height: .95;
  text-transform: uppercase;
}

.law-panel p:not(.eyebrow) {
  max-width: 770px;
  color: #f7d9dc;
}

.law-panel a {
  display: inline-block;
  margin-top: 12px;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.media-section {
  background: #e6e3dd;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 26px;
}

.media-item {
  grid-column: span 6;
  margin: 0;
  background: var(--white);
  border-bottom: 5px solid var(--ink);
}

.media-item:nth-child(3n) {
  grid-column: span 12;
}

.media-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}

.media-frame img,
.media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame video {
  object-fit: contain;
}

.media-type {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 12px;
  background: var(--red);
  color: var(--white);
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.media-item figcaption {
  padding: 25px 27px 27px;
}

.media-item figcaption > strong {
  display: block;
  font-size: 1.17rem;
  line-height: 1.35;
}

.media-item dl {
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.media-item dl div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.media-item dt {
  color: var(--muted);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.media-item dd {
  margin: 3px 0 0;
  font-size: .9rem;
  font-weight: 700;
}

.media-empty {
  padding: 65px;
  border: 2px solid var(--ink);
  background: transparent;
}

.media-empty span {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-stretch: condensed;
  font-weight: 950;
  letter-spacing: -.04em;
  line-height: 1;
  text-transform: uppercase;
}

.media-empty p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
}

.event-section {
  position: relative;
  overflow: hidden;
  background: var(--red);
  color: var(--white);
}

.event-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(169,15,27,.98) 0%, rgba(169,15,27,.92) 54%, rgba(169,15,27,.6) 100%),
    url("../images/galgomarsch-saarbruecken-protest.jpg") center / cover;
  mix-blend-mode: multiply;
  opacity: .34;
}

.event-layout {
  position: relative;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  padding-block: 110px;
}

.event-date {
  align-self: start;
  display: grid;
  padding: 25px;
  border: 5px solid var(--white);
  text-align: center;
  line-height: .78;
}

.event-date span {
  font-family: var(--display);
  font-size: 10rem;
  font-stretch: condensed;
  font-weight: 950;
  letter-spacing: -.1em;
}

.event-date strong {
  padding: 18px 0 14px;
  border-block: 2px solid rgba(255,255,255,.55);
  font-size: 2.9rem;
  letter-spacing: .12em;
}

.event-date small {
  padding-top: 18px;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: .22em;
}

.event-copy .section-number {
  color: var(--white);
}

.event-copy > p:not(.section-number) {
  max-width: 720px;
  color: #f6d7da;
  font-size: 1.12rem;
}

.event-facts {
  margin: 38px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.5);
  border-bottom: 1px solid rgba(255,255,255,.5);
}

.event-facts div {
  padding: 20px 22px 20px 0;
  border-right: 1px solid rgba(255,255,255,.35);
}

.event-facts div + div {
  padding-left: 22px;
}

.event-facts div:last-child {
  border-right: 0;
}

.event-facts dt {
  color: #f5bec3;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.event-facts dd {
  margin: 5px 0 0;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.35;
}

.countdown {
  max-width: 700px;
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.countdown div {
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,.4);
  text-align: center;
}

.countdown div:last-child {
  border-right: 0;
}

.countdown strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-stretch: condensed;
  line-height: .95;
}

.countdown span {
  color: #f4c5c9;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

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

.map-section {
  background: #d8d4cc;
}

.map-heading {
  max-width: 900px;
}

.map-card {
  background: var(--white);
  border-top: 6px solid var(--red);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .13);
}

.map-card iframe {
  width: 100%;
  height: 520px;
  display: block;
  border: 0;
  filter: grayscale(.25) contrast(1.08);
}

.map-footer {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 30px;
}

.map-footer div {
  display: grid;
  gap: 3px;
}

.map-footer div span {
  color: var(--red);
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.map-footer div strong {
  font-family: var(--display);
  font-size: 1.6rem;
  font-stretch: condensed;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.action-list {
  border-top: 3px solid var(--ink);
}

.action-list article {
  min-height: 132px;
  display: grid;
  grid-template-columns: 75px 1fr 60px;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid var(--line);
}

.action-list article > span {
  color: var(--red);
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 950;
}

.action-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-stretch: condensed;
  letter-spacing: -.035em;
  line-height: 1;
  text-transform: uppercase;
}

.action-list p {
  margin: 7px 0 0;
  color: var(--muted);
}

.action-list article > a {
  color: var(--red);
  font-size: 2.2rem;
  font-weight: 300;
  text-align: right;
  text-decoration: none;
}

.material-panel {
  margin-top: 78px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 45px;
  padding: 46px;
  background: var(--yellow);
}

.material-panel h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-stretch: condensed;
  letter-spacing: -.035em;
  line-height: 1;
  text-transform: uppercase;
}

.material-panel p:not(.eyebrow) {
  margin-bottom: 0;
}

.material-panel .eyebrow {
  color: var(--ink);
}

.material-actions {
  margin-top: 0;
}

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

.flyer-heading > p:last-child {
  color: #b8b8b8;
}

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

.flyer-card {
  width: 100%;
  max-width: 510px;
  justify-self: center;
  display: flex;
  flex-direction: column;
  background: #0b0b0b;
  border-bottom: 5px solid var(--red);
}

.flyer-preview {
  aspect-ratio: 148 / 210;
  display: block;
  padding: 14px;
  overflow: hidden;
  background: #0b0b0b;
}

.flyer-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.flyer-card-body {
  display: grid;
  gap: 10px;
  padding: 18px 20px 20px;
  border-top: 1px solid #393939;
  background: #232323;
}

.flyer-card-body > span {
  color: var(--red);
  font-size: .7rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.flyer-actions {
  display: grid;
  justify-items: start;
  gap: 3px;
}

.flyer-actions a {
  padding-block: 3px;
  color: #d2d2d2;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .07em;
  line-height: 1.35;
  text-decoration: none;
  text-transform: uppercase;
}

.flyer-actions a:hover,
.flyer-actions a:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sources-section {
  background: #dedbd4;
}

.sources-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 8vw;
}

.sources-grid > * {
  min-width: 0;
}

.sources-grid h2 {
  max-width: 16ch;
  font-size: clamp(2.25rem, 3.7vw, 3.7rem);
  line-height: .96;
  overflow-wrap: anywhere;
}

.source-list {
  border-top: 3px solid var(--ink);
}

.source-list a {
  display: grid;
  padding: 23px 45px 23px 0;
  border-bottom: 1px solid #aaa7a0;
  position: relative;
  text-decoration: none;
}

.source-list a::after {
  content: "↗";
  position: absolute;
  top: 25px;
  right: 2px;
  color: var(--red);
  font-size: 1.3rem;
}

.source-list span {
  font-weight: 800;
  line-height: 1.4;
}

.source-list small {
  margin-top: 5px;
  color: var(--muted);
}

.team-section {
  padding-block: 100px;
  background: var(--ink);
  color: var(--white);
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 7vw;
}

.team-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid #555;
  list-style: none;
}

.team-list li {
  display: grid;
  grid-template-columns: minmax(170px, .5fr) minmax(0, 1.5fr);
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #555;
}

.team-list strong {
  font-family: var(--display);
  font-size: 1.2rem;
  font-stretch: condensed;
  text-transform: uppercase;
}

.team-list span {
  color: #aaa;
  line-height: 1.45;
  text-align: right;
}

.final-call {
  padding-block: 110px;
  background: var(--red);
  color: var(--white);
  text-align: center;
}

.final-call p {
  margin: 0 0 25px;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .18em;
}

.final-call h2 {
  font-size: clamp(3.1rem, 6.8vw, 6.75rem);
}

.final-call .button {
  margin-top: 35px;
}

.site-footer {
  background: #050505;
  color: var(--white);
}

.footer-top {
  min-height: 180px;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
  gap: 50px;
  border-bottom: 1px solid #333;
}

.footer-top > p {
  max-width: 470px;
  color: #888;
}

.footer-social {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.footer-social a,
.footer-bottom a {
  color: #bbb;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-resources {
  display: grid;
  grid-template-columns: minmax(230px, .42fr) minmax(0, 1.58fr);
  gap: 42px;
  align-items: center;
  margin-block: 28px;
  padding: 30px 28px;
  border-left: 5px solid var(--red);
  border-block: 1px solid #3a3a3a;
  background: linear-gradient(120deg, rgba(169,15,27,.2), #111 46%);
}

.footer-resources > span {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-stretch: condensed;
  font-weight: 950;
  letter-spacing: -.015em;
  line-height: 1.05;
  text-transform: uppercase;
}

.footer-resource-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.footer-resource-links a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 9px 11px;
  border: 1px solid #393939;
  background: rgba(0,0,0,.28);
  color: #d0d0d0;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .045em;
  line-height: 1.25;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}

.footer-resource-links a:hover,
.footer-resource-links a:focus-visible {
  color: var(--white);
  border-color: var(--red);
  background: rgba(169,15,27,.18);
}

.footer-bottom {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #777;
  font-size: .72rem;
}

.footer-bottom div {
  display: flex;
  gap: 25px;
}

/* Media administration */
.admin-page {
  min-height: 100vh;
  padding: 60px 0 100px;
  background: #e7e4de;
}

.admin-shell {
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto;
}

.admin-back {
  display: inline-block;
  margin-bottom: 45px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.admin-page h1 {
  max-width: 800px;
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.admin-intro {
  max-width: 710px;
  color: var(--muted);
  font-size: 1.08rem;
}

.admin-card {
  margin-top: 45px;
  padding: 40px;
  background: var(--white);
  border-top: 6px solid var(--red);
}

.admin-card h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 2.2rem;
  font-stretch: condensed;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.upload-form {
  margin-top: 30px;
  display: grid;
  gap: 24px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.file-field > span {
  color: #4f4d48;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #aaa7a0;
  border-radius: 0;
  padding: 13px 14px;
  background: #faf9f6;
  color: var(--ink);
  outline: none;
}

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

.field input:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(169,15,27,.15);
}

.file-field {
  display: grid;
  gap: 10px;
  padding: 28px;
  border: 2px dashed #86837d;
  background: #f6f4ef;
}

.file-field input {
  max-width: 100%;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #4f4d48;
  font-size: .88rem;
}

.form-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--red);
}

.upload-form button,
.danger-button {
  width: fit-content;
  min-height: 50px;
  padding: 13px 20px;
  border: 0;
  border-radius: 0;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.upload-form button:disabled,
.danger-button:disabled {
  cursor: wait;
  opacity: .55;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-weight: 750;
}

.form-status.error {
  color: var(--red);
}

.admin-media-list {
  margin-top: 30px;
  display: grid;
  gap: 15px;
}

.admin-media-row {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 15px;
  background: #f4f2ed;
  border: 1px solid #d1cec7;
}

.admin-media-row img,
.admin-media-row video {
  width: 130px;
  height: 82px;
  object-fit: cover;
  background: #111;
}

.admin-media-row strong,
.admin-media-row span {
  display: block;
}

.admin-media-row span {
  color: var(--muted);
  font-size: .82rem;
}

.danger-button {
  min-height: 40px;
  padding: 10px 14px;
  background: var(--ink);
  font-size: .7rem;
}

.access-note {
  margin-top: 35px;
  padding: 28px;
  border-left: 6px solid var(--red);
  background: var(--white);
}

@media (max-width: 980px) {
  .wrap {
    width: min(var(--wrap), calc(100% - 40px));
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: 680px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.45)), linear-gradient(0deg, rgba(0,0,0,.75), transparent);
  }

  .editorial-grid,
  .sources-grid,
  .team-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .process-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #454545;
  }

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

  .process-grid article > span {
    margin-bottom: 28px;
  }

  .event-layout {
    grid-template-columns: 190px 1fr;
    gap: 45px;
  }

  .event-date span {
    font-size: 7rem;
  }

  .material-panel {
    grid-template-columns: 1fr;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    padding-block: 45px;
  }

  .footer-top > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 74px;
  }

  .wrap {
    width: min(var(--wrap), calc(100% - 30px));
  }

  .event-alert {
    display: none;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 660px;
  }

  .hero-image {
    object-position: 56% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.55)), linear-gradient(0deg, rgba(0,0,0,.85), transparent 65%);
  }

  .hero-content {
    padding-block: 80px 68px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

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

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

  .hero-credit {
    display: none;
  }

  .declaration .wrap {
    min-height: 128px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    font-size: 1.25rem;
  }

  .section {
    padding-block: 78px;
  }

  .section h2,
  .event-section h2,
  .team-section h2 {
    font-size: clamp(2.55rem, 11.5vw, 4rem);
  }

  .law-panel {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 32px 25px;
  }

  .law-mark {
    font-size: 5rem;
  }

  .media-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .media-item,
  .media-item:nth-child(3n) {
    grid-column: auto;
  }

  .media-item dl {
    grid-template-columns: 1fr;
  }

  .media-empty {
    padding: 35px 25px;
  }

  .event-layout {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 75px;
  }

  .event-date {
    width: 180px;
  }

  .event-date span {
    font-size: 6.8rem;
  }

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

  .event-facts div,
  .event-facts div + div {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.3);
  }

  .event-facts div:last-child {
    border-bottom: 0;
  }

  .countdown div {
    padding-right: 10px;
  }

  .countdown strong {
    font-size: 2.5rem;
  }

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

  .action-list article {
    grid-template-columns: 42px 1fr 28px;
    gap: 12px;
    padding-block: 25px;
  }

  .material-panel {
    padding: 30px 24px;
  }

  .map-card iframe {
    height: 390px;
  }

  .map-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-footer .button {
    width: 100%;
  }

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

  .flyer-preview {
    min-height: 0;
  }

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

  .team-list li {
    display: grid;
    grid-template-columns: 1fr;
  }

  .team-list span {
    text-align: left;
  }

  .final-call {
    padding-block: 80px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-top > p {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-social {
    justify-items: start;
  }

  .footer-resources {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
  }

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

  .footer-bottom {
    min-height: 110px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }

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

  .admin-card {
    padding: 28px 20px;
  }

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

  .admin-media-row img,
  .admin-media-row video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
