/* =====================================================================
 *  HALDA — Independent Parfümerie · Musterort
 *  Full-Screen Macro-Layout · Bild-fokussierter Hero
 *  Premium & Edel: deep aubergine + cream + brass, Cormorant Garamond
 * ===================================================================== */

:root {
    --ink:           #2b1c1f;   /* deep aubergine — Hauptfarbe (5.5a) */
    --ink-soft:      #3a2a2d;
    --ink-line:      rgba(43, 28, 31, 0.18);
    --cream:         #f3ead8;   /* warmes Cremeweiß (5.5a) */
    --cream-soft:    #ebe1cf;
    --cream-deep:    #ddd0b8;
    --brass:         #a07a46;   /* Messing-Akzent (5.5a) */
    --brass-deep:    #8a6939;
    --brass-soft:    #c4a075;
    --muted:         #6b5a55;
    --muted-light:   #c6b8a4;

    --shadow-soft:   0 12px 40px -16px rgba(43, 28, 31, 0.35);
    --shadow-card:   0 26px 70px -38px rgba(43, 28, 31, 0.45);

    --sans:    'Inter', system-ui, -apple-system, sans-serif;
    --serif:   'Cormorant Garamond', 'Cormorant', Georgia, serif;

    --max:     min(1240px, 92vw);
    --pad-x:   max(28px, 6vw);
    --pad-y:   max(72px, 9vh);
    --topbar-h:    70px;
    --topbar-h-mb: 60px;
    --demo-banner-bg: #2b1c1f;
    --demo-banner-fg: #f3ead8;
    --demo-banner-accent: #a07a46;
}
@media (max-width: 720px) {
    :root { }
}

* { box-sizing: border-box; }

html {
    background: var(--ink);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.55;
}

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

a { color: inherit; }

.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
    white-space: nowrap;
}

/* ---------- TYPOGRAPHY ---------- */

.display {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(2.6rem, 5.4vw, 5.4rem);
    line-height: 1.04;
    letter-spacing: -0.012em;
    margin: 0 0 0.4em 0;
    color: var(--ink);
}
.display em {
    font-style: italic;
    font-weight: 500;
    color: var(--brass-deep);
}
.slide__veil ~ .hero__inner .display,
.slide__bg ~ * .display,
.slide--termin .display { color: var(--cream); }
.slide--termin .display em { color: var(--brass-soft); }

.eyebrow {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.74rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--brass-deep);
    margin: 0 0 1.4em;
    padding-bottom: 0.5em;
    border-bottom: 1px solid var(--brass);
}
.eyebrow--light {
    color: var(--brass-soft);
    border-bottom-color: var(--brass-soft);
}

.lede {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.15rem, 1.6vw, 1.4rem);
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 38em;
    margin: 0 0 2rem;
}
.lede--light { color: var(--cream-soft); }

.prose {
    max-width: 36em;
    font-size: 1.02rem;
    color: var(--ink-soft);
}
.prose p { margin: 0 0 1.1em; }
.prose__quiet {
    font-family: var(--serif);
    font-style: italic;
    color: var(--brass-deep);
    font-size: 1.18rem;
}

/* ---------- BUTTONS ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    padding: 0.95em 1.6em;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 0.94rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: transform 280ms ease, background 220ms ease,
                color 220ms ease, border-color 220ms ease;
}
.btn svg { width: 16px; height: 16px; }

.btn--brass {
    background: var(--brass);
    color: var(--cream);
    border-color: var(--brass);
}
.btn--brass:hover { background: var(--brass-deep); border-color: var(--brass-deep); }

.btn--brass-ghost {
    background: transparent;
    color: var(--brass-deep);
    border-color: var(--brass);
}
.btn--brass-ghost:hover {
    background: var(--brass);
    color: var(--cream);
}

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

.btn--ghost-light {
    background: transparent;
    color: var(--cream);
    border-color: rgba(243, 234, 216, 0.4);
}
.btn--ghost-light:hover {
    background: var(--cream);
    color: var(--ink);
    border-color: var(--cream);
}

/* ---------- DEMO BANNER ---------- */
body.has-demo-banner .topbar { top: var(--demo-banner-h); }
body.has-demo-banner .sidemenu { top: calc(var(--demo-banner-h) + var(--topbar-h-mb)); }
body.has-demo-banner .deck { height: calc(100vh - var(--demo-banner-h)); }
@supports (height: 100dvh) {
    body.has-demo-banner .deck { height: calc(100dvh - var(--demo-banner-h)); }
}

