/*
Theme Name: wbh-theme
Theme URI: https://example.com/
Author: Codex
Description: Custom Theme für die Willy-Brandt-Halle mit globalem CI-CSS und festen Seitentemplates.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: wbh-theme
*/

:root {
  --rot: #dd073c;
  --rot-dark: #c40b34;
  --rot-rgb: 221, 7, 60;
  --aub: #910252;
  --ora: #d44007;
  --bla: #0075be;
  --ink: #1f1b1c;
  --ink-soft: #5f5558;
  --line: #e8dde0;
  --surface: #fffdfd;
  --surf-muted: #f8f2f4;
  --white: #ffffff;
  --font-brand: "Outfit", "Aptos", "Segoe UI", sans-serif;
  --font-body: "Outfit", "Aptos", "Segoe UI", sans-serif;
  --space-xs: 0.75rem;
  --space-s: 1rem;
  --space-m: 1.5rem;
  --space-l: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4.5rem;
  --radius-s: 0.75rem;
  --radius-m: 1.25rem;
  --radius-l: 2rem;
  --radius-xl: 4.5rem;
  --radius-logo: clamp(3.5rem, 9vw, 7rem);
  --shadow-soft: 0 1.25rem 2.5rem rgb(82 19 33 / 0.12);
  --shadow-card: 0 0.75rem 1.75rem rgb(82 19 33 / 0.08);
  --container: min(72rem, calc(100vw - 5rem));
  --edge-space: 6rem;
  --transition: 200ms ease;
  --m-muster: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='%23c40b34' fill-opacity='0.20'%3E%3Ctext x='10' y='62' font-size='68' font-family='Arial,Helvetica,sans-serif' font-weight='700' transform='rotate(-18 10 62)'%3Em%3C/text%3E%3Ctext x='84' y='48' font-size='68' font-family='Arial,Helvetica,sans-serif' font-weight='700' transform='rotate(-18 84 48)'%3Em%3C/text%3E%3Ctext x='28' y='138' font-size='68' font-family='Arial,Helvetica,sans-serif' font-weight='700' transform='rotate(-18 28 138)'%3Em%3C/text%3E%3Ctext x='100' y='122' font-size='68' font-family='Arial,Helvetica,sans-serif' font-weight='700' transform='rotate(-18 100 122)'%3Em%3C/text%3E%3C/g%3E%3C/svg%3E");
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  text-align: left;
}

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

a {
  color: var(--rot);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.15em;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.8rem);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: none;
}

[data-reveal-delay="1"] {
  transition-delay: 0.1s;
}

[data-reveal-delay="2"] {
  transition-delay: 0.2s;
}

[data-reveal-delay="3"] {
  transition-delay: 0.3s;
}

[data-reveal-delay="4"] {
  transition-delay: 0.4s;
}

.wortmarke,
.nav-wortmarke,
.wortmuehle-event {
  display: inline-grid;
  gap: 0;
  font-family: var(--font-brand);
  text-transform: lowercase;
}

.wortmarke {
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.04em;
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  color: var(--rot);
}

.nav-wortmarke {
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.04em;
  font-size: 1.05rem;
  color: var(--white);
}

.wortmuehle-event {
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.03em;
  font-size: clamp(1.1rem, 2.2vw, 1.75rem);
  color: rgb(255 255 255 / 0.85);
}

.wortmarke .m-bold,
.nav-wortmarke .m-bold,
.wortmuehle-event .m-bold {
  font-weight: 900;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 200;
}

.admin-bar .site-header {
  top: 32px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.75rem;
  padding: 0 var(--edge-space);
  transition: background 300ms ease, box-shadow 300ms ease;
}

.main-nav.scrolled {
  background: rgb(255 255 255 / 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgb(221 7 60 / 0.1), var(--shadow-card);
}

.nav-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  transition: transform var(--transition);
}

.nav-logo-wrap:hover {
  transform: scale(1.03);
}

