/* ==========================================================================
   MindWay — Praxis für Psychologische Beratung & Coaching · Anna Fuhrmann
   Warm, ruhig, elegant. Creme & Gold, viel Luft, atmende Übergänge.
   Keine Frameworks, keine externen Ressourcen.
   ========================================================================== */

/* ---------- Lokale Schriften (variable Fonts) ----------------------------- */

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('/assets/fonts/cormorant-garamond-500.woff2') format('woff2');
    font-weight: 300 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('/assets/fonts/cormorant-garamond-500-italic.woff2') format('woff2');
    font-weight: 300 700;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Mulish';
    src: url('/assets/fonts/mulish-400.woff2') format('woff2');
    font-weight: 200 900;
    font-style: normal;
    font-display: swap;
}

/* ---------- Gestaltungstokens ---------------------------------------------- */

:root {
    --papier: #faf6f0;        /* Grundfläche */
    --creme: #f4ede2;         /* ruhige Wechselfläche */
    --sand: #eaddc9;          /* wärmere Fläche */
    --leinen: #fdfbf7;        /* Kartenweiß */
    --gold: #b28d50;          /* Akzent */
    --gold-hell: #d3b98c;
    --gold-zart: rgba(178, 141, 80, 0.16);
    --gold-linie: rgba(178, 141, 80, 0.38);
    --braun: #4a3f33;         /* Text dunkel */
    --tinte: #322b23;         /* Überschriften, fast schwarz-braun */
    --taupe: #857566;         /* Sekundärtext */
    --rose: #c9a69a;          /* sehr dezenter Zweitakzent */
    --salbei: #96a08b;        /* optionaler Ruhe-Akzent */

    --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --sans: 'Mulish', 'Segoe UI', system-ui, sans-serif;

    --radius: 18px;
    --radius-weich: 26px;
    --container: 1120px;
    --nav-hoehe: 84px;
    --schatten: 0 18px 50px rgba(74, 63, 51, 0.10);
    --schatten-sanft: 0 10px 30px rgba(74, 63, 51, 0.07);
    --uebergang: 260ms cubic-bezier(0.33, 0.7, 0.3, 1);
}

/* ---------- Basis ------------------------------------------------------------ */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-hoehe) + 20px);
}

body {
    background: var(--papier);
    color: var(--braun);
    font-family: var(--sans);
    font-size: 1.02rem;
    font-weight: 400;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--uebergang);
}

a:hover { color: #97753d; }

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 600;
    line-height: 1.18;
    color: var(--tinte);
    text-wrap: balance;
}

h1 { font-size: clamp(2.3rem, 5.4vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.5rem); }

p { max-width: 68ch; }

ul, ol { list-style: none; }

::selection {
    background: var(--gold);
    color: var(--leinen);
}

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

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

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

.skip-link {
    position: fixed;
    top: -100px;
    left: 1rem;
    z-index: 100;
    padding: 0.6rem 1.1rem;
    background: var(--braun);
    color: var(--leinen);
    border-radius: 0 0 10px 10px;
    transition: top var(--uebergang);
}

.skip-link:focus { top: 0; color: var(--leinen); }

/* Feine Goldlinie mit ruhendem Mittelpunkt — wiederkehrendes Ordnungselement */
.goldlinie {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0 auto;
    width: min(320px, 60%);
    border: 0;
}

.goldlinie::before,
.goldlinie::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-linie));
}

.goldlinie::after {
    background: linear-gradient(90deg, var(--gold-linie), transparent);
}

.goldlinie span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, var(--gold-hell), var(--gold));
    box-shadow: 0 0 0 4px var(--gold-zart);
}

/* ---------- Schaltflächen ------------------------------------------------------ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.95rem 2rem;
    font-family: var(--sans);
    font-size: 0.97rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--braun);
    background: transparent;
    border: 1px solid var(--gold-linie);
    border-radius: 999px;
    cursor: pointer;
    line-height: 1.2;
    white-space: nowrap;
    transition: background var(--uebergang), color var(--uebergang),
                border-color var(--uebergang), transform var(--uebergang),
                box-shadow var(--uebergang);
}

.btn:hover {
    border-color: var(--gold);
    color: var(--tinte);
    transform: translateY(-2px);
    box-shadow: var(--schatten-sanft);
}

.btn--gold {
    background: linear-gradient(135deg, #c3a06a, var(--gold));
    border-color: transparent;
    color: #fffdf9;
}

.btn--gold:hover {
    color: #fffdf9;
    filter: brightness(1.04);
}

.btn--small {
    padding: 0.55rem 1.3rem;
    font-size: 0.88rem;
}

/* ---------- Navigation ----------------------------------------------------------- */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: var(--nav-hoehe);
    background: rgba(250, 246, 240, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(178, 141, 80, 0.18);
}