/* ---------- TOPBAR ---------- */

.topbar {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--topbar-h);
    z-index: 50;
    display: flex;
    align-items: center;
    gap: clamp(1.4rem, 3vw, 3rem);
    padding: 0 var(--pad-x);
    background: transparent;
    color: var(--cream);
    transition: background 240ms ease, color 240ms ease,
                box-shadow 240ms ease, border-color 240ms ease;
    border-bottom: 1px solid transparent;
}
.topbar.is-solid {
    background: rgba(243, 234, 216, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--ink);
    border-bottom-color: var(--ink-line);
}

.topbar__brand {
    display: inline-flex;
    align-items: baseline;
    gap: 0.55rem;
    text-decoration: none;
    font-family: var(--serif);
    font-weight: 600;
    letter-spacing: 0.18em;
    font-size: 1.05rem;
    color: inherit;
    text-transform: uppercase;
}
.topbar__mark {
    display: inline-grid;
    place-items: center;
    width: 30px; height: 30px;
    border: 1px solid currentColor;
    font-size: 0.92rem;
    border-radius: 50%;
    transform: translateY(2px);
}

.topbar__nav {
    display: flex;
    gap: clamp(1rem, 2.2vw, 2rem);
    margin-left: auto;
}
.topbar__nav a {
    color: inherit;
    text-decoration: none;
    font-size: 0.86rem;
    letter-spacing: 0.04em;
    padding: 0.4em 0;
    border-bottom: 1px solid transparent;
    transition: border-color 200ms ease, color 200ms ease;
}
.topbar__nav a:hover { border-bottom-color: currentColor; }
.topbar__nav a.is-current { color: var(--brass-deep); border-bottom-color: var(--brass); }
.topbar:not(.is-solid) .topbar__nav a.is-current { color: var(--brass-soft); border-bottom-color: var(--brass-soft); }

.topbar__cta {
    padding: 0.7em 1.2em;
    border: 1px solid currentColor;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: inherit;
    transition: background 200ms ease, color 200ms ease;
}
.topbar__cta:hover {
    background: var(--cream);
    color: var(--ink);
    border-color: var(--cream);
}
.topbar.is-solid .topbar__cta {
    color: var(--cream);
    background: var(--ink);
    border-color: var(--ink);
}
.topbar.is-solid .topbar__cta:hover {
    background: var(--brass);
    border-color: var(--brass);
}

.topbar__burger {
    display: none;
    background: transparent;
    border: 0;
    margin-left: auto;
    width: 36px; height: 36px;
    cursor: pointer;
    padding: 0;
    color: inherit;
}
.topbar__burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    margin: 6px auto;
    background: currentColor;
    transition: transform 240ms ease, opacity 200ms ease;
}
.topbar__burger.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.topbar__burger.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.sidemenu {
    position: fixed;
    inset: var(--topbar-h-mb) 0 0 0;
    background: var(--ink);
    color: var(--cream);
    z-index: 49;
    display: flex;
    flex-direction: column;
    padding: 2rem var(--pad-x);
    gap: 1rem;
    transform: translateX(100%);
    transition: transform 320ms ease;
}
.sidemenu.is-open {
    transform: translateX(0);
}
.sidemenu a {
    color: inherit;
    text-decoration: none;
    font-family: var(--serif);
    font-size: 1.7rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(243, 234, 216, 0.1);
}
.sidemenu__cta {
    margin-top: 1.5rem;
    background: var(--brass);
    color: var(--cream);
    text-align: center;
    border: 0 !important;
    padding: 1rem !important;
    font-size: 1.1rem !important;
}

/* ---------- DOT NAV ---------- */
.dotnav {
    position: fixed;
    right: max(18px, 2.6vw);
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.dotnav a {
    width: 26px; height: 26px;
    display: grid;
    place-items: center;
    text-decoration: none;
    position: relative;
}
.dotnav a span {
    display: block;
    width: 8px; height: 8px;
    border: 1px solid var(--cream-soft);
    background: transparent;
    border-radius: 50%;
    transition: background 220ms ease, transform 220ms ease,
                border-color 220ms ease;
}
.topbar.is-solid ~ main .dotnav a span,
.dotnav.dotnav--ink a span { border-color: var(--ink-line); }

.dotnav a:hover span { transform: scale(1.4); }
.dotnav a.is-current span {
    background: var(--brass);
    border-color: var(--brass);
    transform: scale(1.3);
}
.dotnav a::before {
    content: attr(data-label);
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream-soft);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    transition: opacity 200ms ease;
}
.dotnav.dotnav--ink a::before { color: var(--ink); }
.dotnav a:hover::before,
.dotnav a.is-current::before { opacity: 1; }

