@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/roboto-latin-variable.0a44e0bb6ba5.woff2") format("woff2");
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url("../fonts/oswald-latin-variable.9dde37975475.woff2") format("woff2");
}

@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/pt-sans-latin-regular.5f81586551e5.woff2") format("woff2");
}

@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/pt-sans-latin-bold.38d3aa3b6c9c.woff2") format("woff2");
}

:root {
  --ink: #171717;
  --ink-soft: #2a2927;
  --orange: #f3a23a;
  --orange-dark: #a04f05;
  --cream: #fbf3e7;
  --cream-deep: #f2e7d8;
  --white: #ffffff;
  --muted: #6d675f;
  --line: #e5ddd1;
  --success: #22653c;
  --error: #9f2e27;
  --shadow: 0 18px 45px rgba(34, 27, 18, 0.1);
  --shell: 74rem;
  --display: "Oswald", "Arial Narrow", sans-serif;
  --body: "PT Sans", Arial, sans-serif;
  --navigation: "Roboto", Arial, sans-serif;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.125rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

h1,
h2,
h3,
p,
ul,
ol,
dl,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  hyphens: none;
  letter-spacing: -0.025em;
  line-height: 1.08;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

h1 {
  margin-bottom: 1.35rem;
  font-size: clamp(3rem, 12vw, 5.8rem);
  hyphens: none;
  word-break: normal;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.25rem, 8vw, 4rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.5rem, 5vw, 2rem);
}

p {
  margin-bottom: 1.25rem;
}

a,
a:visited,
a:hover,
a:focus,
a:active {
  text-decoration: none;
}

a {
  color: inherit;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

a:hover {
  color: var(--orange-dark);
}

button {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid #1769aa;
  outline-offset: 4px;
}

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

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

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

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  translate: 0 -200%;
}