.nav__inner {
    width: min(1560px, 100% - clamp(2rem, 5vw, 5rem));
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    height: 100%;
    position: relative;
}

.nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--tinte);
    flex: 0 0 auto;
}

.nav__logo { width: 46px; height: 46px; }

.nav__name {
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 600;
    line-height: 1.05;
    display: grid;
}

.nav__name small {
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--taupe);
}

.nav__menu ul {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 1.15vw, 1.35rem);
}

.nav__menu a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--braun);
    padding: 0.4rem 0;
    position: relative;
    line-height: 1.25;
    white-space: nowrap;
}

.nav__menu a:hover { color: var(--gold); }

.nav__menu a[aria-current="page"] { color: var(--gold); }

.nav__menu a[aria-current="page"]::after {
    content: '';
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: -3px;
    height: 1px;
    background: var(--gold);
}

.nav__cta a { color: #fffdf9; }

.nav__languages {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding-left: 0.4rem;
    border-left: 1px solid var(--gold-linie);
    flex: 0 0 auto;
}

.nav__languages a {
    min-width: 2.2rem;
    padding: 0.25rem 0.45rem;
    border: 1px solid transparent;
    border-radius: 999px;
    text-align: center;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}

.nav__languages a[aria-current="true"] {
    border-color: var(--gold-linie);
    color: var(--gold);
}

.nav__languages a[aria-current="true"]::after { display: none; }

.nav__toggle {
    display: none;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    background: transparent;
    border: 1px solid var(--gold-linie);
    border-radius: 12px;
    cursor: pointer;
    position: relative;
}

.nav__toggle-bar,
.nav__toggle-bar::before,
.nav__toggle-bar::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 20px;
    height: 1.6px;
    background: var(--braun);
    transform: translateX(-50%);
    transition: transform var(--uebergang), opacity var(--uebergang);
}

.nav__toggle-bar { top: 50%; }
.nav__toggle-bar::before { top: -7px; }
.nav__toggle-bar::after { top: 7px; }

.nav__toggle[aria-expanded="true"] .nav__toggle-bar { background: transparent; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar::before { transform: translateX(-50%) translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar::after { transform: translateX(-50%) translateY(-7px) rotate(-45deg); }

/* ---------- Breadcrumbs ------------------------------------------------------------ */

.breadcrumbs {
    padding-top: calc(var(--nav-hoehe) + 1.3rem);
    font-size: 0.88rem;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    margin-left: 0.45rem;
    color: var(--taupe);
}

.breadcrumbs a { color: var(--taupe); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs li[aria-current] { color: var(--braun); }

/* ---------- Hero: Ankommen ----------------------------------------------------------- */

.hero {
    position: relative;
    padding: calc(var(--nav-hoehe) + 5.5rem) 0 5rem;
    overflow: hidden;
}

.hero--unterseite {
    padding: calc(var(--nav-hoehe) + 4rem) 0 3rem;
}

.hero--flach { padding-top: 2.2rem; }

/* weiche, langsam atmende Lichtflächen */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: -1;
    animation: atmen 14s ease-in-out infinite alternate;
}

.hero::before {
    width: 55vw;
    height: 55vw;
    max-width: 760px;
    max-height: 760px;
    top: -18%;
    right: -12%;
    background: rgba(211, 185, 140, 0.28);
}

.hero::after {
    width: 45vw;
    height: 45vw;
    max-width: 620px;
    max-height: 620px;
    bottom: -30%;
    left: -10%;
    background: rgba(201, 166, 154, 0.16);
    animation-delay: -7s;
}

@keyframes atmen {
    from { transform: scale(1) translateY(0); opacity: 0.8; }
    to   { transform: scale(1.07) translateY(-14px); opacity: 1; }
}

.hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 3.5rem;
    align-items: center;
}

.hero__inner > *,
.zweispaltig > * {
    min-width: 0;
}

.ueberzeile {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.7rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.1rem;
    max-width: 100%;
    line-height: 1.45;
}

.ueberzeile::before {
    content: '';
    width: 34px;
    height: 1px;
    background: var(--gold-linie);
}

.hero__lead {
    margin-top: 1.4rem;
    font-size: 1.12rem;
    color: var(--braun);
    max-width: 56ch;
}

.hero__hinweis {
    margin-top: 1rem;
    font-size: 0.94rem;
    color: var(--taupe);
    max-width: 56ch;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2.2rem;
}

.hero__bild {
    position: relative;
    justify-self: center;
}

.hero__bild img {
    width: min(420px, 82vw);
    border-radius: 46% 54% 52% 48% / 44% 46% 54% 56%;
    border: 1px solid rgba(178, 141, 80, 0.3);
    box-shadow: var(--schatten);
    object-fit: cover;
    aspect-ratio: 0.92;
}

.hero__bild::before {
    content: '';
    position: absolute;
    inset: -16px;
    border-radius: 48% 52% 50% 50% / 46% 48% 52% 54%;
    border: 1px solid var(--gold-zart);
    pointer-events: none;
}

.hero__bildunterschrift {
    margin-top: 1rem;
    text-align: center;
    font-family: var(--serif);
    font-size: 1.08rem;
    font-style: italic;
    color: var(--taupe);
}

/* ---------- Abschnitte als Räume ---------------------------------------------------------- */

.raum {
    position: relative;
    padding: 5.2rem 0;
}

.raum--creme { background: var(--creme); }
.raum--sand {
    background:
        radial-gradient(ellipse 70% 60% at 20% 0%, rgba(253, 251, 247, 0.65), transparent 60%),
        var(--sand);
}

/* sehr weiche Übergangskanten zwischen den Räumen */
.raum--creme::before,
.raum--sand::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, transparent, inherit);
    pointer-events: none;
}

