:root {
  --green: #073b2b;
  --green-hover: #0a4a37;
  --red: #c8102e;
  --bg: #f7f6f2;
  --salbei: #dce6df;
  --sand: #ede7dc;
  --white: #ffffff;
  --anthrazit: #292929;
  --text: #073b2b;
  --muted: color-mix(in srgb, #073b2b 58%, #f7f6f2);
  --line: color-mix(in srgb, #073b2b 14%, #f7f6f2);
  --bg-warm: #f7f6f2;
  --radius: 2px;
  --header-h: 162px;
  --hero-band: max(49rem, calc(72vh - var(--header-h) + 64px));
  --max: 1240px;
  --font-display: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Source Sans 3", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 20px;
  font-weight: 400;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
}

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

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 100;
  background: var(--green);
  color: var(--white);
  padding: 8px 12px;
}

.wrap {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
}

.kicker {
  display: block;
  font-family: var(--font-display);
  color: var(--red);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.12;
  font-weight: 600;
}

.lead {
  color: var(--muted);
  font-size: 20px;
  max-width: 42ch;
}

.lead--invite {
  max-width: 56ch;
}

#quartierfuehrer .lead {
  max-width: 56ch;
}

#wissenswertes .lead {
  max-width: 58ch;
}

#gschichtae .lead {
  max-width: 58ch;
}

#orphea .split .lead,
#alma .split .lead,
#nachbarin .split .lead,
#kafi-feischter .split .lead {
  max-width: 48ch;
}

.luet-page .split .lead {
  max-width: none;
}

.luet-page #orphea .split .lead,
.luet-page #kafi-feischter .split .lead,
.luet-page #viva .split .lead,
.luet-page #nadine .split .lead {
  max-width: none;
}

#gschichtae .lead .heart-deco {
  margin-left: 0.04em;
  margin-right: 0;
}

.lead-gap {
  display: block;
  margin-top: 1lh;
}

.lead--invite .heart-deco {
  margin-left: 0.04em;
  margin-right: 0;
}

.help-intro {
  margin-top: 16px;
}

.help-intro + p:has(.btn) {
  margin-top: 28px;
}

.help-intro + .card-grid {
  margin-top: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--green-hover);
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.btn-row--split {
  justify-content: space-between;
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--green);
}

.text-link:hover {
  color: var(--red);
}

.door-link {
  display: inline-flex;
  color: var(--green);
}

.door-link:hover {
  color: var(--red);
}

.door-icon {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--bg);
  border-bottom: 1px solid transparent;
}

.site-header:has(.search-panel:not([hidden])) {
  border-bottom-color: var(--line);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 21px;
  flex-shrink: 0;
}

.logo img {
  width: 93px;
  height: 102px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  line-height: 1;
}

.logo-text small {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--green);
  font-weight: 400;
}

.logo-word {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.heart {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer .logo img {
  width: 48px;
  height: 52px;
}

.site-footer .logo-text small {
  font-size: 16px;
}

.site-footer .logo-word {
  font-size: 28px;
}

.site-footer .heart {
  width: 18px;
  height: 18px;
}

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

.nav a {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--green);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--red);
}

.nav-drop {
  position: relative;
}

.nav-drop > a {
  white-space: nowrap;
}

.nav-drop-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 14px 0 10px;
  min-width: 13.5rem;
  list-style: none;
  background: var(--bg);
  border: 1px solid var(--line);
  z-index: 50;
}

.nav-drop-list::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 14px;
}

.nav-drop:hover .nav-drop-list,
.nav-drop:focus-within .nav-drop-list {
  display: block;
}

.nav-drop:first-child .nav-drop-list {
  left: 0;
  transform: none;
}

.nav-drop:last-child .nav-drop-list {
  left: auto;
  right: 0;
  transform: none;
}

.nav-drop-list a {
  display: block;
  padding: 7px 20px;
  font-size: 18px;
  white-space: nowrap;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.lang-switch a {
  display: grid;
  place-items: center;
  min-width: 36px;
  height: 44px;
  padding: 0 6px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--green);
  white-space: nowrap;
}

.lang-switch a:hover,
.lang-switch a[aria-current] {
  color: var(--red);
}

.search-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.search-toggle svg {
  width: 26px;
  height: 26px;
  stroke: var(--green);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-toggle:hover svg,
.search-toggle[aria-expanded="true"] svg {
  stroke: var(--red);
}

.search-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 28px 0 36px;
  z-index: 42;
}

.search-label {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.search-panel .search-bar {
  max-width: 640px;
  margin: 0 0 8px;
}

.search-panel .search-bar input {
  font-size: 20px;
}

.search-panel .search-results {
  max-height: min(48vh, 420px);
  overflow-y: auto;
}

.search-panel .search-results p {
  padding: 18px 0 0;
  color: var(--muted);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--green);
  position: relative;
  transition: 0.2s ease;
}

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

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

body.nav-open .menu-toggle span {
  background: transparent;
}

body.nav-open .menu-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

body.nav-open .menu-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  height: var(--hero-band);
  min-height: var(--hero-band);
  padding: 0;
  overflow: hidden;
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  height: 100%;
  min-height: 0;
  padding: 56px 0 64px;
}

.hero-copy {
  width: min(90%, 74rem);
  overflow: visible;
}

.hero-copy h1 {
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 600;
  max-width: none;
  white-space: nowrap;
}

.hero-copy p {
  margin: 24px 0 40px;
  font-size: 25px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 72ch;
}

.hero-copy .heart-deco {
  margin: 0 0.15em -0.06em 0.12em;
}

.hero-copy .place-name {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--green);
  line-height: 1.15;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1lh;
}

.hero-lang {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.hero-copy .hero-lang p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.35;
  max-width: none;
  color: var(--red);
}

