:root {
    --beige:    #e0d7ce;
    --bordeaux: #742523;
    --dark:     #0a0a0a;
    --text:     #3c3c3c;
    --header-height: 74px;
    --portal-inset: 24px;
    --portal-radius-expanded: 30px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
@media (hover: hover) and (pointer: fine) { *, *::before, *::after { cursor: none !important; } }
html { overflow-x: hidden; }
body {
    background: var(--beige);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* LINK VISIBILITY */
:where(.portal-label, .panel-txt, .hero-subline, .info-note, .services-section, .seo-content-section, .faq-section, .visit-section, footer, .iq-content, .bk-content) a:not(.glass-btn):not(.visit-btn):not(.visit-btn-outline):not(.footer-cta-btn):not(.mobile-dock-btn):not(.mobile-menu-link):not(.mobile-menu-cta):not(.cfab-btn):not(.cm-btn-call):not(.cm-btn-cancel):not(.bk-btn-primary):not(.bk-btn-secondary) {
    color: var(--bordeaux);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.16em;
    text-decoration-color: rgba(116,37,35,.52);
}

:where(.portal-label, .panel-txt, .hero-subline, .info-note, .services-section, .seo-content-section, .faq-section, .visit-section, footer, .iq-content, .bk-content) a:not(.glass-btn):not(.visit-btn):not(.visit-btn-outline):not(.footer-cta-btn):not(.mobile-dock-btn):not(.mobile-menu-link):not(.mobile-menu-cta):not(.cfab-btn):not(.cm-btn-call):not(.cm-btn-cancel):not(.bk-btn-primary):not(.bk-btn-secondary):hover {
    color: #5f1f1d;
    text-decoration-color: rgba(95,31,29,.72);
}

:where(.hero, .portal-section, #mobile-dock, #hero-bl-wrap, #mini-player) a:not(.glass-btn):not(.visit-btn):not(.visit-btn-outline):not(.footer-cta-btn):not(.mobile-dock-btn):not(.mobile-menu-link):not(.mobile-menu-cta):not(.cfab-btn) {
    color: var(--beige);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.16em;
    text-decoration-color: rgba(224,215,206,.66);
}

:where(.hero, .portal-section, #mobile-dock, #hero-bl-wrap, #mini-player) a:not(.glass-btn):not(.visit-btn):not(.visit-btn-outline):not(.footer-cta-btn):not(.mobile-dock-btn):not(.mobile-menu-link):not(.mobile-menu-cta):not(.cfab-btn):hover {
    color: #f4ede6;
    text-decoration-color: rgba(244,237,230,.86);
}

body.modal-open {
    overflow: hidden;
    height: 100vh;
}
html.iq-lock-scroll,
body.iq-lock-scroll {
    overflow: hidden !important;
    overscroll-behavior: none;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

/* GRAIN */
/* PAGE LOADER OVERLAY — verhindert Flash beim Laden */
#page-loader {
    position: fixed;
    inset: 0;
    background: #0a0a0a;
    z-index: 99999;
    pointer-events: none;
    transition: opacity .45s ease;
}
#page-loader.fade-out { opacity: 0; }
#page-loader.done { display: none; }

.grain {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    background-repeat: repeat;
    opacity: .08;
    pointer-events: none;
    z-index: 1;
}

/* CURSOR */
#cursor-dot {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
    opacity: .95;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s, opacity .2s;
}
@keyframes cursor-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(116, 37, 35, 0.6); }
    70%  { box-shadow: 0 0 0 12px rgba(116, 37, 35, 0); }
    100% { box-shadow: 0 0 0 0 rgba(116, 37, 35, 0); }
}
#cursor-dot.big {
    width: 44px;
    height: 44px;
    opacity: 1;
    mix-blend-mode: difference;
    background: #fff;
    border: none;
    animation: cursor-pulse 1.1s ease-out infinite;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 28px 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 700;
    background: transparent;
    transition: background .45s ease;
    color: #fff;
    transform: translateZ(0);
    isolation: isolate;
}
nav::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    transition: opacity .45s ease;
    pointer-events: none;
}
nav.glass {
    background: rgba(10,10,10,.4);
    border-bottom: none;
}
nav.glass::before {
    opacity: 1;
}
nav.glass.on-light { background: rgba(10,10,10,.4); }
nav.portal-fallback::before {
    opacity: 0;
}
nav.glass.portal-fallback {
    background: rgba(14,11,10,.72);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: .72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .3em;
    transition: opacity .3s;
}
.nav-links a:hover { opacity: .45; }
nav.on-light .nav-links a { color: #fff; }

#mobile-menu-toggle,
#mobile-menu-overlay,
#mobile-menu-panel,
#mobile-dock {
    display: none;
}

#mobile-menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: none;
    background: transparent;
    color: currentColor;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}
.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform .3s cubic-bezier(.22,.61,.36,1), opacity .25s ease, width .25s ease;
    pointer-events: none;
}
#mobile-menu-toggle.open .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
#mobile-menu-toggle.open .burger-line:nth-child(2) {
    opacity: 0;
    width: 0;
}
#mobile-menu-toggle.open .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

#mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.42);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1980;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
}
#mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: all;
}

#mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: min(86vw, 360px);
    background: #f5ede6;
    border-left: 1px solid rgba(116,37,35,.1);
    box-shadow: -12px 0 48px rgba(0,0,0,.12);
    z-index: 1990;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateX(105%);
    transition: transform .35s cubic-bezier(.22,.61,.36,1);
}
#mobile-menu-panel.open {
    transform: translateX(0);
}

/* Panel-Header: Logo */
.mobile-menu-header {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(24px + env(safe-area-inset-top)) 24px 20px;
    border-bottom: 1px solid rgba(116,37,35,.1);
}

#mobile-menu-close {
    position: absolute;
    top: calc(14px + env(safe-area-inset-top));
    right: 14px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(116,37,35,.08);
    color: var(--bordeaux);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 10;
}
#mobile-menu-close svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Nav-Links */
.mobile-menu-nav {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 32px;
    gap: 0;
}
.mobile-menu-link {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(116,37,35,.1);
    padding: 16px 0;
    color: rgba(30,18,16,.75);
    text-decoration: none;
    font-size: .8rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    text-align: left;
    background: transparent;
    transition: color .2s ease, letter-spacing .2s ease;
}
.mobile-menu-link:first-child { border-top: 1px solid rgba(116,37,35,.1); }
.mobile-menu-link:hover,
.mobile-menu-link:active {
    color: var(--bordeaux);
    letter-spacing: .24em;
}
.mobile-menu-cta {
    display: block;
    margin-top: 22px;
    width: 100%;
    border: 1px solid var(--bordeaux);
    border-radius: 0;
    padding: 14px 20px;
    background: transparent;
    color: var(--bordeaux);
    font-style: normal;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: background .25s ease, color .25s ease;
}
.mobile-menu-cta:hover {
    background: var(--bordeaux);
    color: #fff;
}

/* Logo im Panel */
.mobile-menu-logo {
    width: 120px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(15%) sepia(80%) saturate(800%) hue-rotate(330deg);
    opacity: .9;
    pointer-events: none;
    user-select: none;
}

/* Kontakt-Footer im Panel */
.mobile-menu-footer {
    flex-shrink: 0;
    padding: 16px 32px calc(16px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(116,37,35,.1);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.mobile-menu-contact {
    color: rgba(30,18,16,.6);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .2s ease;
}
.mobile-menu-contact:hover { color: var(--bordeaux); }

/* Stagger-Einblend-Animation */
@keyframes menuLinkIn {
    from { opacity: 0; transform: translateX(16px); }
    to   { opacity: 1; transform: translateX(0); }
}
#mobile-menu-panel.open .mobile-menu-link {
    animation: menuLinkIn .4s ease both;
}
#mobile-menu-panel.open .mobile-menu-link:nth-child(1) { animation-delay: .10s; }
#mobile-menu-panel.open .mobile-menu-link:nth-child(2) { animation-delay: .17s; }
#mobile-menu-panel.open .mobile-menu-link:nth-child(3) { animation-delay: .24s; }
#mobile-menu-panel.open .mobile-menu-link:nth-child(4) { animation-delay: .31s; }
#mobile-menu-panel.open .mobile-menu-cta { animation: menuLinkIn .4s .38s ease both; }

#mobile-dock {
    position: fixed;
    left: max(10px, env(safe-area-inset-left));
    right: max(10px, env(safe-area-inset-right));
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 1300;
    background: linear-gradient(180deg, rgba(252,248,244,.92), rgba(246,238,231,.9));
    border: 1px solid rgba(116,37,35,.12);
    border-radius: 26px;
    backdrop-filter: blur(22px) saturate(120%);
    -webkit-backdrop-filter: blur(22px) saturate(120%);
    padding: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    box-shadow: 0 12px 36px rgba(0,0,0,.16), 0 1px 0 rgba(255,255,255,.9) inset;
}
.mobile-dock-btn {
    height: 62px;
    border-radius: 18px;
    border: none;
    background: transparent;
    color: rgba(30,18,16,.62);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: .5rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0 6px;
}
.mobile-dock-btn span {
    opacity: .9;
}
.mobile-dock-btn:active {
    transform: scale(.95);
    background: transparent;
}
.mobile-dock-btn svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.mobile-dock-btn--primary {
    background: rgba(116,37,35,.12);
    border-radius: 18px;
    border: none;
    color: var(--bordeaux);
    box-shadow: none;
    letter-spacing: .13em;
}
.mobile-dock-btn--primary svg {
    stroke: var(--bordeaux);
}

/* BURST ICON – Ambiente Button */
.dock-icon--burst { display: none; }
.dock-icon--music { display: block; }
.dock-icon--burst {
    width: 30px;
    height: 30px;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

#mobile-music-btn.playing .dock-icon--music { display: none; }
#mobile-music-btn.playing .dock-icon--burst { display: block; }
#mobile-music-btn.playing { color: var(--bordeaux); }

.dock-icon--burst .bl {
    fill: currentColor;
    opacity: .98;
    transform-box: fill-box;
    transform-origin: 50% 100%;
    transform: scaleY(var(--burst-low, 0.2));
}
#mobile-music-btn.playing .dock-icon--burst .bl {
    animation: burst-chaos var(--burst-duration, 4.8s) cubic-bezier(.42,0,.2,1) infinite;
    animation-delay: var(--burst-delay, 0s);
}
@keyframes burst-chaos {
    0%   { transform: scaleY(var(--burst-low, 0.28)); }
    18%  { transform: scaleY(var(--burst-mid, 0.55)); }
    42%  { transform: scaleY(var(--burst-high, 0.95)); }
    68%  { transform: scaleY(var(--burst-mid, 0.55)); }
    100% { transform: scaleY(var(--burst-low, 0.28)); }
}

/* STICKY LOGO */
#sticky-logo {
    position: fixed;
    top: calc(50% - 50px);
    left: 50%;
    width: 34vw;
    max-width: 460px;
    z-index: 750;
    pointer-events: none;
    will-change: top, width;
    transform: translateX(-50%) translateY(-50%);
    opacity: 0;
}
#sticky-logo a {
    display: block;
    pointer-events: none;
}
#sticky-logo.is-nav { pointer-events: all; opacity: 1; }
#sticky-logo.is-nav a { pointer-events: all; }
#sticky-logo img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    display: block;
}
#sticky-logo.on-light img { filter: brightness(0) invert(1); }

/* PANEL DOTS */
#panel-dots {
    position: absolute;
    right: 2.5vw;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 20;
    pointer-events: none;
    opacity: 0;
}
.pdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    transition: background .4s, transform .4s;
}
.pdot.active { background: #fff; transform: scale(1.5); }

/* HERO BOTTOM-LEFT WRAPPER */
#hero-bl-wrap {
    position: fixed;
    left: 42px;
    bottom: 48px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
    user-select: none;
}
#hero-bl-wrap.visible { opacity: 1; }
#hero-bl-wrap .mp-btn { pointer-events: all; }
/* Außerhalb des Hero: Fortschrittskasten ausblenden, FAB bleibt sichtbar */
#hero-bl-wrap.on-light.player-collapsed #hero-bl-bottom {
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden;
    pointer-events: none;
}

#hero-bl-bottom {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 8px;
    overflow: hidden;
}

#hero-progress {
    width: 190px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 12px;
    position: relative;
    overflow: visible;
}
.hp-counter {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}
#hp-phase-num {
    font-size: 1.5rem;
    letter-spacing: .02em;
    color: rgba(255,255,255,.95);
    line-height: 1;
}
.hp-sep { color: rgba(255,255,255,.35); font-size: .52rem; letter-spacing: .18em; }
.hp-track-wrap {
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,.15);
    position: relative;
    border-radius: 2px;
}
#hp-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, #742523, #c04545);
    border-radius: 2px;
    box-shadow: 0 0 6px rgba(116,37,35,0.7);
}
.hp-text { display: flex; flex-direction: column; gap: 0; }
#hp-current-label {
    font-family: 'Montserrat', sans-serif;
    font-size: .62rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.92);
    font-weight: 500;
}
#hp-next-label { display: none; }

