@charset "UTF-8";
/* ==========================================================================
   Haarstudio Gerhaard – Stylesheet
   Ersetzt bootstrap.css, custom.css, cookieBar.css und font-awesome.min.css.
   Keine externen Abhängigkeiten, keine Web-Fonts von fremden Servern.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Schriften (lokal, DSGVO-konform – kein Google-Fonts-CDN)
   -------------------------------------------------------------------------- */
@font-face {
    font-family: "Roboto";
    src: url("/fonts/roboto/Roboto-Regular.woff2") format("woff2"),
         url("/fonts/roboto/Roboto-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("/fonts/roboto/Roboto-Medium.woff2") format("woff2"),
         url("/fonts/roboto/Roboto-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("/fonts/roboto/Roboto-Bold.woff2") format("woff2"),
         url("/fonts/roboto/Roboto-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* --------------------------------------------------------------------------
   2. Design-Tokens
   -------------------------------------------------------------------------- */
:root {
    /* Markenfarbe: gegenüber dem alten #0198cc abgedunkelt, damit Text darauf
       bzw. daraus den WCAG-AA-Kontrast von 4.5:1 auf Weiß erreicht. */
    --brand: #0e7fa8;
    --brand-dark: #0a6386;
    --brand-darker: #084d69;
    --brand-tint: #e8f4f9;
    --brand-tint-2: #f4fafc;

    --ink: #16181d;
    --ink-soft: #3d4550;
    --muted: #5f6874;
    --line: #e3e7ec;
    --line-soft: #eef1f5;

    --surface: #ffffff;
    --surface-alt: #f6f8fa;

    --ok: #1e8a4c;
    --ok-tint: #e7f5ec;
    --warn-tint: #f3f4f6;

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;

    --shadow-sm: 0 1px 2px rgba(16, 24, 40, .05);
    --shadow: 0 1px 3px rgba(16, 24, 40, .06), 0 12px 28px -12px rgba(16, 24, 40, .18);
    --shadow-lg: 0 2px 6px rgba(16, 24, 40, .06), 0 26px 50px -20px rgba(16, 24, 40, .28);

    /* Fluide Typografie */
    --text-sm: .875rem;
    --text-base: clamp(1rem, .97rem + .16vw, 1.075rem);
    --text-lead: clamp(1.1rem, 1.03rem + .34vw, 1.3rem);
    --h4: clamp(1.05rem, 1rem + .25vw, 1.2rem);
    --h3: clamp(1.2rem, 1.1rem + .5vw, 1.5rem);
    --h2: clamp(1.5rem, 1.28rem + 1.05vw, 2.15rem);
    --h1: clamp(2rem, 1.5rem + 2.3vw, 3.15rem);

    --wrap: 1160px;
    --gap: clamp(1.25rem, .9rem + 1.6vw, 2.5rem);
    --section-y: clamp(2.75rem, 2rem + 3.4vw, 5rem);
}

/* --------------------------------------------------------------------------
   3. Reset & Grundlagen
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

/* Muss vor allen Komponenten stehen und !important tragen: die Browserregel
   [hidden] { display: none } wird sonst von jeder eigenen display-Angabe
   ueberstimmt (z. B. .map-consent { display: flex }), und per JavaScript
   ausgeblendete Elemente blieben sichtbar. */
[hidden] { display: none !important; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 1.5rem;
}

body {
    margin: 0;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: var(--text-base);
    line-height: 1.65;
    color: var(--ink);
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Das WebForms-<form> umschließt die gesamte Seite und darf kein Layout erzeugen. */
form#frmMain { margin: 0; display: block; }

img, svg { max-width: 100%; height: auto; vertical-align: middle; }
img { border: 0; }

h1, h2, h3, h4 {
    margin: 0 0 .6em;
    line-height: 1.2;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -.015em;
    text-wrap: balance;
}

h1 { font-size: var(--h1); font-weight: 700; letter-spacing: -.03em; }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
h4 { font-size: var(--h4); font-weight: 700; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a {
    color: var(--brand-dark);
    text-decoration: none;
    text-underline-offset: .18em;
}

a:hover, a:focus-visible { text-decoration: underline; }

:focus-visible {
    outline: 3px solid var(--brand);
    outline-offset: 2px;
    border-radius: 3px;
}

hr {
    border: 0;
    border-top: 1px solid var(--line);
    margin: var(--gap) 0;
}

table { border-collapse: collapse; width: 100%; }

::selection { background: var(--brand); color: #fff; }

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

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 100;
    background: var(--brand-dark);
    color: #fff;
    padding: .75rem 1.25rem;
    border-radius: 0 0 var(--radius-sm) 0;
    font-weight: 500;
}

.skip-link:focus {
    left: 0;
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   4. Layout-Primitive
   -------------------------------------------------------------------------- */
.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: clamp(1rem, .6rem + 1.6vw, 2rem);
}

.section { padding-block: var(--section-y); }
.section--alt { background: var(--surface-alt); }
.section--tint { background: var(--brand-tint-2); }

.section__head { max-width: 46rem; margin-bottom: clamp(1.5rem, 1rem + 1.6vw, 2.5rem); }
.section__head p { color: var(--muted); font-size: var(--text-lead); margin-bottom: 0; }

.eyebrow {
    display: block;
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brand-dark);
    margin-bottom: .5rem;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .8rem 1.5rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font: inherit;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn--primary {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.btn--primary:hover, .btn--primary:focus-visible {
    background: var(--brand-darker);
    border-color: var(--brand-darker);
    color: #fff;
}

.btn--outline {
    background: transparent;
    border-color: var(--line);
    color: var(--ink);
}

.btn--outline:hover, .btn--outline:focus-visible {
    border-color: var(--brand);
    color: var(--brand-dark);
    background: var(--brand-tint-2);
}

.btn--sm { padding: .55rem 1.1rem; font-size: var(--text-sm); }

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.75rem;
}

/* --------------------------------------------------------------------------
   6. Kopfbereich
   -------------------------------------------------------------------------- */
.topbar {
    background: var(--ink);
    color: #d8dde4;
    font-size: var(--text-sm);
}

.topbar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: .35rem 1.25rem;
    padding-block: .6rem;
}

.topbar a { color: #fff; }

.status {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
}

.status__dot {
    width: .6rem;
    height: .6rem;
    border-radius: 50%;
    flex: none;
    background: #8b94a1;
}

.status.is-open .status__dot {
    background: #34d07f;
    box-shadow: 0 0 0 3px rgba(52, 208, 127, .22);
}

.status__label { font-weight: 500; color: #fff; }
.status__sep { color: #6b7481; }

.topbar__phone {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 500;
    white-space: nowrap;
}

.topbar__phone svg { width: 1em; height: 1em; opacity: .8; }

.site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--line-soft);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-block: 1.1rem;
}

.site-header__logo img {
    display: block;
    width: auto;
    height: auto;
    max-height: clamp(52px, 5.2vw, 78px);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(.75rem, .3rem + 1.2vw, 1.75rem);
    font-size: var(--text-sm);
}

.site-nav a {
    color: var(--ink-soft);
    font-weight: 500;
    padding-block: .35rem;
    border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--brand-dark);
    border-bottom-color: var(--brand);
    text-decoration: none;
}

.site-nav a[aria-current="page"] {
    color: var(--brand-dark);
    border-bottom-color: var(--brand);
}

@media (max-width: 640px) {
    .site-header__inner { flex-direction: column; align-items: flex-start; gap: .9rem; }
    .site-nav { flex-wrap: wrap; }
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
    background: linear-gradient(168deg, var(--brand-tint) 0%, #ffffff 62%);
    border-bottom: 1px solid var(--line-soft);
    overflow: hidden;
}

.hero__inner {
    display: grid;
    gap: var(--gap);
    align-items: center;
    padding-block: clamp(2.5rem, 1.6rem + 4vw, 5.5rem);
}

@media (min-width: 900px) {
    .hero__inner { grid-template-columns: 1.05fr .95fr; }
}

.hero h1 { margin-bottom: .35em; }

.hero__lead {
    font-size: var(--text-lead);
    color: var(--ink-soft);
    max-width: 34rem;
    margin-bottom: 1.1rem;
}

.hero__note {
    color: var(--muted);
    max-width: 34rem;
    margin-bottom: 0;
}

.hero__media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 899px) {
    .hero__media { aspect-ratio: 16 / 10; }
}

/* --------------------------------------------------------------------------
   8. Karten & Raster
   -------------------------------------------------------------------------- */
.grid {
    display: grid;
    gap: var(--gap);
}

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }

.grid--split { gap: var(--gap); }

@media (min-width: 900px) {
    .grid--split { grid-template-columns: 1.15fr .85fr; align-items: start; }
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.35rem, 1rem + 1.1vw, 2rem);
    box-shadow: var(--shadow-sm);
}

.card--accent {
    border-color: transparent;
    background: linear-gradient(180deg, var(--brand-tint) 0%, #fff 55%);
    box-shadow: var(--shadow);
}

.card h2, .card h3 { margin-top: 0; }

/* --------------------------------------------------------------------------
   9. Öffnungszeiten (Ausgabe von OpeningHours.RenderTable)
   -------------------------------------------------------------------------- */
.hours {
    margin: 0 0 1.25rem;
    font-variant-numeric: tabular-nums;
}

.hours th,
.hours td {
    padding: .6rem .25rem;
    text-align: left;
    border-bottom: 1px solid var(--line-soft);
    vertical-align: baseline;
}

.hours th {
    font-weight: 400;
    color: var(--ink-soft);
    padding-right: 1rem;
}

.hours td { text-align: right; white-space: nowrap; font-weight: 500; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours td.shut { color: var(--muted); font-weight: 400; }

.hours tr.is-today th,
.hours tr.is-today td {
    color: var(--brand-darker);
    font-weight: 700;
}

.hours tr.is-today th::before {
    content: "";
    display: inline-block;
    width: .45rem;
    height: .45rem;
    border-radius: 50%;
    background: var(--brand);
    margin-right: .55rem;
    vertical-align: middle;
}

.hours-status {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem .85rem .35rem .7rem;
    border-radius: 999px;
    font-size: var(--text-sm);
    font-weight: 500;
    background: var(--warn-tint);
    color: var(--ink-soft);
}

.hours-status.is-open { background: var(--ok-tint); color: #14663a; }
.hours-status .status__dot { background: #98a1ae; }
.hours-status.is-open .status__dot { background: var(--ok); box-shadow: none; }

.hours-cta {
    margin-top: 1.35rem;
    padding-top: 1.35rem;
    border-top: 1px dashed var(--line);
}

.hours-cta p { margin-bottom: .75rem; }

.phone-big {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: clamp(1.25rem, 1.1rem + .7vw, 1.6rem);
    font-weight: 700;
    color: var(--brand-darker);
    letter-spacing: -.01em;
}

.phone-big:hover { text-decoration: none; color: var(--brand); }
.phone-big svg { width: .85em; height: .85em; flex: none; }

/* --------------------------------------------------------------------------
   10. Leistungen
   -------------------------------------------------------------------------- */
.services {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}

.services li {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.35rem 1.4rem;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.services li:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.services h3 {
    font-size: var(--h4);
    font-weight: 700;
    margin-bottom: .35rem;
}

.services p {
    margin: 0;
    color: var(--muted);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.services__note {
    margin-top: 1.5rem;
    color: var(--muted);
    font-size: var(--text-sm);
}

/* --------------------------------------------------------------------------
   11. Galerie
   -------------------------------------------------------------------------- */
.gallery {
    display: grid;
    gap: clamp(.75rem, .5rem + .9vw, 1.25rem);
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}

.gallery figure {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--surface-alt);
    aspect-ratio: 3 / 2;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.gallery figure:hover img { transform: scale(1.04); }

/* --------------------------------------------------------------------------
   12. Anfahrt & Karte
   -------------------------------------------------------------------------- */
.address {
    font-style: normal;
    line-height: 1.8;
}

.address strong { display: block; font-size: var(--h4); margin-bottom: .2rem; }

.facts {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.facts li {
    display: grid;
    grid-template-columns: 1.6rem 1fr;
    gap: .85rem;
    align-items: start;
}

.facts svg {
    width: 1.35rem;
    height: 1.35rem;
    color: var(--brand-dark);
    margin-top: .18rem;
}

.facts strong { display: block; font-weight: 500; }
.facts span { color: var(--muted); font-size: var(--text-sm); }

.map-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface-alt);
    min-height: 340px;
}

@media (min-width: 900px) {
    .map-frame { min-height: 460px; }
}

/* Absolut positioniert, NICHT height:100%. Der Elternteil hat nur eine
   min-height und damit keine definite Hoehe - ein prozentuales height
   wuerde dort auf 0 zusammenfallen und die Karte bliebe unsichtbar. */
#mapview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Platzhalter, solange keine Einwilligung für Google Maps vorliegt */
.map-consent {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .85rem;
    text-align: center;
    padding: clamp(1.25rem, 1rem + 1.5vw, 2.25rem);
    background:
        linear-gradient(rgba(246, 248, 250, .93), rgba(246, 248, 250, .93)),
        repeating-linear-gradient(45deg, var(--line-soft) 0 12px, transparent 12px 24px);
}

.map-consent__icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--brand-dark);
    opacity: .8;
}

.map-consent h3 {
    margin: 0;
    font-size: var(--h4);
    font-weight: 700;
}

.map-consent p {
    margin: 0;
    max-width: 30rem;
    color: var(--muted);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.map-consent .btn-row { margin-top: .35rem; justify-content: center; }

/* --------------------------------------------------------------------------
   13. Cookie-Banner
   -------------------------------------------------------------------------- */
.consent {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 60;
    background: var(--surface);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 40px -12px rgba(16, 24, 40, .28);
    padding: clamp(1.1rem, .85rem + 1vw, 1.75rem) 0;
    animation: consent-in .28s ease-out both;
}

.consent[hidden] { display: none; }

@keyframes consent-in {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

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

@media (min-width: 860px) {
    .consent__inner { grid-template-columns: 1fr auto; gap: 2.5rem; }
}

.consent h2 {
    font-size: var(--h4);
    font-weight: 700;
    margin-bottom: .4rem;
}

.consent p {
    margin: 0;
    color: var(--ink-soft);
    font-size: var(--text-sm);
    line-height: 1.6;
    max-width: 62ch;
}

.consent__links {
    margin-top: .6rem;
    font-size: var(--text-sm);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Ablehnen muss genauso leicht erreichbar sein wie Annehmen. */
.consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.consent__actions .btn { flex: 1 1 auto; min-width: 11rem; }

/* --------------------------------------------------------------------------
   14. Fußbereich
   -------------------------------------------------------------------------- */
.site-footer {
    background: var(--ink);
    color: #b9c0ca;
    padding-block: clamp(2.5rem, 2rem + 2.4vw, 4rem) 0;
    margin-top: 0;
}

.site-footer a { color: #fff; }
.site-footer h2 { color: #fff; font-size: var(--h4); font-weight: 700; margin-bottom: .9rem; }

.site-footer__grid {
    display: grid;
    gap: var(--gap);
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
    padding-bottom: 2.5rem;
}

@media (min-width: 1000px) {
    .site-footer__grid { grid-template-columns: 1.1fr 1fr 1fr 1.05fr; }
}

.site-footer address { font-style: normal; line-height: 1.9; }

.owner {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.owner img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex: none;
    border: 2px solid rgba(255, 255, 255, .18);
}

.owner span { display: block; font-size: var(--text-sm); color: #98a1ac; }
.owner strong { color: #fff; font-weight: 500; }

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 2;
}

.footer-links button {
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    color: #fff;
    cursor: pointer;
    text-align: left;
    text-underline-offset: .18em;
}

.footer-links button:hover { text-decoration: underline; }

/* Die Öffnungszeiten-Tabelle steht auch im dunklen Fußbereich. */
.site-footer .hours { margin-bottom: 0; }
.site-footer .hours th,
.site-footer .hours td { border-bottom-color: rgba(255, 255, 255, .1); padding-block: .45rem; }
.site-footer .hours th { color: #b9c0ca; white-space: nowrap; }
.site-footer .hours td { color: #e7ebef; }
.site-footer .hours td.shut { color: #8d96a2; }

.site-footer .hours tr.is-today th,
.site-footer .hours tr.is-today td { color: #fff; }
.site-footer .hours tr.is-today th::before { background: #34d07f; }

.site-footer .phone-big { color: #fff; }
.site-footer .phone-big:hover { color: #7fd3ee; }

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-block: 1.35rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .5rem 1.5rem;
    font-size: var(--text-sm);
    color: #8d96a2;
}

.site-footer__bottom a { color: #c7ced7; }

/* --------------------------------------------------------------------------
   15. Rechtstexte (Impressum, Datenschutz)
   -------------------------------------------------------------------------- */
.breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 0 0 1.25rem;
    padding: 0;
    font-size: var(--text-sm);
    color: var(--muted);
}

.breadcrumb li + li::before {
    content: "/";
    margin-right: .5rem;
    color: var(--line);
}

.page-head {
    padding-block: clamp(2rem, 1.5rem + 2vw, 3.25rem) clamp(1.25rem, 1rem + 1vw, 2rem);
    border-bottom: 1px solid var(--line-soft);
    background: var(--surface-alt);
}

.page-head p {
    color: var(--muted);
    font-size: var(--text-lead);
    margin-bottom: 0;
    max-width: 50rem;
}

.prose { max-width: 46rem; }
.prose h2 { font-size: var(--h3); margin-top: 2.25em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: var(--h4); font-weight: 700; margin-top: 1.8em; }
.prose ul { padding-left: 1.25rem; margin: 0 0 1.1em; }
.prose li { margin-bottom: .35em; }
.prose li::marker { color: var(--brand); }

.prose dl {
    margin: 0 0 1.5em;
    display: grid;
    gap: .35rem 1.5rem;
}

@media (min-width: 640px) {
    .prose dl { grid-template-columns: minmax(9rem, auto) 1fr; }
}

.prose dt { font-weight: 500; color: var(--ink-soft); }
.prose dd { margin: 0; }

.prose--wide { max-width: 62rem; }

.callout {
    border-left: 3px solid var(--brand);
    background: var(--brand-tint-2);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1.1rem 1.35rem;
    margin: 0 0 1.5em;
}

.callout p { margin: 0; }
.callout p + p { margin-top: .75em; }

.meta-note {
    color: var(--muted);
    font-size: var(--text-sm);
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

/* --------------------------------------------------------------------------
   16. Bewegungsreduktion & Druck
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

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

@media print {
    .topbar, .site-nav, .consent, .map-frame, .btn-row, .site-footer__bottom { display: none !important; }
    body { color: #000; font-size: 11pt; }
    a { color: #000; text-decoration: underline; }
    .site-footer { background: none; color: #000; padding-block: 1rem; }
    .site-footer a, .site-footer h2 { color: #000; }
}