.nav-logo-kasten {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.55rem 0.7rem 0.75rem 0.8rem;
  background: var(--rot);
  border-bottom-left-radius: 2.2rem;
  box-shadow: 0 0.5rem 1.5rem rgb(221 7 60 / 0.35);
  transition: box-shadow var(--transition);
}

.nav-logo-kasten:hover {
  box-shadow: 0 0.75rem 2rem rgb(221 7 60 / 0.5);
}

.nav-title {
  margin-left: 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  transition: color 300ms;
}

.nav-title small {
  display: block;
  font-weight: 400;
  font-size: 0.68rem;
  opacity: 0.75;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav.scrolled .nav-title {
  color: var(--ink);
}

.nav-links,
.mobile-menu-links,
.footer-nav,
.footer-legal,
.footer-social,
.anfrage-list {
  list-style: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgb(255 255 255 / 0.85);
  transition: background var(--transition), color var(--transition);
  letter-spacing: -0.01em;
}

.main-nav.scrolled .nav-links a {
  color: var(--ink);
}

.nav-links a:hover {
  background: rgb(221 7 60 / 0.1);
  color: var(--rot);
}

.nav-cta,
.btn,
.event-ticket,
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  font-family: var(--font-brand);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.nav-cta {
  padding: 0.65rem 1.3rem;
  background: var(--rot);
  color: var(--white) !important;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 0.5rem 1.5rem rgb(221 7 60 / 0.4);
  letter-spacing: -0.01em;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--rot-dark);
  box-shadow: 0 0.75rem 2rem rgb(221 7 60 / 0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 1.4rem;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: background 300ms;
}

.main-nav.scrolled .hamburger span {
  background: var(--ink);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: none;
  padding: 1rem;
  background: rgb(31 27 28 / 0.55);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-inner {
  width: min(24rem, 100%);
  margin-left: auto;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-soft);
}

.mobile-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: auto;
  margin-bottom: 1rem;
  background: rgb(221 7 60 / 0.08);
  border: none;
  border-radius: 999px;
  color: var(--rot);
  font-weight: 700;
  cursor: pointer;
}

.mobile-menu-links {
  display: grid;
  gap: 0.8rem;
}

.mobile-menu-links a {
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--rot);
}

.hero-bg,
.hero-bg-overlay,
.hero-bg-muster {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1);
  }
}

.hero-bg-overlay {
  background: linear-gradient(150deg, rgb(196 11 52 / 0.88) 0%, rgb(221 7 60 / 0.82) 45%, rgb(30 5 10 / 0.88) 100%);
}

.hero-bg-muster {
  background-image: var(--m-muster);
  background-size: 11rem 11rem;
  opacity: 0.35;
  mix-blend-mode: overlay;
}

.hero-curve {
  position: absolute;
  right: -8rem;
  bottom: -12rem;
  width: clamp(20rem, 40vw, 42rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.07);
  filter: blur(0.15rem);
}

.hero-logo-position {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
  padding-top: 5.5rem;
  padding-inline: var(--edge-space);
  animation: fadeDown 0.7s ease both;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-0.8rem);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero-logo-kasten {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem 1.1rem 1.4rem 1.25rem;
  background: var(--white);
  border-bottom-left-radius: var(--radius-logo);
  box-shadow: var(--shadow-soft);
}

.hero-logo-kasten .wortmarke {
  font-size: clamp(1.2rem, 2.2vw, 1.85rem);
  color: var(--rot);
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 8vw, 6.5rem);
}

.hero-inner {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: var(--edge-space);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: flex-end;
}

.hero-copy {
  max-width: 52rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.38rem 1rem 0.38rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.25);
  background: rgb(255 255 255 / 0.1);
  backdrop-filter: blur(6px);
  color: rgb(255 255 255 / 0.9);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.15s ease both;
}

.eyebrow-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--white);
  animation: puls 2.5s ease-in-out infinite;
}