#scroll-down-indicator {
    width: 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 12px;
    pointer-events: all;
    transition: background .3s, border-color .3s;
}
#scroll-down-indicator:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.5); }

/* KPI PLAY BUTTON */
#kpi-auto-scroll {
    position: fixed;
    top: calc(66% - 65px);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.92);
    box-shadow: 0 4px 22px rgba(0,0,0,.3), 0 1px 6px rgba(0,0,0,.18);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: none;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    transition: box-shadow .3s;
}
#kpi-auto-scroll:hover {
    box-shadow: 0 6px 28px rgba(0,0,0,.4), 0 2px 8px rgba(0,0,0,.2);
}
#kpi-auto-scroll.kpi-expanded {
    background: linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.035)) !important;
    backdrop-filter: blur(18px) saturate(140%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(140%) !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    box-shadow: none !important;
    cursor: default;
    border-radius: 999px !important;
}
#kpi-auto-scroll.kpi-expanded:hover {
    box-shadow: none !important;
}
#kpi-auto-scroll .play-triangle {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 13px solid rgba(25,18,18,.8);
    margin-left: 3px;
    position: relative;
    z-index: 2;
    transition: opacity .25s;
}
#kpi-auto-scroll.playing .play-triangle,
#kpi-auto-scroll.intro-active .play-triangle { opacity: 0; }
#kpi-auto-scroll .kpi-label {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: none;
    color: rgba(255,255,255,0.88);
    opacity: 0;
    transition: opacity 0.35s;
    white-space: nowrap;
    pointer-events: none;
}
#kpi-auto-scroll.intro-active .kpi-label {
    opacity: 1;
    width: calc(100% - 24px);
    justify-content: center;
    text-align: center;
    white-space: normal;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(.92rem, 1.35vw, 1.05rem);
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: .01em;
    color: rgba(255,255,255,.94);
}
#kpi-auto-scroll.playing .kpi-label {
    opacity: 1;
    width: calc(100% - 18px);
    justify-content: center;
    text-align: center;
    white-space: normal;
    font-family: 'Montserrat', sans-serif;
    font-size: .54rem;
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
}
#kpi-auto-scroll.intro-active .kpi-label::before {
    content: none;
}
#kpi-auto-scroll.playing .kpi-label::before {
    content: none;
}
#kpi-auto-scroll .kpi-label::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,244,240,0.82);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.07);
    flex: 0 0 6px;
}
#kpi-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,.34) 0%, rgba(255,255,255,.2) 28%, rgba(183,117,103,.34) 100%);
    border-radius: inherit;
    box-shadow: inset 0 0 18px rgba(255,255,255,.12);
    pointer-events: none;
}

.sd-arrow {
    position: relative;
    width: 2px;
    height: 64px;
    background: linear-gradient(to bottom, rgba(255,255,255,.2), rgba(255,255,255,.9));
    border-radius: 2px;
    animation: sd-pulse 2.2s ease-in-out infinite;
}
.sd-arrow::before,
.sd-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 10px;
    height: 2px;
    background: rgba(255,255,255,.9);
    border-radius: 2px;
}
.sd-arrow::before {
    left: -8px;
    transform: rotate(40deg);
    transform-origin: right center;
}
.sd-arrow::after {
    right: -8px;
    transform: rotate(-40deg);
    transform-origin: left center;
}
@keyframes sd-pulse {
    0%   { transform: translateY(-6px); opacity: .35; }
    50%  { transform: translateY(7px); opacity: 1; }
    100% { transform: translateY(-6px); opacity: .35; }
}

/* HERO */
.hero {
    position: relative; height: 100vh; width: 100%;
    overflow: hidden; background: transparent;
    display: flex; flex-direction: column;
    justify-content: flex-end; align-items: center;
    padding-bottom: 10vh;
    z-index: 20;
}
.hero-bg-wrap { position: absolute; inset: -8%; z-index: 0; overflow: hidden; }
.hero-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    filter: brightness(.42);
    will-change: transform, opacity, filter;
}
.hero-bg--main {
    opacity: 1;
}
.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.hero-bg--next {
    background: url('../../images/saal-jadore-terrasse-garten-berlin.jpg') center/cover no-repeat;
    opacity: 0;
    filter: brightness(.38) blur(20px);
}
.hero-content {
    position: relative; z-index: 10;
    text-align: center; color: #fff;
    will-change: opacity, transform, filter;
    margin-bottom: 15px;
}
.hero-tagline {
    font-size: clamp(1.425rem, 2.28vw, 1.824rem); font-weight: 500;
    letter-spacing: .32em; text-transform: uppercase;
    margin-bottom: 3vh; opacity: .75;
    transform-origin: center center;
    transform: scale(0.65);
    will-change: transform, opacity, letter-spacing;
}
.hero-subline {
    max-width: 720px;
    margin: 0 auto;
    font-size: clamp(.88rem, 1.35vw, 1.06rem);
    line-height: 1.85;
    color: rgba(255,255,255,.86);
    letter-spacing: .02em;
    font-weight: 300;
}
.hero-facts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
    will-change: opacity, transform, filter;
}
.hero-facts span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 9px 16px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.94);
    font-family: 'Montserrat', sans-serif;
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.hero-btns {
    position: fixed;
    bottom: 36px;
    right: 28px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    gap: 12px;
    will-change: opacity;
}
.glass-btn {
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 12px;
    color: #fff;
    height: 48px;
    padding: 0 32px;
    font-size: .68rem; font-weight: 500;
    letter-spacing: .2em; text-transform: uppercase;
    text-decoration: none; transition: background .4s, border-color .4s;
    display: flex; align-items: center; justify-content: center;
    text-align: center; box-sizing: border-box;
}
.glass-btn:hover { background: rgba(255,255,255,.12); }
.glass-btn--primary {
    color: rgba(255,235,235,.92);
}
.glass-btn--primary:hover {
    background: rgba(116,37,35,.22);
}

/* PERMANENT CONTACT FAB */
@keyframes cfabBtnIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
#contact-fab {
    position: fixed;
    bottom: 48px;
    right: 42px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
}
.cfab-btn {
    min-width: unset;
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 14px;
    background: rgba(255,255,255,.38);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border: 1px solid rgba(255,255,255,.55);
    color: var(--bordeaux);
    font-family: 'Montserrat', sans-serif;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 0;
    overflow: hidden;
    box-sizing: border-box;
    box-shadow: 0 8px 28px rgba(0,0,0,.18);
    transition: width .75s cubic-bezier(.4,0,.15,1), padding .75s cubic-bezier(.4,0,.15,1), gap .75s cubic-bezier(.4,0,.15,1), background .3s, box-shadow .3s, transform .3s;
    white-space: nowrap;
    animation: cfabBtnIn .72s cubic-bezier(.22,1,.36,1) both;
    animation-play-state: paused;
}
#contact-fab.visible .cfab-btn {
    animation-play-state: running;
}
#contact-fab > :nth-child(3) { animation-delay: .0s; }
#contact-fab > :nth-child(2) { animation-delay: .14s; }
#contact-fab > :nth-child(1) { animation-delay: .28s; }
.cfab-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}
.cfab-label {
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-width .75s cubic-bezier(.4,0,.15,1), opacity .6s ease;
}
#contact-fab:hover .cfab-btn {
    width: 210px;
    padding: 0 18px 0 22px;
    gap: 10px;
}
#contact-fab:hover .cfab-label {
    max-width: 160px;
    opacity: 1;
}
#contact-fab:hover > :nth-child(1) .cfab-label { transition-delay: .30s; }
#contact-fab:hover > :nth-child(2) .cfab-label { transition-delay: .15s; }
#contact-fab:hover > :nth-child(3) .cfab-label { transition-delay: .0s; }
.cfab-btn:hover {
    transform: translateY(-2px);
    background: #fff;
    box-shadow: 0 12px 36px rgba(0,0,0,.24);
}
.cfab-btn--primary {
    background: rgba(116,37,35,.42);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    color: #fff;
    border-color: rgba(255,255,255,.22);
    box-shadow: 0 8px 28px rgba(116,37,35,.28);
}
.cfab-btn--primary:hover {
    background: rgba(116,37,35,.58);
    color: #fff;
    border-color: rgba(255,255,255,.32);
    box-shadow: 0 12px 36px rgba(116,37,35,.38);
}
.cfab-btn--instagram {
    background: rgba(255,255,255,.28);
    color: var(--bordeaux);
    border-color: rgba(255,255,255,.5);
    box-shadow: 0 8px 24px rgba(80,40,36,.1);
}
.cfab-btn--instagram:hover {
    background: rgba(255,255,255,.4);
    color: var(--bordeaux);
    border-color: rgba(255,255,255,.6);
    box-shadow: 0 10px 30px rgba(80,40,36,.16);
}
#contact-fab.visible {
    opacity: 1;
    pointer-events: all;
}
#contact-fab:hover > :nth-child(1) { transition-delay: .30s; }
#contact-fab:hover > :nth-child(2) { transition-delay: .15s; }
#contact-fab:hover > :nth-child(3) { transition-delay: .0s; }
#contact-fab.footer-hidden {
    opacity: 0 !important;
    pointer-events: none !important;
}
#back-to-top-fab {
    position: fixed;
    bottom: 48px;
    right: 42px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.09);
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1201;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.3s ease;
    text-decoration: none;
}
#back-to-top-fab.visible {
    opacity: 1;
    pointer-events: all;
}
#back-to-top-fab svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

#mini-player {
    width: 190px;
    padding: 12px;
    display: flex;
    gap: 10px;
    align-items: stretch;
    background: rgba(224,215,206,.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(116,37,35,.24);
    border-radius: 12px;
    position: relative;
    pointer-events: all;
    transition: opacity .42s cubic-bezier(.22,.61,.36,1), transform .42s cubic-bezier(.22,.61,.36,1), background .6s ease, border-color .6s ease;
}
/* Glasig im Hero-Bereich (bevor gescrollt wird) */
.hero-glass #mini-player {
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-color: rgba(255,255,255,.22);
}
.hero-glass #mini-player #mp-title { color: rgba(255,255,255,.9); }
.hero-glass #mini-player #mp-artist { color: rgba(255,255,255,.55); }
.hero-glass #mini-player .mp-btn { color: rgba(255,255,255,.85); }
.hero-glass #mini-player #mp-close { color: rgba(255,255,255,.7); }
.hero-glass #mini-player input[type=range] { opacity: .75; }
#mp-cover {
    width: 46px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}
.mp-right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mp-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
#mp-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: .92rem;
    color: rgba(48,22,20,.92);
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#mp-artist {
    font-size: .56rem;
    letter-spacing: .14em;
    text-transform: capitalize;
    color: rgba(64,32,30,.62);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#mp-close {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 16px;
    height: 16px;
    border: none;
    padding: 0;
    background: none;
    color: rgba(64,32,30,.62);
    font-size: 11px;
    line-height: 1;
    cursor: pointer;
    pointer-events: all;
    transition: color .25s ease, transform .25s ease;
}
#mp-close:hover { color: rgba(42,18,16,.95); transform: scale(1.06); }
.mp-controls {
    display: flex;
    align-items: center;
    gap: 6px;
}
.mp-btn {
    background: none;
    border: none;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(64,32,30,.62);
    padding: 0;
    transition: color .2s;
    pointer-events: all;
}
.mp-btn:hover { color: rgba(42,18,16,.95); }
.mp-btn svg { width: 11px; height: 11px; fill: currentColor; }
#mp-play {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(116,37,35,.4);
    border: 1px solid rgba(116,37,35,.55);
    color: rgba(255,235,235,.9);
    transition: background .2s;
}
#mp-play:hover { background: rgba(116,37,35,.7); color: #fff; }
#mp-play svg { width: 10px; height: 10px; }
.mp-vol-wrap {
    display: flex; align-items: center; gap: 7px;
    width: 100%;
    pointer-events: all;
}
.mp-vol-wrap svg { width: 10px; height: 10px; fill: rgba(64,32,30,.55); flex-shrink: 0; }
#mp-vol {
    -webkit-appearance: none; appearance: none;
    width: 100%;
    min-width: 0;
    flex: 1;
    height: 3px;
    border-radius: 1px;
    background: rgba(116,37,35,.16);
    outline: none; cursor: pointer;
    pointer-events: all;
}
#mp-vol::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--bordeaux);
    border: 1px solid rgba(255,255,255,.25);
}
#mp-vol::-moz-range-thumb {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--bordeaux);
    border: none;
}
#mp-fab {
    position: fixed;
    left: 42px;
    bottom: 48px;
    width: 42px;
    height: 42px;
    z-index: 1202;
    border-radius: 50%;
    border: 1px solid rgba(42,18,16,.34);
    background: rgba(224,215,206,.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(42,18,16,.9);
    opacity: 0;
    pointer-events: none;
    transform: scale(.85);
    transition: opacity .42s cubic-bezier(.22,.61,.36,1), transform .42s cubic-bezier(.22,.61,.36,1), color .25s ease, bottom .35s cubic-bezier(.22,.61,.36,1), background .6s ease, border-color .6s ease;
}
/* FAB glasig im Hero */
.hero-glass #mp-fab {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-color: rgba(255,255,255,.25);
    color: rgba(255,255,255,.9);
}
#mp-fab svg { width: 16px; height: 16px; fill: currentColor; }
#mp-fab:hover { color: rgba(116,37,35,.96); }
#hero-bl-wrap.player-collapsed #mini-player {
    opacity: 0;
    transform: scale(.9) translateY(4px);
    pointer-events: none;
}
#hero-bl-wrap.player-collapsed #hero-bl-bottom {
    opacity: 1 !important;
    height: auto !important;
    overflow: visible;
}
#hero-bl-wrap.player-collapsed #mp-fab {
    opacity: 1 !important;
    pointer-events: all;
    bottom: 156px;
    transform: scale(1);
}
#hero-bl-wrap.on-light.player-collapsed #mp-fab {
    bottom: 48px;
}