/* ---------- DECK / SLIDES ---------- */

.deck {
    scroll-snap-type: y proximity;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100vh;
    /* fallback ohne JS */
}
@supports (height: 100dvh) {
    .deck { height: 100dvh; }
}

.slide {
    position: relative;
    min-height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    padding: var(--pad-y) var(--pad-x);
    display: flex;
    align-items: center;
    overflow: hidden;
}
@supports (min-height: 100dvh) {
    .slide { min-height: 100dvh; }
}

.slide__container {
    width: var(--max);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.slide__head { max-width: 760px; margin-bottom: 3rem; }
.slide__head--center { text-align: center; margin-inline: auto; }
.slide__head--center .eyebrow { margin-left: auto; margin-right: auto; }
.slide__head--center .lede   { margin-left: auto; margin-right: auto; }

.slide__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.slide__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    transition: transform 8s ease;
}
.slide.is-current .slide__bg img { transform: scale(1); }

.slide__bg--soft img { filter: contrast(0.95) brightness(1.04); }

.slide__veil {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg,
        rgba(43, 28, 31, 0.78) 0%,
        rgba(43, 28, 31, 0.55) 38%,
        rgba(43, 28, 31, 0.72) 100%);
}
.slide__veil--cream {
    background: linear-gradient(180deg,
        rgba(243, 234, 216, 0.92) 0%,
        rgba(243, 234, 216, 0.84) 40%,
        rgba(243, 234, 216, 0.96) 100%);
}

/* ---------- 1. HERO ---------- */
.slide--hero {
    color: var(--cream);
    align-items: stretch;
}
.hero__inner {
    width: var(--max);
    margin: auto;
    position: relative; z-index: 2;
    padding-top: 6vh;
    max-width: 880px;
}
.hero__inner .display { color: var(--cream); }
.hero__inner .display em { color: var(--brass-soft); }
.hero__actions {
    display: flex; flex-wrap: wrap;
    gap: 1rem; margin-top: 2.4rem;
}
.hero__scroll-hint {
    position: absolute;
    left: var(--pad-x); bottom: 4vh;
    z-index: 3;
    color: var(--cream-soft);
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    display: flex; align-items: center; gap: 1rem;
}
.hero__scroll-line {
    display: block;
    width: 110px; height: 1px;
    background: linear-gradient(90deg, var(--brass-soft), transparent);
}
.hero__corner {
    position: absolute;
    right: var(--pad-x); bottom: 5vh;
    z-index: 3;
    color: var(--cream-soft);
    text-align: right;
    font-size: 0.84rem;
    line-height: 1.5;
}
.hero__corner-label {
    display: block;
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--brass-soft);
    margin-bottom: 0.4em;
}
.hero__corner-value { display: block; }

/* ---------- 2. PROBLEM ---------- */
.slide--problem {
    background: var(--cream);
}
.slide__pane {
    flex: 1 1 50%;
    padding: 0 clamp(1rem, 3vw, 3rem);
    z-index: 2;
}
.slide__pane--copy {
    max-width: 580px;
    margin-left: max((100vw - 1240px) * 0.5, var(--pad-x));
}
.slide__pane--art {
    align-self: stretch;
    display: flex; align-items: center; justify-content: center;
}
.art-frame {
    position: relative;
    margin: 0;
    max-width: 520px;
    width: 100%;
}
.art-frame::before {
    content: '';
    position: absolute;
    inset: -22px -22px 22px 22px;
    border: 1px solid var(--brass);
    z-index: 0;
}
.art-frame img {
    position: relative; z-index: 1;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: saturate(0.94) contrast(1.02);
}
.art-frame figcaption {
    font-family: var(--serif);
    font-style: italic;
    color: var(--muted);
    font-size: 0.95rem;
    margin-top: 1rem;
    text-align: right;
}

/* ---------- 3. BERATUNG ---------- */
.slide--beratung {
    background: var(--cream-soft);
    background-image:
        radial-gradient(1100px 600px at 90% 10%, rgba(160, 122, 70, 0.08), transparent 60%);
}
.steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.step {
    position: relative;
    padding: 2rem 1.8rem 1.8rem;
    background: var(--cream);
    border: 1px solid var(--cream-deep);
    border-top: 3px solid var(--brass);
}
.step__num {
    display: block;
    font-family: var(--serif);
    font-size: 2.4rem;
    color: var(--brass);
    margin-bottom: 0.4rem;
    line-height: 1;
}
.step h3 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0 0 0.6rem;
    color: var(--ink);
}
.step p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }

.beratung__note {
    margin-top: 2.6rem;
    text-align: center;
    color: var(--muted);
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.15rem;
}
.beratung__note strong {
    color: var(--brass-deep);
    font-style: normal;
    font-weight: 600;
}

/* ---------- 4. HÄUSER ---------- */
.slide--haeuser { color: var(--ink); }
.houses {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    border-top: 1px solid var(--ink-line);
    border-left: 1px solid var(--ink-line);
}
.house {
    border-right: 1px solid var(--ink-line);
    border-bottom: 1px solid var(--ink-line);
    padding: 1.4rem 1.2rem;
    display: flex; flex-direction: column;
    gap: 0.3rem;
    background: rgba(243, 234, 216, 0.4);
    transition: background 220ms ease, transform 220ms ease;
}
.house:hover { background: rgba(243, 234, 216, 0.85); transform: translateY(-2px); }
.house__no {
    font-family: var(--serif);
    font-size: 0.9rem;
    color: var(--brass-deep);
    letter-spacing: 0.06em;
}
.house__name {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.15;
}
.house__loc {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted);
}
.house--more {
    background: var(--ink);
    color: var(--cream);
}
.house--more .house__no { color: var(--brass-soft); }
.house--more .house__name { color: var(--cream); font-style: italic; }
.house--more .house__loc  { color: var(--muted-light); }
.house--more:hover { background: var(--ink-soft); }

/* ---------- 5. TEAM ---------- */
.slide--team {
    background: var(--cream);
    padding: 0;
    align-items: stretch;
}
.team__split {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    width: 100%;
    min-height: 100vh;
}
@supports (min-height: 100dvh) { .team__split { min-height: 100dvh; } }

.team__portrait {
    margin: 0;
    position: relative;
    overflow: hidden;
}
.team__portrait img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 50% 35%;
    filter: saturate(0.92) contrast(0.97);
}
.team__portrait figcaption {
    position: absolute;
    left: 2rem; bottom: 1.6rem;
    background: rgba(43, 28, 31, 0.72);
    color: var(--cream);
    padding: 0.7rem 1.1rem;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.02rem;
    letter-spacing: 0.02em;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.team__copy {
    padding: clamp(3rem, 7vw, 6rem) clamp(2rem, 5vw, 5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 720px;
}
.team__row {
    list-style: none;
    padding: 0;
    margin: 2.2rem 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
}
.team__card {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.92rem;
    color: var(--ink-soft);
}
.team__card img {
    aspect-ratio: 1/1;
    width: 100%;
    object-fit: cover;
    filter: saturate(0.92);
    margin-bottom: 0.5rem;
}
.team__card strong {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.18rem;
    color: var(--ink);
}

/* ---------- 6. TERMIN ---------- */
.slide--termin {
    background: var(--ink);
    color: var(--cream);
    position: relative;
}
.slide--termin::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(900px 500px at 80% 0%, rgba(160, 122, 70, 0.16), transparent 70%);
}
.slide--termin .slide__container { position: relative; z-index: 1; }

.termin__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.6rem;
    margin-top: 2.4rem;
}
.termin__card {
    padding: 2rem 1.8rem;
    border: 1px solid rgba(196, 160, 117, 0.32);
    background: rgba(243, 234, 216, 0.04);
    display: flex; flex-direction: column;
    transition: border-color 280ms ease, transform 280ms ease, background 280ms ease;
}
.termin__card:hover {
    border-color: var(--brass);
    transform: translateY(-3px);
    background: rgba(243, 234, 216, 0.07);
}
.termin__card h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.8rem;
    margin: 0 0 0.4rem;
    color: var(--cream);
}
.termin__lede {
    color: var(--cream-soft);
    font-family: var(--serif);
    font-style: italic;
    margin: 0 0 1.4rem;
    font-size: 1.05rem;
}
.termin__feat {
    list-style: none;
    padding: 0; margin: 0 0 1.6rem;
    display: flex; flex-direction: column;
    gap: 0.55rem;
    color: var(--cream-soft);
    font-size: 0.94rem;
}
.termin__feat li {
    padding-left: 1.1rem;
    position: relative;
}
.termin__feat li::before {
    content: '·';
    position: absolute;
    left: 0; top: 0;
    color: var(--brass-soft);
    font-size: 1.2rem;
    line-height: 1.1;
}
.termin__price {
    font-family: var(--serif);
    font-style: italic;
    color: var(--brass-soft);
    margin-bottom: 1.4rem;
    font-size: 1rem;
}
.termin__card .btn { margin-top: auto; }
.termin__card--gift {
    background: rgba(160, 122, 70, 0.08);
    border-color: rgba(196, 160, 117, 0.45);
}