.raum__kopf {
    max-width: 720px;
    margin-bottom: 2.8rem;
}

.raum__kopf--mittig {
    margin-inline: auto;
    text-align: center;
}

.raum__kopf--mittig .ueberzeile { justify-content: center; }
.raum__kopf--mittig .ueberzeile::before { display: none; }

.raum__kopf p:not(.ueberzeile) {
    margin-top: 1rem;
    color: var(--braun);
}

.raum__kopf--mittig p:not(.ueberzeile) { margin-inline: auto; }

/* ---------- Karten ------------------------------------------------------------------------- */

.karten {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.karte {
    background: var(--leinen);
    border: 1px solid rgba(178, 141, 80, 0.2);
    border-radius: var(--radius-weich);
    padding: 2rem;
    box-shadow: var(--schatten-sanft);
    transition: transform var(--uebergang), box-shadow var(--uebergang), border-color var(--uebergang);
}

.karte:hover {
    transform: translateY(-4px);
    box-shadow: var(--schatten);
    border-color: var(--gold-linie);
}

.karte h3 { margin-bottom: 0.7rem; }
.karte p { font-size: 0.97rem; }

/* Leistungs-Karten */
.service-card {
    background: var(--leinen);
    border: 1px solid rgba(178, 141, 80, 0.2);
    border-radius: var(--radius-weich);
    box-shadow: var(--schatten-sanft);
    transition: transform var(--uebergang), box-shadow var(--uebergang), border-color var(--uebergang);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--schatten);
    border-color: var(--gold-linie);
}

.service-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2.1rem 1.9rem 1.8rem;
    color: inherit;
    text-align: center;
    align-items: center;
}

.service-card__icon img,
.service-card__icon svg {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 6px rgba(178, 141, 80, 0.08);
    transition: transform var(--uebergang);
}

.service-card:hover .service-card__icon img,
.service-card:hover .service-card__icon svg {
    transform: scale(1.05);
}

.service-card__badge {
    margin-top: 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-zart);
    padding: 0.26rem 0.85rem;
    border-radius: 999px;
}

.service-card h3 {
    margin: 1.1rem 0 0.6rem;
    font-size: 1.3rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--braun);
}

.service-card__more {
    margin-top: auto;
    padding-top: 1.2rem;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--gold);
}

.service-card__more::after {
    content: ' →';
    transition: margin var(--uebergang);
}

.service-card:hover .service-card__more::after { margin-left: 4px; }