/* MUSIK MODAL */
#music-modal {
    position: fixed; inset: 0; z-index: 9000;
    display: flex; align-items: center; justify-content: center;
    transition: opacity .7s ease;
}
#music-modal.mm-hidden {
    opacity: 0; pointer-events: none;
}
#mm-blur {
    position: absolute; inset: 0;
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    background: rgba(224,215,206,.72);
}
#mm-box {
    position: relative; z-index: 1;
    background: rgba(252,248,244,.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(116,37,35,.12);
    padding: 44px 48px 40px;
    display: flex; flex-direction: column;
    align-items: center; gap: 28px;
    max-width: 380px; width: 90vw;
    text-align: center;
    box-shadow: 0 32px 80px rgba(80,30,28,.14);
}
#mm-logo { width: 160px; opacity: 1; filter: none; }
#mm-icon svg {
    width: 52px; height: 52px;
    color: var(--bordeaux);
    fill: none; stroke-width: 1.4;
    stroke-linecap: round; stroke-linejoin: round;
}
#mm-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.05rem, 2.5vw, 1.3rem);
    font-weight: 400; color: rgba(30,18,16,.85);
    line-height: 1.4;
}
.mm-btns {
    display: flex; gap: 12px; width: 100%;
}
.mm-btn {
    flex: 1; padding: 13px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: .6rem; font-weight: 500;
    letter-spacing: .22em; text-transform: uppercase;
    cursor: pointer; border-radius: 0;
    transition: background .3s, border-color .3s, color .3s;
}
#mm-mute {
    background: transparent;
    border: 1px solid rgba(116,37,35,.28);
    color: rgba(30,18,16,.6);
}
#mm-mute:hover {
    background: rgba(116,37,35,.07);
    border-color: rgba(116,37,35,.5);
    color: rgba(30,18,16,.9);
}
#mm-play-btn {
    background: var(--bordeaux);
    border: 1px solid var(--bordeaux);
    color: #fff;
}
#mm-play-btn:hover {
    background: #8f2e2b;
    border-color: #8f2e2b;
}
/* ═══ MOBILER MUSIK PLAYER MODAL ═══════════════════════════════════════ */
    #mobile-player-modal {
        position: fixed; inset: 0; z-index: 8500;
        pointer-events: none;
    }
    #mobile-player-modal.mpm-hidden { display: none; }
    #mobile-player-modal:not(.mpm-hidden) { pointer-events: all; }

    #mpm-overlay {
        position: absolute; inset: 0;
        background: rgba(0,0,0,.55);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        animation: mpm-fade-in .35s ease forwards;
    }
    #mobile-player-modal.mpm-closing #mpm-overlay {
        animation: mpm-fade-out .3s ease forwards;
    }
    #mpm-sheet {
        position: absolute; left: 0; right: 0; bottom: 0;
        height: 50dvh;
        max-height: 50dvh;
        overflow: hidden;
        border-radius: 22px 22px 0 0;
        background: #111;
        display: flex; flex-direction: column;
        animation: mpm-slide-up .42s cubic-bezier(.22,1,.36,1) forwards;
        touch-action: none;
        will-change: transform;
    }
    #mobile-player-modal.mpm-closing #mpm-sheet {
        animation: mpm-slide-down .3s ease forwards;
    }
    /* Blurred album art background */
    #mpm-bg-art {
        position: absolute; inset: 0;
        width: 100%; height: 100%;
        object-fit: cover;
        filter: blur(60px) brightness(.45) saturate(1.4);
        transform: scale(1.15);
        z-index: 0;
        transition: opacity .6s ease;
    }
    #mpm-content {
        position: relative; z-index: 1;
        display: flex; flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        flex: 1;
        overflow: hidden;
        padding: 6px 18px calc(env(safe-area-inset-bottom) + 10px);
        gap: 0;
    }
    #mpm-drag-handle {
        width: 54px;
        height: 5px;
        border-radius: 999px;
        background: rgba(255,255,255,.45);
        margin: 2px auto 8px;
        cursor: grab;
        flex-shrink: 0;
    }
    #mpm-drag-handle:active { cursor: grabbing; }
    /* Header row */
    #mpm-header {
        width: 100%;
        display: flex; align-items: center; justify-content: space-between;
        margin-bottom: 8px;
    }
    #mpm-close {
        background: none; border: none; cursor: pointer;
        color: rgba(255,255,255,.75);
        width: 34px; height: 34px;
        display: flex; align-items: center; justify-content: center;
        border-radius: 50%;
        transition: color .2s, background .2s;
    }
    #mpm-close:hover { color: #fff; background: rgba(255,255,255,.1); }
    #mpm-header-label {
        font-family: 'Montserrat', sans-serif;
        font-size: .52rem; letter-spacing: .2em; text-transform: uppercase;
        font-weight: 600; color: rgba(255,255,255,.6);
    }
    /* Album Art */
    #mpm-art-wrap {
        width: clamp(96px, 24vw, 128px);
        aspect-ratio: 1;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0,0,0,.6);
        margin-bottom: 8px;
        flex-shrink: 0;
    }
    #mpm-art { width: 100%; height: 100%; object-fit: cover; display: block; }
    /* Meta */
    #mpm-meta {
        width: 100%;
        display: flex; flex-direction: column; gap: 2px;
        margin-bottom: 8px;
        text-align: left;
    }
    #mpm-title-text {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(1.15rem, 4.2vw, 1.45rem); font-weight: 600;
        color: rgba(255,255,255,.96);
        line-height: 1.2;
        letter-spacing: .01em;
    }
    #mpm-artist-text {
        font-family: 'Montserrat', sans-serif;
        font-size: .56rem; letter-spacing: .1em; text-transform: capitalize;
        color: rgba(255,255,255,.45); font-weight: 500;
    }
    /* Scrubber */
    #mpm-scrubber-wrap {
        width: 100%; margin-bottom: 8px;
    }
    #mpm-scrubber {
        -webkit-appearance: none; appearance: none;
        width: 100%; height: 2px; border-radius: 2px;
        background: linear-gradient(to right, rgba(255,255,255,.85) 0%, rgba(255,255,255,.2) 0%);
        cursor: pointer; margin-bottom: 4px;
        outline: none;
    }
    #mpm-scrubber::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 12px; height: 12px; border-radius: 50%;
        background: #fff; cursor: pointer;
        box-shadow: 0 1px 4px rgba(0,0,0,.4);
    }
    #mpm-scrubber::-moz-range-thumb {
        width: 12px; height: 12px; border-radius: 50%;
        background: #fff; border: none; cursor: pointer;
    }
    .mpm-time-row {
        display: flex; justify-content: space-between;
        font-family: 'Montserrat', sans-serif;
        font-size: .5rem; letter-spacing: .05em;
        color: rgba(255,255,255,.4); font-weight: 500;
    }
    /* Controls */
    #mpm-controls {
        display: flex; align-items: center; justify-content: center;
        gap: 20px; width: 100%; margin-bottom: 8px;
    }
    .mpm-ctrl-btn {
        background: none; border: none; cursor: pointer;
        color: rgba(255,255,255,.85);
        display: flex; align-items: center; justify-content: center;
        border-radius: 50%; padding: 6px;
        transition: color .2s, transform .15s, background .2s;
    }
    .mpm-ctrl-btn:active { transform: scale(.88); }
    .mpm-ctrl-btn:hover { color: #fff; background: rgba(255,255,255,.08); }
    .mpm-ctrl-btn--play {
        width: 56px; height: 56px;
        background: #fff !important; color: #111 !important;
        border-radius: 50%;
        box-shadow: 0 4px 20px rgba(0,0,0,.35);
        padding: 0;
    }
    .mpm-ctrl-btn--play:hover { background: rgba(255,255,255,.92) !important; }
    .mpm-ctrl-btn--play svg { width: 26px; height: 26px; }
    /* Volume */
    #mpm-vol-wrap {
        width: 100%;
        display: flex; align-items: center; gap: 8px;
        color: rgba(255,255,255,.4);
    }
    #mpm-vol-wrap svg {
        width: 12px;
        height: 12px;
        flex-shrink: 0;
    }
    #mpm-vol {
        -webkit-appearance: none; appearance: none;
        flex: 1; height: 3px; border-radius: 2px;
        background: linear-gradient(to right, rgba(255,255,255,.7) 6%, rgba(255,255,255,.2) 6%);
        cursor: pointer; outline: none;
    }
    #mpm-vol::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 12px; height: 12px; border-radius: 50%;
        background: rgba(255,255,255,.85); cursor: pointer;
    }
    #mpm-vol::-moz-range-thumb {
        width: 12px; height: 12px; border-radius: 50%;
        background: rgba(255,255,255,.85); border: none; cursor: pointer;
    }
    /* Animations */
    @keyframes mpm-slide-up {
        from { transform: translateY(100%); }
        to   { transform: translateY(0); }
    }
    @keyframes mpm-slide-down {
        from { transform: translateY(0); }
        to   { transform: translateY(100%); }
    }
    @keyframes mpm-fade-in {
        from { opacity: 0; }
        to   { opacity: 1; }
    }
    @keyframes mpm-fade-out {
        from { opacity: 1; }
        to   { opacity: 0; }
    }

@media (hover: hover) and (pointer: fine) {

    body.modal-open #cursor-dot {
        opacity: .98 !important;
        z-index: 9200;
        width: 12px;
        height: 12px;
        background: rgba(255,255,255,.94);
        mix-blend-mode: normal;
        box-shadow: 0 0 0 2px rgba(255,255,255,.18);
    }
}

/* HERO QUOTE */
#hero-quote {
    position: absolute; inset: 0; z-index: 11;
    display: flex; align-items: center; justify-content: center;
    padding: 0 10vw;
    pointer-events: none;
    opacity: 0;
}
#heroQuoteText {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 5rem); line-height: 1.15;
    font-weight: 400; text-align: center; color: #fff;
}
#heroQuoteText .hqchar { color: rgba(255,255,255,.12); }

.hero-bg--third {
    background: url('../../images/saal-jadore-festsaal-galerie-tempelhof.jpg') center/cover no-repeat;
    opacity: 0;
    filter: brightness(.38) blur(20px);
}
#hero-exit-light {
    position: absolute; inset: 0; z-index: 5;
    background: var(--beige);
    opacity: 0;
    pointer-events: none;
}
#hero-quote-2 {
    position: absolute; inset: 0; z-index: 11;
    display: flex; align-items: center; justify-content: center;
    padding: 0 10vw;
    pointer-events: none;
    opacity: 0;
}
#heroQuoteText2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 5rem); line-height: 1.15;
    font-weight: 400; text-align: center; color: #fff;
}
#heroQuoteText2 .hqchar { color: rgba(255,255,255,.12); }

/* TEXT REVEAL */
.text-reveal {
    display: none;
}
.quote-wrap { max-width: 1000px; text-align: center; }
#quoteText {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 5rem); line-height: 1.15;
    font-weight: 400;
}
#quoteText .qchar { display: inline; color: rgba(116,37,35,.12); }