.hero-copy .btn {
  min-height: 54px;
  padding: 0 26px;
  font-size: 18px;
}

.hero-copy .text-link {
  font-size: inherit;
}

.welcome-en .lead {
  max-width: 52ch;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% center;
}

.hero:not(.hero--page):not(.hero--maert) .hero-visual img {
  object-position: 70% 42%;
}

.hero--maert .hero-visual img {
  object-position: 100% 48%;
}

.hero--anlaesse .hero-visual img {
  object-position: 62% 42%;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--bg) 0%,
    var(--bg) 32%,
    color-mix(in srgb, var(--bg) 80%, transparent) 46%,
    color-mix(in srgb, var(--bg) 38%, transparent) 62%,
    transparent 76%
  );
  pointer-events: none;
}

.hero--maert .hero-visual::after {
  background: linear-gradient(
    90deg,
    var(--bg) 0%,
    var(--bg) 32%,
    color-mix(in srgb, var(--bg) 80%, transparent) 46%,
    color-mix(in srgb, var(--bg) 28%, transparent) 62%,
    transparent 74%
  );
}

.hero--maert .kicker,
.hero--page .kicker {
  display: block;
  margin-bottom: 12px;
}

.hero--page .hero-copy p {
  margin: 18px 0 0;
  max-width: 70ch;
  font-size: 25px;
  line-height: 1.5;
}

.hero--page .hero-copy .hero-sub {
  margin: 28px 0 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
  max-width: none;
  white-space: nowrap;
}

.hero--page .subnav {
  margin-top: 28px;
}

.hero--page .hero-actions {
  margin-top: 32px;
}

.hero--page .hero-actions + .subnav {
  margin-top: 44px;
}

.hero--page .hero-visual::after {
  background: linear-gradient(
    90deg,
    var(--bg) 0%,
    var(--bg) 36%,
    color-mix(in srgb, var(--bg) 82%, transparent) 52%,
    color-mix(in srgb, var(--bg) 40%, transparent) 68%,
    transparent 84%
  );
}

.hero--ueber .hero-visual img {
  object-position: 100% 46%;
}

.hero--ueber .hero-visual::after {
  background: linear-gradient(
    90deg,
    var(--bg) 0%,
    var(--bg) 30%,
    color-mix(in srgb, var(--bg) 72%, transparent) 46%,
    color-mix(in srgb, var(--bg) 28%, transparent) 60%,
    transparent 72%
  );
}

.hero--entdecken .hero-visual img {
  object-position: 100% 46%;
}

.hero--entdecken .hero-visual::after {
  background: linear-gradient(
    90deg,
    var(--bg) 0%,
    var(--bg) 30%,
    color-mix(in srgb, var(--bg) 72%, transparent) 46%,
    color-mix(in srgb, var(--bg) 28%, transparent) 60%,
    transparent 72%
  );
}

.hero--links .hero-visual img {
  object-position: 100% 72%;
}

.hero--links .hero-visual::after {
  background: linear-gradient(
    90deg,
    var(--bg) 0%,
    var(--bg) 26%,
    color-mix(in srgb, var(--bg) 68%, transparent) 40%,
    color-mix(in srgb, var(--bg) 22%, transparent) 54%,
    transparent 64%
  );
}

.photo-credit {
  margin: 20px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}

.hero-copy p.photo-credit {
  margin-top: 28px;
  font-size: 13px;
  line-height: 1.4;
  max-width: none;
  color: var(--muted);
}

.photo-credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.hero--mitmachen {
  height: auto;
  min-height: var(--hero-band);
}

.hero--mitmachen .hero-inner {
  height: auto;
}

.hero--mitmachen .hero-copy {
  width: min(92%, 72rem);
}

.hero--mitmachen .hero-copy p {
  max-width: 46ch;
}

.hero--mitmachen .hero-visual img {
  object-position: 100% 42%;
}

.hero--tatort .hero-visual img {
  object-position: 28% 36%;
}

.hero--tatort .hero-visual::after {
  background: linear-gradient(
    90deg,
    var(--bg) 0%,
    var(--bg) 20%,
    color-mix(in srgb, var(--bg) 62%, transparent) 36%,
    color-mix(in srgb, var(--bg) 22%, transparent) 52%,
    transparent 68%
  );
}

.hero--mitmachen .hero-visual::after {
  background: linear-gradient(
    90deg,
    var(--bg) 0%,
    var(--bg) 32%,
    color-mix(in srgb, var(--bg) 80%, transparent) 46%,
    color-mix(in srgb, var(--bg) 28%, transparent) 58%,
    transparent 70%
  );
}

.hero--maert .hero-copy p {
  margin: 0;
}

.hero--maert .hero-copy > p:not(.hero-season):not(.hero-season-meta) {
  margin: 24px 0 40px;
  max-width: 70ch;
  font-size: 25px;
  line-height: 1.5;
  color: var(--muted);
}

.hero--maert .hero-copy p.hero-season {
  margin-top: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 22ch;
}

.hero--maert .hero-season-meta {
  margin-top: 10px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: 22ch;
}

.hero--maert .hero-actions {
  margin-top: 32px;
}

.events {
  padding: 24px 0 128px;
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.events-head {
  margin-bottom: 32px;
}

.events-head .lead {
  margin-top: 10px;
}

.events-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
  color: var(--muted);
  font-size: 20px;
}

.events-cta .btn {
  flex: 0 0 auto;
}