.termin__alt {
    margin-top: 2.2rem;
    text-align: center;
    color: var(--cream-soft);
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.05rem;
}
.termin__alt a {
    color: var(--brass-soft);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
}
.termin__alt a:hover { color: var(--cream); }

/* ---------- 7. STANDORT ---------- */
.slide--standort {
    padding: 0;
    background: var(--cream);
    align-items: stretch;
}
.standort__media {
    flex: 1 1 55%;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
}
.standort__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: saturate(0.9) contrast(0.95);
}
.standort__pin {
    position: absolute;
    left: 48%; top: 42%;
    width: 32px; height: 32px;
    display: grid; place-items: center;
    color: var(--cream);
    background: var(--brass);
    border-radius: 50%;
    font-size: 1rem;
    box-shadow: 0 0 0 6px rgba(160, 122, 70, 0.25),
                0 0 0 14px rgba(160, 122, 70, 0.12);
}
.standort__copy {
    flex: 1 1 45%;
    padding: clamp(3rem, 7vw, 5.5rem) clamp(2rem, 5vw, 5rem);
    display: flex; flex-direction: column;
    justify-content: center;
    max-width: 640px;
}
.standort__addr {
    font-family: var(--serif);
    font-style: normal;
    font-size: 1.3rem;
    line-height: 1.5;
    margin: 0 0 1.8rem;
    color: var(--ink);
}
.hours {
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border-top: 1px solid var(--ink-line);
    padding-top: 1.2rem;
}
.hours div {
    display: flex; justify-content: space-between;
    gap: 1rem;
    padding: 0.4rem 0;
    border-bottom: 1px dashed var(--ink-line);
    font-size: 0.96rem;
}
.hours dt { color: var(--ink-soft); margin: 0; }
.hours dd {
    margin: 0;
    font-family: var(--serif);
    color: var(--ink);
    font-weight: 500;
}
.standort__actions {
    display: flex; flex-wrap: wrap; gap: 0.8rem;
    margin-bottom: 1.5rem;
}
.standort__tipp {
    margin: 0;
    color: var(--muted);
    font-family: var(--serif);
    font-style: italic;
    font-size: 1rem;
}

/* ---------- 8. FAQ ---------- */
.slide--faq {
    background: var(--cream-soft);
    color: var(--ink);
}
.faq__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 0;
    border-top: 1px solid var(--ink-line);
}
.faq__item {
    border-bottom: 1px solid var(--ink-line);
    padding: 1.6rem 0;
}
.faq__item:nth-child(odd)  { border-right: 1px solid var(--ink-line); padding-right: 2rem; }
.faq__item:nth-child(even) { padding-left: 2rem; }
.faq__item summary {
    font-family: var(--serif);
    font-size: 1.32rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    color: var(--ink);
    padding-right: 2rem;
    position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
    content: '+';
    position: absolute; right: 0; top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    color: var(--brass-deep);
    font-family: var(--serif);
    line-height: 1;
    transition: transform 220ms ease;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p {
    margin: 1rem 0 0;
    color: var(--ink-soft);
    font-size: 0.98rem;
    max-width: 38em;
}

/* ---------- FOOTER ---------- */
.slide--footer {
    background: var(--ink);
    color: var(--cream);
    min-height: auto;
    padding: 5rem var(--pad-x) 2rem;
    align-items: stretch;
}
.footer__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 0.9fr 1.4fr;
    gap: 3rem;
    align-items: start;
}
.footer__brand {
    display: flex; flex-direction: column;
    gap: 0.5rem;
}
.footer__brand p { color: var(--cream-soft); font-size: 0.88rem; margin: 0.4rem 0 0; }
.footer__mark {
    display: inline-grid;
    place-items: center;
    width: 38px; height: 38px;
    border: 1px solid var(--brass);
    color: var(--brass-soft);
    font-family: var(--serif);
    font-size: 1.2rem;
    border-radius: 50%;
}
.footer__wordmark {
    font-family: var(--serif);
    font-size: 1.6rem;
    letter-spacing: 0.22em;
    font-weight: 600;
    margin-top: 0.6rem;
}