/* PORTAL + HORIZONTAL SCROLL */
.portal-section {
    height: 100vh; width: 100%;
    background: var(--beige);
    position: relative;
    overflow: hidden;
    margin-top: -100vh;
    z-index: 5;
    transition: opacity .6s ease;
}
.portal-section .pdot {
    background: rgba(116,37,35,.22);
}
.portal-section .pdot.active {
    background: var(--bordeaux);
}
.portal-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 14vh;
    background: linear-gradient(180deg, rgba(224,215,206,0) 0%, rgba(224,215,206,0.08) 36%, rgba(224,215,206,0.34) 68%, rgba(224,215,206,0.62) 88%, #e0d7ce 100%);
    opacity: 0;
    pointer-events: none;
    z-index: 12;
    will-change: opacity;
}
.portal-label {
    position: absolute; left: 9vw; top: 52%;
    transform: translateY(-50%); width: 33vw; z-index: 15;
}
.portal-label h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 400;
    line-height: 1; margin-bottom: 16px;
    color: var(--bordeaux);
}
.portal-label p { font-size: .98rem; font-weight: 300; line-height: 1.7; color: var(--text); }
#portal {
    position: absolute; right: 9vw; top: calc(var(--header-height) + 24px);
    width: min(33vw, 70vh);
    height: min(33vw, 70vh);
    border-radius: clamp(56px, 8vw, 140px);
    overflow: hidden;
    transform-origin: center center;
    will-change: width, height, right, top, border-radius, transform, opacity;
    z-index: 10;
}
.h-track-wrap { overflow: hidden; position: absolute; inset: 0; z-index: 1; }
#h-track { display: flex; width: 300%; height: 100%; will-change: transform; }
.h-panel { width: 33.333%; height: 100%; position: relative; flex-shrink: 0; contain: strict; }
.panel-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.6); will-change: transform, filter, opacity; }
.portal-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(224,215,206,0) 22%, rgba(224,215,206,0.03) 48%, rgba(224,215,206,0.1) 68%, rgba(224,215,206,0.46) 100%);
    opacity: 0;
    pointer-events: none;
    z-index: 3;
    will-change: opacity;
}
.panel-txt {
    position: absolute; left: 9%; top: 50%;
    color: #fff; max-width: 31%; z-index: 5;
    opacity: 0;
}
.panel-txt h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 400;
    line-height: 1; margin-bottom: 16px; color: #fff;
}
.panel-txt p { font-size: .98rem; font-weight: 300; line-height: 1.7; opacity: .85; }

/* INFO GRID */
.info-section {
    padding: 0 9vw 52vh;
    margin-top: -66vh;
    background: transparent;
    position: relative;
    z-index: 20;
    will-change: transform;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 2;
    align-items: stretch;
}
.info-card {
    padding: 64px 48px 58px;
    border: 1px solid rgba(116,37,35,.18);
    background: rgba(255,253,250,.96);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    text-align: center;
    border-radius: 20px;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 8px 40px rgba(60,20,18,.13), 0 2px 8px rgba(60,20,18,.06);
    transition: background .45s, border-color .45s, box-shadow .45s, transform .35s, opacity .6s ease;
    color: var(--bordeaux);
}
.info-card:hover {
    background: var(--bordeaux);
    border-color: var(--bordeaux);
    box-shadow: 0 18px 56px rgba(116,37,35,.38);
    transform: translateY(-6px);
}
.info-card:hover .info-num,
.info-card:hover h3,
.info-card:hover p { color: #fff; opacity: 1; }
.info-num {
    display: block; font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 5vw, 5.2rem); font-weight: 300; line-height: 1;
    margin-bottom: 14px; color: var(--bordeaux); transition: color .45s;
}
.info-num-divider {
    width: 32px; height: 1px;
    background: var(--bordeaux);
    margin: 0 auto 14px;
    transition: background .45s;
}
.info-card:hover .info-num-divider { background: rgba(255,255,255,.55); }
.info-card h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
    font-weight: 500; margin-bottom: 10px; transition: color .45s;
    color: var(--bordeaux);
}
.info-card:hover h3 { color: #fff; }
.info-card p { font-size: .88rem; font-weight: 400; letter-spacing: .05em; opacity: .8; transition: color .45s, opacity .45s; color: #3a1a19; }
.info-note {
    margin: 128px auto 0;
    max-width: 760px;
    text-align: center;
    color: rgba(255,255,255,.96);
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 0;
    transform: none;
    filter: none;
    will-change: opacity;
}
.info-note h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3.3vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    color: #fff;
    text-shadow: 0 2px 14px rgba(0,0,0,.35);
    margin-bottom: 14px;
}
.info-note p {
    font-size: 1.14rem;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: .02em;
    color: rgba(255,255,255,.92);
    text-shadow: 0 2px 12px rgba(0,0,0,.34);
}

/* SERVICES */
.services-section { background: var(--beige); padding: 4vh 9vw 14vh; margin-top: -45vh; position: relative; z-index: 20; transition: opacity .6s ease; }
.svc-header { margin-bottom: 4vh; padding-bottom: 2vh; border-bottom: none; }
.svc-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300;
    color: var(--dark); letter-spacing: .04em;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bordeaux);
}
.svc-row {
    display: grid; grid-template-columns: 120px 1fr 1fr 48px;
    align-items: center; gap: 2.5vw;
    padding: 2.4vh 16px; border-bottom: 1px solid rgba(116,37,35,.1);
    border-radius: 10px;
    transition: background .35s, padding-left .4s; cursor: pointer;
}
.svc-row:hover { background: rgba(116,37,35,.05); padding-left: 28px; }
.svc-row:hover .svc-num { color: var(--bordeaux); opacity: 1; }
.svc-row:hover h3 { color: var(--bordeaux); }
.svc-row:hover .svc-arrow { color: var(--bordeaux); transform: translateX(8px); }
.svc-row:hover .svc-img { filter: brightness(.95) saturate(1.1); transform: scale(1.04); }
.svc-img {
    width: 120px; height: 78px; object-fit: cover;
    border-radius: 10px;
    filter: brightness(.7) saturate(.7);
    transition: filter .45s, transform .45s;
    display: block;
}
.svc-title-wrap { display: flex; flex-direction: column; gap: 4px; }
.svc-num {
    font-family: 'Cormorant Garamond', serif; font-size: .88rem;
    font-weight: 600; color: var(--bordeaux); opacity: .85;
    letter-spacing: .14em; transition: color .35s, opacity .35s;
}
.svc-row h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2.4vw, 2.2rem); font-weight: 400; color: var(--dark);
    transition: color .35s; line-height: 1.15;
}
.svc-row p { font-size: .95rem; font-weight: 500; color: rgba(30,18,16,.76); letter-spacing: .04em; }
.svc-arrow { font-size: 1.5rem; color: rgba(116,37,35,.22); text-align: right; transition: color .3s, transform .3s; letter-spacing: -.05em; }

/* GALLERY STRIP */
.gallery-strip {
    height: 50vh;
    overflow: hidden;
    position: relative;
    z-index: 20;
    background: #0f0f0f;
}
.gallery-viewport {
    height: 100%;
    overflow: hidden;
}
.gallery-track {
    display: flex;
    height: 100%;
    will-change: transform;
}
.gallery-slide {
    min-width: 33.333%;
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
}
.gallery-nav { display: none; }
.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.84);
    transition: filter .55s ease, transform .65s ease;
}
.gallery-slide img:hover {
    filter: brightness(1);
    transform: scale(1.02);
}
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(15,15,15,.32);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255,255,255,.96);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.gallery-nav:hover {
    background: rgba(15,15,15,.52);
    border-color: rgba(255,255,255,.58);
    transform: translateY(-50%) scale(1.03);
}
.gallery-nav--left { left: 20px; }
.gallery-nav--right { right: 20px; }
.gallery-pagination { display: none; }

/* CSP-safe fallback: Swiper arrows without embedded data URI font */
.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 30px !important;
    font-weight: 400;
    line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: '\2039' !important;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: '\203A' !important;
}

/* SEO CONTENT BLOCK */
.seo-content-section {
    background: var(--beige);
    padding: 13vh 9vw 7vh;
    position: relative;
    z-index: 20;
}
.seo-content-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4.4vw, 4.2rem);
    font-weight: 400;
    color: var(--bordeaux);
    line-height: 1.04;
    margin-bottom: 26px;
    max-width: 940px;
}
.seo-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3vw;
}
.seo-content-grid p {
    font-size: .98rem;
    font-weight: 300;
    color: var(--text);
    line-height: 1.82;
    letter-spacing: .02em;
    margin: 0;
}

/* FAQ */
.faq-section {
    background: var(--beige);
    padding: 2vh 9vw 8vh;
    position: relative;
    z-index: 20;
}
.faq-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.8vw, 3.3rem);
    font-weight: 400;
    color: var(--bordeaux);
    margin-bottom: 20px;
    line-height: 1.08;
}
.faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.faq-item {
    background: rgba(255,255,255,.42);
    border: 1px solid rgba(116,37,35,.14);
    border-radius: 12px;
    padding: 16px 18px;
}
.faq-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 8px;
}
.faq-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: .9rem;
    font-weight: 400;
    line-height: 1.72;
    color: rgba(30,18,16,.78);
    margin: 0;
}

/* BESICHTIGUNG CTA */
.visit-section {
    background: var(--beige); padding: 10vh 0 10vh 0;
    display: flex; align-items: center; justify-content: space-between;
    gap: 6vw; position: relative; z-index: 20;
}
.home-page .visit-section {
    padding: 10vh 9vw;
}
.visit-text { flex: 1; }
.visit-eyebrow {
    font-size: .75rem; font-weight: 500; letter-spacing: .28em;
    text-transform: uppercase; color: var(--bordeaux);
    margin-bottom: 18px; display: block;
}
.visit-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 400;
    color: var(--bordeaux); line-height: 1; margin-bottom: 16px;
}
.visit-text p {
    font-size: .98rem; font-weight: 300; color: var(--text);
    letter-spacing: .03em; line-height: 1.7; max-width: 460px;
}
.visit-cta {
    flex-shrink: 0; display: flex; flex-direction: column;
    align-items: flex-end; gap: 14px;
}
.visit-btn {
    display: inline-block; padding: 18px 44px;
    background: var(--bordeaux); color: #fff;
    font-size: .72rem; font-weight: 500; letter-spacing: .22em;
    text-transform: uppercase; text-decoration: none;
    border-radius: 100px; border: 1px solid var(--bordeaux);
    transition: background .4s, color .4s;
}
.visit-btn:hover { background: transparent; color: var(--bordeaux); }
.visit-btn-outline {
    display: inline-block; padding: 14px 36px;
    background: transparent; color: var(--bordeaux);
    font-size: .72rem; font-weight: 500; letter-spacing: .22em;
    text-transform: uppercase; text-decoration: none;
    border-radius: 100px; border: 1px solid rgba(116,37,35,.35);
    transition: background .4s, color .4s, border-color .4s;
}
.visit-btn-outline:hover { background: var(--bordeaux); color: #fff; border-color: var(--bordeaux); }
.visit-divider { width: 1px; min-height: 120px; background: rgba(116,37,35,.15); align-self: stretch; flex-shrink: 0; }

/* PRE-SERVICES VISIT CTA */
.pre-services-visit {
    background: var(--beige);
    padding: 3vh 9vw 9vh;
    position: relative;
    z-index: 20;
}
.pre-services-visit-inner {
    max-width: 980px;
    margin: 0 auto;
    border: 1px solid rgba(116,37,35,.14);
    background: linear-gradient(180deg, rgba(255,255,255,.34), rgba(255,255,255,.18));
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 26px;
    padding: 34px 36px;
}
.pre-services-visit-eyebrow {
    display: block;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--bordeaux);
    margin-bottom: 10px;
}
.pre-services-visit h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    font-weight: 400;
    color: var(--bordeaux);
    line-height: 1.04;
    margin-bottom: 12px;
}
.pre-services-visit p {
    max-width: 740px;
    font-size: .98rem;
    font-weight: 300;
    color: var(--text);
    line-height: 1.75;
    letter-spacing: .02em;
    margin-bottom: 18px;
}
.pre-services-visit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    border: 1px solid var(--bordeaux);
    background: var(--bordeaux);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s ease, color .25s ease;
}
.pre-services-visit-btn:hover {
    background: transparent;
    color: var(--bordeaux);
}