.service-card--haupt {
    border-color: var(--gold-linie);
    background:
        radial-gradient(ellipse 90% 60% at 50% 0%, rgba(211, 185, 140, 0.14), transparent 65%),
        var(--leinen);
}

/* ---------- Listen, Zitate, Text ------------------------------------------------------------- */

.prose h2 {
    margin: 2.6rem 0 1rem;
    font-size: clamp(1.45rem, 2.8vw, 1.85rem);
}

.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 1.8rem 0 0.7rem; }
.prose p + p { margin-top: 1rem; }

.prose ul {
    margin: 1.1rem 0;
    display: grid;
    gap: 0.55rem;
}

.prose ul li,
.gold-liste li {
    position: relative;
    padding-left: 1.6rem;
}

.prose ul li::before,
.gold-liste li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, var(--gold-hell), var(--gold));
}

.gold-liste {
    display: grid;
    gap: 0.55rem;
}

.prose blockquote,
.leitgedanke {
    margin: 2rem 0;
    padding: 1.6rem 2rem;
    background: rgba(253, 251, 247, 0.85);
    border-left: 2px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-family: var(--serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--tinte);
    line-height: 1.5;
}

/* großes ruhiges Zitat zwischen Räumen */
.innehalten {
    padding: 4.6rem 0;
    text-align: center;
}

.innehalten blockquote {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 3.4vw, 2.1rem);
    font-style: italic;
    font-weight: 500;
    color: var(--tinte);
    max-width: 26ch;
    margin: 1.6rem auto 0;
    line-height: 1.45;
}

/* ---------- Zwei-Spalten-Layouts ---------------------------------------------------------------- */

.zweispaltig {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 3.2rem;
    align-items: center;
}

.zweispaltig--umgekehrt { grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr); }

.bild-weich img {
    border-radius: var(--radius-weich);
    border: 1px solid rgba(178, 141, 80, 0.24);
    box-shadow: var(--schatten);
}

/* Hohe Portraitbilder neben Text: Höhe begrenzen, Proportionen erhalten */
.bild-weich--kompakt {
    align-self: center;
    text-align: center;
}

.bild-weich--kompakt img {
    max-height: 560px;
    width: auto;
    max-width: 100%;
}

.bild-rund img {
    border-radius: 50%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid rgba(178, 141, 80, 0.3);
    box-shadow: var(--schatten);
}

/* ---------- Haltung / Werte-Reihe ------------------------------------------------------------------ */

.werte {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.1rem;
    text-align: center;
}

.werte li {
    padding: 1.3rem 1rem;
    background: rgba(253, 251, 247, 0.75);
    border: 1px solid rgba(178, 141, 80, 0.16);
    border-radius: var(--radius);
    font-family: var(--serif);
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--tinte);
}

/* ---------- Honorar-Karten ---------------------------------------------------------------------------- */

.preise {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.4rem;
}

.preis-karte {
    position: relative;
    overflow: hidden;
    background: var(--leinen);
    border: 1px solid rgba(178, 141, 80, 0.22);
    border-radius: var(--radius-weich);
    box-shadow: var(--schatten-sanft);
    text-align: center;
    transition: transform var(--uebergang), box-shadow var(--uebergang);
}

.preis-karte:hover {
    transform: translateY(-4px);
    box-shadow: var(--schatten);
}

.preis-karte img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-bottom: 1px solid rgba(178, 141, 80, 0.16);
}

.preis-karte__inhalt { padding: 1.5rem 1.4rem 1.7rem; }

.preis-karte h3 {
    font-size: 1.25rem;
    margin-bottom: 0.2rem;
}

.preis-karte__dauer {
    font-size: 0.86rem;
    color: var(--taupe);
    letter-spacing: 0.06em;
}

.preis-karte__preis {
    display: block;
    margin: 0.8rem 0 0.2rem;
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
}

.preis-karte__hinweis {
    font-size: 0.82rem;
    color: var(--taupe);
}

/* ---------- Formular ------------------------------------------------------------------------------------ */

.formular {
    display: grid;
    gap: 1.25rem;
}

.formular__reihe {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.formular label {
    display: grid;
    gap: 0.4rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--tinte);
}

.formular input[type="text"],
.formular input[type="email"],
.formular input[type="tel"],
.formular select,
.formular textarea {
    width: 100%;
    padding: 0.9rem 1.05rem;
    font: inherit;
    color: var(--braun);
    background: var(--leinen);
    border: 1px solid rgba(178, 141, 80, 0.32);
    border-radius: 14px;
    transition: border-color var(--uebergang), box-shadow var(--uebergang);
}