.event {
  display: grid;
  grid-template-columns: 5.75rem minmax(0, 1.45fr) minmax(10.5rem, 0.7fr) 200px;
  gap: 28px 32px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.event[hidden] {
  display: none !important;
}

.event:last-child {
  border-bottom: 1px solid var(--line);
}

.event-date {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.event-date span {
  display: block;
  font-size: 15px;
  letter-spacing: 0.14em;
  font-weight: 500;
  margin-top: 4px;
}

.event-body .kicker {
  font-size: 16px;
  margin-bottom: 10px;
}

.event-body h3 {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 4px 0 10px;
  line-height: 1.25;
}

.event-body p {
  color: var(--muted);
  max-width: 46ch;
  font-size: 20px;
  line-height: 1.55;
}

.event-when {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.event-when strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.event-when span {
  display: block;
  margin-top: 8px;
  font-size: 20px;
}

.event img {
  width: 100%;
  height: 132px;
  object-fit: cover;
}

.event img.event-logo {
  object-fit: contain;
  object-position: center;
  background: #fff;
  padding: 16px;
  box-sizing: border-box;
}

.event img.event-logo[src*="logo-maerchenstiftung"] {
  background: #1a1a1a;
  padding: 10px;
}

.event img.event-logo.event-logo--flyer {
  object-fit: cover;
  object-position: top center;
  padding: 0;
  background: #efe6d4;
  height: 260px;
}

.event img.event-logo.event-logo--flyer[src*="flohmaert"] {
  background: #b7d4cc;
  object-position: center 38%;
}

.event--soon {
  opacity: 0.72;
}

.event--soon .event-date {
  color: var(--muted);
}

.event--open .event-date {
  color: var(--red);
}

.event-open-cta {
  display: grid;
  place-items: center;
  width: 100%;
  height: 132px;
  background: var(--green);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
}

.event-open-cta:hover {
  background: var(--green-hover);
  color: var(--bg);
}

.event-slot {
  width: 100%;
  height: 132px;
  display: grid;
  place-items: center;
  background: var(--salbei);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

main > section:nth-child(even) .event-slot {
  background: var(--bg);
}

.stories {
  padding: 48px 0 128px;
}

.stories-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) 0.62fr;
  gap: 80px;
  align-items: center;
}

.stories h2 {
  margin: 0 0 18px;
}

.heart-deco {
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  margin: 0 0 -0.05em 0.12em;
  vertical-align: 0.08em;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(12deg);
  transform-origin: center center;
}

.stories p {
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 38ch;
}

.find-teaser {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}

.find-teaser .wrap {
  position: relative;
  z-index: 1;
}

.find-teaser-words {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 56%;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  contain: layout paint;
  overflow: hidden;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--green) 16%, transparent);
}

.find-teaser-words span {
  position: absolute;
}

.find-teaser-words span:nth-child(1) {
  top: 4%;
  right: 4%;
  font-size: clamp(140px, 22vw, 280px);
  font-weight: 800;
  color: color-mix(in srgb, var(--green) 12%, transparent);
}

.find-teaser-words span:nth-child(2) {
  top: 22%;
  right: 28%;
  font-size: clamp(40px, 6.4vw, 88px);
}

.find-teaser-words span:nth-child(3) {
  bottom: 28%;
  right: 10%;
  font-size: clamp(28px, 4.2vw, 56px);
}

.find-teaser-words span:nth-child(4) {
  top: 48%;
  right: 38%;
  font-size: clamp(32px, 4.8vw, 64px);
}

.find-teaser-words span:nth-child(5) {
  bottom: 12%;
  right: 26%;
  font-size: clamp(36px, 5.4vw, 72px);
}

.find-teaser .section-title {
  max-width: 16ch;
}

.find-teaser p {
  margin: 16px 0 28px;
  color: var(--muted);
  font-size: 22px;
  max-width: 34ch;
}

.find-teaser .find-offer {
  margin: 20px 0 0;
  font-size: 18px;
  max-width: none;
  white-space: nowrap;
}

.find-teaser .find-offer + .find-offer {
  margin-top: 6px;
}

.whisper {
  position: absolute;
  top: 8%;
  right: max(0rem, 1vw);
  left: 4%;
  z-index: 0;
  margin: 0;
  writing-mode: horizontal-tb;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(72px, 13vw, 200px);
  line-height: 0.78;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  text-align: right;
  color: color-mix(in srgb, var(--green) 12%, transparent);
}

.whisper--lg,
.whisper--fit,
.whisper--md {
  font-size: clamp(88px, 15vw, 240px);
}

.whisper--under {
  top: auto;
  bottom: 6%;
  font-size: clamp(64px, 10vw, 180px);
}

.whisper--mitmach {
  top: 6%;
  font-size: clamp(96px, 16vw, 260px);
}

.whisper--malddi {
  font-size: clamp(72px, 12vw, 180px);
}

.whisper--haerz {
  top: 28%;
}

.whisper--a {
  top: 4%;
  transform: none;
  font-size: clamp(80px, 14vw, 220px);
}

.whisper--b {
  top: 36%;
  transform: none;
  font-size: clamp(64px, 11vw, 176px);
}

.whisper--c {
  top: 64%;
  transform: none;
  font-size: clamp(72px, 12vw, 196px);
}

.maert-stage {
  position: relative;
  overflow: visible;
}

.maert-stage > .whisper {
  z-index: 0;
}

.maert-stage > section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 96px;
}

.maert-stage > section > .wrap {
  position: relative;
  z-index: 1;
}

.maert-stage > .page-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: var(--salbei);
}

.maert-stage + .cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: var(--salbei);
}

.maert-stage + .cta + section::before {
  content: none;
}

main:has(> .maert-stage) + .site-footer {
  background: var(--salbei);
}

section:has(> .whisper) {
  overflow: visible;
}

section:has(> .whisper) > :not(.whisper) {
  position: relative;
  z-index: 1;
}

.stories img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.cta {
  padding: 88px 0;
  overflow-x: clip;
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 72px;
  align-items: stretch;
}