/* FOOTER */
footer {
    min-height: 100vh; display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    background: var(--beige); color: var(--dark); text-align: center;
    padding: 4vh 10vw 0vh 10vw; position: relative; z-index: 20;
}
footer h2 {
    font-family: 'Cormorant Garamond', serif;
     font-size: clamp(4rem, 9vw, 9rem); font-weight: 300; color: #525252;
    text-transform: uppercase; line-height: .95;
    margin-bottom: 6vh; letter-spacing: -.02em;
}
.cta-btn {
    font-size: .7rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
    padding: 18px 52px; border: 1px solid rgba(255,255,255,.3); border-radius: 100px;
    color: #fff; text-decoration: none;
    transition: background .4s, color .4s, border-color .4s; margin-bottom: 10vh;
}
.cta-btn:hover { background: #fff; color: var(--dark); border-color: #fff; }
.footer-info { display: flex; gap: 8vw; margin-bottom: 5vh; }
.footer-info > div { display: flex; flex-direction: column; gap: 7px; }
.footer-venue-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem !important; font-weight: 600 !important; letter-spacing: .08em !important; color: var(--bordeaux) !important; margin-bottom: 2px; }
.footer-info p, .footer-info a {
    font-size: .95rem; font-weight: 500; letter-spacing: .04em;
    color: rgba(30,18,16,.82); text-decoration: none; transition: color .3s;
}
.footer-contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.footer-contact-icon {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: .92;
}
.footer-info a:hover { color: var(--bordeaux); }
.footer-copy {
    font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
    color: rgba(30,18,16,.68); border-top: 1px solid rgba(116,37,35,.18);
    padding-top: 3vh; width: 100%; text-align: center;
}
.footer-copy-note {
    display: block;
    margin-top: 6px;
}
.footer-cta-btn {
    display: inline-block; font-family: 'Montserrat', sans-serif;
    font-size: .7rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
    padding: 17px 52px; border: 1px solid rgba(116,37,35,.45); border-radius: 100px;
    color: #fff; background: var(--bordeaux); text-decoration: none; cursor: pointer;
    transition: background .35s, color .35s, border-color .35s;
    margin-bottom: 9vh;
}
.footer-cta-btn:hover { background: #8f2e2b; color: #fff; border-color: #8f2e2b; }

/* ─── INQUIRY MODAL ──────────────────────────────── */
#inquiry-modal {
    position: fixed; inset: 0; z-index: 9600;
    display: flex; align-items: center; justify-content: center;
    transition: opacity .35s ease, visibility .35s ease;
}
#inquiry-modal.iq-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.iq-panel {
    position: relative; z-index: 1; background: #fffdfb;
    display: flex; max-width: 980px; width: calc(100% - 32px);
    height: 90vh; max-height: 740px;
    box-shadow: 0 32px 80px rgba(0,0,0,.28); overflow: hidden; border-radius: 4px;
}
/* ── Light Sidebar ── */
.iq-sidebar {
    width: 290px; min-width: 260px;
    background: #fff8f2;
    border-right: 1px solid #ecddd3;
    padding: 40px 30px 36px; display: flex; flex-direction: column;
    flex-shrink: 0; height: 100%; overflow-y: auto; box-sizing: border-box;
}
.iq-sidebar img { width: 130px; margin-bottom: 30px; }
.iq-sidebar-eyebrow {
    font-family: 'Montserrat', sans-serif; font-size: .58rem; font-weight: 600;
    letter-spacing: .28em; text-transform: capitalize; color: rgba(116,37,35,.55);
    margin-bottom: 6px;
}
.iq-sidebar h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400;
    color: var(--dark); line-height: 1.15; margin-bottom: 24px;
}
.iq-sidebar-divider {
    width: 36px; height: 1px; background: rgba(116,37,35,.3); margin-bottom: 24px;
}
/* ── Step progress in sidebar ── */
.iq-progress { display: flex; flex-direction: column; gap: 0; margin-bottom: 28px; }
.iq-sidebar .iq-progress {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    padding: 0;
    justify-content: flex-start;
    align-items: stretch;
    border: 0;
    background: transparent;
    z-index: auto;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.iq-progress-item {
    display: flex; align-items: flex-start; gap: 14px; position: relative;
}
.iq-progress-item:not(:last-child)::after {
    content: ''; position: absolute; left: 13px; top: 28px;
    width: 1px; height: calc(100% - 4px); background: rgba(116,37,35,.15);
}
.iq-prog-dot {
    width: 27px; height: 27px; border-radius: 50%; border: 1.5px solid rgba(116,37,35,.25);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif; font-size: .58rem; font-weight: 700;
    color: rgba(116,37,35,.4); background: #fff; flex-shrink: 0; transition: all .3s; z-index: 1;
}
.iq-prog-dot.active { background: var(--bordeaux); border-color: var(--bordeaux); color: #fff; }
.iq-prog-dot.done { background: rgba(116,37,35,.08); border-color: var(--bordeaux); color: var(--bordeaux); }
.iq-prog-dot.done::before { content: '✓'; font-size: .6rem; }
.iq-prog-dot.done span { display: none; }
.iq-prog-label {
    padding: 4px 0 20px;
    font-family: 'Montserrat', sans-serif; font-size: .68rem; font-weight: 400;
    line-height: 1.4;
}
.iq-prog-label strong {
    display: block; font-weight: 600; letter-spacing: .04em;
    color: var(--dark); font-size: .7rem;
}
.iq-prog-label span { color: rgba(30,18,16,.5); font-size: .68rem; }
.iq-progress-item.active .iq-prog-label strong { color: var(--bordeaux); }
.iq-sidebar-meta { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.iq-sidebar-meta-item {
    display: flex; align-items: flex-start; gap: 10px;
    font-family: 'Montserrat', sans-serif; font-size: .76rem; font-weight: 400;
    color: rgba(30,18,16,.65); line-height: 1.55;
}
.iq-sidebar-meta-item svg {
    width: 13px; height: 13px; stroke: var(--bordeaux); fill: none;
    stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
    flex-shrink: 0; margin-top: 2px;
}
/* ── Content area ── */
.iq-content {
    flex: 1; min-height: 0; padding: 44px 40px 36px; overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; display: flex; flex-direction: column; height: 100%; box-sizing: border-box;
}
.iq-content, .iq-sidebar {
    scrollbar-width: thin;
    scrollbar-color: var(--bordeaux) rgba(116,37,35,.12);
}
.iq-content::-webkit-scrollbar,
.iq-sidebar::-webkit-scrollbar {
    width: 10px;
}
.iq-content::-webkit-scrollbar-track,
.iq-sidebar::-webkit-scrollbar-track {
    background: rgba(116,37,35,.1);
    border-radius: 10px;
}
.iq-content::-webkit-scrollbar-thumb,
.iq-sidebar::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8f3431 0%, var(--bordeaux) 100%);
    border-radius: 10px;
    border: 2px solid rgba(255,248,242,.9);
}
.iq-close {
    position: absolute; top: 16px; right: 18px; z-index: 10;
    background: none; border: none; cursor: pointer; padding: 8px;
    color: rgba(30,18,16,.35); transition: color .2s;
}
.iq-close:hover { color: var(--bordeaux); }
.iq-step-title {
    font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 400;
    color: var(--dark); margin-bottom: 5px;
}
.iq-step-sub {
    font-family: 'Montserrat', sans-serif; font-size: .78rem; font-weight: 400;
    letter-spacing: .02em; color: rgba(30,18,16,.52); margin-bottom: 26px;
}
.iq-form { display: flex; flex-direction: column; gap: 14px; }
.iq-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.iq-field { display: flex; flex-direction: column; gap: 6px; }
.iq-field label {
    font-family: 'Montserrat', sans-serif; font-size: .7rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase; color: rgba(30,18,16,.58);
}
.iq-field input, .iq-field select, .iq-field textarea {
    font-family: 'Montserrat', sans-serif; font-size: .86rem; font-weight: 400;
    color: var(--dark); background: #fff;
    border: 1px solid rgba(116,37,35,.18); border-radius: 8px;
    padding: 11px 13px; outline: none; transition: border-color .2s, box-shadow .2s;
    appearance: none; -webkit-appearance: none; width: 100%; box-sizing: border-box;
}
.iq-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23742523'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px;
}
.iq-field textarea { resize: vertical; min-height: 88px; }
.iq-field input:focus, .iq-field select:focus, .iq-field textarea:focus {
    border-color: var(--bordeaux); box-shadow: 0 0 0 3px rgba(116,37,35,.08);
}
.iq-field input::placeholder, .iq-field textarea::placeholder { color: rgba(30,18,16,.25); }
/* ── Option cards (Zusatzleistungen) ── */
.iq-options-top-bar {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px;
}
.iq-options-top-bar > span {
    font-family: 'Montserrat', sans-serif; font-size: .68rem; color: rgba(30,18,16,.42);
}
.iq-select-all {
    font-family: 'Montserrat', sans-serif; font-size: .68rem; font-weight: 600;
    color: var(--bordeaux); background: none; border: none; cursor: pointer; padding: 0;
    text-decoration: underline; text-underline-offset: 3px; transition: opacity .2s;
}
.iq-select-all:hover { opacity: .65; }
.iq-options-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 4px; align-items: stretch;
}
.iq-option {
    position: relative; cursor: pointer; display: flex; height: 100%;
}
.iq-option input[type="checkbox"] {
    position: absolute; opacity: 0; width: 0; height: 0;
}
.iq-option-card {
    display: flex; align-items: flex-start; gap: 12px;
    border: 1px solid rgba(116,37,35,.16); border-radius: 12px;
    padding: 15px 15px; background: #fff; width: 100%; min-height: 88px;
    transition: border-color .2s, background .2s, box-shadow .2s;
    cursor: pointer; user-select: none;
}
.iq-option input:checked + .iq-option-card {
    border-color: var(--bordeaux); background: rgba(116,37,35,.04);
    box-shadow: 0 0 0 2.5px rgba(116,37,35,.12);
}
/* Locked (Pflichtleistung) card */
.iq-option-locked { cursor: default; }
.iq-option-locked .iq-option-card {
    border-color: var(--bordeaux); background: rgba(116,37,35,.04);
    cursor: default; box-shadow: 0 0 0 2px rgba(116,37,35,.1);
    position: relative; padding-right: 46px;
}
.iq-option-badge {
    font-family: 'Montserrat', sans-serif; font-size: .6rem; font-weight: 700;
    letter-spacing: .03em; text-transform: none;
    background: var(--bordeaux); color: #fff;
    padding: 2px 7px; border-radius: 99px; white-space: nowrap;
    display: block; width: max-content; margin: 6px auto 0;
}
.iq-option-locked .iq-option-badge { color: #fff !important; }
.iq-locked-shield {
    position: absolute; top: 11px; right: 11px;
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--bordeaux);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 2px rgba(255,255,255,.95);
}
.iq-locked-shield svg {
    width: 12px; height: 12px; stroke: #fff; fill: none;
    stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.iq-option-icon {
    width: 38px; height: 38px; border-radius: 9px;
    background: rgba(116,37,35,.07); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.iq-option-icon svg {
    width: 18px; height: 18px; stroke: var(--bordeaux); fill: none;
    stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.iq-option-text { flex: 1; min-width: 0; }
.iq-option-text strong {
    display: block; font-family: 'Montserrat', sans-serif; font-size: .87rem;
    font-weight: 700; color: var(--dark); margin-bottom: 4px;
}
.iq-option-text span {
    font-family: 'Montserrat', sans-serif; font-size: .74rem;
    color: rgba(30,18,16,.58); line-height: 1.5; display: block;
}
.iq-check-mark {
    width: 20px; height: 20px; border-radius: 50%;
    border: 1.5px solid rgba(116,37,35,.22);
    display: flex; align-items: center; justify-content: center;
    margin-left: auto; flex-shrink: 0; margin-top: 2px;
    transition: background .2s, border-color .2s;
}
.iq-option input:checked ~ .iq-option-card .iq-check-mark {
    background: var(--bordeaux); border-color: var(--bordeaux);
}
.iq-check-mark::after {
    content: ''; display: block; width: 5px; height: 8px;
    border-right: 1.8px solid #fff; border-bottom: 1.8px solid #fff;
    transform: rotate(45deg) translate(-1px,-1px); opacity: 0;
    transition: opacity .15s;
}
.iq-option input:checked ~ .iq-option-card .iq-check-mark::after { opacity: 1; }
/* ── Catering detail styles ── */
.iq-catering-section { margin-bottom: 24px; }
.iq-catering-section h4 {
    font-family: 'Montserrat', sans-serif; font-size: .7rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase; color: rgba(30,18,16,.55);
    margin-bottom: 13px; padding-bottom: 9px;
    border-bottom: 1px solid rgba(116,37,35,.1);
}
.iq-menu-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px;
}
.iq-menu-option { position: relative; display: flex; }
.iq-menu-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.iq-menu-card {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 16px 8px 14px; border: 1.5px solid rgba(116,37,35,.15); border-radius: 12px;
    background: #fff; cursor: pointer; transition: all .2s; gap: 7px; width: 100%;
}
.iq-menu-card:hover { border-color: rgba(116,37,35,.38); }
.iq-menu-option input:checked + .iq-menu-card {
    border-color: var(--bordeaux); background: rgba(116,37,35,.05);
    box-shadow: 0 0 0 2.5px rgba(116,37,35,.12);
}
.iq-menu-emoji { font-size: 1.6rem; line-height: 1; }
.iq-menu-name {
    font-family: 'Montserrat', sans-serif; font-size: .78rem; font-weight: 700;
    color: var(--dark); line-height: 1.3;
}
.iq-menu-desc {
    font-family: 'Montserrat', sans-serif; font-size: .68rem;
    color: rgba(30,18,16,.52); line-height: 1.4;
}
.iq-chip-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.iq-chip-option { position: relative; }
.iq-chip-option input[type="checkbox"],
.iq-chip-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.iq-chip-label {
    display: flex; align-items: center; gap: 5px; padding: 9px 15px;
    border: 1.5px solid rgba(116,37,35,.18); border-radius: 99px;
    font-family: 'Montserrat', sans-serif; font-size: .78rem; font-weight: 500;
    color: rgba(30,18,16,.6); background: #fff; cursor: pointer;
    transition: all .2s; line-height: 1; user-select: none;
}
.iq-chip-label:hover { border-color: var(--bordeaux); color: var(--dark); }
.iq-chip-option input:checked + .iq-chip-label {
    background: var(--bordeaux); border-color: var(--bordeaux); color: #fff;
}
.iq-chip-option input:disabled + .iq-chip-label { opacity: .85; cursor: default; }
.iq-chip-icon { font-size: .9rem; }
/* ── Custom Datepicker ── */
.iq-dp { position: relative; }
.iq-dp-trigger {
    width: 100%; display: flex; align-items: center; gap: 10px;
    padding: 11px 42px 11px 14px; background: #fff; border: 1px solid rgba(116,37,35,.18);
    border-radius: 8px; cursor: pointer; font-family: 'Montserrat', sans-serif;
    font-size: .86rem; font-weight: 400; color: var(--dark); text-align: left;
    transition: border-color .2s, box-shadow .2s; box-sizing: border-box;
}
.iq-dp-trigger.open, .iq-dp-trigger:focus-visible {
    border-color: var(--bordeaux); box-shadow: 0 0 0 3px rgba(116,37,35,.08); outline: none;
}
.iq-dp-trigger > svg { flex-shrink: 0; stroke: rgba(116,37,35,.55); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.iq-dp-trigger-label { flex: 1; color: rgba(30,18,16,.35); font-size: .86rem; }
.iq-dp-trigger-label.has-value { color: var(--dark); }
.iq-dp-clear {
    position: absolute; top: 50%; right: 10px; transform: translateY(-50%);
    background: none; border: none; cursor: pointer; padding: 2px 4px; color: rgba(30,18,16,.3);
    font-size: 1.05rem; line-height: 1; display: none; z-index: 3;
}
.iq-dp-clear.visible { display: block; }
.iq-dp-clear:hover { color: var(--bordeaux); }
.iq-dp-popup {
    position: absolute; top: calc(100% + 6px); left: 0; z-index: 200;
    background: #fff; border: 1px solid rgba(116,37,35,.15); border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0,0,0,.16); padding: 18px 16px; width: 100%; min-width: 280px; display: none;
}
.iq-dp-popup.open { display: block; }
.iq-dp-head {
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px;
}
.iq-dp-nbtn {
    background: rgba(116,37,35,.07); border: none; cursor: pointer; padding: 7px 12px;
    border-radius: 8px; font-size: 1rem; color: var(--bordeaux); transition: background .2s; line-height: 1;
}
.iq-dp-nbtn:hover { background: rgba(116,37,35,.16); }
.iq-dp-title {
    font-family: 'Montserrat', sans-serif; font-size: .76rem; font-weight: 700;
    letter-spacing: .06em; color: var(--dark);
}
.iq-dp-wdays {
    display: grid; grid-template-columns: repeat(7,1fr); text-align: center; margin-bottom: 4px;
}
.iq-dp-wdays span {
    font-family: 'Montserrat', sans-serif; font-size: .6rem; font-weight: 700;
    letter-spacing: .06em; color: rgba(30,18,16,.32); padding: 3px 0; text-transform: uppercase;
}
.iq-dp-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 1px; }
.iq-dp-day {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif; font-size: .76rem;
    border-radius: 50%; cursor: pointer; border: none; background: none; color: var(--dark);
    transition: background .15s, color .15s;
}
.iq-dp-day:hover:not(.dp-off):not(.dp-sel) { background: rgba(116,37,35,.1); }
.iq-dp-day.dp-today { font-weight: 800; color: var(--bordeaux); }
.iq-dp-day.dp-sel { background: var(--bordeaux) !important; color: #fff !important; font-weight: 700; border-radius: 50%; }
.iq-dp-day.dp-off { opacity: .2; cursor: not-allowed; pointer-events: none; }
.iq-dp-day.dp-other { opacity: .28; }
.iq-form-row-dates .iq-field { min-width: 0; }
/* ── Budget row ── */
.iq-budget-wrap { display: flex; flex-direction: column; gap: 10px; }
.iq-budget-type { display: flex; gap: 8px; }
.iq-radio-pill { position: relative; }
.iq-radio-pill input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.iq-radio-pill label {
    display: inline-block; padding: 8px 18px;
    border: 1px solid rgba(116,37,35,.2); border-radius: 999px;
    font-family: 'Montserrat', sans-serif; font-size: .65rem; font-weight: 500;
    letter-spacing: .08em; text-transform: uppercase; color: rgba(30,18,16,.55);
    cursor: pointer; transition: all .2s; text-transform: none;
}
.iq-radio-pill input:checked + label {
    background: var(--bordeaux); border-color: var(--bordeaux); color: #fff;
}
/* ── Nav buttons ── */
.iq-nav { display: flex; align-items: center; gap: 12px; margin-top: 6px; flex-wrap: wrap; }
.iq-btn-primary {
    font-family: 'Montserrat', sans-serif; font-size: .7rem; font-weight: 600;
    letter-spacing: .14em; text-transform: uppercase; cursor: pointer;
    background: var(--bordeaux); color: #fff; border: none;
    padding: 14px 36px; border-radius: 8px;
    transition: background .25s; flex-shrink: 0;
}
.iq-btn-primary:hover { background: #5c1b1a; }
.iq-btn-primary:disabled { opacity: .5; cursor: not-allowed; }
.iq-btn-back {
    background: none; border: none; cursor: pointer; padding: 0;
    font-family: 'Montserrat', sans-serif; font-size: .68rem; font-weight: 500;
    letter-spacing: .08em; color: rgba(30,18,16,.45); display: flex; align-items: center; gap: 6px;
    transition: color .2s;
}
.iq-btn-back:hover { color: var(--bordeaux); }
.iq-btn-back svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.iq-btn-secondary {
    font-family: 'Montserrat', sans-serif; font-size: .68rem; font-weight: 500;
    letter-spacing: .12em; text-transform: uppercase; cursor: pointer;
    background: transparent; color: rgba(30,18,16,.55);
    border: 1px solid rgba(30,18,16,.22); padding: 12px 28px; border-radius: 8px;
    transition: border-color .2s, color .2s;
}
.iq-btn-secondary:hover { color: var(--dark); border-color: var(--dark); }
.iq-form-error {
    font-family: 'Montserrat', sans-serif; font-size: .72rem; color: #b02020;
    display: none; margin-top: 4px;
}
/* ── Success ── */
.iq-success {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; text-align: center; padding: 28px 8px 20px; overflow-y: auto;
}
.iq-success-icon {
    width: 64px; height: 64px; border-radius: 50%; border: 1.5px solid var(--bordeaux);
    display: flex; align-items: center; justify-content: center; margin-bottom: 22px; flex-shrink: 0;
}
.iq-success-icon svg { width: 26px; height: 26px; stroke: var(--bordeaux); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.iq-success h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem; font-weight: 400; color: var(--dark); margin-bottom: 10px;
}
.iq-success p {
    font-size: .88rem; color: rgba(30,18,16,.62);
    font-family: 'Montserrat', sans-serif; line-height: 1.76; max-width: 320px;
}
.iq-success-details {
    width: 100%; max-width: 380px; margin-top: 20px;
    background: rgba(116,37,35,.04); border: 1px solid rgba(116,37,35,.14);
    border-radius: 12px; overflow: hidden; text-align: left;
}
.iq-success-details table { width: 100%; border-collapse: collapse; }
.iq-success-details td {
    font-family: 'Montserrat', sans-serif; font-size: .78rem; line-height: 1.55;
    padding: 10px 14px; border-bottom: 1px solid rgba(116,37,35,.09); vertical-align: top;
}
.iq-success-details tr:last-child td { border-bottom: none; }
.iq-success-details .isd-lbl { color: rgba(30,18,16,.42); width: 38%; }
.iq-success-details .isd-val { color: var(--dark); font-weight: 600; }

/* ─── CALL MODAL ──────────────────────────────── */
#call-modal {
    position: fixed; inset: 0; z-index: 9700;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    transition: opacity .3s ease, visibility .3s ease;
}
#call-modal.cm-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.cm-panel {
    position: relative; z-index: 1;
    width: min(460px, calc(100% - 24px));
    background: #fffdfb;
    border: 1px solid rgba(116,37,35,.14);
    border-radius: 14px;
    box-shadow: 0 28px 72px rgba(0,0,0,.24);
    padding: 26px 24px 22px;
    text-align: center;
}
.cm-close {
    position: absolute; top: 12px; right: 12px;
    width: 30px; height: 30px; border-radius: 50%;
    border: none; background: rgba(116,37,35,.08);
    color: rgba(30,18,16,.6); cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .2s, color .2s;
}
.cm-close:hover { background: rgba(116,37,35,.14); color: var(--bordeaux); }
.cm-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 400; color: var(--dark);
    margin: 2px 0 8px;
}
.cm-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: .82rem; color: rgba(30,18,16,.58);
    margin: 0 0 18px;
}
.cm-number {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem; font-weight: 600; letter-spacing: .02em;
    color: var(--bordeaux); text-decoration: none;
    margin-bottom: 18px;
}
.cm-actions {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    flex-wrap: wrap;
}
.cm-btn-call {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 176px;
    border: 1px solid var(--bordeaux); border-radius: 8px;
    background: var(--bordeaux); color: #fff;
    padding: 12px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
    text-decoration: none; transition: background .2s;
}
.cm-btn-call:hover { background: #5c1b1a; }
.cm-btn-cancel {
    border: 1px solid rgba(30,18,16,.2); border-radius: 8px;
    background: transparent; color: rgba(30,18,16,.7);
    padding: 12px 18px; cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
}
.cm-btn-cancel:hover { border-color: rgba(30,18,16,.5); color: var(--dark); }

/* ─── BOOKING MODAL ──────────────────────────────── */
#booking-modal {
    position: fixed; inset: 0; z-index: 9500;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    transition: opacity .35s ease, visibility .35s ease;
}
#booking-modal.bk-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.bk-overlay {
    position: absolute; inset: 0;
    background: rgba(10,8,6,.52);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.bk-panel {
    position: relative; z-index: 1;
    background: var(--beige);
    display: flex;
    max-width: 980px; width: 100%; min-height: 600px; max-height: 94vh;
    box-shadow: 0 32px 80px rgba(0,0,0,.24);
    overflow: hidden;
}
/* ── Sidebar ── */
.bk-sidebar {
    width: 270px; flex-shrink: 0;
    background: #f0ebe4;
    padding: 44px 32px;
    display: flex; flex-direction: column;
    border-right: 1px solid rgba(116,37,35,.12);
}
.brand-name { text-transform: uppercase; }
.bk-sidebar img { width: 120px; margin-bottom: 36px; }
.bk-sidebar-type {
    font-size: .65rem; letter-spacing: .18em; text-transform: capitalize;
    color: var(--bordeaux); margin-bottom: 9px;
    font-family: 'Montserrat', sans-serif; font-weight: 500;
}
.bk-sidebar h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 400; color: var(--dark);
    margin-bottom: 24px; line-height: 1.2;
}
.bk-sidebar-meta { display: flex; flex-direction: column; gap: 14px; margin-bottom: auto; }
.bk-sidebar-meta-item {
    display: flex; align-items: flex-start; gap: 11px;
    font-size: .84rem; color: rgba(30,18,16,.66);
    font-family: 'Montserrat', sans-serif; font-weight: 400; line-height: 1.5;
}
.bk-sidebar-meta-item svg {
    width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px;
    stroke: var(--bordeaux); fill: none; stroke-width: 1.6;
    stroke-linecap: round; stroke-linejoin: round;
}
.bk-selected-summary {
    margin-top: 28px; padding-top: 22px;
    border-top: 1px solid rgba(116,37,35,.15);
    display: none;
}
.bk-selected-summary.visible { display: block; }
.bk-selected-date {
    font-family: 'Montserrat', sans-serif;
    font-size: .82rem; font-weight: 500; color: var(--bordeaux); line-height: 1.65;
}
/* ── Content ── */
.bk-content {
    flex: 1; min-height: 0; height: 100%; box-sizing: border-box;
    overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; overflow-x: hidden;
    touch-action: pan-y;
    padding: 44px 44px;
    display: flex; flex-direction: column;
}
.bk-content::-webkit-scrollbar { width: 4px; }
.bk-content::-webkit-scrollbar-track { background: transparent; }
.bk-content::-webkit-scrollbar-thumb { background: rgba(116,37,35,.18); border-radius: 2px; }
/* ── Close ── */
.bk-close {
    position: absolute; top: 16px; right: 18px;
    width: 30px; height: 30px; background: none; border: none; cursor: pointer;
    color: rgba(30,18,16,.38); display: flex; align-items: center; justify-content: center;
    transition: color .2s; z-index: 10; padding: 0;
}
.bk-close:hover { color: var(--bordeaux); }
/* ── Step titles ── */
.bk-step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem; font-weight: 400; color: var(--dark); margin-bottom: 5px;
}
.bk-step-sub {
    font-size: .78rem; font-weight: 400; letter-spacing: .04em;
    color: rgba(30,18,16,.5); margin-bottom: 28px;
    font-family: 'Montserrat', sans-serif;
}
/* ── Steps indicator ── */
.bk-steps-indicator { display: flex; align-items: center; gap: 6px; margin-bottom: 24px; }
.bk-step-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(116,37,35,.18); transition: background .3s, transform .3s;
}
.bk-step-dot.active { background: var(--bordeaux); transform: scale(1.35); }
.bk-step-dot.done { background: rgba(116,37,35,.42); }
/* ── Calendar ── */
.bk-date-time-wrap { display: flex; gap: 24px; flex: 1; }
.bk-cal-col { flex: 1; }
.bk-cal-nav {
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px;
}
.bk-cal-nav-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-weight: 400; color: var(--dark);
}
.bk-cal-nav-btn {
    width: 34px; height: 34px; border: 1px solid rgba(116,37,35,.22);
    background: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: var(--bordeaux); transition: background .2s, border-color .2s; padding: 0;
}
.bk-cal-nav-btn:hover { background: var(--bordeaux); color: #fff; border-color: var(--bordeaux); }
.bk-cal-nav-btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bk-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.bk-cal-dow {
    text-align: center; font-size: .65rem; letter-spacing: .06em; text-transform: uppercase;
    color: rgba(30,18,16,.42); font-family: 'Montserrat', sans-serif; font-weight: 500;
    padding: 5px 0 10px;
}
.bk-day {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    font-size: .88rem; cursor: pointer; border-radius: 50%;
    font-family: 'Montserrat', sans-serif; font-weight: 400; color: var(--dark);
    transition: background .18s, color .18s; border: none; background: transparent; padding: 0;
}
.bk-day:not(.bk-day-disabled):not(.bk-day-empty):hover { background: rgba(116,37,35,.12); color: var(--bordeaux); }
.bk-day.bk-day-selected { background: var(--bordeaux) !important; color: #fff !important; border-radius: 50%; }
.bk-day.bk-day-disabled { color: rgba(30,18,16,.2); cursor: default; pointer-events: none; }
.bk-day.bk-day-today:not(.bk-day-selected) { font-weight: 700; color: var(--bordeaux); }
.bk-day.bk-day-empty { pointer-events: none; }
/* ── Time slots ── */
.bk-slots-col {
    width: 180px; flex-shrink: 0; display: flex; flex-direction: column;
    border-left: 1px solid rgba(116,37,35,.12); padding-left: 26px;
    opacity: 1; pointer-events: all; transition: opacity .3s ease;
    max-height: 400px; overflow-y: auto;
}
.bk-slots-col.visible { opacity: 1; pointer-events: all; }
.bk-slots-col::-webkit-scrollbar { width: 3px; }
.bk-slots-col::-webkit-scrollbar-thumb { background: rgba(116,37,35,.2); }
.bk-slots-label {
    font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
    color: rgba(30,18,16,.48); margin-bottom: 14px;
    font-family: 'Montserrat', sans-serif; font-weight: 500;
}
.bk-slot-btn {
    display: block; width: 100%; margin-bottom: 8px;
    padding: 12px 0; border: 1px solid rgba(116,37,35,.28);
    background: transparent; cursor: pointer; text-align: center;
    font-size: .82rem; font-weight: 500; letter-spacing: .08em;
    font-family: 'Montserrat', sans-serif; color: var(--bordeaux);
    transition: background .18s, color .18s, border-color .18s;
}
.bk-slot-btn:hover, .bk-slot-btn.bk-slot-selected {
    background: var(--bordeaux); color: #fff; border-color: var(--bordeaux);
}
/* ── Confirm row ── */
.bk-slot-confirm {
    display: flex; gap: 14px; align-items: center; margin-top: 22px;
    padding-top: 20px; border-top: 1px solid rgba(116,37,35,.1); flex-wrap: wrap;
}
.bk-confirm-hint {
    font-size: .78rem; font-family: 'Montserrat', sans-serif;
    color: rgba(30,18,16,.46);
}
/* ── Buttons ── */
.bk-btn-primary {
    padding: 14px 36px;
    font-size: .7rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
    background: var(--bordeaux); color: #fff; border: 1px solid var(--bordeaux);
    cursor: pointer; transition: background .28s, color .28s;
    font-family: 'Montserrat', sans-serif;
}
.bk-btn-primary:hover:not(:disabled) { background: transparent; color: var(--bordeaux); }
.bk-btn-primary:disabled { opacity: .38; cursor: default; }
.bk-btn-secondary {
    padding: 14px 28px;
    font-size: .7rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
    background: transparent; color: rgba(30,18,16,.55); border: 1px solid rgba(30,18,16,.22);
    cursor: pointer; transition: border-color .28s, color .28s;
    font-family: 'Montserrat', sans-serif;
}
.bk-btn-secondary:hover { color: var(--dark); border-color: var(--dark); }
/* ── Back button ── */
.bk-back {
    background: none; border: none; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--bordeaux); font-family: 'Montserrat', sans-serif;
    margin-bottom: 22px; padding: 7px 13px 7px 9px;
    border: 1px solid rgba(116,37,35,.22); border-radius: 999px;
    transition: background .18s, border-color .18s;
}
.bk-back:hover { background: rgba(116,37,35,.07); border-color: var(--bordeaux); }
.bk-back svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
/* ── Form ── */
.bk-form { display: flex; flex-direction: column; gap: 14px; }
.bk-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.bk-field { display: flex; flex-direction: column; gap: 5px; }
.bk-field label {
    font-size: .66rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
    color: rgba(30,18,16,.55); font-family: 'Montserrat', sans-serif;
}
.bk-field input, .bk-field select, .bk-field textarea {
    padding: 13px 15px; border: 1px solid rgba(116,37,35,.22);
    background: transparent; font-family: 'Montserrat', sans-serif;
    font-size: .92rem; color: var(--dark); outline: none;
    transition: border-color .22s; -webkit-appearance: none; appearance: none;
    border-radius: 0;
}
.bk-field input:focus, .bk-field select:focus, .bk-field textarea:focus { border-color: var(--bordeaux); }
.bk-field input::placeholder, .bk-field textarea::placeholder { color: rgba(30,18,16,.28); }
.bk-field textarea { resize: vertical; min-height: 86px; }
.bk-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23742523' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 13px center; padding-right: 34px; cursor: pointer;
}
.bk-field select option { color: var(--dark); background: var(--beige); }
.bk-consent-wrap {
    margin-top: 2px;
    padding: 10px 12px;
    border: 1px solid rgba(116,37,35,.16);
    background: rgba(116,37,35,.03);
}
.bk-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: .7rem;
    line-height: 1.65;
    color: rgba(30,18,16,.74);
    letter-spacing: .01em;
    text-transform: none;
}
.bk-consent-label input[type='checkbox'] {
    margin-top: 2px;
    width: 15px;
    height: 15px;
    accent-color: var(--bordeaux);
    flex: 0 0 auto;
}
.bk-consent-label a {
    color: var(--bordeaux);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.bk-consent-note {
    margin: 8px 0 0;
    font-family: 'Montserrat', sans-serif;
    font-size: .65rem;
    line-height: 1.6;
    color: rgba(30,18,16,.5);
}
.bk-form-error { font-size: .7rem; color: #b83232; font-family: 'Montserrat', sans-serif; margin-top: 2px; display: none; }
/* ── Success ── */
.bk-success {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; text-align: center; padding: 28px 8px 20px;
    overflow-y: auto;
}
.bk-success-icon {
    width: 62px; height: 62px; border-radius: 50%;
    border: 1.5px solid var(--bordeaux);
    display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
    flex-shrink: 0;
}
.bk-success-icon svg { width: 26px; height: 26px; stroke: var(--bordeaux); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.bk-success h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem; font-weight: 400; color: var(--dark); margin-bottom: 10px;
}
.bk-success p {
    font-size: .88rem; color: rgba(30,18,16,.62);
    font-family: 'Montserrat', sans-serif; line-height: 1.76; max-width: 320px;
}
.bk-success-details {
    width: 100%; max-width: 360px; margin-top: 20px;
    background: rgba(116,37,35,.04); border: 1px solid rgba(116,37,35,.14);
    border-radius: 12px; overflow: hidden; text-align: left;
}
.bk-success-details table { width: 100%; border-collapse: collapse; }
.bk-success-details td {
    font-family: 'Montserrat', sans-serif; font-size: .78rem; line-height: 1.55;
    padding: 10px 14px; border-bottom: 1px solid rgba(116,37,35,.09);
    vertical-align: top;
}
.bk-success-details tr:last-child td { border-bottom: none; }
.bk-success-details .sd-lbl { color: rgba(30,18,16,.42); width: 42%; }
.bk-success-details .sd-val { color: var(--dark); font-weight: 600; }
/* ── Mobile ── */
@media (max-width: 680px) {
    #booking-modal { padding: 0; align-items: stretch; }
    .bk-panel {
        flex-direction: column;
        width: 100%; height: 100dvh; max-height: 100dvh;
        min-height: 0; border-radius: 0; box-shadow: none;
    }
    /* Kompakte zentrierte Kopfzeile */
    .bk-sidebar {
        width: 100%;
        flex-direction: column; align-items: center; justify-content: center;
        gap: 4px; flex-shrink: 0;
        padding: 16px 52px 14px;
        border-right: none;
        border-bottom: 1px solid rgba(116,37,35,.12);
        position: relative;
    }
    .bk-sidebar img { width: 52px; margin-bottom: 4px; }
    .bk-sidebar-type { display: none; }
    .bk-sidebar h3 {
        font-size: 1rem; text-align: center;
        white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
        max-width: 100%; margin-bottom: 0;
    }
    .bk-sidebar-meta { display: none; }
    .bk-selected-summary { margin-top: 2px; padding-top: 0; border: none; text-align: center; display: block; }
    /* Schließen-Button bleibt oben rechts */
    .bk-close { top: 14px; right: 14px; }
    /* Scrollbarer Content-Bereich */
    .bk-content {
        padding: 18px 20px 20px;
        flex: 1; min-height: 0; height: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        touch-action: pan-y;
    }
    .bk-step-title { font-size: 1.5rem; margin-bottom: 3px; }
    .bk-step-sub { margin-bottom: 18px; }
    .bk-form-row { grid-template-columns: 1fr; }
    .bk-date-time-wrap { flex-direction: column; gap: 0; }
    /* Slots im Kalender-View ausblenden – erscheinen im eigenen View */
    .bk-slots-col:not(.bk-slots-col--mobile) { display: none !important; }
    /* Slot-View: Datums-Anzeige */
    .bk-slots-date-display {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.9rem; font-weight: 400; color: var(--bordeaux);
        margin-bottom: 4px; line-height: 1.1;
    }
    /* Slot-View: Uhrzeiten als Flex-Grid */
    #bk-slots-list-mobile {
        display: flex; flex-wrap: wrap; gap: 9px; width: 100%; margin-top: 12px;
    }
    #bk-slots-list-mobile .bk-slot-btn {
        display: inline-flex !important; align-items: center; justify-content: center;
        width: auto !important; flex: 1; min-width: 80px; margin-bottom: 0;
    }
    .bk-slot-btn {
        display: inline-flex; align-items: center; justify-content: center;
        width: auto !important; flex: 1; min-width: 72px; margin-bottom: 0;
    }
}