@keyframes puls {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-h1,
.section-title,
.anfrage-title {
  font-family: var(--font-brand);
  letter-spacing: -0.035em;
}

.hero-h1 {
  font-size: clamp(3rem, 6.5vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.25s ease both;
  text-wrap: balance;
}

.hero-h1 .accent,
.anfrage-title .accent {
  font-weight: 300;
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgb(255 255 255 / 0.78);
  max-width: 44ch;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  font-weight: 400;
  animation: fadeUp 0.8s 0.35s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.btn {
  padding: 0.95rem 1.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--white);
  color: var(--rot);
  box-shadow: 0 0.75rem 2.5rem rgb(0 0 0 / 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 0.28);
  color: var(--rot-dark);
}

.btn-ghost-white {
  background: rgb(255 255 255 / 0.12);
  color: var(--white);
  border: 1.5px solid rgb(255 255 255 / 0.35);
  backdrop-filter: blur(6px);
}

.btn-ghost-white:hover {
  background: rgb(255 255 255 / 0.2);
  color: var(--white);
  border-color: rgb(255 255 255 / 0.6);
}

.btn-rot,
.form-submit,
.event-ticket {
  background: linear-gradient(135deg, var(--rot), var(--rot-dark));
  color: var(--white);
}

.btn-rot {
  box-shadow: 0 0.6rem 1.75rem rgb(221 7 60 / 0.4);
}

.btn-rot:hover,
.form-submit:hover,
.event-ticket:hover {
  transform: translateY(-2px);
  color: var(--white);
}

.hero-stats {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-top: 3px solid var(--rot);
}

.hero-stats-inner {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: var(--edge-space);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 1.6rem 2rem;
  border-right: 1px solid var(--line);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--rot);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.2rem;
}

.stat-label,
.section-eyebrow,
.footer-col-title,
.dl-type {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--rot);
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3.75rem);
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.85rem;
  text-wrap: balance;
}

.tour-title {
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.section-title .accent {
  color: var(--rot);
}

.section-intro,
.tour-copy-card p,
.vorteil-text,
.zg-text,
.anfrage-copy > p,
.footer-tagline {
  line-height: 1.7;
}

.section-intro {
  font-size: clamp(0.95rem, 1.25vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 52ch;
  font-weight: 400;
}

.ci-divider {
  width: 3.5rem;
  height: 0.28rem;
  background: linear-gradient(90deg, var(--rot), var(--rot-dark));
  border-radius: 999px;
  margin: var(--space-m) 0;
}

.ci-divider-light {
  background: rgb(255 255 255 / 0.4);
}

.raeume-section,
.kalender-section {
  background: var(--surf-muted);
}

.raeume-grid,
.vorteile-grid,
.zg-grid,
.downloads-grid {
  display: grid;
  gap: 1.25rem;
}

.raeume-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
}

.raum-card,
.vorteil-card,
.event-row,
.dl-item,
.tour-copy-card,
.form-card {
  box-shadow: var(--shadow-card);
}

.raum-card {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--white);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 280ms ease, box-shadow 280ms ease;
  border: 1px solid var(--line);
}

.raum-card:hover,
.vorteil-card:hover,
.dl-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.raum-card--lg {
  grid-column: span 2;
}

.raum-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.raum-card--lg .raum-img {
  aspect-ratio: 21 / 10;
}

.raum-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms ease;
}

.raum-card:hover .raum-img img {
  transform: scale(1.06);
}

.raum-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgb(15 3 7 / 0.65) 100%);
}

.raum-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--rot);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  z-index: 2;
}

.raum-body {
  padding: 1.35rem 1.5rem;
}

.raum-name,
.vorteil-title,
.zg-title,
.event-titel,
.form-title,
.dl-name {
  font-family: var(--font-brand);
  letter-spacing: -0.02em;
}