.cta-grid > div {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.cta-grid > div:first-of-type {
  padding-right: 48px;
  border-right: 1px solid color-mix(in srgb, #073b2b 14%, transparent);
}

.cta-grid > div > .btn,
.cta-grid > div > .newsletter-form {
  margin-top: auto;
  align-self: flex-start;
}

.cta .btn {
  width: auto;
  min-width: 0;
  height: 52px;
  padding: 0 22px;
  white-space: nowrap;
}

.cta .newsletter-form .btn {
  flex: 0 0 auto;
}

.cta h2 {
  font-size: clamp(32px, 3.2vw, 42px);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  font-weight: 600;
}

.cta p:not(.whisper) {
  color: var(--muted);
  margin-bottom: 26px;
  max-width: 54ch;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 460px;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  min-height: 50px;
  border: 1px solid color-mix(in srgb, #073b2b 16%, #ede7dc);
  border-radius: var(--radius);
  padding: 0 16px;
  background: var(--white);
}

.newsletter-form input:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 1px solid var(--green);
  outline-offset: 1px;
}

.form-note,
.form-success {
  display: none;
  margin-top: 12px;
  font-size: 18px;
}

.form-success.is-visible,
.form-note.is-visible {
  display: block;
}

.form-success {
  color: var(--green);
  font-weight: 500;
}

.site-footer {
  background: var(--salbei);
  padding: 80px 0 28px;
}

main:has(> section:last-child:nth-child(even)) + .site-footer {
  background: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr 0.8fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
}

.site-footer a,
.site-footer p,
.site-footer li {
  color: var(--muted);
  font-size: 20px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 10px;
}

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

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
}

.socials svg {
  width: 44px;
  height: 44px;
  fill: var(--green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid color-mix(in srgb, var(--green) 12%, transparent);
  color: var(--muted);
  font-size: 20px;
}

.site-footer .footer-bottom,
.site-footer .footer-bottom p,
.site-footer .footer-bottom a {
  font-size: 20px;
}

.footer-bottom nav {
  display: flex;
  gap: 20px;
}

.acc-btn {
  display: none;
}

.page-hero {
  padding: 56px 0 28px;
}

.page-hero .kicker {
  margin-bottom: 12px;
}

.page-hero h1 {
  font-size: clamp(42px, 5.4vw, 72px);
  letter-spacing: -0.035em;
  line-height: 1.08;
  max-width: none;
  font-weight: 600;
  white-space: nowrap;
}

.page-hero p:not(.whisper) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 22px;
  max-width: 68ch;
}

.page-hero .hero-season {
  margin-top: 22px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 22ch;
}

.page-hero .hero-season-meta {
  margin-top: 10px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: none;
}

.page-hero .hero-actions {
  margin-top: 28px;
}

.page-hero .hero-actions + .subnav {
  margin-top: 40px;
}

.page-hero .btn {
  min-height: 54px;
  padding: 0 28px;
  font-size: 18px;
}

.page-hero--shop {
  position: relative;
  overflow: visible;
}

.page-hero--shop p:not(.whisper) {
  max-width: 88ch;
}

.page-hero--shop h1 + p {
  margin-top: 48px;
}

.page-hero--shop .shop-setup {
  margin-top: 36px;
}

.page-hero--shop .hero-actions {
  margin-top: 40px;
}

.shop-mood {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 56px;
}

.shop-mood figure {
  margin: 0;
  min-width: 0;
}

.shop-mood img {
  width: 100%;
  height: min(52vh, 28rem);
  object-fit: cover;
  object-position: 50% 28%;
  display: block;
}

.shop-mood figure:first-child img {
  object-position: 50% 22%;
}

.shop-mood figure:nth-child(3) {
  grid-column: 1 / -1;
}

.shop-mood figure:nth-child(3) img {
  height: auto;
  max-height: none;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: 50% 42%;
}

.shop-picks .lead {
  margin-bottom: 36px;
}

.shop-picks .hero-actions {
  margin-top: 8px;
}

a.product {
  color: inherit;
}

a.product:hover h3 {
  color: var(--red);
}

.page-section {
  padding: 36px 0 112px;
  scroll-margin-top: calc(var(--header-h) + 12px);
}

main > section:nth-child(n + 2) {
  position: relative;
  z-index: 0;
  padding-top: 80px;
  padding-bottom: 96px;
}

main > section:nth-child(even)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: var(--salbei);
}

main > section.wrap:nth-child(even)::before {
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split--doors {
  align-items: start;
}

.why .section-title {
  max-width: none;
}

.why .prose {
  font-size: 22px;
}

.why .prose p:first-of-type {
  font-size: 24px;
  color: var(--text);
}

.split img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

#haerz .split img {
  height: min(52vh, 28rem);
  object-position: 50% 22%;
}

.split > a {
  display: block;
  min-width: 0;
  overflow: hidden;
}

.split > a img {
  display: block;
}

.luet-photo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}

.luet-photo > a:first-child {
  display: block;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.luet-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 20%;
}

#kafi-feischter .luet-photo img {
  object-position: 50% top;
}

#orphea .luet-photo img {
  object-position: 18% 28%;
}

#viva .luet-photo img {
  object-position: 40% 38%;
}

#nadine .luet-photo img {
  object-position: 22% 22%;
}

.luet-interview {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--green);
  text-decoration: none;
}

.luet-interview:hover {
  color: var(--red);
}

.hero--luet {
  height: auto;
  min-height: 0;
  overflow: visible;
}

.hero--luet .hero-inner {
  display: block;
  height: auto;
  padding-bottom: 40px;
}

.hero--luet .hero-copy {
  width: 100%;
}

.luet-faces {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 7.5rem));
  justify-content: start;
  gap: 14px 12px;
  margin-top: 40px;
}

.luet-faces a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  color: var(--green);
  text-decoration: none;
}