.formular input:focus,
.formular select:focus,
.formular textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(178, 141, 80, 0.12);
}

.formular textarea { min-height: 170px; resize: vertical; }

.formular__einwilligung {
    display: flex !important;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.7rem;
    font-weight: 400 !important;
    color: var(--braun) !important;
    font-size: 0.9rem !important;
}

.formular__einwilligung input {
    margin-top: 0.3rem;
    accent-color: var(--gold);
    width: 1.05rem;
    height: 1.05rem;
    flex: none;
}

/* Honeypot — für Menschen unsichtbar */
.formular__hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.hinweis {
    padding: 1.05rem 1.3rem;
    border-radius: 14px;
    border: 1px solid;
    font-size: 0.95rem;
    max-width: none;
}

.hinweis--erfolg {
    color: #5c6b4f;
    border-color: rgba(150, 160, 139, 0.5);
    background: rgba(150, 160, 139, 0.12);
}

.hinweis--fehler {
    color: #8c4a3f;
    border-color: rgba(190, 120, 106, 0.45);
    background: rgba(201, 166, 154, 0.14);
}

.hinweis ul { margin-top: 0.4rem; padding-left: 1.15rem; list-style: disc; }

/* ---------- Blog ------------------------------------------------------------------------------------------ */

.blog-liste {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.blog-card {
    background: var(--leinen);
    border: 1px solid rgba(178, 141, 80, 0.2);
    border-radius: var(--radius-weich);
    box-shadow: var(--schatten-sanft);
    transition: transform var(--uebergang), box-shadow var(--uebergang), border-color var(--uebergang);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--schatten);
    border-color: var(--gold-linie);
}

.blog-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.9rem 1.9rem 1.6rem;
    color: inherit;
}

.blog-card__link::before {
    content: '';
    width: 44px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 1.1rem;
}

.blog-card__meta {
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    color: var(--taupe);
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.55rem;
}

.blog-card h3 {
    font-size: 1.32rem;
    margin-bottom: 0.6rem;
}

.blog-card__excerpt {
    font-size: 0.94rem;
    color: var(--braun);
}

.blog-card__more {
    margin-top: auto;
    padding-top: 1.2rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gold);
}

.blog-card__more::after { content: ' →'; }

/* Beitragsseite */
.beitrag {
    max-width: 760px;
    margin-inline: auto;
}

.beitrag__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--taupe);
    margin: 0.9rem 0 0;
}

.beitrag-cta {
    margin-top: 3.2rem;
    padding: 2.2rem 2.4rem;
    background: var(--creme);
    border: 1px solid rgba(178, 141, 80, 0.22);
    border-radius: var(--radius-weich);
}

.beitrag-cta h2 {
    font-size: 1.45rem;
    margin-bottom: 0.6rem;
}

/* ---------- Geschützte CTA-Insel ---------------------------------------------------------------------------- */

.cta-insel {
    position: relative;
    margin: 4.5rem 0 0;
    padding: 4.6rem 0;
    background:
        radial-gradient(ellipse 60% 90% at 50% 0%, rgba(211, 185, 140, 0.2), transparent 65%),
        var(--creme);
    text-align: center;
    overflow: hidden;
}

.cta-insel h2 { margin-bottom: 0.8rem; }

.cta-insel p {
    margin: 0 auto 1.9rem;
    color: var(--braun);
}

/* ---------- Footer ------------------------------------------------------------------------------------------- */

.footer {
    margin-top: 5rem;
    background: var(--tinte);
    color: #e8e0d4;
}

.footer__divider {
    display: flex;
    justify-content: center;
    padding-top: 2.6rem;
}

.footer__divider span {
    width: min(380px, 70%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(211, 185, 140, 0.55), transparent);
    position: relative;
}

.footer__divider span::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold-hell);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1fr 1fr;
    gap: 2.4rem;
    padding: 2.8rem 0 2.4rem;
}

.footer__brand img { opacity: 0.9; }
.footer__brand p { margin-top: 0.9rem; font-size: 0.95rem; line-height: 1.65; }
.footer__brand strong {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: #f6efe3;
}

.footer h2 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-hell);
    margin-bottom: 0.9rem;
}