.raum-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.raum-card--lg .raum-name {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.raum-info,
.event-meta-row {
  font-size: 0.85rem;
  color: var(--ink-soft);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-weight: 500;
}

.raum-info {
  margin-bottom: 0.85rem;
}

.raum-mehr,
.zg-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.raum-mehr {
  color: var(--rot);
}

.tour-section,
.zg-section {
  position: relative;
  overflow: hidden;
  background: var(--rot);
  background-image: var(--m-muster);
  background-size: 11rem 11rem;
}

.tour-inner,
.anfrage-inner {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.tour-inner {
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 1;
}

.tour-copy-card {
  background: var(--white);
  border-radius: 0 var(--radius-l) var(--radius-l) var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
}

.tour-copy-card .section-eyebrow {
  color: var(--rot);
}

.tour-copy-card p {
  color: var(--ink-soft);
  font-size: 1rem;
  margin-bottom: 1.75rem;
}

.tour-frame {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 0.5rem solid rgb(255 255 255 / 0.25);
  box-shadow: 0 2rem 5rem rgb(0 0 0 / 0.35);
}

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

.tour-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(196 11 52 / 0.2);
  backdrop-filter: blur(2px);
  text-decoration: none;
}

.tour-play:hover {
  background: rgb(196 11 52 / 0.35);
}

.play-btn {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 0.3);
  transition: transform 250ms ease;
}

.tour-play:hover .play-btn {
  transform: scale(1.1);
}

.play-btn svg {
  width: 2rem;
  height: 2rem;
  fill: var(--rot);
  margin-left: 0.2rem;
}

.vorteile-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3rem;
}

.vorteil-card {
  padding: 1.85rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  position: relative;
  overflow: hidden;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.vorteil-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rot), var(--rot-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms ease;
}

.vorteil-card:hover::after {
  transform: scaleX(1);
}

.vorteil-icon-wrap,
.zg-icon,
.dl-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vorteil-icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgb(221 7 60 / 0.08);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--rot);
  font-weight: 800;
}

.vorteil-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.vorteil-text {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.zg-container {
  position: relative;
  z-index: 1;
}

.zg-section .section-eyebrow {
  color: rgb(255 255 255 / 0.65);
}

.zg-section .section-title {
  color: var(--white);
}

.zg-section .section-intro {
  color: rgb(255 255 255 / 0.75);
}

.zg-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
}

.zg-card {
  background: rgb(255 255 255 / 0.12);
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: var(--radius-l);
  padding: 2.25rem 2rem;
  backdrop-filter: blur(10px);
  transition: background 250ms ease, transform 250ms ease;
  cursor: pointer;
}

.zg-card:hover {
  background: rgb(255 255 255 / 0.2);
  transform: translateY(-4px);
}

.zg-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin-bottom: 1.1rem;
  background: rgb(255 255 255 / 0.12);
  font-size: 1rem;
  font-weight: 800;
}

.zg-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.7rem;
}

.zg-text {
  font-size: 0.92rem;
  color: rgb(255 255 255 / 0.72);
  margin-bottom: 1.5rem;
}

.zg-link {
  color: var(--white);
  border-bottom: 1.5px solid rgb(255 255 255 / 0.4);
  padding-bottom: 0.1rem;
}

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

.kalender-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.kalender-cta {
  white-space: nowrap;
  align-self: flex-end;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.event-row {
  display: grid;
  grid-template-columns: 5rem 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 1.65rem;
  background: var(--white);
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.event-row:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-soft);
  border-color: rgb(221 7 60 / 0.2);
}

.event-datum {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 4.75rem;
  height: 4.75rem;
  border-radius: var(--radius-s);
  background: linear-gradient(135deg, var(--rot), var(--rot-dark));
  color: var(--white);
}

.event-tag {
  font-family: var(--font-brand);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.event-monat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 0.85;
}