.luet-faces img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.luet-faces span {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.luet-faces a:hover span,
.luet-faces a:focus-visible span {
  color: var(--red);
}

.luet-faces a:hover img,
.luet-faces a:focus-visible img {
  filter: brightness(0.94);
}

.luet-faces a[href="#kafi-feischter"] img {
  object-position: 50% top;
}

.luet-faces a[href="#orphea"] img {
  object-position: 18% 28%;
}

.luet-faces a[href="#viva"] img {
  object-position: 40% 38%;
}

.luet-faces a[href="#nadine"] img {
  object-position: 22% 22%;
}

.luet-page .split {
  align-items: start;
}

.luet-page > .page-section:nth-child(odd):not(#orphea) .split {
  grid-template-columns: 0.92fr 1.08fr;
}

.luet-page #orphea .split {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.luet-page #orphea .prose {
  max-width: none;
}

.luet-page > .page-section:nth-child(even) .luet-photo {
  order: -1;
}

.luet-page > .page-section:nth-child(4n+2) .split {
  grid-template-columns: 1.3fr 0.9fr;
  gap: 48px;
}

.luet-page > .page-section:nth-child(4n+2) .luet-photo img {
  aspect-ratio: 3 / 4;
}

.luet-page .luet-photo a:hover img,
.luet-page .luet-photo a:focus-visible img {
  filter: brightness(0.94);
}

.luet-quote {
  margin: 0 0 18px;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.98;
  color: var(--green);
}

.luet-more {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-top: 16px;
}

.luet-more .text-link {
  font-size: 17px;
}

.nachbarin-page .split .lead {
  max-width: 42ch;
}

.nachbarin-page .recipe-photo img {
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: center;
  background: var(--sand);
}

.nachbarin-page .luet-faces {
  grid-template-columns: repeat(7, minmax(0, 6.4rem));
}

.recipe {
  max-width: 46ch;
  margin-top: 28px;
  padding: 0;
  border: 0;
}

.recipe h3 {
  margin: 22px 0 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.recipe h3:first-child {
  margin-top: 0;
}

.recipe ul,
.recipe ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.recipe ol {
  counter-reset: step;
}

.recipe ol li {
  position: relative;
  padding-left: 1.7em;
  counter-increment: step;
}

.recipe ol li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--red);
}

.recipe li {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.45;
}

.recipe-note {
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.45;
  color: var(--muted);
}

.recipe [data-print] {
  margin-top: 28px;
}

.interview-page {
  position: relative;
}

.interview-body {
  position: relative;
  padding: 28px 0 120px;
  overflow: clip;
}

.interview-body > .whisper {
  top: 6%;
  right: -2%;
  left: auto;
  font-size: clamp(80px, 14vw, 240px);
  color: color-mix(in srgb, var(--green) 9%, transparent);
  z-index: 0;
}

.interview-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 40px 48px;
  align-items: start;
}

.interview-shot {
  position: sticky;
  top: calc(var(--header-h) + 12px);
  margin: 0;
}

.interview-shot::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 10%;
  width: 7px;
  height: 22%;
  background: var(--red);
}

.interview-shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.interview-copy {
  min-width: 0;
  max-width: none;
}

.interview-id {
  margin-bottom: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.interview-back {
  display: inline-block;
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--green);
}

.interview-back:hover {
  color: var(--red);
}

.interview-id .kicker {
  margin-bottom: 10px;
}

.interview-id h1 {
  font-size: clamp(52px, 8vw, 108px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.interview-wait {
  margin-top: 18px;
  max-width: 28ch;
  color: var(--muted);
  font-size: 18px;
}

.luet-qa {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: luet-q;
}

.luet-qa > li {
  counter-increment: luet-q;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  column-gap: 8px;
  margin: 0;
  padding: 32px 0 28px;
  border-top: 1px solid var(--line);
}

.luet-qa > li:first-child {
  border-top: 0;
  padding-top: 8px;
}

.luet-qa > li::before {
  content: counter(luet-q, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 0.9;
  letter-spacing: -0.08em;
  color: var(--red);
}

.luet-q {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.035em;
  line-height: 1.18;
  color: var(--text);
}

.luet-a {
  grid-column: 2;
  margin: 16px 0 0;
  max-width: none;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.42;
  color: var(--green);
}

.luet-a .heart-deco {
  margin-left: 0.06em;
  margin-right: 0.04em;
}

.luet-a .text-link {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.luet-qa > li:has(.luet-a)::after {
  display: none;
}

.luet-qa > li::after {
  content: "";
  grid-column: 2;
  width: 40px;
  height: 3px;
  margin-top: 20px;
  background: var(--red);
}

.split-placeholder {
  width: 100%;
  height: 420px;
  background: var(--salbei);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--green) 28%, transparent);
  text-decoration: none;
}

.tatort-cover {
  margin: 0;
}

.tatort-cover img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.tatort-cover figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
}

.krimi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 40px;
  margin-top: 40px;
}

.krimi-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.krimi-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--bg);
}

.krimi-card .kicker {
  margin-top: 16px;
}

.krimi-card h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin: 8px 0 0;
}

.krimi-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.krimi-card--soon {
  justify-content: flex-end;
  min-height: 100%;
  padding: 32px 28px;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--green) 7%, var(--bg));
}

.krimi-card--soon .kicker {
  margin-top: 0;
}

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

  .krimi-card--soon {
    min-height: 220px;
  }
}

.prose {
  max-width: 62ch;
  font-size: 20px;
}

.prose .section-title + p,
.section-title + .lead {
  margin-top: 18px;
}

.prose p + p,
.prose ul {
  margin-top: 16px;
}

.prose ul {
  padding-left: 18px;
  color: var(--muted);
}

.card-grid,
.club-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 40px;
}

