/* Gestaltung nach dem Signet der Hagen Yeni Camii */

:root {
  --weinrot: #8b2339;
  --weinrot-dunkel: #491522;
  --weinrot-tief: #351019;
  --weinrot-hell: #aa3b53;
  --rose: #f2e4e7;
  --creme: #fbf8f6;
  --sand: #f3ebe7;
  --linie: #e5d8d5;
  --text: #292225;
  --text-leise: #675c5f;
  --weiss: #ffffff;
  --akzent: #c29a68;

  --schrift: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --breite: 1180px;
  --radius: 14px;
  --schatten: 0 2px 6px rgba(53, 16, 25, .045), 0 14px 36px rgba(53, 16, 25, .075);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--schrift);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text);
  background: var(--creme);
  -webkit-text-size-adjust: 100%;
}
h1, h2, h3, h4 {
  margin: 0 0 .55em;
  color: var(--weinrot-dunkel);
  font-weight: 740;
  line-height: 1.15;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(2.2rem, 4.4vw, 3.7rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.45rem); }
h3 { font-size: 1.22rem; letter-spacing: -.02em; }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }
a { color: var(--weinrot); text-underline-offset: .18em; }
a:hover { color: var(--weinrot-dunkel); }
:focus-visible { outline: 3px solid var(--akzent); outline-offset: 3px; border-radius: 4px; }
img { max-width: 100%; height: auto; display: block; }

.huelle { width: min(100% - 3rem, var(--breite)); margin-inline: auto; }
.huelle--schmal { width: min(100% - 3rem, 790px); margin-inline: auto; }
.springmarke {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  padding: .8rem 1.2rem; color: #fff; background: var(--weinrot-dunkel);
}
.springmarke:focus { left: .5rem; top: .5rem; }

/* Kopfbereich */
.kopf {
  position: sticky; top: 0; z-index: 50;
  color: var(--text); background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--linie);
  box-shadow: 0 3px 16px rgba(53, 16, 25, .045);
  backdrop-filter: blur(14px);
}
.kopf__innen { display: flex; align-items: center; gap: clamp(.75rem, 2vw, 1.7rem); min-height: 92px; }
.marke { display: flex; align-items: center; gap: .85rem; margin-right: auto; color: inherit; text-decoration: none; flex: 0 0 auto; }
.marke__zeichen { width: 76px; height: 38px; object-fit: contain; }
.marke__name { display: block; color: var(--weinrot-dunkel); font-size: 1.25rem; line-height: 1.1; font-weight: 800; letter-spacing: -.035em; }
.marke__zusatz { display: block; margin-top: .2rem; color: var(--text-leise); font-size: .72rem; line-height: 1.3; letter-spacing: .075em; text-transform: uppercase; }
.navi { display: flex; align-items: center; gap: .1rem; }
.navi a {
  padding: .56rem .55rem;
  border-radius: 7px;
  color: #43383b;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 560;
  white-space: nowrap;
  transition: color .16s ease, background .16s ease;
}
.navi a:hover { color: var(--weinrot); background: var(--rose); }
.navi a[aria-current="page"] { color: var(--weinrot); font-weight: 720; background: var(--rose); }