.event-titel {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.event-ticket {
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.anfrage-section {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.anfrage-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgb(221 7 60 / 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.anfrage-inner {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr 1.1fr;
}

.anfrage-copy .section-eyebrow {
  color: rgb(221 7 60 / 0.85);
}

.anfrage-title {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 800;
  line-height: 0.98;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.anfrage-title .accent {
  color: var(--rot);
}

.anfrage-copy > p {
  color: rgb(255 255 255 / 0.6);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.anfrage-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.anfrage-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgb(255 255 255 / 0.7);
  font-size: 0.92rem;
  font-weight: 500;
}

.anfrage-list li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--rot);
  flex-shrink: 0;
}

.form-card {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: rgb(255 255 255 / 0.05);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: var(--radius-l);
  backdrop-filter: blur(14px);
}

.form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.7rem;
}

.form-field label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.45);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: var(--radius-s);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgb(255 255 255 / 0.3);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgb(221 7 60 / 0.55);
  background: rgb(255 255 255 / 0.11);
}

.form-field select option {
  background: #1f1b1c;
  color: var(--white);
}

.form-field textarea {
  resize: none;
  min-height: 5rem;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 0.95rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow: 0 0.75rem 2rem rgb(221 7 60 / 0.45);
  margin-top: 0.5rem;
  letter-spacing: -0.01em;
}

.downloads-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.5rem;
}

.dl-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  text-decoration: none;
  color: inherit;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.dl-item:hover {
  border-color: rgb(221 7 60 / 0.2);
}

.dl-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-s);
  background: rgb(221 7 60 / 0.08);
  color: var(--rot);
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.dl-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 0.12rem;
}

.dl-type {
  font-size: 0.72rem;
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.site-footer {
  background: var(--ink);
  color: rgb(255 255 255 / 0.55);
  padding-block: 4rem 2rem;
  border-top: 3px solid var(--rot);
}

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

.footer-logo-wrap {
  text-decoration: none;
  margin-bottom: 1.25rem;
  display: inline-block;
}

.footer-logo-kasten {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.7rem 0.85rem 1rem 0.95rem;
  background: var(--rot);
  border-bottom-left-radius: 2.5rem;
}

.footer-wortmarke {
  font-size: 1.15rem;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgb(255 255 255 / 0.45);
  margin: 1rem 0 1.5rem;
  max-width: 28ch;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 2rem;
  height: 2rem;
  border-radius: 0.4rem;
  background: rgb(255 255 255 / 0.06);
  border: 1px solid rgb(255 255 255 / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255 255 255 / 0.45);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background var(--transition), color var(--transition);
}

.footer-social a:hover {
  background: rgb(221 7 60 / 0.25);
  color: var(--rot);
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgb(255 255 255 / 0.3);
  margin-bottom: 1.2rem;
  letter-spacing: 0.1em;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav a,
.footer-legal a {
  color: rgb(255 255 255 / 0.5);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-nav a {
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--rot);
}

.footer-contact-note {
  color: rgb(255 255 255 / 0.3);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-top: 0.25rem;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgb(255 255 255 / 0.3);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
}

.footer-legal a {
  font-size: 0.8rem;
}

@media (max-width: 64rem) {
  :root {
    --container: calc(100vw - 3rem);
    --radius-xl: 3rem;
    --edge-space: 3rem;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-inner,
  .tour-inner,
  .anfrage-inner {
    grid-template-columns: 1fr;
  }

  .hero-wortmuehle-wrap {
    display: none;
  }

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

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

  .raum-card--lg {
    grid-column: span 2;
  }

  .tour-copy-card {
    order: 1;
  }

  .tour-frame {
    order: 0;
  }

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

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

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

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

@media (max-width: 48rem) {
  :root {
    --radius-logo: 3.5rem;
    --edge-space: 1.5rem;
  }

  .raeume-grid,
  .vorteile-grid,
  .zg-grid,
  .footer-grid,
  .downloads-grid {
    grid-template-columns: 1fr;
  }

  .raum-card--lg {
    grid-column: span 1;
  }

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

  .event-row {
    grid-template-columns: 4.25rem 1fr;
  }

  .event-ticket {
    display: none;
  }

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

  .kalender-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

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

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