.footer ul { display: grid; gap: 0.45rem; }

.footer a { color: #e8e0d4; font-size: 0.94rem; }
.footer a:hover { color: var(--gold-hell); }

.footer address {
    font-style: normal;
    font-size: 0.94rem;
    line-height: 1.75;
}

.footer__note {
    margin-top: 0.9rem;
    font-size: 0.82rem;
    color: #b4a894;
    line-height: 1.6;
}

.footer__note--krise {
    padding-top: 0.8rem;
    border-top: 1px solid rgba(211, 185, 140, 0.2);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 0 1.6rem;
    border-top: 1px solid rgba(232, 224, 212, 0.12);
    font-size: 0.84rem;
    color: #b4a894;
}

/* ---------- Sanfte Erscheinen-Übergänge -------------------------------------------------------------------------- */

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 900ms ease, transform 900ms cubic-bezier(0.25, 0.6, 0.3, 1);
}

.reveal.sichtbar {
    opacity: 1;
    transform: none;
}

[data-stagger] > .reveal:nth-child(2) { transition-delay: 120ms; }
[data-stagger] > .reveal:nth-child(3) { transition-delay: 240ms; }
[data-stagger] > .reveal:nth-child(4) { transition-delay: 360ms; }
[data-stagger] > .reveal:nth-child(5) { transition-delay: 480ms; }
[data-stagger] > .reveal:nth-child(6) { transition-delay: 600ms; }

/* ---------- Responsiv ----------------------------------------------------------------------------------------------- */

@media (max-width: 1240px) {
    .nav__toggle {
        display: inline-grid;
        place-items: center;
        margin-left: auto;
        background: rgba(253, 251, 247, 0.82);
        border-color: rgba(178, 141, 80, 0.42);
    }

    .nav__menu {
        position: fixed;
        top: var(--nav-hoehe);
        left: 0;
        right: 0;
        background: rgba(250, 246, 240, 0.98);
        border-bottom: 1px solid rgba(178, 141, 80, 0.2);
        box-shadow: var(--schatten);
        max-height: calc(100svh - var(--nav-hoehe));
        overflow-y: auto;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--uebergang), opacity var(--uebergang), visibility var(--uebergang);
    }

    .nav__menu.offen {
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    .nav__menu ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.8rem 1.6rem 1.5rem;
    }

    .nav__menu li a {
        display: block;
        padding: 0.8rem 0.2rem;
        font-size: 1.08rem;
        white-space: normal;
    }

    .nav__cta { margin-top: 0.7rem; }
    .nav__cta a {
        display: inline-flex;
        justify-content: center;
        width: 100%;
    }

    .nav__languages {
        margin-top: 0.6rem;
        padding-left: 0;
        padding-top: 0.7rem;
        border-left: 0;
        border-top: 1px solid var(--gold-linie);
    }

    .nav__menu .nav__languages a {
        display: inline-flex;
        justify-content: center;
        padding: 0.35rem 0.55rem;
        font-size: 0.86rem;
        white-space: nowrap;
    }
}

@media (max-width: 860px) {
    .hero__inner { grid-template-columns: 1fr; gap: 2.4rem; }
    .hero__bild { justify-self: start; }
    .zweispaltig,
    .zweispaltig--umgekehrt { grid-template-columns: 1fr; gap: 2rem; }
    .footer__inner { grid-template-columns: 1fr 1fr; }
    .raum { padding: 3.8rem 0; }
    .formular__reihe { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    body { font-size: 0.98rem; }
    .footer__inner { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; }
    .hero { padding-top: calc(var(--nav-hoehe) + 3rem); }
    .hero__lead,
    .hero__hinweis,
    .prose p {
        max-width: 100%;
    }
    .ueberzeile {
        display: block;
        letter-spacing: 0.12em;
        overflow-wrap: anywhere;
    }
    .ueberzeile::before {
        display: inline-block;
        width: 30px;
        margin-right: 0.65rem;
        vertical-align: middle;
    }
    .nav__toggle {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .nav__inner { width: min(100% - 1.5rem, 1560px); }
    .nav__brand { gap: 0.65rem; }
    .nav__logo { width: 42px; height: 42px; }
    .nav__name { font-size: 1.35rem; }
    .nav__name small { display: none; }
}

/* ---------- Reduzierte Bewegung ---------------------------------------------------------------------------------------- */

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

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}