.knopf {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  min-height: 46px; padding: .72rem 1.2rem; border: 1px solid transparent; border-radius: 7px;
  font: 680 .94rem/1.2 var(--schrift); text-decoration: none; cursor: pointer;
  transition: background .16s ease, color .16s ease, border-color .16s ease, transform .16s ease;
}
.knopf:hover { transform: translateY(-1px); }
.knopf--gold, .knopf--gruen { color: #fff; background: var(--weinrot); }
.navi .knopf--gold, .navi .knopf--gruen { color: #fff; background: var(--weinrot); }
.knopf--gold:hover, .knopf--gruen:hover { color: #fff; background: var(--weinrot-dunkel); }
.knopf--rand { color: var(--weinrot); border-color: #c8aeb3; background: transparent; }
.knopf--rand:hover { color: #fff; border-color: var(--weinrot); background: var(--weinrot); }
.knopf--hell { color: #fff; border-color: rgba(255,255,255,.62); background: rgba(255,255,255,.035); }
.knopf--hell:hover { color: var(--weinrot-dunkel); border-color: #fff; background: #fff; }
.menue-schalter {
  display: none; padding: .55rem .85rem; border: 1px solid #d8c5c9; border-radius: 7px;
  color: var(--weinrot-dunkel); background: #fff; font: 650 .9rem var(--schrift); cursor: pointer;
}
@media (max-width: 1190px) {
  .menue-schalter { display: block; }
  .navi {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    padding: .65rem max(1.5rem, calc((100vw - var(--breite)) / 2)) 1.2rem;
    flex-direction: column; align-items: stretch; gap: .1rem;
    border-bottom: 1px solid var(--linie); background: #fff;
    box-shadow: 0 16px 24px rgba(53, 16, 25, .12);
  }
  .navi[data-offen="ja"] { display: flex; }
  .navi a { padding: .72rem .65rem; border-bottom: 1px solid #f2e8e9; font-size: .98rem; }
  .navi .knopf { margin-top: .6rem; border-bottom: 0; }
}
@media (max-width: 520px) {
  .huelle, .huelle--schmal { width: min(100% - 2rem, var(--breite)); }
  .kopf__innen { min-height: 76px; gap: .5rem; }
  .marke { gap: .6rem; }
  .marke__zeichen { width: 56px; height: 30px; }
  .marke__name { font-size: 1.08rem; }
  .marke__zusatz { font-size: .59rem; letter-spacing: .055em; }
}

/* Abschnitte und Überschriften */
.abschnitt { padding: clamp(3.25rem, 7vw, 6rem) 0; }
.abschnitt--sand { background: var(--sand); }
.abschnitt--gruen { color: #f8eef0; background: var(--weinrot-dunkel); }
.abschnitt--gruen h2, .abschnitt--gruen h3 { color: #fff; }
.abschnitt--gruen a { color: #fff; }
.kopfzeile { max-width: 740px; margin-bottom: 2.5rem; }
.kopfzeile--mitte { margin-inline: auto; text-align: center; }
.augenbraue {
  display: block; margin-bottom: .72rem; color: var(--weinrot); font-size: .88rem;
  font-weight: 650; letter-spacing: .01em;
}
.abschnitt--gruen .augenbraue, .willkommen .augenbraue { color: #e4b7c1; }
.leitsatz { color: var(--text-leise); font-size: 1.08rem; }
.abschnitt--gruen .leitsatz { color: #e4cfd4; }

/* Markantes, aber ruhiges Linienmuster zum Moschee-Signet */
.muster {
  position: relative; isolation: isolate; overflow: hidden;
  background-color: var(--weinrot-dunkel);
  background-image:
    linear-gradient(110deg, rgba(139,35,57,.45), transparent 54%),
    repeating-linear-gradient(90deg, transparent 0 54px, rgba(255,255,255,.035) 55px 56px),
    repeating-linear-gradient(0deg, transparent 0 54px, rgba(255,255,255,.025) 55px 56px);
}
.muster::after {
  position: absolute; z-index: -1; top: -12rem; right: -9rem; width: 32rem; height: 32rem;
  border: 1px solid rgba(255,255,255,.12); border-radius: 50%; content: "";
  box-shadow: 0 0 0 34px rgba(255,255,255,.025), 0 0 0 68px rgba(255,255,255,.02);
}

/* Startseite und Seitenauftakt */
.willkommen { padding: clamp(3.5rem, 8vw, 7rem) 0; color: #f8eef0; }
.willkommen h1 { color: #fff; margin-bottom: .5em; }
.willkommen p { color: #ead9dd; font-size: 1.1rem; max-width: 58ch; }
.willkommen__innen { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr); gap: clamp(2rem, 6vw, 5.5rem); align-items: center; }
.willkommen__inhalt { max-width: 740px; }
.willkommen__knoepfe { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.willkommen__logo {
  position: relative; z-index: 1; width: min(100%, 385px); justify-self: end;
  padding: clamp(1rem, 2.5vw, 1.6rem); border: 1px solid rgba(255,255,255,.55); border-radius: 16px;
  background: #fff; box-shadow: 0 24px 64px rgba(22, 4, 9, .23);
}
.willkommen__logo img { display: block; width: 100%; height: auto; object-fit: contain; }
@media (max-width: 760px) {
  .willkommen__innen { grid-template-columns: 1fr; gap: 2.3rem; }
  .willkommen__logo { width: min(100%, 345px); justify-self: start; }
}

/* Gebetszeiten */
.zeiten { overflow: hidden; border: 1px solid var(--linie); border-radius: var(--radius); background: #fff; box-shadow: var(--schatten); }
.zeiten__kopf {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: .5rem 1.5rem;
  padding: 1.15rem 1.5rem; color: #fff; background: var(--weinrot);
}
.zeiten__kopf h2, .zeiten__kopf h3 { margin: 0; color: #fff; font-size: 1.14rem; letter-spacing: -.01em; }
.zeiten__datum { color: #f4dce2; font-size: .9rem; }
.zeiten__gitter { display: grid; grid-template-columns: repeat(7, 1fr); }
.zeit { padding: 1.15rem .5rem 1.25rem; text-align: center; border-right: 1px solid var(--linie); }
.zeit:last-child { border-right: 0; }
.zeit__name { display: block; color: var(--text-leise); font-size: .78rem; font-weight: 690; letter-spacing: .06em; text-transform: uppercase; }
.zeit__arabisch { display: block; margin: .12rem 0 .35rem; color: var(--weinrot); font-size: .95rem; }
.zeit__uhr { color: var(--weinrot-dunkel); font-size: 1.7rem; font-weight: 690; font-variant-numeric: tabular-nums; letter-spacing: -.04em; }
.zeit[data-naechstes="ja"] { background: var(--rose); box-shadow: inset 0 3px 0 var(--weinrot); }
.zeit[data-naechstes="ja"] .zeit__name { color: var(--weinrot); font-weight: 780; }
.zeiten__fuss {
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; align-items: center;
  padding: .9rem 1.5rem; border-top: 1px solid var(--linie); background: var(--sand); font-size: .9rem;
}
.zeiten__hinweis { margin: .9rem 0 0; color: var(--text-leise); font-size: .87rem; }
.zeiten__gesperrt { grid-column: 1 / -1; padding: 1.15rem 1.5rem; color: var(--text-leise); }
@media (max-width: 720px) {
  .zeiten__gitter { grid-template-columns: repeat(4, 1fr); }
  .zeit { border-bottom: 1px solid var(--linie); }
  .zeit:nth-child(4n) { border-right: 0; }
  .zeit__uhr { font-size: 1.45rem; }
}
.tabelle-huelle { overflow-x: auto; border: 1px solid var(--linie); border-radius: var(--radius); background: #fff; box-shadow: var(--schatten); }
table.tage { width: 100%; min-width: 900px; border-collapse: collapse; font-variant-numeric: tabular-nums; }
table.tage th, table.tage td { padding: .65rem .9rem; text-align: right; border-bottom: 1px solid var(--linie); font-size: .94rem; }
table.tage th { color: #fff; background: var(--weinrot); font-size: .82rem; font-weight: 680; letter-spacing: .05em; text-transform: uppercase; }
table.tage tbody th { color: var(--text); background: transparent; font-size: .94rem; font-weight: 620; letter-spacing: normal; text-transform: none; }
table.tage td:first-child, table.tage th:first-child { text-align: left; }
table.tage tr[data-heute="ja"] th, table.tage tr[data-heute="ja"] td { color: var(--weinrot-dunkel); background: var(--rose); font-weight: 720; }
table.tage tr[data-freitag="ja"] td:first-child { color: var(--weinrot); font-weight: 700; }

/* Karten und Termine */
.gitter { display: grid; gap: 1.2rem; }
.gitter--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.gitter--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); }
.karte {
  padding: 1.55rem 1.5rem; border: 1px solid var(--linie); border-radius: var(--radius);
  background: #fff; box-shadow: var(--schatten); transition: transform .18s ease, box-shadow .18s ease;
}
.karte:hover { transform: translateY(-3px); box-shadow: 0 9px 28px rgba(53,16,25,.1); }
.karte h3 { margin-bottom: .45em; }
.karte p { color: var(--text-leise); font-size: .96rem; }
.karte__mehr { display: inline-block; margin-top: .8rem; font-size: .92rem; font-weight: 720; text-decoration-thickness: 1.5px; }
.karte--flach { box-shadow: none; }
.karte--flach:hover { transform: none; box-shadow: none; }
.zahl { display: block; margin-bottom: .6rem; color: var(--weinrot); font-size: 2.5rem; font-weight: 780; line-height: 1; letter-spacing: -.05em; }

.termin {
  display: grid; grid-template-columns: 104px 1fr; gap: 1.5rem; align-items: start;
  padding: 1.35rem; border: 1px solid var(--linie); border-radius: var(--radius); background: #fff; box-shadow: var(--schatten);
}
.termin + .termin { margin-top: 1rem; }
.termin__datum { padding: .9rem .4rem; border-radius: 10px; color: #fff; background: var(--weinrot-dunkel); text-align: center; }
.termin__tag { display: block; font-size: 1.8rem; font-weight: 740; line-height: 1; }
.termin__tag--zeitraum { font-size: 1.15rem; line-height: 1.2; }
.termin__monat { display: block; margin-top: .3rem; color: #edcbd3; font-size: .8rem; font-weight: 720; letter-spacing: .1em; text-transform: uppercase; }
.termin__jahr { display: block; margin-top: .15rem; color: #d7b7bf; font-size: .76rem; }
.termin h3 { margin-bottom: .3em; }
.termin__zeit { margin-bottom: .55rem; color: var(--weinrot); font-size: .9rem; font-weight: 680; }
.termin--vorbei { opacity: .72; }
@media (max-width: 560px) {
  .termin { grid-template-columns: 1fr; gap: .9rem; }
  .termin__datum { display: inline-block; padding: .55rem 1rem; }
  .termin__tag { display: inline; font-size: 1.1rem; }
  .termin__monat { display: inline; margin: 0 0 0 .4rem; }
  .termin__jahr { display: inline; margin-left: .3rem; }
}

/* Lesetexte und Orientierung */
.fliesstext { font-size: 1.02rem; }
.fliesstext h2 { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--linie); }
.fliesstext h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.fliesstext h3 { margin-top: 1.8rem; }
.fliesstext ol, .fliesstext ul { margin: 0 0 1.15em; padding-left: 1.35rem; }
.fliesstext li { margin-bottom: .5rem; padding-left: .2rem; }
.arabisch { margin: 1.6rem 0; padding: 1.4rem 1.6rem; border-radius: var(--radius); color: var(--weinrot-dunkel); background: var(--rose); font-size: 1.5rem; line-height: 2.1; direction: rtl; text-align: center; }
.zitat { margin: 1.5rem 0; padding: .2rem 0 .2rem 1.3rem; border-left: 3px solid var(--weinrot); color: var(--weinrot-dunkel); font-size: 1.15rem; }
.inhaltsangabe { margin-bottom: 2.5rem; padding: 1.4rem 1.6rem; border: 1px solid var(--linie); border-radius: var(--radius); background: var(--sand); }
.inhaltsangabe h2 { margin-bottom: .8rem; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.inhaltsangabe ol { margin: 0; padding-left: 1.2rem; columns: 2; column-gap: 2rem; }
.inhaltsangabe li { margin-bottom: .35rem; }
@media (max-width: 620px) { .inhaltsangabe ol { columns: 1; } }

.bildplatz {
  display: grid; place-items: center; aspect-ratio: 4 / 3; overflow: hidden; padding: 1rem;
  border: 1px solid rgba(139,35,57,.16); border-radius: var(--radius); color: rgba(255,255,255,.78);
  background-color: var(--weinrot-dunkel);
  background-image: repeating-linear-gradient(90deg, transparent 0 39px, rgba(255,255,255,.1) 40px 41px), repeating-linear-gradient(0deg, transparent 0 39px, rgba(255,255,255,.07) 40px 41px);
  font-size: .78rem; letter-spacing: .1em; text-align: center; text-transform: uppercase;
}
.bildplatz--breit { aspect-ratio: 16 / 9; }

/* Kontakt */
.kontaktzeile { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 2.5rem; }
.datenliste { margin: 0; }
.datenliste dt { margin-top: 1.15rem; color: var(--weinrot); font-size: .78rem; font-weight: 760; letter-spacing: .09em; text-transform: uppercase; }
.datenliste dt:first-child { margin-top: 0; }
.datenliste dd { margin: .25rem 0 0; }
.karte-hinweis { padding: 2.2rem 1.5rem; border: 1px dashed #c9aeb3; border-radius: var(--radius); background: var(--sand); text-align: center; }
.karte-hinweis p { max-width: 46ch; margin-inline: auto; color: var(--text-leise); font-size: .93rem; }
#kartenrahmen iframe { display: block; width: 100%; height: 380px; border: 0; border-radius: var(--radius); }

/* Fußbereich */
.fuss { padding: 3.5rem 0 2rem; color: #e1cfd3; background: var(--weinrot-tief); font-size: .92rem; }
.fuss h2, .fuss h3 { margin-bottom: .85rem; color: #fff; font-size: 1rem; font-weight: 740; letter-spacing: .035em; }
.fuss a { color: #f3e6e9; text-decoration: none; }
.fuss a:hover { color: #fff; text-decoration: underline; text-underline-offset: .2em; }
.fuss__gitter { display: grid; grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(150px, 1fr)); gap: 2.2rem; }
.fuss ul { margin: 0; padding: 0; list-style: none; }
.fuss li { margin-bottom: .42rem; }
.fuss__logo { width: min(100%, 215px); margin-bottom: 1.05rem; padding: .65rem .8rem; border-radius: 10px; background: #fff; }
.fuss__logo img { width: 100%; }
.fuss__identitaet p { color: #d1b9bf; }
.fuss__unten {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem 1.5rem;
  margin-top: 2.7rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.16); color: #cdb5bb; font-size: .84rem;
}

.hinweiskasten { margin: 1.5rem 0; padding: 1.1rem 1.3rem; border: 1px solid #e4cbd1; border-left: 4px solid var(--weinrot); border-radius: 8px; background: #fff5f6; font-size: .95rem; }
.hinweiskasten strong { color: var(--weinrot-dunkel); }

/* BKV-spezifische Bildsprache mit klaren Schwerpunkten statt einer austauschbaren Kachelwand. */
.willkommen--start { padding-block: clamp(3rem, 6.5vw, 6rem); }
.start-hero { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(340px, .96fr); align-items: center; gap: clamp(2rem, 5vw, 5rem); }
.start-hero__text { max-width: 660px; }
.start-hero__text h1 { max-width: 12ch; font-size: clamp(2.5rem, 5vw, 4.7rem); }
.start-hero__bild { position: relative; min-height: 390px; margin: 0; }
.start-hero__bild > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; border-radius: 170px 12px 12px 12px; box-shadow: 0 28px 70px rgba(22, 4, 9, .28); }
.start-hero__bild figcaption { position: absolute; right: 1rem; bottom: 1rem; padding: .45rem .75rem; border-radius: 5px; color: var(--weinrot-dunkel); background: rgba(255,255,255,.93); font-size: .76rem; font-weight: 700; letter-spacing: .04em; }
.start-hero__logo { width: min(100%, 230px); margin: .15rem 0 1.35rem; padding: .45rem .6rem; border-radius: 5px; background: #fff; }
.start-hero__logo img { display: block; width: 100%; height: auto; object-fit: contain; }
.start-zeiten { position: relative; z-index: 3; margin-top: -1.3rem; }
.start-zeiten .zeiten { border-top: 3px solid var(--akzent); }
.start-profil { display: block; }
.start-profil__text { max-width: 760px; }
.start-schwerpunkte { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.5rem, 4vw, 3.5rem); }
.start-schwerpunkt { display: grid; grid-template-columns: minmax(160px, .82fr) minmax(0, 1.18fr); gap: 1.35rem; align-items: center; padding-block: 1.5rem; border-top: 1px solid var(--linie); }
.start-schwerpunkt:nth-child(2n) { grid-template-columns: minmax(0, 1.18fr) minmax(160px, .82fr); }
.start-schwerpunkt:nth-child(2n) figure { order: 2; }
.start-schwerpunkt figure { overflow: hidden; margin: 0; border-radius: 8px 80px 8px 8px; background: var(--sand); }
.start-schwerpunkt img { width: 100%; height: 190px; object-fit: cover; }
.start-schwerpunkt h3 { margin-bottom: .4rem; }
.start-schwerpunkt p { color: var(--text-leise); font-size: .94rem; }
.start-einblicke { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 1rem; }
.start-einblicke figure { min-width: 0; margin: 0; }
.start-einblicke img { width: 100%; height: clamp(170px, 22vw, 265px); object-fit: cover; border-radius: 8px 62px 8px 8px; }
.start-einblicke figcaption { padding: .75rem .2rem; color: var(--text-leise); font-size: .82rem; line-height: 1.4; }
.start-rueckblick { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.start-rueckblick__bild { position: relative; margin: 0; }
.start-rueckblick__bild img { width: 100%; height: 360px; object-fit: cover; border-radius: 10px 160px 10px 10px; }
.start-rueckblick__bild figcaption { position: absolute; right: .8rem; bottom: .8rem; padding: .4rem .7rem; border-radius: 4px; color: var(--weinrot-dunkel); background: rgba(255,255,255,.92); font-size: .75rem; }
.fuehrung__bild { overflow: hidden; margin: 0 0 clamp(2rem, 5vw, 3.5rem); border-radius: 10px 150px 10px 10px; box-shadow: var(--schatten); }
.fuehrung__bild img { display: block; width: 100%; height: auto; aspect-ratio: 2.6 / 1; object-fit: cover; object-position: center; }
.fuehrung__bild figcaption { padding: .7rem 1rem; color: var(--text-leise); background: var(--sand); font-size: .82rem; }
.fuehrung__text { max-width: 760px; margin-inline: auto; }
.start-tour { padding-block: clamp(2.8rem, 5vw, 4.6rem); }
.start-tour .augenbraue { color: #e4b7c1; }
.start-tour h2 { color: #fff; }
.start-tour p { color: #ead9dd; }
.start-tour .start-rueckblick__bild img { height: 340px; }
.start-tour .start-rueckblick__bild figcaption { color: var(--weinrot-dunkel); }
.start-tour .knopf--gold { color: var(--weinrot-tief); background: #e4b7c1; }
.start-tour .knopf--gold:hover { color: var(--weinrot-tief); background: #fff; }
.start-kermes {
  display: grid; grid-template-columns: minmax(0, 1fr) 125px auto; align-items: center; gap: 1.6rem;
  padding: clamp(1.4rem, 3vw, 2.3rem); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius);
  color: #f8eef0; background: var(--weinrot-dunkel); box-shadow: var(--schatten);
}
.start-kermes h2 { margin: 0 0 .25rem; color: #fff; }
.start-kermes p { margin: 0; color: #ead9dd; }
.start-kermes .augenbraue { margin-bottom: .4rem; color: #e4b7c1; }
.start-kermes__datum { display: flex; flex-direction: column; align-items: center; color: #f1c8d1; }
.start-kermes__datum span { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.start-kermes__datum strong { color: #fff; font-size: 2.2rem; line-height: 1.05; }
@media (max-width: 760px) {
  .start-kermes { grid-template-columns: minmax(0, 1fr) 95px; gap: 1rem; }
  .start-kermes .knopf { grid-column: 1 / -1; justify-self: start; }
}
.zeiten__fehler { padding: 1.1rem 1.4rem; color: var(--text-leise); }
.zeiten__fehler a { font-weight: 720; }
.aktenhinweis { margin-top: 1.4rem; color: var(--text-leise); font-size: .82rem; }

@media (max-width: 820px) {
  .start-hero { grid-template-columns: 1fr; gap: 2.2rem; }
  .start-hero__bild { min-height: min(62vw, 420px); }
  .start-rueckblick { grid-template-columns: 1fr; }
  .start-schwerpunkte { grid-template-columns: 1fr; gap: .5rem; }
  .start-einblicke { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .start-einblicke figure:first-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .fuss__gitter { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .abschnitt { padding: 3.1rem 0; }
  .zeiten__kopf, .zeiten__fuss { padding-inline: 1rem; }
  .zeiten__fuss { align-items: flex-start; flex-direction: column; }
  .fuss__gitter { grid-template-columns: 1fr 1fr; gap: 1.8rem 1.2rem; }
  .fuss__identitaet { grid-column: 1 / -1; }
  .zeiten__gitter { grid-template-columns: repeat(2, 1fr); }
  .zeit:nth-child(4n) { border-right: 1px solid var(--linie); }
  .zeit:nth-child(2n) { border-right: 0; }
  .start-hero__bild { min-height: 260px; }
  .start-hero__bild > img { border-top-left-radius: 110px; }
  .start-hero__logo { width: min(100%, 210px); }
  .start-schwerpunkt, .start-schwerpunkt:nth-child(2n) { grid-template-columns: 1fr; gap: 1rem; }
  .start-schwerpunkt:nth-child(2n) figure { order: initial; }
  .start-schwerpunkt img { height: 220px; }
  .start-einblicke { grid-template-columns: 1fr; }
  .start-einblicke figure:first-child { grid-column: auto; }
  .start-einblicke img { height: 220px; }
  .start-rueckblick__bild img { height: 250px; }
}

/* Gebetszeiten-Einwilligung */
.cookie-hinweis {
  position: fixed;
  z-index: 80;
  inset-inline: 1rem;
  bottom: 1rem;
  width: min(100% - 2rem, 900px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--linie);
  border-left: 4px solid var(--weinrot);
  border-radius: 12px;
  color: var(--text);
  background: var(--weiss);
  box-shadow: var(--schatten);
  font-size: .92rem;
  line-height: 1.5;
}
.cookie-hinweis__text { flex: 1 1 480px; }
.cookie-hinweis__text strong { color: var(--weinrot-dunkel); }
.cookie-hinweis p { margin: .2rem 0 0; }
.cookie-hinweis__aktionen { display: flex; flex: 0 0 auto; flex-wrap: wrap; justify-content: flex-end; gap: .55rem; }
.cookie-hinweis__aktionen button { white-space: nowrap; }
.cookie-hinweis[hidden] { display: none; }
@media (max-width: 620px) {
  .cookie-hinweis { flex-direction: column; align-items: stretch; gap: .8rem; padding: 1rem; }
  .cookie-hinweis__aktionen { flex-direction: column-reverse; align-items: stretch; }
  .cookie-hinweis__aktionen button { width: 100%; }
}
.cookie-hinweis__aktionen #cookie-hinweis-zustimmen { max-width: 100%; }

.fuss__einstellungen {
  padding: 0;
  border: 0;
  color: #f3e6e9;
  background: transparent;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: .2em;
  cursor: pointer;
}
.fuss__einstellungen:hover { color: #fff; }

/* Kermes-Speisekarte */
.kermes-auftakt { padding: clamp(3.6rem, 8vw, 6.5rem) 0; color: #f8eef0; }
.kermes-auftakt__innen { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.kermes-auftakt h1 { max-width: 12ch; margin-bottom: .45em; color: #fff; }
.kermes-auftakt p { max-width: 58ch; color: #ead9dd; font-size: 1.1rem; }
.kermes-auftakt .augenbraue { color: #e4b7c1; }
.kermes-auftakt__datum {
  display: flex; flex: 0 0 230px; width: 230px; height: 230px;
  align-items: center; justify-content: center; flex-direction: column;
  border: 1px solid rgba(255,255,255,.48); border-radius: 50%; color: #fff;
  background: rgba(255,255,255,.06); box-shadow: 0 0 0 14px rgba(255,255,255,.035);
}
.kermes-auftakt__datum span:first-child { color: #f1c8d1; font-size: .85rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.kermes-auftakt__datum strong { font-size: 4.2rem; line-height: 1.05; letter-spacing: -.07em; }
.kermes-auftakt__datum span:last-child { color: #ead9dd; font-size: .95rem; }
.speisekarte { background: #fbf8f6; }
.menue-bereich { margin-top: 3.6rem; }
.menue-bereich__kopf { margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 1px solid var(--linie); }
.menue-bereich__kopf .augenbraue { margin-bottom: .25rem; font-size: .79rem; letter-spacing: .12em; text-transform: uppercase; }
.menue-bereich__kopf h3 { margin: 0; color: var(--weinrot-dunkel); font-size: 1.6rem; }
.menue-gitter { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 235px), 1fr)); gap: 1.1rem; }
.menue-artikel { overflow: hidden; border: 1px solid var(--linie); border-radius: 12px; background: #fff; box-shadow: 0 5px 20px rgba(53,16,25,.055); }
.menue-artikel > img { width: 100%; height: 205px; object-fit: cover; object-position: center; background: var(--sand); }
.menue-artikel__text { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: .16rem .6rem; padding: 1rem 1.05rem 1.1rem; }
.menue-artikel__text h4 { grid-column: 1 / -1; margin: 0; color: var(--weinrot-dunkel); font-size: 1.08rem; letter-spacing: -.02em; }
.menue-artikel__text p { min-height: 1.45em; margin: 0; color: var(--text-leise); font-size: .91rem; line-height: 1.4; }
.menue-artikel__preis { color: var(--weinrot); font-size: .98rem; font-weight: 760; font-variant-numeric: tabular-nums; white-space: nowrap; }
.kermes-zurueck { margin-top: 3rem; text-align: center; font-weight: 700; }
@media (max-width: 700px) {
  .kermes-auftakt__innen { align-items: flex-start; flex-direction: column; gap: 2.2rem; }
  .kermes-auftakt__datum { align-self: flex-end; width: 165px; height: 165px; flex-basis: 165px; }
  .kermes-auftakt__datum strong { font-size: 3.2rem; }
}
@media (max-width: 520px) {
  .menue-gitter { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem; }
  .menue-artikel > img { height: 145px; }
  .menue-artikel__text { grid-template-columns: 1fr; padding: .8rem; }
  .menue-artikel__text h4 { grid-column: auto; font-size: .98rem; }
  .menue-artikel__text p { min-height: 0; font-size: .84rem; }
}