.footer__col {
    display: flex; flex-direction: column;
    gap: 0.55rem;
    font-size: 0.92rem;
    color: var(--cream-soft);
}
.footer__col strong {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}
.footer__col a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 200ms ease;
    width: max-content;
}
.footer__col a:hover { border-bottom-color: currentColor; }
.footer__col--newsletter p { margin: 0; line-height: 1.55; }

.newsletter {
    display: flex;
    gap: 0;
    margin-top: 0.8rem;
    border: 1px solid rgba(196, 160, 117, 0.35);
}
.newsletter input {
    flex: 1 1 auto;
    background: transparent;
    border: 0;
    color: var(--cream);
    font-family: var(--sans);
    font-size: 0.9rem;
    padding: 0.85rem 0.95rem;
    outline: none;
}
.newsletter input::placeholder { color: var(--muted-light); }
.newsletter input:focus { background: rgba(243, 234, 216, 0.05); }
.newsletter .btn {
    padding: 0.85rem 1.2rem;
    border: 0;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
}
.newsletter__hint {
    font-size: 0.82rem;
    color: var(--brass-soft);
    margin: 0.6rem 0 0;
    min-height: 1.2em;
}

.footer__legal {
    grid-column: 1 / -1;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(196, 160, 117, 0.25);
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: var(--muted-light);
    font-size: 0.82rem;
}
.footer__legal a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.footer__legal a:hover { border-bottom-color: var(--brass-soft); }

/* ---------- COOKIE BANNER ---------- */
.cookie {
    position: fixed;
    left: max(18px, 2vw); right: max(18px, 2vw); bottom: max(18px, 2vw);
    z-index: 60;
    background: var(--ink);
    color: var(--cream);
    box-shadow: 0 22px 60px -20px rgba(0,0,0,0.55);
    border: 1px solid var(--brass);
    transform: translateY(120%);
    transition: transform 360ms ease;
}
.cookie.is-visible { transform: translateY(0); }
.cookie__inner {
    display: flex; align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 1.6rem;
    flex-wrap: wrap;
}
.cookie p { margin: 0; font-size: 0.92rem; max-width: 60ch; line-height: 1.55; color: var(--cream-soft); }
.cookie__actions {
    display: flex; gap: 0.6rem;
    margin-left: auto;
    flex-wrap: wrap;
}
.cookie .btn--ghost {
    color: var(--cream); border-color: rgba(243, 234, 216, 0.3);
}
.cookie .btn--ghost:hover {
    background: var(--cream); color: var(--ink); border-color: var(--cream);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
    :root {
        --pad-y: max(70px, 7vh);
    }
    .topbar__nav { display: none; }
    .topbar__cta { display: none; }
    .topbar__burger { display: block; margin-left: auto; }
    .topbar { height: var(--topbar-h-mb); }
    .dotnav { display: none; }

    .slide--problem { flex-direction: column; padding: var(--pad-y) var(--pad-x); }
    .slide__pane { padding: 0; max-width: 100%; margin: 0; }
    .slide__pane--copy { margin-bottom: 2.4rem; }
    .art-frame { max-width: 460px; margin-inline: auto; }
    .art-frame::before { inset: -14px -14px 14px 14px; }

    .team__split { grid-template-columns: 1fr; min-height: auto; }
    .team__portrait { min-height: 60vh; }
    .team__copy { padding: 3rem var(--pad-x); }

    .slide--standort { flex-direction: column; }
    .standort__media { min-height: 45vh; }
    .standort__copy { padding: 3rem var(--pad-x); }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
    }
    .footer__col--newsletter { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    :root {
        --pad-y: 80px;
        --pad-x: 22px;
    }
    .display { font-size: clamp(2rem, 8vw, 2.8rem); }
    .lede { font-size: 1.05rem; }
    .hero__corner { display: none; }
    .hero__scroll-hint { display: none; }

    .faq__item:nth-child(odd)  { border-right: 0; padding-right: 0; }
    .faq__item:nth-child(even) { padding-left: 0; }

    .houses { grid-template-columns: 1fr 1fr; }
    .house { padding: 1rem 0.9rem; }
    .house__name { font-size: 1.15rem; }

    .team__row { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer__legal { flex-direction: column; gap: 0.7rem; }

    .cookie__inner { flex-direction: column; align-items: flex-start; }
    .cookie__actions { margin-left: 0; width: 100%; }
    .cookie__actions .btn { flex: 1; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .slide__bg img { transform: none !important; }
}