.skip-link:focus {
  color: var(--white);
  translate: 0 0;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.hero-lead {
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 3vw, 1.28rem);
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.button,
.button:visited {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.8rem 1.15rem;
  border: 1px solid var(--orange);
  border-radius: 0.15rem;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--navigation);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.button:hover,
.button:focus-visible,
.button:active {
  border-color: var(--orange-dark);
  background-color: var(--orange-dark);
  color: var(--white);
}

.button .icon-inline {
  transition: filter 160ms ease, opacity 160ms ease;
}

.button:hover .icon-inline,
.button:focus-visible .icon-inline,
.button:active .icon-inline {
  filter: brightness(0) invert(1);
}

.button-small {
  min-height: 2.55rem;
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
}

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

.button-dark:hover,
.button-dark:focus-visible,
.button-dark:active {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button-dark .icon-inline {
  filter: brightness(0) invert(1);
}

.button-dark:hover .icon-inline,
.button-dark:focus-visible .icon-inline,
.button-dark:active .icon-inline {
  filter: none;
}

.button-light,
.button-light:visited {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button-light:hover,
.button-light:focus-visible,
.button-light:active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.button-light .icon-inline,
.button-light:hover .icon-inline,
.button-light:focus-visible .icon-inline,
.button-light:active .icon-inline {
  filter: none;
}

.button:disabled {
  border-color: #c9c0b5;
  background: #ddd5ca;
  color: #6a645d;
  cursor: not-allowed;
}

.button:disabled .icon-inline {
  filter: none;
  opacity: 0.55;
}

.confirmation-page {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(243, 162, 58, 0.2), transparent 28rem),
    var(--cream);
}

.confirmation-shell {
  width: min(100%, 44rem);
  margin-inline: auto;
}

.confirmation-card {
  padding: clamp(1.25rem, 4vw, 2.75rem);
  border-top: 0.4rem solid var(--orange);
  background: var(--white);
  box-shadow: var(--shadow);
}

.confirmation-brand {
  display: inline-flex;
  margin-bottom: clamp(1.25rem, 4vw, 2rem);
}

.confirmation-brand img {
  width: clamp(9.5rem, 32vw, 12.625rem);
}

.confirmation-card h1 {
  max-width: 14ch;
  margin-bottom: 1rem;
  font-size: clamp(2.3rem, 8vw, 4.25rem);
}

.confirmation-lead {
  max-width: 40rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 3vw, 1.3rem);
  line-height: 1.55;
}

.confirmation-summary {
  display: grid;
  gap: 0.2rem;
  margin: 1.25rem 0;
  padding: clamp(1rem, 4vw, 1.5rem);
  border-left: 0.3rem solid var(--orange-dark);
  background: var(--cream);
}

.confirmation-summary span {
  color: var(--muted);
  font-family: var(--navigation);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.confirmation-summary strong {
  overflow-wrap: anywhere;
}

.confirmation-summary strong + span {
  margin-top: 1rem;
}

.confirmation-note {
  max-width: 39rem;
  font-weight: 700;
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
}

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

.confirmation-help {
  max-width: 40rem;
  margin: 1.25rem auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
}

@media (min-width: 36rem) {
  .confirmation-actions .button {
    width: auto;
  }
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding-block: 0.2rem;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--orange-dark);
}

.text-link .icon-inline,
.back-link .icon-inline {
  transition: filter 180ms ease;
}

.text-link:hover .icon-inline,
.text-link:focus-visible .icon-inline,
.back-link:hover .icon-inline,
.back-link:focus-visible .icon-inline {
  filter: brightness(0) saturate(100%) invert(57%) sepia(92%) saturate(320%) hue-rotate(346deg) brightness(59%) contrast(144%);
}

.text-link-dark {
  color: var(--ink);
}

.icon {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
}

.icon-inline {
  width: 1rem;
  height: 1rem;
}

.top-bar {
  background: var(--ink);
  color: var(--white);
  font-family: var(--navigation);
  font-size: 0.78rem;
  font-weight: 700;
}

.top-bar-inner,
.top-bar-contact,
.top-bar-social,
.top-bar a {
  display: flex;
  align-items: center;
}

.top-bar-inner {
  min-height: 2.7rem;
  justify-content: space-between;
  gap: 0.4rem 1rem;
}

.top-bar-contact,
.top-bar-social {
  gap: 0.2rem 0.75rem;
}

.top-bar a,
.top-bar a:visited {
  min-height: 2.7rem;
  gap: 0.38rem;
  color: var(--white);
  white-space: nowrap;
}

.top-bar a:hover,
.top-bar a:focus-visible,
.top-bar a:active {
  color: var(--orange);
}

.top-bar-icon {
  display: block;
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  object-fit: contain;
  transform: translateY(-1px);
  filter: brightness(0) invert(1);
  transition: filter 160ms ease;
}

.top-bar-icon-whatsapp {
  transform: translateY(-1px) scale(0.875);
}

.top-bar a:hover .top-bar-icon,
.top-bar a:focus-visible .top-bar-icon,
.top-bar a:active .top-bar-icon {
  filter: brightness(0) saturate(100%) invert(73%) sepia(56%) saturate(969%) hue-rotate(334deg) brightness(99%) contrast(92%);
}

.top-bar-contact-value,
.top-bar-social-label {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  background: var(--white);
}

.header-inner {
  min-height: 4.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 8.7rem;
  height: auto;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.js .menu-toggle {
  display: inline-flex;
}

.menu-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.menu-icon-close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-icon-open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-icon-close {
  display: block;
}

.site-navigation {
  position: static;
  width: 100%;
  padding: 1.2rem 1rem 1.5rem;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  font-family: var(--navigation);
  font-size: 1.05rem;
}

.js .site-navigation {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
}

.js .site-navigation[data-open] {
  display: block;
}

.site-navigation ul {
  display: grid;
  gap: 0;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.site-navigation li {
  border-bottom: 1px solid var(--line);
}

.site-navigation li a {
  display: block;
  padding: 0.85rem 0;
  font-weight: 700;
}

.site-navigation a[aria-current="page"] {
  color: var(--orange-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 4rem;
  background-color: var(--cream);
  background-image: linear-gradient(rgba(251, 243, 231, 0.93), rgba(251, 243, 231, 0.93)), url("/assets/images/lets-netz_hintergrund_abstrakte-formen-pastell-480w.81491802566d.webp");
  background-position: center;
  background-size: cover;
}

@media (min-width: 30rem), (min-resolution: 1.5dppx) {
  .hero {
    background-image: linear-gradient(rgba(251, 243, 231, 0.93), rgba(251, 243, 231, 0.93)), url("/assets/images/lets-netz_hintergrund_abstrakte-formen-pastell-768w.b849725c22e1.webp");
  }
}

@media (min-width: 48rem) {
  .hero {
    background-image: linear-gradient(rgba(251, 243, 231, 0.93), rgba(251, 243, 231, 0.93)), url("/assets/images/lets-netz_hintergrund_abstrakte-formen-pastell-1200w.47b0b82725a3.webp");
  }
}

@media (min-width: 75rem), (min-width: 48rem) and (min-resolution: 1.5dppx) {
  .hero {
    background-image: linear-gradient(rgba(251, 243, 231, 0.93), rgba(251, 243, 231, 0.93)), url("/assets/images/lets-netz_hintergrund_abstrakte-formen-pastell-1920w.981b35707c87.webp");
  }
}

.hero-grid {
  display: grid;
  gap: 3.5rem;
}

.hero-copy {
  align-self: center;
}

.hero-copy h1 {
  max-width: 11ch;
}

.hero-visual {
  position: relative;
  max-width: 36rem;
  margin-inline: auto;
  padding: 1rem 0.6rem 0.6rem 0;
}

.hero-visual::before {
  position: absolute;
  inset: 0 0.1rem 1.25rem 2.15rem;
  border-radius: 1rem;
  background: var(--orange);
  content: "";
  rotate: 4deg;
}

.hero-visual > .hero-photo {
  position: relative;
  z-index: 1;
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.brand-seal {
  position: absolute;
  z-index: 2;
  right: -0.2rem;
  bottom: -1.2rem;
  width: 7.2rem;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border: 0.35rem solid var(--white);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 8px 22px rgba(34, 27, 18, 0.2);
  rotate: 8deg;
  text-align: center;
}

.brand-seal span {
  display: block;
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-seal strong {
  display: block;
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 0.9;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
  margin: 1.7rem 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
  list-style: none;
}

.hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-facts li::before {
  width: 0.42rem;
  height: 0.42rem;
  flex: 0 0 0.42rem;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.stats {
  padding-block: 0.75rem;
  background: var(--ink);
  color: var(--white);
}

.stats-grid {
  display: grid;
  gap: 0;
}

.stats-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1.25rem 0.75rem;
  text-align: center;
}

.stats-grid > div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stats strong {
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(2.1rem, 8vw, 2.6rem);
  font-weight: 400;
  line-height: 1;
}

.stats span {
  color: #e9e4dc;
  font-size: 1rem;
  line-height: 1.35;
}

.section {
  padding-block: clamp(4.5rem, 11vw, 8rem);
}

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

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

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

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark .eyebrow {
  color: var(--orange);
}

.section-heading {
  max-width: 34rem;
}

.section-heading-wide {
  max-width: 48rem;
  margin-bottom: 2.2rem;
}

.section-heading-centered {
  max-width: 50rem;
  margin: 0 auto 2.7rem;
  text-align: center;
}

.partner-community-copy {
  text-wrap: balance;
}

.brand-name {
  white-space: nowrap;
}

.community-grid,
.split-content,
.story-grid,
.founder-grid,
.event-info-grid,
.form-section-grid,
.contact-options {
  display: grid;
  gap: 2.5rem;
}

.event-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(34, 27, 18, 0.06);
}

.event-date {
  min-height: 8rem;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 1rem;
  background: var(--orange);
  color: var(--ink);
}

.event-date strong {
  font-family: var(--display);
  font-size: 3.1rem;
  font-weight: 400;
  line-height: 1;
}

.event-date span {
  max-width: 9rem;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
}

.event-card-content {
  padding: 1.5rem;
}

.event-card-content > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
}

.event-meta {
  display: grid;
  gap: 0.55rem;
  margin: 1.1rem 0 1.25rem;
}

.event-meta > div {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.6rem;
  align-items: center;
}

.event-meta dt,
.event-meta dd {
  margin: 0;
}

.event-meta dt {
  display: grid;
  place-items: center;
  align-self: center;
}

.event-meta .icon {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0;
}

.event-meta dd {
  font-size: 0.94rem;
}

.event-meta > .event-meta-location {
  align-items: start;
}

.event-meta-location dt {
  align-self: start;
  padding-top: 0.16rem;
}

.event-meta-location dd {
  line-height: 1.45;
}

.benefit-grid {
  display: grid;
  gap: 1rem;
}

.benefit-grid article {
  min-height: 17rem;
  padding: 1.75rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.benefit-grid article > span,
.contact-options article > span {
  display: block;
  margin-bottom: 1.6rem;
  color: var(--orange-dark);
  font-family: var(--display);
  font-size: 2.1rem;
}

.benefit-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

.community-photo {
  width: 100%;
  max-width: 35rem;
  overflow: hidden;
  border-radius: 0.8rem;
  box-shadow: var(--shadow);
}

.community-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0.8rem;
  object-fit: cover;
}

.community-grid > div:last-child {
  align-self: center;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.partner-logo {
  min-height: 14rem;
  display: grid;
  grid-template-rows: minmax(9.5rem, 1fr) auto;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.partner-logo-media {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 1.25rem;
}

.partner-logo-media img {
  width: 100%;
  height: 7rem;
  object-fit: contain;
  transition: transform 200ms ease;
}

.partner-logo.is-placeholder .partner-logo-media img {
  width: min(100%, 8.5rem);
  height: auto;
  aspect-ratio: 1;
}

.partner-logo-compact .partner-logo-media img {
  width: 82%;
  height: 6.25rem;
  padding: 0;
  background: #000000;
}

.partner-logo-caption {
  min-height: 4.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.55rem 0.7rem;
  border-top: 1px solid var(--line);
  color: var(--black);
  text-align: center;
  line-height: 1.2;
}

.partner-logo-name {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.partner-logo-proprietor {
  color: var(--muted);
  font-size: 0.8rem;
  overflow-wrap: anywhere;
}

a.partner-logo {
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

a.partner-logo:hover,
a.partner-logo:focus-visible {
  border-color: var(--orange-dark);
  box-shadow: 0 0.8rem 1.8rem rgba(23, 23, 23, 0.12);
  transform: translateY(-0.2rem);
}

a.partner-logo:hover .partner-logo-media img,
a.partner-logo:focus-visible .partner-logo-media img {
  transform: scale(1.04);
}

.faq-shell {
  max-width: 58rem;
}

.faq-heading {
  hyphens: none;
  overflow-wrap: normal;
  text-wrap: balance;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  min-height: 4.3rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  list-style: none;
}

.faq-icons {
  width: 1.4rem;
  height: 1.4rem;
  flex: 0 0 auto;
}

.faq-icon {
  width: 1.4rem;
  height: 1.4rem;
}

.faq-icon-minus,
.faq-item[data-open] .faq-icon-plus {
  display: none;
}

.faq-item[data-open] .faq-icon-minus {
  display: block;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  transition: grid-template-rows 280ms ease, visibility 0s linear 280ms;
}

.faq-answer-inner {
  min-height: 0;
  overflow: hidden;
}

.faq-item[data-open] .faq-answer,
.no-js .faq-answer {
  grid-template-rows: 1fr;
  visibility: visible;
  transition-delay: 0s;
}

.faq-answer p {
  max-width: 48rem;
  padding: 0 2.5rem 1.4rem 0;
  color: var(--muted);
}

.closing-cta {
  padding-block: 3.7rem;
  background: var(--orange);
}

.closing-inner {
  display: grid;
  gap: 1.5rem;
}

.closing-inner h2 {
  max-width: 18ch;
  font-size: clamp(2.2rem, 7vw, 3.6rem);
}

.closing-inner p:not(.eyebrow) {
  max-width: 44rem;
}

.closing-cta .text-link-dark .icon-inline {
  transition: filter 180ms ease;
}

.closing-cta .text-link-dark:hover,
.closing-cta .text-link-dark:focus-visible {
  color: var(--white);
}

.closing-cta .text-link-dark:hover .icon-inline,
.closing-cta .text-link-dark:focus-visible .icon-inline {
  filter: brightness(0) invert(1);
}

.site-footer {
  padding-block: 1.5rem;
  background: var(--ink);
  color: var(--white);
}

.footer-inner {
  display: grid;
  align-items: center;
  gap: 1.25rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 8.7rem;
  height: auto;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: #d9d3cb;
  font-family: var(--navigation);
  font-size: 0.92rem;
}

.footer-credit {
  color: #d9d3cb;
  font-family: var(--navigation);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.back-to-top {
  position: fixed;
  right: 15px;
  bottom: 40px;
  z-index: 30;
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  padding: 0;
  border: 2px solid var(--orange-dark);
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 0.75rem 2rem rgba(23, 23, 23, 0.22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.75rem);
  visibility: hidden;
  transition: background-color 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
}

@media (min-width: 1025px) {
  .back-to-top {
    right: 40px;
  }
}

.back-to-top[data-visible] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background-color: var(--ink);
  color: var(--white);
  transform: translateY(-0.18rem) scale(1.04);
}

.back-to-top-icon {
  width: 1.35rem;
  height: 1.35rem;
  transition: filter 180ms ease;
}

.back-to-top:hover .back-to-top-icon,
.back-to-top:focus-visible .back-to-top-icon {
  filter: invert(1);
}

.page-hero,
.event-detail-hero,
.legal-hero,
.not-found {
  padding-block: clamp(4.5rem, 10vw, 7.5rem);
  background: var(--cream);
}

.page-hero-grid,
.contact-hero-grid,
.event-detail-grid {
  display: grid;
  gap: 2.5rem;
}

.page-hero-contact h1 {
  font-size: clamp(2.75rem, 11vw, 5.8rem);
  overflow-wrap: normal;
}

.page-hero-contact h1 span {
  display: block;
}

.city-page-hero h1 {
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 0.96;
  text-wrap: pretty;
}

.city-title-prefix,
.city-title-name {
  display: block;
}

.city-title-prefix {
  margin-bottom: 0.28em;
  color: var(--ink-soft);
  font-size: 0.52em;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.city-title-name {
  line-height: 0.94;
}

.page-hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0.8rem;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.about-brand-card {
  display: grid;
  place-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-brand-card img {
  width: min(100%, 25rem);
}

.events-grid {
  display: grid;
  gap: 1rem;
}

.home-next-events {
  display: grid;
  gap: 1rem;
}

.coming-soon-teaser {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: clamp(1.35rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-left: 0.4rem solid var(--orange);
  border-radius: 0.35rem;
  background: var(--cream);
}

.coming-soon-teaser h2,
.coming-soon-teaser h3,
.coming-soon-teaser p {
  margin-bottom: 0;
}

.coming-soon-teaser > p {
  align-self: center;
  color: var(--muted);
}

.city-overview-grid {
  display: grid;
  gap: 1rem;
}

.city-overview-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(1.35rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-top: 0.4rem solid var(--orange-dark);
  border-radius: 0.35rem;
  background: var(--cream);
}

.city-overview-card h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.city-overview-card > p:not(.eyebrow) {
  color: var(--muted);
}

.city-overview-next {
  display: grid;
  gap: 0.75rem;
  margin: auto 0 1.35rem;
  padding-top: 0.35rem;
}

.city-overview-next div {
  display: grid;
  gap: 0.15rem;
}

.city-overview-next dt {
  color: var(--muted);
  font-family: var(--navigation);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.city-overview-next dd {
  margin: 0;
  font-weight: 800;
}

.city-overview-card .button {
  align-self: flex-start;
}

.location-jump-nav {
  padding-block: clamp(1.5rem, 4vw, 2.75rem);
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--ink);
  color: var(--white);
}

.location-jump-inner {
  display: grid;
  gap: 1.4rem;
}

.location-jump-copy p {
  margin-bottom: 0;
}

.location-jump-title {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.7rem, 5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
}

.location-jump-list {
  display: grid;
  gap: 0.75rem;
}

.location-jump-list a {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 0.35rem;
  color: var(--white);
  font-family: var(--navigation);
  font-weight: 800;
}

.location-jump-list span {
  font-size: 1.05rem;
}

.location-jump-list small {
  color: #cfc9c1;
  font-size: 0.76rem;
  font-weight: 700;
}

.location-jump-list a:hover,
.location-jump-list a:focus-visible {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.location-jump-list a:hover small,
.location-jump-list a:focus-visible small {
  color: var(--ink);
}

.location-events {
  scroll-margin-top: 8rem;
}

.location-divider {
  background: var(--white);
}

.event-list-divider {
  margin-top: clamp(4.5rem, 11vw, 8rem);
}

.event-list-coming-soon {
  margin-top: clamp(4.5rem, 11vw, 8rem);
}

.event-list-coming-soon + .event-list-coming-soon {
  margin-top: 1.25rem;
}

.location-divider-inner {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.location-divider-inner span {
  height: 1px;
  flex: 1 1 auto;
  background: var(--line);
}

.location-divider-inner img {
  width: clamp(6rem, 14vw, 8.5rem);
  height: auto;
  flex: 0 0 auto;
}

.location-events-heading {
  display: grid;
  gap: 1rem;
  align-items: end;
  margin-bottom: 2rem;
}

.location-events-heading h2,
.location-events-heading p {
  margin-bottom: 0;
}

.location-events-heading > p {
  max-width: 38rem;
  color: var(--muted);
}

.location-following-heading {
  margin-top: clamp(3rem, 7vw, 5rem);
}

.location-following-heading h3 {
  font-size: clamp(1.8rem, 5vw, 2.7rem);
}

.event-card-featured {
  border-left: 0.4rem solid var(--orange-dark);
  box-shadow: var(--shadow);
}

.event-status {
  width: fit-content;
  margin-bottom: 0.7rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--cream-deep);
  color: var(--ink);
  font-family: var(--navigation);
  font-size: 0.72rem;
  font-weight: 800;
}

.event-card-compact .event-card-content {
  display: flex;
  flex-direction: column;
}

.event-card-compact .event-card-button {
  align-self: flex-start;
  margin-top: auto;
}

.past-events-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.past-events-list article {
  display: grid;
  gap: 0.35rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
}

.past-events-list article > time,
.past-events-list article > span,
.past-events-list article > strong {
  font-family: var(--navigation);
  font-size: 0.82rem;
}

.past-events-list article > span,
.past-events-list article > strong {
  color: var(--muted);
}

.past-events-list a {
  font-weight: 800;
}

.past-events-list a .brand-name {
  color: inherit;
  font: inherit;
}

.city-past-events-list article {
  grid-template-columns: 1fr;
}

#vergangene-veranstaltungen .section-heading-wide > p:last-child {
  max-width: 42rem;
  text-wrap: balance;
}

.anniversary-event-meta {
  display: grid;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
  color: var(--ink);
  font-family: var(--navigation);
  font-size: 0.92rem;
  font-weight: 800;
}

.anniversary-event-meta span {
  color: var(--muted);
}

.event-closed-notice {
  max-width: 34rem;
  padding: 0.9rem 1rem;
  border-left: 0.3rem solid var(--orange-dark);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.event-closed-cta-inner {
  display: grid;
  gap: 1.5rem 3rem;
  align-items: center;
}

.event-closed-cta h2,
.event-closed-cta p:last-child {
  margin-bottom: 0;
}

.event-closed-cta p:not(.eyebrow) {
  max-width: 38rem;
}

.event-closed-cta .button {
  margin-top: 0.5rem;
}

.event-related-section {
  border-top: 1px solid var(--line);
}

.feature-figure {
  margin-bottom: 0;
}

.gallery-grid a {
  display: block;
}

.feature-figure img,
.gallery-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

.gallery-grid figure {
  margin-bottom: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.gallery-grid figcaption {
  padding: 0.8rem 1rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.anniversary-hero {
  padding-block: clamp(4.5rem, 10vw, 7.5rem);
  background: var(--cream);
}

.anniversary-hero-grid,
.anniversary-intro,
.anniversary-closing,
.anniversary-teaser,
.anniversary-about-teaser {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.anniversary-hero-copy h1 {
  font-size: clamp(3rem, 10vw, 5.35rem);
}

.anniversary-hero-media,
.anniversary-teaser-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.anniversary-hero-media img,
.anniversary-teaser-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.anniversary-gallery {
  columns: 1;
  column-gap: 1rem;
}

.anniversary-gallery figure {
  width: 100%;
  display: inline-block;
  margin: 0 0 1rem;
  break-inside: avoid;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(34, 27, 18, 0.08);
}

.anniversary-gallery img {
  width: 100%;
}

.anniversary-gallery figcaption {
  padding: 0.85rem 1rem;
  color: var(--muted);
  font-family: var(--navigation);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.anniversary-about-images {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: 0;
  padding: 1rem 0.75rem 5.5rem;
}

.anniversary-about-images figure {
  position: relative;
  width: 100%;
  grid-row: 1;
  margin: 0;
  overflow: hidden;
  border: 0.35rem solid var(--white);
  border-radius: 0.6rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.anniversary-about-images figure:nth-child(1) {
  z-index: 1;
  grid-column: 1 / 8;
}

.anniversary-about-images figure:nth-child(2) {
  z-index: 2;
  grid-column: 3 / 10;
  translate: 0 2rem;
}

.anniversary-about-images figure:nth-child(3) {
  z-index: 3;
  grid-column: 6 / 13;
  translate: 0 4rem;
}

.anniversary-about-images img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.anniversary-closing h2,
.anniversary-closing p {
  color: var(--white);
}

.founder-photo {
  width: min(100%, 28rem);
  align-self: end;
  justify-self: center;
}

.founder-photo img {
  width: 100%;
}

.founder-grid h2 {
  font-size: clamp(2.25rem, 3.2vw, 3.75rem);
}

.event-detail-visual {
  position: relative;
}

.event-detail-copy h1 {
  max-width: 14ch;
  font-size: clamp(2.55rem, 6.5vw, 4.4rem);
  line-height: 0.96;
  text-wrap: pretty;
}

.event-title-brand,
.event-title-series,
.event-title-city,
.event-title-main,
.event-title-date {
  display: block;
}

.event-title-brand {
  margin-bottom: 0.28em;
  color: var(--orange-dark);
  font-size: 0.5em;
  letter-spacing: 0;
  line-height: 1.05;
}

.event-title-series,
.event-title-city {
  line-height: 1;
}

.event-title-city {
  margin-top: 0.1em;
}

.event-title-date {
  margin-top: 0.42em;
  color: var(--ink-soft);
  font-size: 0.5em;
  letter-spacing: -0.01em;
  line-height: 1.08;
  white-space: nowrap;
}

.event-detail-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0.8rem;
  object-fit: cover;
}

.lightbox-trigger {
  display: block;
  color: inherit;
  cursor: zoom-in;
  overflow: hidden;
}

.lightbox-trigger img {
  transition: transform 220ms ease;
}

.lightbox-trigger:hover img,
.lightbox-trigger:focus-visible img {
  transform: scale(1.025);
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: clamp(0.75rem, 2.5vw, 2rem);
  border: 0;
  background: transparent;
  color: var(--white);
  overflow: hidden;
}

.lightbox::backdrop {
  background: rgba(8, 8, 8, 0.94);
}

.lightbox-window {
  --lightbox-control-size: 3rem;
  --lightbox-control-gap: clamp(0.5rem, 2vw, 1.25rem);
  position: relative;
  width: min(100%, 76rem);
  height: 100%;
  display: grid;
  grid-template-columns: var(--lightbox-control-size) minmax(0, 1fr) var(--lightbox-control-size);
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--lightbox-control-gap);
  margin-inline: auto;
}

.lightbox figure {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  justify-items: center;
  margin: 0;
}

.lightbox-image-frame {
  position: relative;
  display: inline-grid;
  max-width: 100%;
  max-height: calc(100dvh - 10rem);
}

.lightbox [data-lightbox-image] {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100dvh - 10rem);
  object-fit: contain;
}

.lightbox-accessible-caption {
  margin: 0;
  color: var(--white);
  font-family: var(--navigation);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.lightbox button {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  padding: 0;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: rgba(23, 23, 23, 0.88);
  color: var(--white);
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.lightbox button:hover,
.lightbox button:focus-visible {
  background-color: var(--orange);
  color: var(--ink);
  transform: scale(1.06);
}

.lightbox-close {
  position: fixed;
  z-index: 2;
  top: max(clamp(0.75rem, 2.5vw, 2rem), env(safe-area-inset-top));
  right: max(clamp(0.75rem, 2.5vw, 2rem), env(safe-area-inset-right));
}

.lightbox-previous,
.lightbox-next {
  grid-row: 1;
}

.lightbox-previous {
  grid-column: 1;
}

.lightbox-next {
  grid-column: 3;
}

.lightbox-icon {
  width: 1.4rem;
  height: 1.4rem;
  filter: invert(1);
}

.lightbox button:hover .lightbox-icon,
.lightbox button:focus-visible .lightbox-icon {
  filter: none;
}

.lightbox-status {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: #c7c1b9;
  font-family: var(--navigation);
  font-size: 0.78rem;
  text-align: center;
}

.lightbox-navigation[data-hidden] {
  visibility: hidden;
}

.event-card-button {
  gap: 0.45rem;
  margin-top: 0.35rem;
}

.date-tile {
  position: absolute;
  right: 1rem;
  bottom: -1.4rem;
  width: 9rem;
  min-height: 7rem;
  display: grid;
  align-content: center;
  justify-items: center;
  background: var(--orange);
  box-shadow: var(--shadow);
}

.date-tile strong {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
}

.date-tile span {
  max-width: 8rem;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 2.2rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--orange-dark);
}

.event-meta-large {
  gap: 1rem;
  margin-block: 1.5rem;
}

.event-meta-large dd {
  font-size: 1rem;
}

.event-date-heading {
  font-size: clamp(2rem, 3.6vw, 2.25rem);
  hyphens: none;
  overflow-wrap: normal;
  text-wrap: balance;
}

.event-map-link {
  margin-top: 0.25rem;
}

.legal-hero h1 {
  font-size: clamp(2.4rem, 10vw, 4.75rem);
  hyphens: none;
  overflow-wrap: normal;
}

.notice {
  padding: 1rem 1.1rem;
  border-left: 0.25rem solid var(--orange);
  background: var(--cream);
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-card {
  display: grid;
  align-self: center;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card > a,
.contact-card > div {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 1.25rem;
}

.contact-card > * + * {
  border-top: 1px solid var(--line);
}

.contact-card small,
.contact-card strong {
  display: block;
}

.contact-card small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-options article {
  padding: 1.6rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.narrow-copy,
.legal-copy {
  max-width: 48rem;
}

.form-section-grid {
  align-items: start;
}

.form-card {
  position: relative;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  background: linear-gradient(180deg, #fff 0%, #fffdf9 100%);
  box-shadow: 0 18px 42px rgba(34, 27, 18, 0.09);
}

.form-grid {
  display: grid;
  gap: 0.6rem;
}

.guest-fields {
  min-width: 0;
  margin: 0.2rem 0;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.25rem;
  background: var(--white);
}

.guest-fields legend {
  padding-inline: 0.3rem;
  font-family: var(--navigation);
  font-size: 0.85rem;
  font-weight: 800;
}

.guest-field-grid {
  display: grid;
  gap: 0.6rem;
}

.field {
  display: grid;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 3rem;
  padding: 0.68rem 0.85rem;
  border: 1px solid #c9bfb3;
  border-radius: 0.2rem;
  background: #fffdfa;
  color: var(--ink);
  font: inherit;
  transition: border-color 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
}

.field textarea {
  height: 7.125rem;
  min-height: 5rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #625b53;
  opacity: 1;
}

.field input:hover,
.field textarea:hover,
.field select:hover {
  border-color: var(--ink);
  background: var(--white);
}

.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible {
  border-color: #1769aa;
  outline: 3px solid #b9dcf6;
  outline-offset: 1px;
  background: var(--white);
  box-shadow: 0 0 0 1px #1769aa;
}

.form-required-note {
  margin: 0 0 -0.1rem;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: right;
}

.choice-group {
  min-width: 0;
  margin: 0;
  padding: 0.7rem 0.8rem 0.8rem;
  border: 1px solid #c9bfb3;
  border-radius: 0.2rem;
  background: var(--white);
}

.choice-group legend {
  margin-bottom: 0.4rem;
  padding: 0;
  font-size: 0.95rem;
  font-weight: 800;
}

.choice-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.choice-options label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid #c9bfb3;
  border-radius: 0.2rem;
  background: var(--white);
  font-weight: 700;
  cursor: pointer;
}

.choice-options label:has(input:checked) {
  border-color: var(--orange-dark);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--orange-dark);
}

.choice-options input {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0;
  accent-color: var(--orange-dark);
}

.check-control {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.6rem;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid #c9bfb3;
  border-radius: 0.2rem;
  background: var(--white);
  font-weight: 700;
  cursor: pointer;
}

.check-control:has(input:checked) {
  border-color: var(--orange-dark);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--orange-dark);
}

[data-ajax-form="event"][data-attendance="no"] [data-attendance-field="email"] {
  grid-column: 1 / -1;
}

.check-control input {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0;
  accent-color: var(--orange-dark);
}

.check-control:focus-within {
  outline: 3px solid #b9dcf6;
  outline-offset: 1px;
}

.privacy-note {
  margin: 0;
  padding: 0.6rem 0.75rem;
  border-left: 0.25rem solid var(--orange-dark);
  background: var(--cream);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.privacy-note a {
  color: var(--orange-dark);
  font-weight: 800;
}

.form-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-status[data-state="success"] {
  color: var(--success);
  font-weight: 800;
}

.form-status[data-state="success"][data-follow-up-required] {
  grid-column: 1 / -1;
  padding: 1rem 1.1rem;
  border: 0.2rem solid currentcolor;
  border-radius: 0.4rem;
  background: #f1faef;
  font-size: 1rem;
  line-height: 1.5;
}

.form-status[data-state="error"],
.form-status[data-state="unavailable"] {
  color: var(--error);
  font-weight: 800;
}

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

.legal-hero {
  border-bottom: 1px solid var(--line);
}

.legal-copy h2 {
  margin-top: 2.8rem;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  overflow-wrap: anywhere;
}

.legal-copy a {
  color: var(--orange-dark);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.legal-copy li + li {
  margin-top: 0.45rem;
}

.not-found {
  min-height: 70vh;
  display: grid;
  align-items: center;
}

.not-found-grid {
  display: grid;
  gap: clamp(2.5rem, 8vw, 5rem);
  align-items: center;
}

.not-found-marker {
  display: grid;
  gap: 0.8rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(185, 100, 8, 0.35);
}

.not-found-marker .eyebrow {
  margin: 0;
}

.error-code {
  margin: 0;
  color: var(--orange-dark);
  font-family: var(--display);
  font-size: clamp(7.5rem, 34vw, 12rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.82;
}

.not-found-copy {
  max-width: 44rem;
}

.not-found-copy h1 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
}

.not-found-copy > p {
  max-width: 40rem;
  color: var(--ink-soft);
}

.not-found-copy .button-row {
  margin-top: 2rem;
}

@media (max-width: 63.999rem) {
  .no-js .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    padding-top: 0.75rem;
  }

  .no-js .site-navigation {
    width: 100%;
    padding-inline: 0;
  }
}

@media (min-width: 48rem) {
  .top-bar-contact-short {
    display: none;
  }

  .top-bar-contact-value,
  .top-bar-social-label {
    display: inline;
  }

  .shell {
    width: min(100% - 3rem, var(--shell));
  }

  .stats {
    padding-block: 1.25rem;
  }

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

  .stats-grid > div {
    padding: 1.5rem 1rem;
  }

  .stats-grid > div + div {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stats strong {
    font-size: clamp(2.35rem, 3vw, 2.75rem);
  }

  .event-card {
    grid-template-columns: 10rem 1fr;
  }

  .event-date {
    min-height: 100%;
  }

  .event-card-content {
    padding: 2rem;
  }

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

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

  .guest-field-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

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

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

  .anniversary-gallery {
    columns: 2;
  }

  .anniversary-about-images {
    padding: 2.5rem 0 7rem;
  }

  .anniversary-about-images figure {
    border-width: 0.45rem;
  }

  .anniversary-about-images figure:nth-child(1) {
    grid-column: 1 / 8;
    translate: none;
  }

  .anniversary-about-images figure:nth-child(2) {
    grid-column: 3 / 10;
    translate: 0 2.75rem;
  }

  .anniversary-about-images figure:nth-child(3) {
    grid-column: 6 / 13;
    translate: 0 5.5rem;
  }

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

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

  .events-grid:not(.events-grid-three) .event-card {
    grid-template-columns: 1fr;
  }

  .events-grid:not(.events-grid-three) .event-date {
    min-height: 7rem;
  }

  .location-jump-inner {
    grid-template-columns: minmax(15rem, 0.8fr) minmax(0, 1.6fr);
    align-items: center;
    gap: 2rem;
  }

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

  .location-jump-list a {
    min-height: 5.5rem;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.15rem;
  }

  .location-events > .shell > .event-card-featured {
    grid-template-columns: 11rem 1fr;
  }

  .location-events > .shell > .event-card-featured .event-date {
    min-height: 100%;
  }

  .past-events-list article {
    grid-template-columns: 10rem 6rem minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
  }

  .city-past-events-list article {
    grid-template-columns: 10rem minmax(0, 1fr) auto;
  }

  .event-closed-cta-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.8fr);
  }

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

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

  .form-actions {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

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

@media (min-width: 64rem) {
  .header-inner {
    min-height: 5.1rem;
  }

  .js .menu-toggle,
  .menu-toggle {
    display: none;
  }

  .site-navigation,
  .js .site-navigation {
    position: static;
    width: auto;
    display: flex;
    align-items: center;
    gap: 1.6rem;
    padding: 0;
    border: 0;
  }

  .site-navigation ul {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin: 0;
  }

  .site-navigation li {
    border: 0;
  }

  .site-navigation li a {
    padding: 0.65rem 0;
    font-size: 1rem;
  }

  .hero {
    padding-block: 6rem 6.5rem;
  }

  .hero-grid,
  .page-hero-grid,
  .contact-hero-grid,
  .event-detail-grid {
    grid-template-columns: minmax(0, 1.03fr) minmax(28rem, 0.97fr);
    align-items: center;
    gap: 5rem;
  }

  .contact-hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(24rem, 0.85fr);
    gap: 3rem;
  }

  .not-found-grid {
    grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(4rem, 8vw, 7rem);
  }

  .not-found-marker {
    min-width: 0;
    padding: 1rem clamp(3rem, 6vw, 5.5rem) 1rem 0;
    border-right: 1px solid rgba(185, 100, 8, 0.35);
    border-bottom: 0;
  }

  .error-code {
    font-size: clamp(11rem, 17vw, 14rem);
  }

  .hero-copy h1 {
    font-size: clamp(4.4rem, 6.4vw, 6.2rem);
  }

  .page-hero-contact h1 {
    font-size: clamp(3.5rem, 5vw, 4.8rem);
  }

  .community-grid,
  .split-content,
  .founder-grid,
  .event-info-grid,
  .form-section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 5rem;
  }

  .form-section-grid.form-heading-position-locked {
    align-items: start;
  }

  .form-section-grid.form-heading-position-locked > .section-heading {
    margin-top: var(--event-form-heading-offset, 0);
  }

  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5rem;
  }

  .anniversary-hero-grid,
  .anniversary-teaser,
  .anniversary-about-teaser {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .anniversary-about-teaser {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }

  .anniversary-intro,
  .anniversary-closing {
    grid-template-columns: minmax(18rem, 0.8fr) minmax(28rem, 1.2fr);
  }

  .anniversary-gallery {
    columns: 3;
  }

  .partner-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .partner-logo {
    min-height: 16.5rem;
    grid-template-rows: minmax(12rem, 1fr) auto;
    padding: 0;
  }

  .partner-logo-media {
    padding: 1.5rem;
  }

  .partner-logo-media img {
    height: 8.5rem;
  }

  .partner-logo-compact .partner-logo-media img {
    height: 7.25rem;
  }

  .partner-logo-caption {
    min-height: 4.25rem;
    padding-inline: 1rem;
  }

  .partner-logo-name {
    font-size: 0.95rem;
  }

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

  .site-footer nav {
    justify-self: center;
  }

  .footer-credit {
    justify-self: end;
  }

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

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

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

  .events-grid .event-card {
    grid-template-columns: 9.5rem 1fr;
  }

  .events-grid .event-date {
    min-height: 100%;
  }

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

  .events-grid-three .event-card {
    grid-template-columns: 1fr;
  }

  .events-grid-three .event-date {
    min-height: 7rem;
  }

  .events-grid-three .event-meta-location,
  .home-next-events .event-meta-location,
  .location-events-grid .event-meta-location {
    min-height: 4.1rem;
  }

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

  .home-next-events .event-card,
  .location-events-grid .event-card {
    grid-template-columns: 1fr;
  }

  .home-next-events .event-date,
  .location-events-grid .event-date {
    min-height: 7rem;
  }

  .location-events-heading {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.7fr);
    gap: 3rem;
  }

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

  .coming-soon-teaser {
    grid-template-columns: minmax(15rem, 0.75fr) minmax(0, 1.25fr);
    gap: 2rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Geschützte Verwaltung */
.admin-body {
  --admin-ink: #171715;
  --admin-muted: #68645e;
  --admin-line: #e5ddd1;
  --admin-panel: #fff;
  --admin-canvas: #fbf3e7;
  --admin-sidebar: #171717;
  --admin-sidebar-soft: #2a2927;
  --admin-orange: #f3a23a;
  --admin-orange-dark: #a04f05;
  --admin-control-height: 3.05rem;
  --admin-field-label-height: 1.35rem;
  --admin-field-gap: 0.4rem;
  min-height: 100vh;
  margin: 0;
  color: var(--admin-ink);
  background: var(--admin-canvas);
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
}

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

.admin-body a {
  color: inherit;
}

.admin-skip {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--admin-ink);
  border-radius: 0.6rem;
  transform: translateY(-150%);
}

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

.admin-shell {
  min-height: 100vh;
}

.admin-sidebar {
  display: none;
  color: #fff;
  background: var(--admin-sidebar);
}

.admin-brand,
.admin-login-brand {
  display: grid;
  gap: 0.6rem;
  text-decoration: none;
}

.admin-brand-image {
  display: block;
  width: 12rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.admin-brand img {
  width: 100%;
  height: auto;
}

.admin-brand span {
  color: #c9c7c1;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.admin-nav {
  display: grid;
  gap: 0.35rem;
}

.admin-nav a,
.admin-mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 2.85rem;
  padding: 0.7rem 0.9rem;
  color: #dbdad6;
  border: 1px solid transparent;
  border-radius: 0.7rem;
  font-weight: 700;
  text-decoration: none;
}

.admin-nav a:hover,
.admin-nav a:focus-visible,
.admin-nav a[aria-current="page"],
.admin-mobile-nav a:hover,
.admin-mobile-nav a:focus-visible,
.admin-mobile-nav a[aria-current="page"] {
  color: #fff;
  background: var(--admin-sidebar-soft);
  border-color: #444640;
}

.admin-nav a[aria-current="page"] {
  box-shadow: inset 0.24rem 0 var(--admin-orange);
}

.admin-sidebar-actions {
  margin-top: auto;
}

.admin-frontend-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.85rem;
  padding: 0.7rem 0.9rem;
  color: #fff;
  background: #30291f;
  border: 1px solid #5c4a31;
  border-radius: 0.7rem;
  text-decoration: none;
}

.admin-frontend-link:hover,
.admin-frontend-link:focus-visible {
  color: #fff;
  background: var(--admin-sidebar-soft);
  border-color: var(--admin-orange);
}

.admin-frontend-link span {
  color: var(--admin-orange);
  font-size: 1.15rem;
}

.admin-publish {
  padding: 1.2rem 0 1rem;
}

.admin-publish-help {
  margin: 0.55rem 0 0;
  color: #c8c6bf;
  font-size: 0.72rem;
  line-height: 1.35;
}

.admin-publish button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3rem;
  gap: 0.55rem;
  padding: 0.7rem 0.85rem;
  color: #171717;
  background: var(--admin-orange);
  border: 1px solid #f7bb70;
  border-radius: 0.75rem;
  font: 800 0.9rem/1.2 "Roboto", sans-serif;
  cursor: pointer;
}

.admin-publish-copy {
  display: grid;
  gap: 0.18rem;
  text-align: left;
}

.admin-publish-copy strong {
  font: inherit;
}

.admin-publish-copy small {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.admin-publish.is-needed .admin-publish-copy small {
  color: #6a2800;
}

.admin-publish.is-failed button {
  color: #fff;
  background: #8d2f2f;
  border-color: #c75a5a;
}

.admin-publish.is-failed .admin-publish-copy small {
  color: #ffd2d2;
}

.admin-publish.is-failed button:hover {
  background: #9f3737;
}

.admin-publish.is-current button {
  color: #f4f3ef;
  background: #30322f;
  border-color: #555852;
}

.admin-publish.is-current .admin-publish-copy small {
  color: #a8dfb5;
}

.admin-publish.is-current button:hover {
  background: #3a3d38;
}

.admin-publish.is-current button:disabled,
.admin-publish.is-current button:disabled:hover {
  background: #30322f;
  cursor: default;
  opacity: 1;
}

.admin-publish button:hover {
  background: #f7b35d;
}

.admin-publish.is-building button,
.admin-publish button:disabled,
.admin-publish button:disabled:hover {
  color: #f4f3ef;
  background: #555852;
  border-color: #686b65;
  cursor: wait;
  opacity: 0.88;
}

.admin-publish.is-building .admin-publish-copy small {
  color: #f2c98f;
}

.admin-account {
  display: grid;
  gap: 0.3rem;
  margin-top: 0;
  padding-top: 1.25rem;
  border-top: 1px solid #4a4743;
}

.admin-role,
.admin-environment {
  width: max-content;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-role {
  color: #2f1b05;
  background: var(--admin-orange);
}

.admin-logout {
  margin-top: 0.75rem;
  padding: 0.55rem 0;
  color: #deddd9;
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.admin-workspace {
  min-width: 0;
}

.admin-topbar {
  position: sticky;
  z-index: 40;
  top: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  min-height: 5.25rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--admin-line);
  box-shadow: 0 0.35rem 1rem rgba(28, 29, 28, 0.04);
  backdrop-filter: blur(12px);
}

.admin-topbar h1,
.admin-main h2,
.admin-main h3,
.admin-login-panel h1 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  line-height: 1.08;
}

.admin-topbar h1 {
  font-size: clamp(1.55rem, 4vw, 2.15rem);
}

.admin-eyebrow {
  margin: 0 0 0.18rem;
  color: var(--admin-orange-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-environment {
  color: #356046;
  background: #e4f1e9;
}

.admin-mobile-menu {
  position: relative;
}

.admin-mobile-menu summary {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.55rem 0.75rem;
  color: #fff;
  background: var(--admin-sidebar);
  border-radius: 0.65rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.admin-mobile-nav {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  display: grid;
  width: min(19rem, calc(100vw - 2rem));
  max-height: calc(100vh - 6.25rem);
  max-height: calc(100dvh - 6.25rem - env(safe-area-inset-bottom, 0px));
  padding: 0.55rem;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  scroll-padding-block: 0.55rem;
  color: #fff;
  background: var(--admin-sidebar);
  border: 1px solid #434540;
  border-radius: 0.8rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.22);
}

.admin-mobile-nav nav {
  display: grid;
  gap: 0.25rem;
}

.admin-mobile-nav .admin-publish {
  margin: 0.5rem 0 0;
  padding: 0.65rem 0 0;
  border-top: 1px solid #4a4743;
}

.admin-main {
  display: grid;
  gap: 1.5rem;
  width: min(100%, 96rem);
  margin: 0 auto;
  padding: clamp(1.25rem, 4vw, 3rem);
}

.admin-page-intro {
  max-width: 52rem;
  margin: 0;
  color: var(--admin-muted);
  font-size: 1.05rem;
}

.admin-grid,
.admin-columns,
.admin-card-stack {
  display: grid;
  gap: 1rem;
}

.admin-card {
  min-width: 0;
  padding: clamp(1rem, 2.6vw, 1.55rem);
  background: var(--admin-panel);
  border: 1px solid var(--admin-line);
  border-radius: 1rem;
  box-shadow: 0 0.55rem 1.7rem rgba(34, 30, 24, 0.055);
}

.admin-kpi {
  position: relative;
  overflow: hidden;
}

.admin-kpi::after {
  position: absolute;
  inset: 0.8rem 0.8rem auto auto;
  width: 2.2rem;
  height: 0.28rem;
  background: var(--admin-orange);
  border-radius: 999px;
  content: "";
}

.admin-kpi > span {
  color: var(--admin-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.admin-stat {
  margin: 0.45rem 0 0;
  font: 700 clamp(2.3rem, 6vw, 3.4rem)/1 "Oswald", sans-serif;
}

.admin-section {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
}

.admin-section-heading,
.admin-series-heading {
  display: flex;
  align-items: end;
  gap: 1rem;
  justify-content: space-between;
}

.admin-section-heading > p,
.admin-series-heading p {
  max-width: 38rem;
  margin: 0;
  color: var(--admin-muted);
}

.admin-series-heading h2 + p {
  margin-top: 0.45rem;
  line-height: 1.45;
}

.admin-heading-single h2 {
  font-size: clamp(1.55rem, 3vw, 2rem);
  white-space: nowrap;
}

.admin-form,
.admin-filter {
  display: grid;
  gap: 1rem;
}

.admin-form-grid,
.admin-filter-grid {
  display: grid;
  align-items: start;
  gap: 1rem;
}

.admin-form label,
.admin-filter label {
  display: grid;
  min-width: 0;
  gap: var(--admin-field-gap);
  color: #393733;
  font-size: 0.9rem;
  font-weight: 800;
}

.admin-form label:not(.admin-check, .admin-file-control) > span:first-child,
.admin-filter label > span:first-child {
  display: flex;
  align-items: flex-end;
  min-height: var(--admin-field-label-height);
  line-height: var(--admin-field-label-height);
}

.admin-form input,
.admin-form select,
.admin-form textarea,
.admin-filter input,
.admin-filter select {
  width: 100%;
  min-height: 3.05rem;
  padding: 0.68rem 0.82rem;
  color: var(--admin-ink);
  background-color: #fff;
  border: 1px solid #aaa39a;
  border-radius: 0.65rem;
  outline: 0;
  font: 500 1rem/1.35 "Roboto", sans-serif;
  box-shadow: inset 0 1px 2px rgba(31, 28, 24, 0.035);
}

.admin-form input:not([type="checkbox"], [type="file"], [type="hidden"]),
.admin-form select,
.admin-filter input:not([type="hidden"]),
.admin-filter select {
  height: var(--admin-control-height);
  min-height: var(--admin-control-height);
}

.admin-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.admin-form select,
.admin-filter select {
  padding-right: 3rem;
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #3f3c37 50%),
    linear-gradient(135deg, #3f3c37 50%, transparent 50%),
    linear-gradient(to left, #f2eee7 2.65rem, transparent 2.65rem);
  background-position:
    calc(100% - 1.15rem) 50%,
    calc(100% - 0.8rem) 50%,
    100% 0;
  background-repeat: no-repeat;
  background-size: 0.38rem 0.38rem, 0.38rem 0.38rem, 100% 100%;
  cursor: pointer;
}

.admin-form input:hover,
.admin-form select:hover,
.admin-form textarea:hover,
.admin-filter input:hover,
.admin-filter select:hover {
  border-color: #6e6860;
}

.admin-body :is(input, select, textarea, button, a, summary):focus-visible {
  outline: 0.2rem solid #1b65b8;
  outline-offset: 0.15rem;
}

.admin-form input[readonly] {
  color: #69655f;
  background: #f2efe9;
  border-style: dashed;
}

.admin-form-actions,
.admin-row-actions,
.admin-inline-actions,
.admin-action-bar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.admin-action-bar {
  justify-content: flex-start;
}

.admin-action-bar .admin-action-secondary {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.admin-form button,
.admin-filter button,
.admin-build-card button,
.admin-inline-actions button,
.admin-sort-save > button,
.admin-action-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--admin-ink);
  border-radius: 999px;
  font: 800 0.9rem/1 "Roboto", sans-serif;
  text-decoration: none;
  cursor: pointer;
}

.admin-form button,
.admin-filter button,
.admin-build-card button,
.admin-sort-save > button {
  color: #16130f;
  background: var(--admin-orange);
}

.admin-form button:hover,
.admin-filter button:hover,
.admin-build-card button:hover,
.admin-sort-save > button:hover {
  background: #ff7b31;
}

.admin-button-secondary,
.admin-inline-actions button,
.admin-action-secondary {
  color: var(--admin-ink);
  background: #fff;
}

.admin-check {
  display: grid;
  grid-template-columns: 1.4rem minmax(0, 1fr) !important;
  align-items: center;
  min-height: var(--admin-control-height);
  gap: 0.8rem !important;
  padding: 0.75rem 0.9rem;
  background: #fffaf3;
  border: 1px solid var(--admin-line);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.admin-check:has(input:disabled) {
  cursor: not-allowed;
  opacity: 0.72;
}

.admin-check:hover {
  background: #fff6e8;
  border-color: #c99147;
}

.admin-check input {
  display: grid;
  place-content: center;
  width: 1.35rem;
  min-height: 1.35rem;
  height: 1.35rem;
  margin: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  border: 2px solid #777066;
  border-radius: 0.32rem;
  box-shadow: none;
  cursor: pointer;
}

.admin-check input::before {
  width: 0.72rem;
  height: 0.72rem;
  content: "";
  background: #fff;
  clip-path: polygon(14% 44%, 0 59%, 39% 96%, 100% 20%, 84% 5%, 37% 70%);
  transform: scale(0);
  transition: transform 120ms ease-in-out;
}

.admin-check input:checked {
  background: var(--admin-orange-dark);
  border-color: var(--admin-orange-dark);
}

.admin-check input:checked::before {
  transform: scale(1);
}

.admin-check span {
  display: grid;
  gap: 0.2rem;
  line-height: 1.3;
}

.admin-participant-form .admin-check {
  margin-top: 0.1rem;
  background: #fff8ed;
  border-color: #e7c898;
}

.admin-check small,
.admin-field-help,
.admin-muted {
  color: var(--admin-muted);
  font-weight: 500;
}

.admin-slug-summary {
  display: grid;
  gap: 1rem;
}

.admin-slug-toggle,
.admin-custom-slug {
  align-self: start;
}

.admin-form[data-event-create-form] > .admin-form-span:has([data-recommended-slug]) {
  grid-column: auto;
}

.admin-custom-slug {
  display: none;
}

.admin-check:has(input[name="customize_slug"]:checked) + .admin-custom-slug {
  display: block;
}

.admin-notice {
  margin: 0;
  padding: 0.9rem 1rem;
  color: #4b3a28;
  background: #fff7e8;
  border: 1px solid #efd7ad;
  border-left: 0.3rem solid var(--admin-orange);
  border-radius: 0.65rem;
}

.admin-success {
  color: #214d33;
  background: #edf8f1;
  border-color: #b8dec5;
}

.admin-error {
  color: #742522;
  background: #fff0ef;
  border-color: #e7bab6;
  border-left-color: #b52b25;
}

.admin-status {
  display: inline-flex;
  padding: 0.25rem 0.5rem;
  color: #2c4d39;
  background: #e5f1e9;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.admin-status + br + .admin-status {
  margin-top: 0.35rem;
}

.admin-status.is-closed {
  color: #8f2525;
  background: #fde9e8;
  box-shadow: inset 0 0 0 1px #efc2bf;
}

.admin-status.is-danger {
  color: #711c1c;
  background: #fbdedd;
  box-shadow: inset 0 0 0 1px #e7aaa6;
}

.admin-status.is-draft {
  color: #56514b;
  background: #efede9;
  box-shadow: inset 0 0 0 1px #d8d3cc;
}

.admin-status.is-queued {
  color: #764000;
  background: #fff0d7;
  box-shadow: inset 0 0 0 1px #efce98;
}

.admin-status.is-published {
  color: #1f4f78;
  background: #e6f1f9;
  box-shadow: inset 0 0 0 1px #b9d6ea;
}

.admin-status.is-invited {
  color: #563781;
  background: #f0eafa;
  box-shadow: inset 0 0 0 1px #d3c1ed;
}

.admin-status.is-frontend-public {
  color: #235236;
  background: #e2f2e7;
  box-shadow: inset 0 0 0 1px #b8dcc3;
}

.admin-status.is-frontend-pending {
  color: #764000;
  background: #fff0d7;
  box-shadow: inset 0 0 0 1px #efce98;
}

.admin-status.is-frontend-archive {
  color: #8f2525;
  background: #fde9e8;
  box-shadow: inset 0 0 0 1px #efc2bf;
}

.admin-status.is-frontend-hidden {
  color: #56514b;
  background: #efede9;
  box-shadow: inset 0 0 0 1px #d8d3cc;
}

.admin-table-wrap {
  max-width: 100%;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 48rem;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 0.8rem 0.75rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e7e2da;
}

.admin-table th {
  position: sticky;
  z-index: 1;
  top: 0;
  color: #5a554e;
  background: #f8f5f0;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-events-table {
  width: 100%;
  min-width: 52rem;
  table-layout: fixed;
}

.admin-events-col-date { width: 12%; }
.admin-events-col-location { width: 13.5%; }
.admin-events-col-title { width: 17%; }
.admin-events-col-status { width: 9%; }
.admin-events-col-publication { width: 12.5%; }
.admin-events-col-frontend { width: 12.5%; }
.admin-events-col-actions { width: 23.5%; }

.admin-events-table .admin-status,
.admin-events-table .admin-row-actions {
  white-space: nowrap;
}

.admin-events-table .admin-row-actions {
  gap: 0.35rem;
  flex-wrap: wrap;
}

.admin-events-table .admin-table-action {
  padding-inline: 0.5rem;
}

.admin-participant-counts {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.admin-participant-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.45rem;
  height: 1.45rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  font: 900 0.7rem/1 "Roboto", sans-serif;
}

.admin-participant-count.is-confirmed {
  color: #214d33;
  background: #dcefe3;
  box-shadow: inset 0 0 0 1px #aad2b8;
}

.admin-participant-count.is-pending {
  color: #764000;
  background: #fff0d7;
  box-shadow: inset 0 0 0 1px #efce98;
}

.admin-participant-count.is-cancelled {
  color: #711c1c;
  background: #fbdedd;
  box-shadow: inset 0 0 0 1px #e7aaa6;
}

.admin-participant-detail-row[hidden] {
  display: none;
}

.admin-participant-detail-row > td {
  padding: 0 1rem 1rem;
  background: #fff;
}

.admin-guest-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 2rem;
  padding: 0 0.5rem;
  color: #5b4530;
  font-weight: 800;
  background: #fff3df;
  border: 1px solid #edcf9e;
  border-radius: 999px;
}

.admin-participant-details-panel {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(14rem, 1fr);
  gap: 1.25rem;
  width: 100%;
  padding: 1rem 1.1rem;
  background: #fbf8f3;
  border: 1px solid var(--admin-line);
  border-left: 0.25rem solid var(--orange);
  border-radius: 0.7rem;
}

.admin-participant-detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.65rem 0.85rem;
  margin: 0;
}

.admin-participant-detail-list div {
  min-width: 0;
}

.admin-participant-detail-list dt {
  margin-bottom: 0.15rem;
  color: #6a6259;
  font: 800 0.67rem/1.2 "Roboto", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.admin-participant-detail-list dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.admin-participant-created dd {
  font-size: 0.92rem;
  white-space: nowrap;
}

.admin-participant-detail-list .admin-participant-answer {
  grid-column: 1 / -1;
  padding-top: 0.65rem;
  border-top: 1px solid var(--admin-line);
}

.admin-participant-answer dd {
  line-height: 1.5;
}

.admin-participant-toolbar {
  display: flex;
  justify-content: flex-end;
}

.admin-body .admin-pdf-download {
  gap: 0.45rem;
  color: #16130f;
  background: var(--admin-orange);
  border-color: #c84b0a;
}

.admin-body .admin-pdf-download:hover {
  background: #ff7b31;
}

.admin-participant-guest-block {
  padding-left: 1.25rem;
  border-left: 1px solid var(--admin-line);
}

.admin-participant-guests {
  display: grid;
  gap: 0.4rem;
  margin: 0.45rem 0 0;
  padding: 0;
  list-style: none;
}

.admin-participant-guests-empty {
  margin: 0.45rem 0 0;
}

.admin-participant-guests li,
.admin-participant-guests span {
  display: block;
}

.admin-participant-guests span {
  margin-top: 0.1rem;
  color: var(--admin-muted);
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

.admin-table-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.38rem 0.65rem;
  color: var(--admin-ink);
  background: #fff;
  border: 1px solid #827b72;
  border-radius: 999px;
  font: 800 0.78rem/1 "Roboto", sans-serif;
  text-decoration: none;
  white-space: nowrap;
}

.admin-table-action.is-primary {
  color: #16130f;
  background: var(--admin-orange);
  border-color: var(--admin-ink);
}

.admin-table-action:hover {
  background: #fff3e2;
}

.admin-table-action.is-primary:hover {
  background: #ff7b31;
}

.admin-sortable-row {
  transition: background-color 150ms ease;
}

.admin-sortable-row.is-dragging {
  background: #fff0d7;
}

.admin-sort-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.admin-drag-handle,
.admin-sort-controls button {
  display: inline-grid;
  min-width: 2rem;
  min-height: 2rem;
  place-items: center;
  padding: 0.25rem;
  border: 1px solid #b7aea2;
  border-radius: 0.55rem;
  background: #fffdf9;
  color: #171715;
  line-height: 1;
}

.admin-drag-handle {
  cursor: grab;
}

.admin-sort-controls button {
  cursor: pointer;
}

.admin-sort-controls button:hover,
.admin-drag-handle:hover {
  border-color: var(--admin-orange-dark);
  background: #fff3e5;
}

.admin-sort-save {
  padding: 1rem 1.35rem 1.25rem;
  border-top: 1px solid var(--admin-line);
  background: #fffdf9;
}

.admin-list-card + .admin-list-card,
.admin-list-card + .admin-section,
.admin-section + .admin-list-card {
  margin-top: 1.25rem;
}

.admin-inline-form {
  margin: 0;
}

.admin-inline-form .admin-table-action {
  cursor: pointer;
}

.admin-delete-confirm {
  width: min(100%, 64rem);
  padding: 0;
  overflow: hidden;
}

.admin-delete-header {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  background: linear-gradient(135deg, #fff8ed, #fffdf9);
  border-bottom: 1px solid var(--admin-line);
}

.admin-delete-header h2,
.admin-delete-header p {
  margin: 0;
}

.admin-delete-header h2 {
  margin-top: 0.15rem;
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.admin-delete-header h2 + p {
  max-width: 46rem;
  margin-top: 0.45rem;
  color: var(--admin-muted);
  line-height: 1.5;
}

.admin-delete-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  aspect-ratio: 1;
  color: #fff;
  background: #b6362b;
  border-radius: 50%;
  font: 800 1.35rem/1 "Roboto", sans-serif;
  box-shadow: 0 0.45rem 1rem rgba(182, 54, 43, 0.2);
}

.admin-delete-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0 clamp(1.25rem, 3vw, 1.8rem);
  background: #fff;
}

.admin-delete-summary > div {
  min-width: 0;
  padding: 1.25rem 1rem;
  border-bottom: 1px solid var(--admin-line);
}

.admin-delete-summary > div:first-child {
  padding-left: 0;
}

.admin-delete-summary > div:last-child {
  padding-right: 0;
}

.admin-delete-summary dt {
  margin-bottom: 0.35rem;
  color: var(--admin-muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.admin-delete-summary dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 800;
  line-height: 1.4;
}

.admin-delete-summary dd small {
  display: block;
  margin-top: 0.25rem;
  color: var(--admin-muted);
  font-weight: 500;
}

.admin-delete-confirm-form {
  padding: clamp(1.25rem, 3vw, 1.8rem);
}

.admin-delete-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.admin-delete-required {
  background: #fff3f1;
  border-color: #e6bbb6;
}

.admin-delete-required:hover {
  background: #ffebe8;
  border-color: #c66b62;
}

.admin-delete-notify {
  background: #f4f8ff;
  border-color: #c8d8ed;
}

.admin-delete-notify:hover {
  background: #eaf2ff;
  border-color: #779bc7;
}

.admin-delete-note {
  margin: 0;
  padding: 0.85rem 1rem;
  color: #554f47;
  background: #f7f5f1;
  border-radius: 0.7rem;
  line-height: 1.45;
}

.admin-delete-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.admin-delete-form .admin-check {
  flex: 1;
}

.admin-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border: 1px solid #9e2e25;
  border-radius: 999px;
  color: #fff;
  background: #b6362b;
  font: 800 0.9rem/1 "Roboto", sans-serif;
  text-decoration: none;
  cursor: pointer;
}

.admin-danger:hover { background: #92291f; }

.admin-body button,
.admin-body .admin-action-secondary {
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.15;
}

.admin-body button {
  display: inline-flex;
}

.admin-editor-target {
  scroll-margin-top: 1.25rem;
}

.admin-logo-editor {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(11rem, 15rem) auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #fffaf3;
  border: 1px solid var(--admin-line);
  border-radius: 0.9rem;
}

.admin-logo-editor-copy {
  display: grid;
  gap: 0.3rem;
}

.admin-field-label {
  color: #393733;
  font-size: 0.9rem;
  font-weight: 800;
}

.admin-logo-editor small,
.admin-logo-empty span {
  color: var(--admin-muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.admin-chart-explanation {
  max-width: 48rem !important;
  margin-top: 0.55rem !important;
  color: var(--admin-muted);
  font: 500 0.86rem/1.45 "Roboto", sans-serif;
}

.admin-logo-preview {
  display: grid;
  min-height: 8rem;
  margin: 0;
  place-items: center;
  padding: 0.75rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--admin-line);
  border-radius: 0.75rem;
}

.admin-logo-preview.is-black {
  background: #000;
}

.admin-logo-preview img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 6rem;
  object-fit: contain;
}

.admin-logo-preview figcaption {
  margin-top: 0.5rem;
  color: var(--admin-muted);
  font-size: 0.72rem;
  text-align: center;
}

.admin-logo-preview.is-black figcaption {
  color: #fff;
}

.admin-logo-preview.is-placeholder img {
  width: 6.5rem;
  height: 6.5rem;
}

.admin-logo-empty {
  display: grid;
  min-height: 8rem;
  place-content: center;
  gap: 0.3rem;
  padding: 1rem;
  text-align: center;
  background: #fff;
  border: 1px dashed #aaa39a;
  border-radius: 0.75rem;
}

.admin-logo-empty::before {
  width: 6.5rem;
  height: 6.5rem;
  margin: 0 auto 0.35rem;
  background: url("../images/lets-netz_logo-folgt.a4f178f6c611.webp") center / contain no-repeat;
  content: "";
}

.admin-logo-actions {
  display: grid;
  justify-items: stretch;
  gap: 0.65rem;
  min-width: 9.5rem;
}

.admin-file-control {
  position: relative;
  display: block !important;
  cursor: pointer;
}

.admin-file-control input {
  position: absolute;
  width: 1px !important;
  min-height: 1px !important;
  height: 1px;
  padding: 0 !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0 !important;
}

.admin-file-control .admin-action-secondary,
.admin-logo-actions .admin-danger {
  width: 100%;
}

.admin-file-control .admin-action-secondary {
  min-height: var(--admin-control-height);
}

.admin-file-control:focus-within .admin-action-secondary {
  outline: 0.2rem solid #1b65b8;
  outline-offset: 0.15rem;
}

.admin-danger-quiet {
  color: #87271f;
  background: #fff;
}

.admin-danger-quiet:hover {
  color: #fff;
}

.admin-delete-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 1.2fr);
  align-items: center;
  gap: 1.25rem;
  margin-top: 1rem;
  border-color: #e1b7b2;
}

.admin-delete-panel h3,
.admin-delete-panel p {
  margin: 0;
}

.admin-delete-panel h3 {
  margin-top: 0.15rem;
  font: 700 clamp(1.35rem, 3vw, 1.8rem)/1.1 "Oswald", sans-serif;
}

.admin-delete-panel > div:first-child > p:last-child {
  max-width: 38rem;
  margin-top: 0.45rem;
  color: var(--admin-muted);
}

.admin-delete-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
}

.admin-sort-controls button:focus-visible,
.admin-drag-handle:focus-visible {
  outline: 0.18rem solid var(--admin-orange);
  outline-offset: 0.12rem;
}

.admin-sort {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: inherit;
  text-decoration: none;
}

.admin-sort:hover,
.admin-sort:focus-visible,
.admin-sort[aria-current="page"] {
  color: var(--admin-orange-dark);
}

.admin-row-actions a {
  color: #9a3d08;
  font-weight: 800;
}

.admin-list-card {
  padding: 0;
  overflow: hidden;
}

.admin-list-card > .admin-section-heading {
  align-items: end;
  padding: 1.25rem 1.35rem 0.75rem;
}

.admin-page-size {
  display: flex;
  align-items: end;
  gap: 0.55rem;
}

.admin-page-size label {
  display: grid;
  gap: 0.25rem;
  color: var(--admin-muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-page-size select {
  min-width: 6.5rem;
  min-height: var(--admin-control-height);
  height: var(--admin-control-height);
  padding: 0.55rem 2.5rem 0.55rem 0.75rem;
  color: var(--admin-ink);
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #3f3c37 50%),
    linear-gradient(135deg, #3f3c37 50%, transparent 50%),
    linear-gradient(to left, #f2eee7 2.3rem, transparent 2.3rem);
  background-position:
    calc(100% - 1rem) 50%,
    calc(100% - 0.68rem) 50%,
    100% 0;
  background-repeat: no-repeat;
  background-size: 0.34rem 0.34rem, 0.34rem 0.34rem, 100% 100%;
  border: 1px solid #aaa39a;
  border-radius: 0.65rem;
  font-weight: 700;
  cursor: pointer;
}

.admin-page-size button {
  min-height: var(--admin-control-height);
  padding: 0.65rem 1rem;
  color: #171717;
  background: var(--admin-orange);
  border: 1px solid var(--admin-ink);
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.admin-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.35rem;
  color: var(--admin-muted);
  background: #faf8f4;
  border-top: 1px solid var(--admin-line);
  font-size: 0.9rem;
  font-weight: 700;
}

.admin-pagination > div {
  display: flex;
  gap: 0.5rem;
}

.admin-pagination-disabled {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  color: #8a857e;
  background: #efede9;
  border: 1px solid #ddd8d0;
  border-radius: 999px;
}

.admin-empty {
  padding: 1.2rem;
  color: var(--admin-muted);
}

.admin-series-selector,
.admin-build-card {
  display: flex;
  align-items: end;
  gap: 1rem;
  justify-content: space-between;
}

.admin-series-selector .admin-form {
  grid-template-columns: minmax(15rem, 38rem) auto;
  align-items: end;
  flex: 1;
}

.admin-build-card p {
  max-width: 48rem;
  margin-bottom: 0;
}

.admin-chart-list {
  display: grid;
  gap: 1rem;
}

.admin-chart-row > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.admin-chart-row svg {
  display: block;
  width: 100%;
  height: 0.75rem;
}

.admin-chart-track {
  fill: #ece7df;
}

.admin-chart-bar {
  fill: var(--admin-orange);
}

.admin-presence {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.admin-presence i {
  width: 0.58rem;
  height: 0.58rem;
  background: #aaa49b;
  border-radius: 50%;
}

.admin-presence.is-online i {
  background: #25a05a;
  box-shadow: 0 0 0 0.22rem #dff3e7;
}

.admin-login-body {
  display: grid;
  place-items: center;
  padding: 1rem;
  background:
    radial-gradient(circle at 20% 10%, rgba(239, 108, 35, 0.3), transparent 24rem),
    var(--admin-sidebar);
}

.admin-login-shell {
  display: grid;
  width: min(100%, 30rem);
  gap: 1rem;
}

.admin-login-brand {
  width: 12rem;
  margin: 0 auto;
}

.admin-login-brand img {
  width: 100%;
  height: auto;
}

.admin-login-panel {
  padding: clamp(1.35rem, 5vw, 2.25rem);
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.24);
}

.admin-login-panel .admin-card {
  padding: 0;
  border: 0;
  box-shadow: none;
}

.admin-login-help {
  margin-bottom: 0;
  text-align: center;
}

@media (min-width: 42rem) {
  .admin-grid,
  .admin-filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .admin-form-span {
    grid-column: 1 / -1;
  }

  .admin-form-grid > .admin-check:not(.admin-form-span) {
    margin-top: calc(var(--admin-field-label-height) + var(--admin-field-gap));
  }

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

@media (min-width: 64rem) {
  .admin-shell {
    display: grid;
    grid-template-columns: 17rem minmax(0, 1fr);
  }

  .admin-sidebar {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    align-self: start;
    height: 100vh;
    height: 100svh;
    padding: 1.65rem 1.1rem;
    overflow-y: auto;
  }

  .admin-brand {
    margin: 0.2rem 0 2rem 0.75rem;
  }

  .admin-mobile-menu {
    display: none;
  }

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

  .admin-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

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

@media (max-width: 41.99rem) {
  .admin-topbar {
    align-items: center;
  }

  .admin-topbar .admin-eyebrow {
    display: none;
  }

  .admin-environment {
    display: none;
  }

  .admin-main {
    padding-bottom: 5rem;
  }

  .admin-section-heading,
  .admin-series-heading,
  .admin-series-selector,
  .admin-build-card {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-series-selector .admin-form {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .admin-form-actions > *,
  .admin-action-bar > *,
  .admin-participant-toolbar > * {
    width: 100%;
  }

  .admin-delete-header {
    grid-template-columns: 2.65rem minmax(0, 1fr);
  }

  .admin-delete-icon {
    width: 2.65rem;
  }

  .admin-delete-summary,
  .admin-delete-options {
    grid-template-columns: 1fr;
  }

  .admin-delete-summary > div,
  .admin-delete-summary > div:first-child,
  .admin-delete-summary > div:last-child {
    padding: 1rem 0;
  }

  .admin-logo-editor,
  .admin-delete-panel,
  .admin-delete-actions {
    grid-template-columns: 1fr;
  }

  .admin-logo-actions {
    width: 100%;
  }

  .admin-delete-actions .admin-danger {
    width: 100%;
  }

  .admin-list-card > .admin-section-heading,
  .admin-pagination,
  .admin-page-size {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-page-size,
  .admin-page-size label,
  .admin-page-size select,
  .admin-page-size button,
  .admin-pagination > div,
  .admin-pagination > div > * {
    width: 100%;
  }

  .admin-pagination > div > * {
    justify-content: center;
  }

  .admin-mobile-cards.admin-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0;
  }

  .admin-table-wrap:has(.admin-mobile-cards) {
    overflow: visible;
  }

  .admin-mobile-cards colgroup {
    display: none;
  }

  .admin-mobile-cards thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }

  .admin-mobile-cards tbody {
    display: grid;
    gap: 0.85rem;
    padding: 0.85rem;
  }

  .admin-mobile-cards tbody tr {
    display: grid;
    padding: 0.9rem;
    background: #fff;
    border: 1px solid var(--admin-line);
    border-radius: 0.85rem;
    box-shadow: 0 0.25rem 0.8rem rgba(34, 30, 24, 0.04);
  }

  .admin-mobile-cards tbody td {
    display: grid;
    grid-template-columns: minmax(6.8rem, 38%) minmax(0, 1fr);
    align-items: start;
    gap: 0.75rem;
    min-width: 0;
    padding: 0.65rem 0;
    overflow-wrap: anywhere;
    border: 0;
    border-bottom: 1px solid #eee8df;
  }

  .admin-mobile-cards tbody td:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .admin-mobile-cards tbody td::before {
    content: attr(data-label);
    color: #6a6259;
    font: 800 0.68rem/1.2 "Roboto", sans-serif;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .admin-events-table .admin-event-location {
    line-height: 1.35;
    overflow-wrap: break-word;
  }

  .admin-events-table .admin-event-location br {
    display: none;
  }

  .admin-events-table .admin-event-venue::before {
    content: " · ";
  }

  .admin-mobile-cards tbody td[data-primary="true"] {
    order: -1;
    margin: -0.9rem -0.9rem 0.2rem;
    padding: 0.85rem 0.9rem;
    background: #fff8ed;
    border-bottom-color: #eadcc8;
    border-radius: 0.8rem 0.8rem 0 0;
  }

  .admin-mobile-cards tbody td[data-label="Aktion"] .admin-row-actions,
  .admin-mobile-cards tbody td[data-label="Aktionen"] .admin-row-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .admin-mobile-cards tbody td[data-label="Aktion"] .admin-row-actions > *,
  .admin-mobile-cards tbody td[data-label="Aktionen"] .admin-row-actions > *,
  .admin-mobile-cards tbody td[data-label="Aktion"] > .admin-action-secondary,
  .admin-mobile-cards tbody td[data-label="Aktionen"] .admin-inline-actions,
  .admin-mobile-cards tbody td[data-label="Aktionen"] .admin-inline-actions > * {
    width: 100%;
  }

  .admin-mobile-cards.admin-events-table .admin-row-actions {
    flex-wrap: wrap;
    white-space: normal;
  }

  .admin-mobile-cards.admin-events-table .admin-participant-counts {
    justify-content: flex-start;
    margin-top: 0.1rem;
  }

  .admin-mobile-cards tbody tr.admin-participant-detail-row {
    margin-top: -0.85rem;
    padding: 0;
    border-top: 0;
    border-radius: 0 0 0.85rem 0.85rem;
  }

  .admin-mobile-cards tbody tr.admin-participant-detail-row > td {
    display: block;
    padding: 0 0.9rem 0.9rem;
    border: 0;
  }

  .admin-mobile-cards tbody tr.admin-participant-detail-row > td::before {
    display: none;
  }

  .admin-participants-table tbody tr.is-details-open {
    border-bottom: 0;
    border-radius: 0.85rem 0.85rem 0 0;
  }

  .admin-participant-details-panel {
    grid-template-columns: 1fr;
  }

  .admin-participant-detail-list {
    grid-template-columns: 1fr;
  }

  .admin-participant-guest-block {
    padding-top: 0.85rem;
    padding-left: 0;
    border-top: 1px solid var(--admin-line);
    border-left: 0;
  }
}

/* Protected authenticator enrollment. */
.admin-2fa-setup { max-width: 42rem; }
.admin-2fa-setup h2 { margin-bottom: .75rem; font-size: 1.75rem; line-height: 1.2; }
.admin-2fa-qr { width: 20rem; max-width: 100%; margin: 1.5rem 0; background: #fff; }
.admin-2fa-qr svg { display: block; width: 100%; height: auto; }
.admin-2fa-manual { margin-top: 1rem; }
.admin-2fa-manual summary { cursor: pointer; font-weight: 700; }
.admin-2fa-manual code { display: block; margin-top: .5rem; overflow-wrap: anywhere; }