@media (max-width: 680px) {
    /* Panel: Vollbild, Sidebar weg */
    .iq-panel {
        flex-direction: column;
        width: 100%;
        height: 100dvh;
        max-height: 100dvh;
        border-radius: 0;
        box-shadow: none;
    }

    /* Sidebar wird zu schmalem Top-Bar mit Logo + Step-Dots */
    .iq-sidebar {
        width: 100%;
        min-width: 0;
        flex-shrink: 0;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: calc(14px + env(safe-area-inset-top)) 20px 12px;
        border-right: none;
        border-bottom: 1px solid rgba(116,37,35,.12);
        height: auto;
        overflow: visible;
    }
    .iq-sidebar img { width: 72px; margin-bottom: 0; flex-shrink: 0; }
    .iq-sidebar h3,
    .iq-sidebar-eyebrow,
    .iq-sidebar-divider,
    .iq-sidebar-meta { display: none; }

    /* Progress im Top-Bar: horizontal als Dots-Reihe */
    .iq-sidebar .iq-progress {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 6px;
        margin-bottom: 0;
    }
    .iq-progress-item {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .iq-progress-item:not(:last-child)::after { display: none; }
    .iq-prog-dot {
        width: 24px;
        height: 24px;
        font-size: .55rem;
    }
    .iq-prog-label { display: none; }

    /* Fortschritts-Linie zwischen Dots */
    .iq-progress-item:not(:last-child) {
        position: relative;
    }
    .iq-progress-item:not(:last-child)::before {
        content: '';
        display: block;
        width: 18px;
        height: 1px;
        background: rgba(116,37,35,.2);
        margin: 0 2px;
        align-self: center;
        order: 2;
    }

    /* Content: scrollbarer Bereich */
    .iq-content {
        flex: 1;
        min-height: 0;
        padding: 20px 18px calc(16px + env(safe-area-inset-bottom));
        overflow-y: auto;
    }
    .iq-step-title { font-size: 1.55rem; margin-bottom: 4px; }
    .iq-step-sub { font-size: .74rem; margin-bottom: 18px; }

    /* Formularlayout: 1 Spalte */
    .iq-form-row,
    .iq-options-grid,
    .iq-menu-grid { grid-template-columns: 1fr; }

    /* Close-Button: oben rechts im Content */
    .iq-close { top: calc(12px + env(safe-area-inset-top)); right: 14px; }

    /* Options-Karten kompakter */
    .iq-option-card { min-height: unset; padding: 12px; }
    .iq-option-text strong { font-size: .82rem; }
    .iq-option-text span { font-size: .7rem; }
}

@media (hover: none), (pointer: coarse) {
    #cursor-dot { display: none !important; }
}

/* TABLET */
@media (max-width: 1024px) {
    nav { padding: 20px 4vw; }
    .nav-links { gap: 20px; }
    .nav-links a { letter-spacing: .2em; font-size: .68rem; }
    #sticky-logo { width: 46vw; max-width: 320px; }
    .hero-btns { right: 16px; bottom: 24px; }
}

/* MOBILE */
@media (max-width: 768px) {
    :root {
        --mobile-gutter: clamp(16px, 5vw, 24px);
    }
    body.mobile-menu-open { overflow: hidden; }
    body {
        font-size: 17px;
        line-height: 1.72;
    }

    nav {
        padding: 0 var(--mobile-gutter);
        padding-top: env(safe-area-inset-top);
        justify-content: flex-end;
        color: #fff;
        height: calc(60px + env(safe-area-inset-top));
    }
    nav.on-light { color: #fff; }
    .nav-links { display: none; }
    #mobile-menu-toggle { display: inline-flex; }
    #mobile-menu-overlay { display: block; }
    #mobile-menu-panel { display: flex; }
    #mobile-dock { display: grid; }
    .mobile-menu-link { font-size: .88rem; }
    .mobile-menu-contact { font-size: .74rem; }
    .mobile-menu-cta { font-size: .78rem; }

    #sticky-logo {
        width: 52vw;
        max-width: 200px;
        top: 18vh;
        left: 50%;
    }

    .hero {
        padding-bottom: 0;
        justify-content: center;
        margin-top: -5vh;
    }
    .hero-content {
        width: min(calc(100% - (2 * var(--mobile-gutter))), 560px);
        margin-bottom: 0;
        margin-top: 24vh;
    }
    .hero-tagline {
        transform: none;
        font-size: clamp(1.3rem, 5.5vw, 1.7rem);
        letter-spacing: .08em;
        margin-bottom: 3.5vh;
        line-height: 1.35;
        opacity: 1;
        color: #fff;
        text-shadow: 0 2px 16px rgba(0,0,0,.45);
    }
    .hero-subline {
        font-size: 1.06rem;
        line-height: 1.65;
        letter-spacing: .01em;
        color: rgba(255,255,255,.95);
        text-shadow: 0 1px 12px rgba(0,0,0,.5);
    }
    .hero-facts {
        gap: 8px;
        margin-top: 18px;
    }
    .hero-facts span {
        width: 100%;
        font-size: .66rem;
        letter-spacing: .12em;
        min-height: 34px;
        padding: 8px 12px;
    }
    .hero-bg { filter: brightness(.32); }

    .info-section h2,
    .info-section h3,
    .services-section h2,
    .services-section h3,
    .seo-content-section h2,
    .seo-content-section h3,
    .faq-section h2,
    .faq-section h3,
    .visit-section h2,
    .visit-section h3 {
        color: var(--bordeaux);
    }

    .hero-btns,
    #hero-bl-wrap,
    #kpi-auto-scroll {
        display: none !important;
    }
    
    #heroQuoteText,
    #heroQuoteText2 {
        font-size: clamp(2.2rem, 7vw, 3.2rem) !important;
        text-shadow: 0 2px 20px rgba(0,0,0,.55), 0 4px 40px rgba(0,0,0,.35) !important;
    }
    
    #heroQuoteText .hqchar,
    #heroQuoteText2 .hqchar {
        color: rgba(255,255,255,.12);
        text-shadow: 0 2px 20px rgba(0,0,0,.55), 0 4px 40px rgba(0,0,0,.35) !important;
    }

    #panel-dots { display: none; }
    .portal-label {
        display: none !important;
    }
    .panel-txt {
        display: none !important;
    }
    #portal {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        right: auto !important;
        left: auto !important;
        top: auto !important;
        border-radius: 0 !important;
    }
    .h-track-wrap {
        overflow: hidden;
        position: relative;
        width: 100%;
        height: auto;
    }
    #h-track {
        display: flex;
        flex-direction: column !important;
        width: 100% !important;
        height: auto !important;
    }
    .h-panel {
        width: 100% !important;
        min-height: 70vh;
        position: relative;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .panel-bg {
        position: absolute !important;
        inset: 0 !important;
        opacity: 1 !important;
        filter: brightness(.55) !important;
    }
    .panel-txt {
        display: block !important;
        position: relative !important;
        opacity: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        color: #fff !important;
        padding: 40px 24px !important;
        text-align: center;
        z-index: 5;
        background: none !important;
        text-shadow: 0 2px 18px rgba(0,0,0,.6);
    }
    .panel-txt h2 {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(1.6rem, 8vw, 2.4rem);
        margin-bottom: 12px;
        color: #fff !important;
    }
    .panel-txt p { 
        font-size: clamp(1rem, 4.9vw, 1.14rem);
        color: rgba(255,255,255,.95) !important;
        line-height: 1.6;
    }
    .portal-veil {
        display: none !important;
    }
    .portal-section { 
        margin-top: -100vh !important;
        padding: 0 !important;
        height: auto !important;
        overflow: visible !important;
    }

    .hero-subline,
    .panel-txt p,
    .info-note p,
    .seo-content-grid p,
    .faq-item p,
    .visit-text p,
    .footer-info p,
    .footer-info a {
        font-size: 1rem;
        line-height: 1.72;
        font-weight: 400;
        letter-spacing: .01em;
    }

    .info-section {
        margin-top: 0;
        padding: 8vh var(--mobile-gutter);
    }
    .info-grid { grid-template-columns: 1fr; gap: 18px; }
    .info-card {
        min-height: 230px;
        padding: 42px 24px 36px;
        opacity: 1 !important;
        transform: none !important;
    }
    .info-card p { font-size: 1rem; }
    .info-note {
        margin-top: 108px;
        padding: 0 12px;
        opacity: 1 !important;
    }
    .info-note h3 {
        font-size: clamp(1.65rem, 8vw, 2.3rem);
        color: var(--bordeaux);
        text-shadow: none;
    }
    .info-note p {
        font-size: .97rem;
        line-height: 1.65;
        color: rgba(30,18,16,.78);
        text-shadow: none;
    }

    .services-section {
        margin-top: 0;
        padding: 8vh var(--mobile-gutter);
    }
    .svc-row { grid-template-columns: 76px 1fr 30px; gap: 12px; padding: 14px 8px; }
    .svc-img { width: 76px; height: 54px; }
    .svc-row p { display: none; }
    .svc-row h3 { font-size: clamp(1.1rem, 5vw, 1.45rem); }

    .gallery-strip { height: 36vh; }
    .gallery-slide { min-width: 100%; }
    .gallery-nav {
        display: inline-flex;
        width: 40px;
        height: 40px;
        top: 46%;
        font-size: 1.25rem;
        border: none;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .gallery-nav--left { left: 10px; }
    .gallery-nav--right { right: 10px; }
    .gallery-pagination {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 12px;
        transform: none;
        z-index: 4;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        width: 100% !important;
    }
    .gallery-pagination .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
        margin: 0 !important;
        background: rgba(255,255,255,.42);
        opacity: 1;
        transition: transform .25s ease, background .25s ease;
    }
    .gallery-pagination .swiper-pagination-bullet-active {
        background: #fff;
        transform: scale(1.15);
    }

    .seo-content-section {
        padding: 8vh var(--mobile-gutter);
    }
    .seo-content-section h2 {
        font-size: clamp(1.9rem, 10vw, 2.9rem);
        line-height: 1.05;
        margin-bottom: 18px;
    }
    .seo-content-grid,
    .faq-list { grid-template-columns: 1fr; }

    .faq-section {
        padding: 8vh var(--mobile-gutter);
    }
    .faq-section h2 {
        font-size: clamp(1.8rem, 9vw, 2.6rem);
        margin-bottom: 14px;
    }
    .faq-item h3 { font-size: .9rem; }
    .faq-item p { font-size: .98rem; line-height: 1.72; }

    .visit-section {
        padding: 8vh var(--mobile-gutter);
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    .visit-divider { display: none; }
        .visit-text h2 {
            font-size: clamp(2rem, 11vw, 3rem);
            color: var(--bordeaux);
        }
    .visit-text p { max-width: none; font-size: .94rem; }
    .visit-cta { width: 100%; align-items: stretch; gap: 10px; }
    .visit-btn,
    .visit-btn-outline {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        letter-spacing: .16em;
    }

    .pre-services-visit {
        padding: 2vh var(--mobile-gutter) 7vh;
    }
    .pre-services-visit-inner {
        border-radius: 20px;
        padding: 22px 18px;
    }
    .pre-services-visit h2 {
        font-size: clamp(1.8rem, 10vw, 2.7rem);
    }
    .pre-services-visit p {
        font-size: .94rem;
        max-width: none;
    }
    .pre-services-visit-btn {
        width: 100%;
        padding: 14px 16px;
        letter-spacing: .14em;
    }

    footer {
        min-height: auto;
        padding: 8vh var(--mobile-gutter) calc(120px + env(safe-area-inset-bottom));
    }
    footer h2 {
        font-size: clamp(2.5rem, 16vw, 4.4rem);
        line-height: .95;
        margin-bottom: 4vh;
    }
    .footer-cta-btn {
        width: 100%;
        max-width: 360px;
        padding: 15px 18px;
        margin-bottom: 6vh;
    }
    .footer-info {
        flex-direction: column;
        gap: 28px;
        align-items: center;
        margin-bottom: 5vh;
    }
    .footer-info p,
    .footer-info a {
        font-size: 1rem;
        font-weight: 400;
        color: rgba(30,18,16,.84);
    }
    .footer-info > div {
        gap: 12px;
        width: min(320px, 100%);
    }
    .footer-info > div:not(:last-child) {
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(116,37,35,.35);
    }
    .footer-contact-link {
        gap: 10px;
    }
    .footer-contact-icon {
        width: 16px;
        height: 16px;
    }
    .footer-copy {
        font-size: .84rem;
        font-weight: 500;
        letter-spacing: .07em;
        color: rgba(30,18,16,.7);
    }
    .footer-copy-note {
        letter-spacing: .02em;
        text-transform: none;
    }

    #contact-fab { display: none !important; }

    #back-to-top-fab { display: none !important; }

    #mm-box {
        width: calc(100vw - 24px);
        max-width: 460px;
        padding: 34px 22px 24px;
        gap: 20px;
    }
    .mm-btns {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    #mobile-dock {
        left: max(8px, env(safe-area-inset-left));
        right: max(8px, env(safe-area-inset-right));
        bottom: calc(8px + env(safe-area-inset-bottom));
        padding: 6px;
        gap: 6px;
    }
    .mobile-dock-btn {
        height: 47px;
        font-size: .58rem;
    }
    .mobile-dock-btn span {
        letter-spacing: .06em;
    }
    .hero-subline { font-size: 1rem; }
    .faq-item { padding: 14px 14px; }
    .faq-item h3 { font-size: .9rem; }
    .faq-item p { font-size: 1rem; }
    .footer-copy {
        font-size: .78rem;
        letter-spacing: .06em;
        font-weight: 500;
    }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}