.card-grid--two {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
}

.agenda-empty {
  margin: 8px 0 0;
  max-width: 46ch;
  color: var(--muted);
}

.agenda-empty[hidden] {
  display: none;
}

.door-block {
  max-width: 52rem;
}

.door-block .lead {
  max-width: 64ch;
}

.door-block p:has(.btn),
.split .prose p:has(.btn) {
  margin-top: 28px;
}

.door-block--quiet .section-title {
  font-size: clamp(24px, 3.2vw, 34px);
}

.door-block--quiet .lead {
  font-size: 18px;
}

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

.people-heading {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 40px 0 4px;
}

.people-grid--two {
  max-width: none;
}

.card,
.person,
.club {
  background: transparent;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card p:has(.btn),
.card p:has(.text-link),
.card p:has(.door-link) {
  margin-top: auto;
  padding-top: 20px;
}

.card h3,
.person h3,
.club h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 8px 0;
}

.card p,
.person p,
.club p,
.person a {
  color: var(--muted);
  font-size: 20px;
}

.club-site {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--muted);
}

.club-site:hover {
  color: var(--green);
}

.person a {
  color: var(--green);
  font-weight: 500;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 36px 0 8px;
}

.fact {
  border-top: 1px solid var(--green);
  padding-top: 16px;
}

.fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

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

.facts--join {
  grid-template-columns: minmax(0, 16rem);
  max-width: 42rem;
  margin: 36px 0 8px;
}

.help-intro + .facts--join {
  margin-top: 28px;
}

.facts--join + .card-grid {
  margin-top: 40px;
}

.arrive-note {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  margin: 36px 0 20px;
}

.arrive-map {
  margin: 32px 0 10px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg);
}

.arrive-map-canvas,
.arrive-map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

.arrive-map-canvas {
  isolation: isolate;
  overflow: hidden;
}

.arrive-address {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 640px) {
  .arrive-map-canvas,
  .arrive-map iframe {
    height: 260px;
  }
}

.arrive-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.facts--offer .fact strong {
  font-size: clamp(42px, 5vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.facts--offer .fact span {
  font-size: 22px;
  margin-top: 8px;
  display: block;
}

.maert-invite {
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.maert-invite .lead {
  margin: 16px 0 28px;
  max-width: 56ch;
}

.stall-board-kicker {
  margin: 6px 0 4px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.stall-board ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.stall-board li {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: 16px 24px;
  align-items: baseline;
  padding: 16px 0;
  border-top: 1px solid var(--green);
}

.stall-board li:last-of-type {
  border-bottom: 1px solid var(--green);
}

.stall-board strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.stall-board span {
  color: var(--muted);
  font-size: 18px;
}

.stall-board-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.fact span {
  color: var(--muted);
  font-size: 18px;
}

.agenda-more {
  margin-top: 8px;
}

.agenda-more summary {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--green);
  cursor: pointer;
  padding: 18px 0;
  list-style: none;
}

.agenda-more summary::-webkit-details-marker {
  display: none;
}

.agenda-more summary::after {
  content: " +";
}

.agenda-more[open] summary::after {
  content: " –";
}

.agenda-more summary:hover {
  color: var(--red);
}

.history-chapters {
  margin-top: 8px;
  border-top: 1px solid var(--line);
}

.history-fold {
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.history-fold > summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  gap: 6px;
  position: relative;
  padding: 28px 56px 28px 0;
}

.history-fold > summary::-webkit-details-marker {
  display: none;
}

.history-fold > summary .kicker {
  margin-bottom: 0;
}

.history-fold-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--green);
}

.history-fold > summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--green);
  line-height: 1;
}

.history-fold[open] > summary::after {
  content: "–";
}

.history-fold > summary:hover .history-fold-title,
.history-fold > summary:hover::after {
  color: var(--red);
}

.history-fold-body {
  padding: 4px 0 48px;
}

.history-fold-body > .lead {
  margin: 0 0 12px;
}

.history-fold-body .timeline {
  margin-top: 20px;
}

.history-article {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.history-article + .history-article {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.history-article h2,
.history-article h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.history-fold .facts {
  margin-top: 8px;
}

.history-more {
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.history-more > summary {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--green);
  cursor: pointer;
  padding: 20px 0;
  list-style: none;
}

.history-more > summary::-webkit-details-marker {
  display: none;
}

.history-more > summary::after {
  content: " +";
}

.history-more[open] > summary::after {
  content: " –";
}

.history-more > summary:hover {
  color: var(--red);
}

.quote {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.03em;
  max-width: 22ch;
}

.area-map {
  margin: 8px 0 0;
  padding: 0;
  background: transparent;
  border-radius: var(--radius);
}

.area-map-canvas {
  isolation: isolate;
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg);
}

.area-map-canvas iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
}

.area-map img {
  display: block;
  width: 100%;
  height: auto;
}

.area-map figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin: 0;
  padding: 14px 4px 0;
  color: var(--muted);
  font-size: 16px;
}

.area-map figcaption .text-link {
  margin-left: auto;
}

.area-map-key {
  display: inline-block;
  width: 18px;
  height: 12px;
  background: #8ebfd0;
  border-radius: 1px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .area-map-canvas,
  .area-map-canvas iframe {
    height: 340px;
  }

  .area-map figcaption .text-link {
    margin-left: 0;
  }
}

.honor-list {
  columns: 2;
  color: var(--muted);
  font-size: 18px;
  margin-top: 24px;
}

.honor-intro {
  margin-top: 16px;
}

.honor-heading {
  margin: 40px 0 0;
  font-size: 20px;
  font-weight: 600;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
}

th,
td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

td:first-child {
  white-space: nowrap;
  font-weight: 600;
  width: 7.5rem;
}

.form {
  display: grid;
  gap: 16px;
  max-width: 720px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field span,
.choice {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-display);
}

.field input,
.field select,
.field textarea {
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: var(--white);
}

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

.choices {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.choice {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

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

.form-note {
  color: var(--muted);
  font-size: 17px;
  margin: 4px 0 0;
}

.form-legal {
  display: grid;
  gap: 14px;
  padding-top: 4px;
}

.form-docs {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 32px;
  margin: 0;
}

.form-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-display);
}

.legal {
  color: var(--muted);
  font-size: 20px;
}

.legal h2,
.legal h3 {
  margin: 36px 0 12px;
  color: var(--text);
}

.banner {
  background: transparent;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 28px 0 8px;
}

.toc a {
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
}

.toc a:hover {
  color: var(--red);
}

.anchor-block {
  padding-top: 48px;
}

.timeline {
  display: grid;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.timeline-item strong {
  letter-spacing: -0.02em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
}

.home-quote {
  margin: 18px 0 28px;
  padding: 0;
  border: 0;
  max-width: 32ch;
}

.home-quote p,
.prose .home-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.22;
  color: var(--text);
}

.home-quote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.video-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 12px 0 0;
}

.video-card {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

#meld-di,
#schick {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.whisper--lischte {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  display: block;
  margin: 4px 0 8px;
  padding-right: max(1.5rem, 4vw);
}

.video-frame {
  position: relative;
  padding-top: 56.25%;
  background: var(--anthrazit);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.history-fold-body .video-grid {
  margin-top: 8px;
}

.video-play {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: var(--anthrazit);
}

.video-play img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: opacity 0.2s ease;
}

.video-play:hover img,
.video-play:focus-visible img {
  opacity: 1;
}

.video-play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 8px 24px color-mix(in srgb, #073b2b 28%, transparent);
}

.video-play-mark::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 20px;
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent var(--bg);
}

.video-play:hover .video-play-mark,
.video-play:focus-visible .video-play-mark {
  background: var(--red);
}

.video-card .btn {
  margin-top: 10px;
}

.link-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  font-size: 20px;
}

.link-cols h2 {
  font-size: 24px;
  font-weight: 600;
}

.link-cols ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.link-cols li + li {
  margin-top: 8px;
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 46ch;
}

.link-list li + li {
  margin-top: 16px;
}

.link-list a,
.link-list strong {
  color: var(--green);
  font-weight: 500;
}

.link-list a:hover {
  color: var(--red);
}

.link-list span {
  display: block;
  color: var(--muted);
  font-size: 17px;
  margin-top: 2px;
}

.search-bar {
  display: flex;
  gap: 8px;
  max-width: 560px;
  margin: 24px 0 32px;
}

.search-bar input {
  flex: 1;
  min-height: 50px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 0 0 8px;
  background: transparent;
}

.search-results {
  display: grid;
  gap: 0;
}

.search-results a {
  display: block;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.search-results a:hover {
  color: var(--red);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}

.product {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}

.product-visual {
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  margin-bottom: 12px;
  box-sizing: border-box;
}

a.product-visual {
  color: inherit;
}

a.product-visual:hover img {
  opacity: 0.92;
}

.product-visual--photo {
  aspect-ratio: 1 / 1;
  padding: 12px;
  background: var(--white);
  outline: 1px solid var(--line);
}

.product-visual img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  min-width: 0;
  object-fit: contain;
}

.product-visual--white {
  background: var(--white);
  outline: 1px solid var(--line);
}

.product-visual--sand {
  background: var(--salbei);
}

.product-visual--salbei {
  background: var(--salbei);
}

.product h3 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 4px 0 0;
}

.product p {
  color: var(--muted);
  font-size: 20px;
  margin: 0 0 12px;
}

.subnav {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 28px;
  margin: 36px 0 8px;
}

.subnav a {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--green);
  padding: 0 0 4px;
  border-bottom: 2px solid transparent;
}

.subnav a:hover {
  border-bottom-color: color-mix(in srgb, var(--green) 35%, transparent);
}

.subnav a[aria-current="page"] {
  font-weight: 600;
  border-bottom-color: var(--green);
  cursor: default;
}

@media (max-width: 980px) {
  :root {
    --header-h: 144px;
  }

  .logo {
    gap: 16px;
    min-width: 0;
    flex-shrink: 1;
  }

  .logo img {
    width: 78px;
    height: 87px;
  }

  .logo-text small {
    font-size: 20px;
  }

  .logo-word {
    font-size: 35px;
  }

  .heart {
    width: 21px;
    height: 21px;
  }

  .hero,
  .stories-grid,
  .cta-grid,
  .split,
  .event,
  .footer-grid,
  .card-grid,
  .people-grid,
  .club-grid,
  .facts,
  .facts--four,
  .maert-invite,
  .shop-grid,
  .shop-mood,
  .interview-grid {
    grid-template-columns: 1fr;
  }

  .shop-mood img {
    height: 16rem;
  }

  .shop-mood figure:nth-child(3) img {
    height: auto;
    aspect-ratio: 3 / 2;
    object-position: 50% 42%;
  }

  .luet-page > .page-section:nth-child(even) .luet-photo,
  .luet-page .luet-photo {
    order: -1;
  }

  .luet-page > .page-section:nth-child(odd) .split,
  .luet-page > .page-section:nth-child(4n+2) .split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .luet-faces {
    grid-template-columns: repeat(auto-fill, minmax(72px, 6.5rem));
    margin-top: 32px;
  }

  .nachbarin-page .luet-faces {
    grid-template-columns: repeat(auto-fill, minmax(72px, 6.5rem));
  }

  .luet-quote {
    max-width: none;
  }

  .interview-shot::before {
    left: 0;
    top: -12px;
    width: 28%;
    height: 7px;
  }

  .interview-id h1 {
    white-space: normal;
    font-size: clamp(44px, 14vw, 72px);
  }

  .luet-qa > li {
    grid-template-columns: 52px minmax(0, 1fr);
    padding: 26px 0 22px;
  }

  .people-grid--two {
    max-width: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: auto;
    padding: 28px 0 64px;
    overflow: visible;
  }

  .hero-inner {
    height: auto;
    min-height: 0;
    padding: 0 0 28px;
  }

  .hero-copy {
    width: auto;
    max-width: none;
  }

  .hero-copy h1,
  .hero--page .hero-copy h1,
  .hero--maert .hero-copy h1,
  .hero--anlaesse .hero-copy h1,
  .page-hero h1 {
    max-width: none;
    white-space: normal;
    font-size: clamp(40px, 9vw, 48px);
  }

  .hero-visual {
    position: relative;
    inset: auto;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 340px;
  }

  .hero-visual img {
    min-height: 340px;
    object-position: center;
  }

  .hero-visual::after {
    background: linear-gradient(
      180deg,
      var(--bg) 0%,
      color-mix(in srgb, var(--bg) 55%, transparent) 18%,
      transparent 42%
    );
  }

  .hero--entdecken .hero-visual::after,
  .hero--links .hero-visual::after,
  .hero--ueber .hero-visual::after,
  .hero--mitmachen .hero-visual::after {
    background: linear-gradient(
      180deg,
      var(--bg) 0%,
      color-mix(in srgb, var(--bg) 55%, transparent) 18%,
      transparent 42%
    );
  }

  .event {
    gap: 16px;
    padding: 24px 0;
  }

  .event-when {
    padding-top: 4px;
  }

  .event img,
  .event-slot,
  .event-open-cta {
    height: 200px;
  }

  .event img.event-logo {
    height: 160px;
  }

  .event img.event-logo.event-logo--flyer {
    height: 220px;
  }

  .stories-grid {
    gap: 32px;
  }

  .stories img {
    height: 280px;
  }

  .cta-grid > div:first-of-type {
    padding-right: 0;
    padding-bottom: 40px;
    border-right: 0;
    border-bottom: 1px solid color-mix(in srgb, #073b2b 14%, transparent);
  }

  .cta .btn {
    width: auto;
    min-width: 0;
    flex: 0 0 auto;
  }

  .cta-grid > div > .btn,
  .cta-grid > div > .newsletter-form {
    align-self: flex-start;
    margin-top: 8px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    margin-left: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 28px 28px;
    gap: 14px;
    border-bottom: 1px solid var(--line);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .header-tools {
    margin-left: auto;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .nav {
    display: flex;
  }

  .nav a {
    font-size: 20px;
  }

  .nav-drop-list a {
    font-size: 17px;
    padding: 4px 12px;
  }

  .nav-drop {
    width: 100%;
  }

  .nav-drop-list {
    display: flex;
    flex-direction: column;
    position: static;
    transform: none;
    left: auto;
    min-width: 0;
    margin: 4px 0 0;
    padding: 0 0 0 4px;
    gap: 12px;
    border: 0;
    background: transparent;
  }

  .nav-drop-list::before {
    display: none;
  }

  .form-row,
  .newsletter-form,
  .banner,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .honor-list {
    columns: 1;
  }

  .footer-col .footer-title {
    display: none;
  }

  .acc-btn {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: 0;
    padding: 0 0 10px;
    font: inherit;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
  }

  .acc-panel {
    display: none;
  }

  .acc-panel.is-open {
    display: block;
  }

  .timeline-item,
  .video-grid,
  .link-cols {
    grid-template-columns: 1fr;
  }

  .stories,
  .cta,
  .events,
  .page-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .find-teaser-words span:nth-child(n + 2) {
    display: none;
  }

  .find-teaser-words span:nth-child(1) {
    top: auto;
    bottom: -12%;
    right: -4%;
    font-size: 160px;
  }

  .whisper {
    display: none;
  }
}

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

  :root {
    --header-h: 96px;
  }

  .header-inner {
    gap: 12px;
  }

  .logo {
    gap: 10px;
  }

  .logo img {
    width: 52px;
    height: 56px;
  }

  .logo-text {
    gap: 3px;
  }

  .logo-text small {
    font-size: 13px;
  }

  .logo-word {
    font-size: 22px;
    letter-spacing: 0.04em;
    gap: 6px;
  }

  .heart {
    width: 14px;
    height: 14px;
  }

  .search-toggle,
  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-copy h1,
  .hero--page .hero-copy h1,
  .hero--maert .hero-copy h1,
  .hero--anlaesse .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(32px, 8.4vw, 42px);
  }

  .hero--page .hero-copy .hero-sub {
    white-space: normal;
    font-size: clamp(28px, 7vw, 40px);
  }

  .find-teaser .find-offer {
    white-space: normal;
  }

  body {
    font-size: 18px;
  }

  .stall-board li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.page-section .lead + p:has(.btn) {
  margin-top: 28px;
}

.page-section .lead + p:has(.btn) + p {
  margin-top: 16px;
}

@media print {
  .skip,
  .site-header,
  .site-footer,
  .whisper,
  .subnav,
  .form,
  .search-panel,
  [data-print] {
    display: none !important;
  }

  body.printing-recipe .hero,
  body.printing-recipe .page-hero,
  body.printing-recipe .luet-faces,
  body.printing-recipe .luet-photo,
  body.printing-recipe .luet-quote,
  body.printing-recipe .lead,
  body.printing-recipe .kicker,
  body.printing-recipe #schick,
  body.printing-recipe .page-section:not(:has(.recipe.is-printing)) {
    display: none !important;
  }

  .recipe {
    border: 0;
    padding: 0;
    max-width: none;
  }
}
