:root {
    color-scheme: light;
    --theme-primary: #228b22;
    --theme-primary-rgb: 34 139 34;
    --theme-secondary: #0f3d2e;
    --theme-secondary-rgb: 15 61 46;
    --theme-accent: #87c98d;
    --theme-accent-rgb: 135 201 141;
    --theme-background-start: #f4faf5;
    --theme-background-start-rgb: 244 250 245;
    --theme-background-end: #dceee0;
    --theme-background-end-rgb: 220 238 224;
    --theme-surface: #fff;
    --theme-surface-rgb: 255 255 255;
    --theme-text: #173023;
    --theme-text-rgb: 23 48 35;
    --theme-muted: #50665a;
    --theme-muted-rgb: 80 102 90;
    --theme-on-primary: #10251a;
    --theme-on-secondary: #fff;
    --theme-on-accent: #10251a;
    --sustainability-green-rgb: 34 139 34;
    --sustainability-green-deep-rgb: 15 98 44;
    --sustainability-green-light-rgb: 135 201 141;
    --glass-color: #fff;
    --glass-rgb: 255 255 255;
    --glass-alpha: .7;
    --glass-alpha-strong: .82;
    --glass-opacity: 70%;
    --glass-blur: 22px;
    --glass-outline-color: #fff;
    --glass-outline-rgb: 255 255 255;
    --glass-outline-alpha: .55;
    --glass-outline-opacity: 55%;
    --glass-outline-width: 1px;
    --glass-shadow-alpha: .14;
    --glass-shadow-opacity: 14%;
    --glass-radius: 26px;
    --brand-logo-width-desktop: 720px;
    --brand-logo-width-mobile: 300px;
    --footer-logo-width-desktop: 640px;
    --footer-logo-width-mobile: 320px;
    --hero-left-logo-width-desktop: 210px;
    --hero-left-logo-width-mobile: 120px;
    --hero-card-logo-width-desktop: 170px;
    --hero-card-logo-width-mobile: 110px;
    --motion-enabled: 1;
    --motion-intensity: 70;
    --motion-scale: .7;
    --motion-fast: 266ms;
    --motion-medium: 568ms;
    --motion-slow: 1230ms;
    --reveal-start-opacity: 0;
    --reveal-distance: 26.6px;
    --ambient-shift: 11.3%;
    --ambient-play-state: running;
    --photo-zoom-enabled: 1;
    --photo-zoom-percent: 6%;
    --photo-zoom-scale: 1.06;
    --photo-zoom-duration: 20s;
    --header-height-desktop: 150px;
    --header-height-mobile: 112px;
    --header-height: var(--header-height-desktop);
    --header-footprint: var(--header-height);
    --content: 960px;
    --wide: 1240px;
    --site-frame-max: 2400px;
    --page-gutter: clamp(16px, 3.2vw, 48px);
    --heading: Georgia, Cambria, "Times New Roman", serif;
    --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --focus: var(--theme-primary);
    --danger: #9a2e2e;
    --success: #246b3a;
    --line: rgb(var(--theme-secondary-rgb) / .14);
    --soft-shadow: 0 24px 70px rgb(var(--theme-secondary-rgb) / var(--glass-shadow-alpha));
    --strong-shadow: 0 34px 100px rgb(var(--theme-secondary-rgb) / .25);
}

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

html {
    min-width: 320px;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-footprint) + 20px);
    background: var(--theme-background-end);
}

body {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 8% 7%, rgb(var(--theme-accent-rgb) / .42), transparent 32rem),
        radial-gradient(circle at 92% 28%, rgb(var(--theme-primary-rgb) / .16), transparent 38rem),
        linear-gradient(145deg, var(--theme-background-start), var(--theme-background-end));
    color: var(--theme-text);
    font-family: var(--body);
    font-size: clamp(15px, .25vw + 14px, 17px);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before,
body::after {
    position: fixed;
    z-index: -1;
    width: min(38vw, 580px);
    aspect-ratio: 1;
    border-radius: 50%;
    content: "";
    pointer-events: none;
    opacity: .52;
    transform: translate3d(0, 0, 0);
}

body::before {
    top: 22vh;
    left: -17vw;
    background: radial-gradient(circle, rgb(var(--theme-accent-rgb) / .52), transparent 68%);
    animation: ambient-drift-a 24s ease-in-out infinite alternate;
    animation-play-state: var(--ambient-play-state);
}

body::after {
    right: -18vw;
    bottom: 8vh;
    background: radial-gradient(circle, rgb(var(--theme-primary-rgb) / .24), transparent 68%);
    animation: ambient-drift-b 29s ease-in-out infinite alternate;
    animation-play-state: var(--ambient-play-state);
}

body.menu-open,
body.has-open-modal,
body.modal-open { overflow: hidden; }

/* The atmospheric background is rendered by the body pseudo-elements. These
   compatibility nodes may be emitted by older/newer templates without adding
   duplicate GPU layers. */
.ambient-shape { display: none; }

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

img { height: auto; }

a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

::selection {
    background: rgb(var(--theme-primary-rgb) / .24);
    color: var(--theme-secondary);
}

:where(a, button, input, textarea, select, summary):focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
}

[hidden] { display: none !important; }

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

.skip-link {
    position: fixed;
    top: -6rem;
    left: 1rem;
    z-index: 1000;
    min-height: 44px;
    padding: .7rem 1rem;
    border-radius: var(--audience-control-radius, 999px);
    background: var(--theme-secondary);
    color: var(--theme-on-secondary);
    font-weight: 800;
    text-decoration: none;
    box-shadow: var(--strong-shadow);
}

.skip-link:focus { top: 1rem; }

.glass-surface,
.notice-bar,
.header-inner,
.hero-copy,
.wordmark,
.content-section,
.room-module,
.rate-card,
.contact-section,
.faq-section,
.closure-card,
.consent-card,
.cookie-consent,
.public-alert {
    border: var(--glass-outline-width, 1px) solid rgb(var(--glass-outline-rgb) / var(--glass-outline-alpha));
    background: rgb(var(--glass-rgb) / var(--glass-alpha));
    box-shadow: var(--soft-shadow), inset 0 1px 0 rgb(255 255 255 / .38);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(135%);
    backdrop-filter: blur(var(--glass-blur)) saturate(135%);
}

.notice-bar {
    position: relative;
    z-index: 130;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 52px;
    margin: 10px var(--page-gutter) 0;
    padding: .65rem 1rem;
    border-radius: calc(var(--glass-radius) * .65);
    color: var(--theme-text);
    font-size: .85rem;
}

.notice-bar p { margin: 0; }

.notice-bar button {
    min-height: 38px;
    border: 1px solid rgb(var(--theme-secondary-rgb) / .2);
    border-radius: var(--audience-control-radius, 999px);
    background: var(--theme-secondary);
    color: var(--theme-on-secondary);
    padding: .4rem .9rem;
    font-weight: 750;
}

.site-header-slot {
    position: relative;
    z-index: 120;
    min-height: var(--header-height);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 120;
    min-height: var(--header-height);
    height: auto;
    padding: 10px var(--page-gutter);
    color: var(--theme-text);
    transition: padding var(--motion-medium) ease, transform var(--motion-medium) ease;
}

.site-header.glass-surface {
    border: 0;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.site-header.is-compact {
    position: sticky;
    top: 0;
    width: 100%;
    min-height: var(--header-height);
    height: auto;
    padding-block: 10px;
}

.header-inner {
    position: relative;
    width: 100%;
    min-height: calc(var(--header-height) - 20px);
    height: auto;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1rem, 3vw, 3rem);
    padding: .75rem clamp(1rem, 2.5vw, 2rem);
    border-radius: var(--glass-radius);
    background:
        linear-gradient(110deg, rgb(var(--glass-rgb) / var(--glass-alpha-strong)), rgb(var(--glass-rgb) / var(--glass-alpha))),
        rgb(var(--glass-rgb) / var(--glass-alpha));
}

.site-header.is-compact .header-inner { box-shadow: 0 18px 55px rgb(var(--theme-secondary-rgb) / .2); }

.brand-contact {
    display: grid;
    min-width: 0;
    gap: .1rem;
    align-content: center;
}

.brand-name,
.brand-logo-link,
.brand-identity,
.site-brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    color: var(--theme-secondary);
    font-family: var(--heading);
    font-size: clamp(.95rem, 1.2vw, 1.2rem);
    font-weight: 700;
    letter-spacing: .055em;
    line-height: 1.2;
    text-decoration: none;
}

.site-brand { gap: .7rem; }
.site-brand > span { min-width: 0; overflow-wrap: anywhere; }
.site-brand > img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: left center;
}
.site-brand.mode-logo > span { display: none; }

.header-brand {
    position: relative;
    z-index: 2;
    flex: 0 1 var(--brand-logo-width-desktop);
    width: var(--brand-logo-width-desktop);
    max-width: calc(100% - clamp(150px, 19vw, 350px));
}

.header-brand.mode-name { flex-basis: auto; width: auto; }
.header-brand.mode-logo { width: var(--brand-logo-width-desktop); }

.header-brand > img {
    width: 100%;
    height: auto;
    max-height: none;
}

.site-header.is-compact .header-brand { max-width: none; }
.site-header.is-compact .header-brand > img {
    width: 100%;
    height: auto;
    max-height: none;
}

.brand-logo,
.brand-logo-image,
.hotel-logo {
    width: min(var(--brand-logo-width-desktop), 100%);
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: left center;
}

.brand-text { min-width: 0; overflow-wrap: anywhere; }
.brand-text[hidden] { display: none; }

.contact-line {
    display: flex;
    align-items: center;
    gap: .45rem;
    color: var(--theme-muted);
    font-size: .8rem;
    line-height: 1.3;
    text-decoration: none;
}

.contact-line:hover { color: var(--theme-secondary); }

.contact-line svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.contact-phone svg { fill: currentColor; stroke: none; }

.header-contact {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    width: min(340px, 30vw);
    min-height: 72px;
    align-items: center;
    justify-content: center;
    justify-items: center;
    gap: .28rem;
    padding: .45rem .9rem;
    border: 1px solid rgb(var(--glass-outline-rgb) / .34);
    border-radius: 18px;
    background: rgb(var(--glass-rgb) / .78);
    box-shadow: 0 10px 30px rgb(var(--theme-secondary-rgb) / .08);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    text-align: center;
    transform: translate(-50%, -50%);
}

.header-contact a {
    display: flex;
    width: fit-content;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    gap: .42rem;
    color: var(--theme-text);
    font-size: clamp(.9rem, .36vw + .76rem, 1.05rem);
    font-weight: 750;
    letter-spacing: .005em;
    line-height: 1.3;
    text-decoration: none;
}

.header-contact a span { overflow-wrap: anywhere; }

.header-contact svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.65;
}

.header-contact-phone svg { fill: currentColor; stroke: none; }
.header-contact a:hover { color: var(--theme-secondary); text-decoration: underline; text-underline-offset: 3px; }

.header-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-self: end;
    gap: clamp(.65rem, 1.8vw, 1.4rem);
}

.brand-cursor-preview {
    position: fixed;
    z-index: 310;
    top: 0;
    left: 0;
    width: clamp(210px, 16vw, 320px);
    aspect-ratio: 1;
    overflow: hidden;
    padding: clamp(.65rem, 1vw, 1rem);
    border-radius: clamp(18px, 2vw, 30px);
    background: rgb(var(--glass-rgb) / .9);
    box-shadow: 0 24px 65px rgb(var(--theme-secondary-rgb) / .28);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(var(--logo-preview-x, -500px), var(--logo-preview-y, -500px), 0);
    transform-origin: top left;
    transition: opacity var(--motion-fast) ease;
    will-change: transform;
}

.brand-cursor-preview.is-visible {
    opacity: 1;
}

.brand-cursor-preview img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-divider {
    width: 1px;
    height: 42px;
    background: rgb(var(--theme-secondary-rgb) / .18);
}

.booking-cta {
    display: inline-flex;
    min-height: 48px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--audience-control-radius, 999px);
    background: var(--theme-secondary);
    color: var(--theme-on-secondary);
    padding: .65rem 1.2rem;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 12px 32px rgb(var(--theme-secondary-rgb) / .23);
    transition: transform var(--motion-fast) ease, box-shadow var(--motion-fast) ease, background var(--motion-fast) ease;
}

.booking-cta span { font-size: .82rem; font-weight: 850; letter-spacing: .055em; }
.booking-cta small { margin-top: .05rem; font-size: .62rem; letter-spacing: .04em; opacity: .82; }

.booking-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgb(var(--theme-secondary-rgb) / .3);
}

.booking-cta[aria-disabled="true"] { opacity: .55; cursor: not-allowed; transform: none; }

.menu-toggle {
    display: grid;
    min-width: 64px;
    min-height: 52px;
    place-items: center;
    gap: .15rem;
    border: 1px solid rgb(var(--theme-secondary-rgb) / .16);
    border-radius: var(--audience-control-radius, 18px);
    background: rgb(var(--theme-surface-rgb) / .52);
    color: var(--theme-secondary);
    padding: .5rem .65rem;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .09em;
    transition: background var(--motion-fast) ease, transform var(--motion-fast) ease;
}

.menu-toggle:hover { background: rgb(var(--theme-accent-rgb) / .35); transform: translateY(-1px); }
.menu-bars { display: grid; gap: 5px; width: 30px; }
.menu-bars i { display: block; height: 2px; border-radius: 9px; background: currentColor; transition: transform var(--motion-fast) ease; }

.language-switcher,
.language-switch,
.locale-switcher,
[data-language-switcher] {
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    padding: .25rem;
    border: 1px solid rgb(var(--theme-secondary-rgb) / .15);
    border-radius: var(--audience-control-radius, 999px);
    background: rgb(var(--theme-surface-rgb) / .58);
}

.language-switcher a,
.language-switcher button,
.language-switch a,
.language-switch button,
.locale-switcher a,
.locale-switcher button,
[data-language-switcher] a,
[data-language-switcher] button {
    display: inline-flex;
    min-width: 42px;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    gap: .3rem;
    border: 0;
    border-radius: var(--audience-control-radius, 999px);
    background: transparent;
    color: var(--theme-muted);
    padding: .35rem .6rem;
    font-size: .72rem;
    font-weight: 850;
    text-decoration: none;
}

.language-switcher :is(a, button).active,
.language-switcher :is(a, button)[aria-current="true"],
.language-switch :is(a, button).active,
.locale-switcher :is(a, button).active,
[data-language-switcher] :is(a, button).active {
    background: var(--theme-secondary);
    color: var(--theme-on-secondary);
}

.language-flag,
.flag-icon,
.locale-flag { width: 24px; height: 16px; flex: 0 0 24px; border-radius: 3px; box-shadow: 0 0 0 1px rgb(var(--theme-secondary-rgb) / .12); }
.locale-code { font-size: .68rem; letter-spacing: .04em; }
.language-switcher-large { flex-wrap: wrap; }

.menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 180;
    background: rgb(var(--theme-secondary-rgb) / .42);
    opacity: 0;
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    transition: opacity var(--motion-medium) ease;
}

.menu-backdrop.is-visible { opacity: 1; }

.offcanvas-menu {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 200;
    width: clamp(380px, 50vw, 760px);
    padding: clamp(5.5rem, 12vh, 8rem) clamp(1.5rem, 5vw, 5rem) 2rem;
    overflow-y: auto;
    border-left: var(--glass-outline-width, 1px) solid rgb(var(--glass-outline-rgb) / var(--glass-outline-alpha));
    background:
        radial-gradient(circle at 100% 0, rgb(var(--theme-accent-rgb) / .45), transparent 36rem),
        rgb(var(--glass-rgb) / var(--glass-alpha-strong));
    color: var(--theme-text);
    box-shadow: -32px 0 90px rgb(var(--theme-secondary-rgb) / .25);
    transform: translateX(105%);
    visibility: hidden;
    -webkit-backdrop-filter: blur(calc(var(--glass-blur) + 8px)) saturate(145%);
    backdrop-filter: blur(calc(var(--glass-blur) + 8px)) saturate(145%);
    transition: transform var(--motion-medium) cubic-bezier(.22, .8, .2, 1), visibility var(--motion-medium);
}

.offcanvas-menu.is-open { visibility: visible; transform: translateX(0); }

.menu-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid rgb(var(--theme-secondary-rgb) / .16);
    border-radius: var(--audience-control-radius, 50%);
    background: rgb(var(--theme-surface-rgb) / .65);
    color: var(--theme-secondary);
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    transition: transform var(--motion-fast) ease, background var(--motion-fast) ease;
}

.menu-close:hover { background: rgb(var(--theme-accent-rgb) / .36); transform: rotate(5deg); }

.offcanvas-menu ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: menu-item;
}

.offcanvas-menu li { min-width: 0; counter-increment: menu-item; }

.offcanvas-menu li a {
    position: relative;
    display: flex;
    min-height: 104px;
    align-items: flex-end;
    border: 1px solid rgb(var(--theme-secondary-rgb) / .12);
    border-radius: calc(var(--glass-radius) * .72);
    background: rgb(var(--theme-surface-rgb) / .52);
    color: var(--theme-secondary);
    padding: 2.2rem 1.1rem 1rem;
    font-family: var(--heading);
    font-size: clamp(1.05rem, 1.8vw, 1.45rem);
    line-height: 1.2;
    text-decoration: none;
    transition: transform var(--motion-fast) ease, background var(--motion-fast) ease, color var(--motion-fast) ease;
}

.offcanvas-menu li a::before {
    position: absolute;
    top: .8rem;
    left: 1rem;
    content: counter(menu-item, decimal-leading-zero);
    color: var(--theme-primary);
    font-family: var(--body);
    font-size: .67rem;
    font-weight: 850;
    letter-spacing: .12em;
}

.offcanvas-menu li a:hover,
.offcanvas-menu li a:focus-visible {
    background: rgb(var(--theme-accent-rgb) / .35);
    transform: translateY(-3px);
}

.offcanvas-menu li a[aria-current="page"] {
    background: var(--theme-secondary);
    color: var(--theme-on-secondary);
    box-shadow: 0 18px 46px rgb(var(--theme-secondary-rgb) / .24);
}

.offcanvas-menu li a[aria-current="page"]::before { color: rgb(255 255 255 / .72); }

.drawer-head {
    position: absolute;
    top: 1.2rem;
    right: 5.2rem;
    left: clamp(1.5rem, 5vw, 5rem);
    display: flex;
    min-height: 52px;
    align-items: center;
}

.drawer-brand { max-width: min(310px, 70%); }
.drawer-content { min-height: calc(100% - 120px); }
.drawer-content > .eyebrow { margin-bottom: 1rem; }
.drawer-content li a > i { margin-left: auto; font-family: var(--body); font-size: .8rem; font-style: normal; opacity: .55; }

.drawer-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.drawer-booking { flex: 0 0 auto; }

main { display: block; }

.hero {
    position: relative;
    width: calc(100% - (2 * var(--page-gutter)));
    max-width: var(--site-frame-max);
    margin: 0 auto clamp(2.5rem, 6vw, 6rem);
    overflow: hidden;
    border: var(--glass-outline-width, 1px) solid rgb(var(--glass-outline-rgb) / var(--glass-outline-alpha));
    border-radius: calc(var(--glass-radius) * 1.35);
    background: var(--theme-background-end);
    box-shadow: var(--strong-shadow);
    isolation: isolate;
}

.hero-home { height: max(590px, calc(100svh - var(--header-footprint) - 22px)); min-height: 590px; }
.hero-page { height: clamp(430px, 63vh, 650px); }
.hero-media { position: absolute; inset: 0; background: var(--theme-secondary); }

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity var(--motion-slow) ease;
}

.hero-slide.is-active { z-index: 1; opacity: 1; }

.hero-visual {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

img.hero-slide.is-active,
.hero-slide-image.is-active,
.hero-slide.is-active > img.hero-visual {
    animation: photo-zoom var(--photo-zoom-duration) ease-out both;
}

video.hero-slide,
.hero-video,
.section-video,
.room-video,
.media-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--theme-secondary);
}

.hero-media.is-ready .hero-slider-toggle { display: inline-flex; }
.hero-media.has-video .video-control { display: inline-flex; }
.hero-media.has-video .video-control[hidden] { display: none; }
.hero-media.has-video .hero-slider-toggle { right: auto; left: 1.2rem; }

.hero-slider-toggle,
.media-control,
.video-control {
    position: absolute;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 5;
    display: none;
    min-height: 44px;
    align-items: center;
    border: var(--glass-outline-width, 1px) solid rgb(var(--glass-outline-rgb) / var(--glass-outline-alpha));
    border-radius: var(--audience-control-radius, 999px);
    background: rgb(var(--theme-secondary-rgb) / .78);
    color: #fff;
    padding: .55rem .9rem;
    font-size: .7rem;
    font-weight: 750;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.hero-slider-toggle:hover,
.hero-slider-toggle:focus-visible,
.media-control:hover,
.video-control:hover { background: var(--theme-secondary); }

.hero-shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgb(0 0 0 / .04) 30%, rgb(var(--theme-secondary-rgb) / .52) 100%),
        linear-gradient(90deg, rgb(var(--theme-secondary-rgb) / .15), transparent 55%);
    pointer-events: none;
}

.hero-copy {
    position: absolute;
    z-index: 3;
    right: clamp(1.1rem, 5vw, 5rem);
    bottom: clamp(1.1rem, 6vw, 5rem);
    width: min(700px, calc(100% - 2.2rem));
    padding: clamp(1.35rem, 3.5vw, 3rem);
    border-radius: var(--glass-radius);
    background: rgb(var(--glass-rgb) / var(--glass-alpha-strong));
    color: var(--theme-text);
    text-align: left;
}

.hero-copy-top {
    display: flex;
    min-height: 0;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.hero-copy-top > .hero-kicker {
    display: block;
    margin-bottom: .55rem;
    color: var(--theme-primary);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero-brand-logo {
    position: absolute;
    z-index: 3;
    display: grid;
    place-items: center;
    pointer-events: none;
}

.hero-brand-logo-left {
    top: clamp(2rem, 4vw, 5rem);
    left: clamp(2rem, 8vw, 10.5rem);
    width: min(var(--hero-left-logo-width-desktop), calc(100% - (2 * var(--page-gutter))));
    padding: clamp(.7rem, 1.3vw, 1.2rem);
    border-radius: clamp(18px, 2vw, 30px);
    background: rgb(var(--glass-rgb) / .82);
    box-shadow: 0 22px 58px rgb(var(--theme-secondary-rgb) / .24);
    -webkit-backdrop-filter: blur(var(--glass-blur));
    backdrop-filter: blur(var(--glass-blur));
}

.hero-brand-logo img,
.hero-card-logo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
}

.hero-card-logo {
    display: block;
    width: min(var(--hero-card-logo-width-desktop), 40vw);
    height: auto;
    flex: 0 0 auto;
}

.hero-booking {
    display: flex;
    width: fit-content;
    max-width: 100%;
    margin: clamp(.8rem, 1.5vw, 1.2rem) 0 0 auto;
}

.hero-copy h1 {
    margin: 0;
    color: var(--theme-secondary);
    font-family: var(--heading);
    font-size: clamp(2.2rem, 5vw, 5rem);
    font-weight: 400;
    letter-spacing: -.025em;
    line-height: 1.02;
}

.wordmark {
    width: min(var(--content), calc(100% - (2 * var(--page-gutter))));
    min-height: 230px;
    margin: 0 auto clamp(2.5rem, 6vw, 6rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: var(--glass-radius);
    color: var(--theme-secondary);
    text-align: center;
}

.wordmark-ornament { color: var(--theme-primary); font-size: .75rem; }
.wordmark strong { font-family: var(--heading); font-size: clamp(1.3rem, 3vw, 2.25rem); letter-spacing: .1em; }
.wordmark small { color: var(--theme-muted); font-size: .78rem; letter-spacing: .04em; }
.wordmark .brand-logo { width: min(var(--brand-logo-width-desktop), 100%); height: auto; max-height: none; object-position: center; }
.wordmark-brand { width: min(var(--brand-logo-width-desktop), 100%); flex-direction: column; justify-content: center; text-align: center; }
.wordmark-brand > img { width: 100%; height: auto; max-height: none; object-position: center; }

.sustainability-marker {
    position: relative;
    isolation: isolate;
    display: grid;
    width: calc(100% - (2 * var(--page-gutter)));
    max-width: var(--site-frame-max);
    min-height: clamp(290px, 31vw, 430px);
    align-items: center;
    margin: clamp(2.2rem, 6vw, 4.5rem) auto var(--page-gutter);
    padding: clamp(2rem, 6vw, 5.5rem);
    overflow: hidden;
    border-radius: calc(var(--glass-radius) * 1.3);
    background:
        radial-gradient(circle at 82% 45%, rgb(var(--theme-accent-rgb) / .30), transparent 48%),
        linear-gradient(
            115deg,
            rgb(var(--glass-rgb) / var(--glass-alpha-strong)) 0%,
            rgb(var(--glass-rgb) / var(--glass-alpha)) 48%,
            rgb(var(--theme-primary-rgb) / .16) 100%
        );
}

.sustainability-marker::after {
    position: absolute;
    z-index: 0;
    inset: 0;
    background: linear-gradient(120deg, rgb(255 255 255 / .20), transparent 34%, rgb(var(--theme-primary-rgb) / .08));
    content: "";
    pointer-events: none;
}

.sustainability-leaf {
    position: absolute;
    z-index: 0;
    inset: 4% 1% 4% 27%;
    display: grid;
    place-items: center;
    color: var(--theme-primary);
    pointer-events: none;
    transform-origin: 52% 55%;
    animation: sustainability-leaf-breathe 18s ease-in-out infinite;
    animation-play-state: var(--ambient-play-state);
    mix-blend-mode: normal;
}

.sustainability-leaf svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    filter: drop-shadow(0 24px 34px rgb(var(--theme-secondary-rgb) / .13));
}

.sustainability-leaf-fill {
    fill: rgb(var(--sustainability-green-rgb) / .40);
    stroke: rgb(var(--sustainability-green-deep-rgb) / .82);
    stroke-width: 5;
    stroke-linejoin: round;
}

.sustainability-leaf-highlight {
    fill: none;
    stroke: rgb(var(--sustainability-green-light-rgb) / .92);
    stroke-width: 25;
    stroke-linecap: round;
    opacity: .62;
}

.sustainability-leaf-veins {
    fill: none;
    stroke: rgb(var(--sustainability-green-deep-rgb) / .74);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sustainability-copy {
    position: relative;
    z-index: 1;
    width: min(47rem, 62%);
    padding: clamp(1.35rem, 3.5vw, 2.8rem);
    overflow: hidden;
    border: var(--glass-outline-width, 1px) solid rgb(var(--glass-outline-rgb) / var(--glass-outline-alpha));
    border-left: clamp(4px, .45vw, 7px) solid var(--theme-primary);
    border-radius: calc(var(--glass-radius) * .82);
    background: linear-gradient(
        100deg,
        rgb(var(--glass-rgb) / var(--glass-alpha-strong)),
        rgb(var(--glass-rgb) / var(--glass-alpha)) 76%,
        transparent
    );
    box-shadow: 0 22px 55px rgb(var(--theme-secondary-rgb) / .12), inset 0 1px 0 rgb(255 255 255 / .45);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(135%);
    backdrop-filter: blur(var(--glass-blur)) saturate(135%);
}

.sustainability-copy-accent {
    display: block;
    width: clamp(48px, 7vw, 92px);
    height: 3px;
    margin-bottom: clamp(.9rem, 2vw, 1.5rem);
    border-radius: var(--audience-control-radius, 999px);
    background: linear-gradient(90deg, var(--theme-primary), var(--theme-accent));
}

.sustainability-copy h2 {
    margin: 0;
    color: var(--theme-secondary);
    font-family: var(--heading);
    font-size: clamp(2rem, 3.7vw, 4rem);
    font-weight: 400;
    hyphens: auto;
    letter-spacing: -.025em;
    line-height: 1.06;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.sustainability-copy .sustainability-copy-body {
    max-width: 68ch;
    margin-top: clamp(1rem, 2.2vw, 1.6rem);
    padding: clamp(.85rem, 1.8vw, 1.25rem);
    border-radius: calc(var(--glass-radius) * .55);
    background: rgb(var(--glass-rgb) / .68);
    color: var(--theme-text);
    font-size: clamp(.94rem, .35vw + .88rem, 1.08rem);
    line-height: 1.72;
    -webkit-backdrop-filter: blur(var(--glass-blur));
    backdrop-filter: blur(var(--glass-blur));
}

.sustainability-copy-body > :first-child { margin-top: 0; }
.sustainability-copy-body > :last-child { margin-bottom: 0; }

.sustainability-evidence {
    margin-top: clamp(1.4rem, 3vw, 2.4rem);
    padding-top: clamp(1rem, 2vw, 1.5rem);
    border-top: 1px solid rgb(var(--theme-primary-rgb) / .2);
}

.sustainability-evidence > h3 {
    margin: 0 0 1rem;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.sustainability-evidence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: .85rem;
}

.sustainability-evidence-card {
    position: relative;
    padding: 1rem;
    overflow: hidden;
    border: 1px solid rgb(var(--theme-primary-rgb) / .18);
    border-radius: max(8px, calc(var(--glass-radius) * .66));
    background: rgb(var(--theme-surface-rgb) / .62);
}

.sustainability-evidence-card > img {
    width: 100%;
    max-height: 150px;
    margin-bottom: .8rem;
    object-fit: contain;
    border-radius: max(4px, calc(var(--glass-radius) * .4));
}

.sustainability-evidence-type {
    margin: 0 0 .35rem;
    color: rgb(var(--sustainability-green-deep-rgb));
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.sustainability-evidence-metric {
    display: block;
    margin-bottom: .35rem;
    color: rgb(var(--sustainability-green-deep-rgb));
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.sustainability-evidence-card h4 { margin: 0 0 .55rem; font-size: 1.05rem; }
.sustainability-evidence-card .rich-copy { font-size: .9rem; line-height: 1.55; }
.sustainability-evidence-card dl { margin: .75rem 0; font-size: .78rem; }
.sustainability-evidence-card dl div { display: flex; justify-content: space-between; gap: .6rem; }
.sustainability-evidence-card dt { color: var(--theme-muted); }
.sustainability-evidence-card dd { margin: 0; text-align: right; }
.sustainability-evidence-card > a { font-size: .82rem; font-weight: 750; }

@keyframes sustainability-leaf-breathe {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg) scale(.985); }
    50% { transform: translate3d(-1.2%, .8%, 0) rotate(-.5deg) scale(1.018); }
}

.content-width { width: min(var(--content), calc(100% - (2 * var(--page-gutter)))); margin-inline: auto; }
.content-width-wide { width: min(var(--wide), calc(100% - (2 * var(--page-gutter)))); margin-inline: auto; }

.image-triptych {
    width: min(var(--wide), calc(100% - (2 * var(--page-gutter))));
    margin: 0 auto clamp(4rem, 9vw, 8rem);
    display: grid;
    grid-template-columns: 1.08fr .92fr 1.08fr;
    gap: clamp(.75rem, 2vw, 1.4rem);
}

.image-triptych figure {
    position: relative;
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: var(--glass-outline-width, 1px) solid rgb(var(--glass-outline-rgb) / var(--glass-outline-alpha));
    border-radius: var(--glass-radius);
    background: var(--theme-background-end);
    box-shadow: var(--soft-shadow);
}

.image-triptych figure:nth-child(2) { transform: translateY(2rem); }

.image-triptych :is(img, video) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--photo-zoom-duration) ease;
}

.gallery-media { width: 100%; height: 100%; object-fit: cover; }

.image-triptych figure:hover img { transform: scale(var(--photo-zoom-scale)); }

.page-intro { padding: 1rem 0 clamp(4rem, 9vw, 8rem); text-align: center; }

.page-intro.glass-surface {
    margin-bottom: clamp(4rem, 9vw, 8rem);
    padding: clamp(2rem, 5vw, 4.5rem);
    border-radius: var(--glass-radius);
}

.page-intro h2,
.faq-heading,
.faq-section > h2 {
    max-width: 820px;
    margin: 0 auto 1.5rem;
    color: var(--theme-secondary);
    font-family: var(--heading);
    font-size: clamp(2.2rem, 5vw, 4.3rem);
    font-weight: 400;
    letter-spacing: -.025em;
    line-height: 1.08;
}

.page-intro > .rich-copy { max-width: 780px; margin-inline: auto; }
.page-body-copy { margin-top: 2.5rem !important; padding-top: 2.5rem; border-top: 1px solid var(--line); }

.rich-copy { color: var(--theme-muted); }
.rich-copy p { margin: 0 0 1rem; }
.rich-copy p:last-child { margin-bottom: 0; }
.rich-copy h2, .rich-copy h3, .rich-copy h4 { color: var(--theme-secondary); font-family: var(--heading); font-weight: 400; line-height: 1.2; }
.rich-copy h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); }
.rich-copy h3 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); }
.rich-copy a { color: var(--theme-secondary); font-weight: 700; text-decoration-color: rgb(var(--theme-primary-rgb) / .55); text-underline-offset: 4px; }
.rich-copy blockquote { margin: 1.7rem 0; padding: 1rem 1.2rem; border-left: 4px solid var(--theme-primary); border-radius: var(--audience-control-radius, 0) var(--audience-control-radius, 16px) var(--audience-control-radius, 16px) var(--audience-control-radius, 0); background: rgb(var(--theme-surface-rgb) / .48); color: var(--theme-text); font-family: var(--heading); font-size: 1.1rem; font-style: italic; }
.rich-copy [data-list="bullet"] { list-style-type: disc; }
.rich-copy [data-list="ordered"] { list-style-type: decimal; }
.rich-copy .ql-align-center { text-align: center; }
.rich-copy .ql-align-right { text-align: right; }
.rich-copy .ql-align-justify { text-align: justify; }
.rich-copy .ql-indent-1 { margin-left: 2rem; }
.rich-copy .ql-indent-2 { margin-left: 4rem; }
.rich-copy .ql-indent-3 { margin-left: 6rem; }
.rich-copy .ql-indent-4 { margin-left: 8rem; }
.rich-copy .ql-indent-5 { margin-left: 10rem; }
.rich-copy .ql-indent-6 { margin-left: 12rem; }
.rich-copy .ql-indent-7 { margin-left: 14rem; }
.rich-copy .ql-indent-8 { margin-left: 16rem; }

.ornament-line { display: flex; max-width: 320px; align-items: center; gap: 1rem; margin: 3.2rem auto 1rem; color: var(--theme-primary); }
.ornament-line::before, .ornament-line::after { height: 1px; flex: 1; background: var(--line); content: ""; }
.english-welcome { color: var(--theme-muted); font-family: var(--heading); font-size: 1.05rem; font-style: italic; }
.eyebrow, .section-kicker, .faq-kicker { margin: 0 0 .55rem; color: var(--theme-primary); font-size: .72rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }

.sections-list,
.rooms-list { padding-bottom: clamp(5rem, 10vw, 10rem); }

.content-section,
.room-module {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    min-height: 470px;
    margin-bottom: clamp(2.2rem, 6vw, 5rem);
    overflow: hidden;
    border-radius: calc(var(--glass-radius) * 1.1);
}

.content-section.image-right .section-image,
.room-module.image-right .room-image { order: 2; }
.content-section.image-right .section-copy,
.room-module.image-right .room-content { order: 1; }

.section-image,
.room-image,
.media-frame {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    background: var(--theme-background-end);
}

.section-image :is(img, video),
.room-image :is(img, video),
.media-frame :is(img, video) {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-image img,
.room-image img,
.media-frame img { transition: transform var(--photo-zoom-duration) ease; }

.section-image:hover img,
.room-image:hover img,
.media-frame:hover img,
[data-image-zoom].is-in-view img { transform: scale(var(--photo-zoom-scale)); }

.motion-ready .image-triptych.is-revealed figure > img,
.motion-ready .content-section.is-revealed .section-image > img,
.motion-ready .room-module.is-revealed .room-image > img,
.motion-ready .rate-card.is-revealed .rate-card-media > img {
    animation: photo-zoom var(--photo-zoom-duration) ease-out both;
}

.section-copy,
.room-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 4.5rem); }

.section-copy h2,
.room-content h2,
.rate-card h2,
.contact-details h2,
.contact-form-wrap h2 {
    margin: 0 0 1rem;
    color: var(--theme-secondary);
    font-family: var(--heading);
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 400;
    letter-spacing: -.02em;
    line-height: 1.08;
}

.text-link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: .4rem;
    margin-top: 1.25rem;
    color: var(--theme-secondary);
    font-weight: 800;
    text-decoration: none;
}

.text-link::after { width: 30px; height: 1px; background: var(--theme-primary); content: ""; transition: width var(--motion-fast) ease; }
.text-link:hover::after { width: 48px; }

.room-module { grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); }
.room-size { margin: 0 0 1rem; color: var(--theme-muted); font-family: var(--heading); font-style: italic; }
.room-teaser { color: var(--theme-text); font-weight: 750; }
.amenities { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .45rem 1rem; padding: 0; margin: 1.5rem 0; list-style: none; font-size: .9rem; }
.amenities li::before { margin-right: .5rem; color: var(--theme-primary); content: "✓"; font-weight: 850; }
.room-price { color: var(--theme-secondary); font-family: var(--heading); font-size: 1.75rem; font-weight: 700; }
.room-price span { font-family: var(--body); font-size: .75rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.room-rate-note { color: var(--theme-secondary); font-weight: 750; }
.booking-cta-dark { align-self: flex-start; color: var(--theme-on-secondary); text-align: left; }

.rate-list { grid-column: 1 / -1; order: 3; padding: 0 clamp(1rem, 3vw, 2rem) 2rem; }
.rate-row { display: grid; grid-template-columns: 1fr 230px; gap: 2rem; padding: 1.25rem 1.4rem; border-top: 1px solid var(--line); background: rgb(var(--theme-surface-rgb) / .4); }
.compact-copy { font-size: .88rem; }
.compact-copy p { margin-top: .25rem; }
.rate-price { color: var(--theme-secondary); text-align: right; }
.rate-price strong, .rate-price small { display: block; }

.rates-overview { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1rem, 3vw, 2rem); padding-bottom: clamp(5rem, 10vw, 9rem); }
.rate-card { overflow: hidden; border-radius: var(--glass-radius); }
.rate-card > :is(img, video), .rate-card-media { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.rate-card-media { overflow: hidden; background: var(--theme-background-end); }
.rate-card-media > :is(img, video) { width: 100%; height: 100%; object-fit: cover; }
.rate-card-body { padding: clamp(1.5rem, 3vw, 2.4rem); }
.rate-card-line { display: flex; justify-content: space-between; gap: 1rem; padding: .9rem 0; border-top: 1px solid var(--line); }
.rate-card-line strong { color: var(--theme-secondary); text-align: right; }
.rate-card .booking-cta { margin-top: 1.5rem; }

.contact-section {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    margin-bottom: clamp(5rem, 10vw, 9rem);
    overflow: hidden;
    border-radius: calc(var(--glass-radius) * 1.1);
}

.contact-details {
    padding: clamp(2.2rem, 5vw, 4.5rem);
    background:
        radial-gradient(circle at 100% 0, rgb(var(--theme-accent-rgb) / .32), transparent 24rem),
        var(--theme-secondary);
    color: var(--theme-on-secondary);
}

.contact-details .eyebrow { color: var(--theme-accent); }
.contact-details h2 { color: var(--theme-on-secondary); }
.contact-details address { margin-bottom: 1.2rem; font-style: normal; }
.contact-details a { color: inherit; }
.contact-details .text-link { color: var(--theme-on-secondary); }
.contact-form-wrap { padding: clamp(2.2rem, 5vw, 4.5rem); }
.contact-form { margin-top: 2rem; }
.contact-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.15rem; }
.contact-form label { display: grid; gap: .35rem; color: var(--theme-text); font-size: .82rem; font-weight: 750; }

.contact-form :is(input, textarea, select),
.consent-preferences :is(input, select) {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgb(var(--theme-secondary-rgb) / .18);
    border-radius: var(--audience-control-radius, 15px);
    background: rgb(var(--theme-surface-rgb) / .72);
    color: var(--theme-text);
    padding: .75rem .9rem;
    box-shadow: inset 0 1px 2px rgb(var(--theme-secondary-rgb) / .04);
}

.contact-form textarea { resize: vertical; }
.contact-form :is(input, textarea, select):focus { border-color: var(--theme-primary); outline: 3px solid rgb(var(--theme-primary-rgb) / .18); }
.span-two { grid-column: 1 / -1; }
.privacy-notice { margin: 1.4rem 0; color: var(--theme-muted); font-size: .88rem; line-height: 1.6; }
.privacy-notice a { color: var(--theme-secondary); font-weight: 750; text-underline-offset: 3px; }
.privacy-label { display: inline; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.button-public,
.public-button,
.consent-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: var(--audience-control-radius, 999px);
    background: var(--theme-secondary);
    color: var(--theme-on-secondary);
    padding: .75rem 1.35rem;
    font-weight: 800;
    letter-spacing: .02em;
    text-decoration: none;
    box-shadow: 0 13px 32px rgb(var(--theme-secondary-rgb) / .22);
    transition: transform var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
}

.button-public:hover,
.public-button:hover,
.consent-button:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgb(var(--theme-secondary-rgb) / .3); }

.button-public.secondary,
.public-button.secondary,
.consent-button.secondary {
    border-color: rgb(var(--theme-secondary-rgb) / .24);
    background: rgb(var(--theme-surface-rgb) / .66);
    color: var(--theme-secondary);
    box-shadow: none;
}

.public-alert {
    margin-bottom: 2rem;
    padding: 1rem 1.2rem;
    border-left: 4px solid var(--success);
    border-radius: var(--audience-control-radius, 16px);
    color: #245433;
}

.public-alert-error { border-left-color: var(--danger); color: #7b2020; }
.public-alert ul { margin: 0; padding-left: 1.2rem; }
.center-action { padding-bottom: 7rem; text-align: center; }

/* FAQ / “Die wichtigsten Infos” */
.faq-section,
.important-info,
[data-faq-section] {
    position: relative;
    isolation: isolate;
    width: min(var(--wide), calc(100% - (2 * var(--page-gutter))));
    margin: 0 auto clamp(5rem, 10vw, 9rem);
    padding: clamp(2rem, 5vw, 4.5rem);
    overflow: hidden;
    border-radius: calc(var(--glass-radius) * 1.15);
    background:
        linear-gradient(145deg, rgb(var(--theme-surface-rgb) / .38), rgb(var(--theme-accent-rgb) / .09)),
        rgb(var(--glass-rgb) / var(--glass-alpha));
    box-shadow: 0 22px 65px rgb(var(--theme-secondary-rgb) / .08), inset 0 1px 0 rgb(255 255 255 / .46);
}

.faq-header { max-width: 900px; margin: 0 auto clamp(1.5rem, 4vw, 3rem); text-align: center; }
.faq-kicker { color: var(--theme-primary); }
.faq-section > .faq-kicker,
.faq-section > h2,
.faq-list {
    width: 100%;
    max-width: 1040px;
    margin-inline: auto;
}

.faq-section > .faq-kicker { margin-bottom: .75rem; }
.faq-section > h2 { margin-bottom: clamp(1.5rem, 3.5vw, 2.6rem); }

.faq-list,
.faq-list.glass-surface {
    display: grid;
    gap: .5rem;
    padding: clamp(.4rem, 1vw, .75rem);
    border: 0;
    border-radius: calc(var(--glass-radius) * .78);
    background: rgb(var(--theme-surface-rgb) / .18);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / .36), inset 0 0 0 1px rgb(var(--glass-outline-rgb) / .12);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.faq-item,
.faq-list details,
[data-faq-item] {
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: calc(var(--glass-radius) * .58);
    background: rgb(var(--glass-rgb) / .3);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / .28);
    transition:
        border-color var(--motion-fast) ease,
        background var(--motion-fast) ease,
        box-shadow var(--motion-fast) ease,
        transform var(--motion-fast) ease;
}

.faq-item:last-child,
.faq-list details:last-child,
[data-faq-item]:last-child { border-bottom-color: transparent; }

.faq-item:hover,
.faq-list details:hover,
[data-faq-item]:hover {
    border-color: rgb(var(--theme-primary-rgb) / .13);
    background: rgb(var(--theme-surface-rgb) / .48);
}

.faq-item.is-open,
.faq-list details[open],
[data-faq-item].is-open {
    border-color: rgb(var(--theme-primary-rgb) / .22);
    background: rgb(var(--theme-surface-rgb) / .64);
    box-shadow: 0 12px 30px rgb(var(--theme-secondary-rgb) / .07), inset 4px 0 0 rgb(var(--theme-primary-rgb) / .62);
}

.faq-question,
.faq-list summary,
[data-faq-question] {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 76px;
    align-items: center;
    gap: 1rem;
    border: 0;
    background: transparent;
    color: var(--theme-secondary);
    padding: 1rem 4.1rem 1rem 1.15rem;
    font-family: var(--heading);
    font-size: clamp(1.15rem, 2.4vw, 1.65rem);
    line-height: 1.25;
    list-style: none;
    text-align: left;
    cursor: pointer;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-question::after,
.faq-list summary::after,
[data-faq-question]::after {
    position: absolute;
    right: 1rem;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgb(var(--theme-primary-rgb) / .25);
    border-radius: var(--audience-control-radius, 50%);
    background: rgb(var(--theme-accent-rgb) / .16);
    color: var(--theme-primary);
    content: "+";
    font-family: var(--body);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    transition: transform var(--motion-fast) ease, background var(--motion-fast) ease, border-color var(--motion-fast) ease;
}

.faq-list summary:hover::after { border-color: rgb(var(--theme-primary-rgb) / .42); transform: scale(1.05); }

.faq-item.is-open .faq-question::after,
.faq-question[aria-expanded="true"]::after,
.faq-list details[open] summary::after,
[data-faq-question][aria-expanded="true"]::after { background: var(--theme-secondary); color: var(--theme-on-secondary); content: "−"; transform: rotate(180deg); }

.faq-answer,
[data-faq-answer],
.faq-list details > :not(summary) {
    margin-inline: 1.15rem;
    padding: .1rem 3rem 1.35rem 0;
    color: var(--theme-muted);
    line-height: 1.7;
}

.faq-answer[hidden], [data-faq-answer][hidden] { display: none; }
.faq-icon { display: none; }

/* Consent management. The functional module owns state and cookies; CSS only presents it. */
.consent-layer,
.cookie-consent-layer,
[data-consent-layer] {
    position: fixed;
    inset: 0;
    z-index: 600;
    display: grid;
    align-items: end;
    padding: var(--page-gutter);
    background: rgb(var(--theme-secondary-rgb) / .28);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
}

.consent-banner,
.consent-card,
.cookie-consent,
[data-consent-banner] {
    width: min(960px, 100%);
    max-height: calc(100svh - (2 * var(--page-gutter)));
    margin: 0 auto;
    overflow-y: auto;
    padding: clamp(1.25rem, 3vw, 2.3rem);
    border-radius: var(--glass-radius);
    background: rgb(var(--glass-rgb) / var(--glass-alpha-strong));
    color: var(--theme-text);
    box-shadow: var(--strong-shadow);
}

.consent-card h2,
.consent-banner h2,
.cookie-consent h2 { margin: 0 0 .7rem; color: var(--theme-secondary); font-family: var(--heading); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 400; }
.consent-card p, .consent-banner p, .cookie-consent p { color: var(--theme-muted); }
.consent-summary { min-width: 0; }
.consent-first-layer { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: .65rem; margin-top: 1rem; }
.consent-first-category { padding: .8rem .9rem; border: 1px solid var(--line); border-radius: var(--audience-control-radius, 15px); background: rgb(var(--theme-surface-rgb) / .48); }
.consent-first-category h3 { margin: 0 0 .35rem; color: var(--theme-secondary); font: 800 .95rem/1.3 var(--body); }
.consent-first-category .rich-copy, .consent-first-category p { font-size: .84rem; }
.consent-first-category ul { margin: .55rem 0 0; padding-left: 1.1rem; color: var(--theme-muted); font-size: .8rem; }
.consent-categories { display: grid; gap: .7rem; margin-top: 1rem; }
.consent-layer.is-busy .consent-card { opacity: .7; pointer-events: none; }
.consent-layer.has-error .consent-card { border-color: rgb(154 46 46 / .7); box-shadow: 0 0 0 4px rgb(154 46 46 / .12), var(--strong-shadow); }
.consent-error-message { margin: .9rem 0 0; padding: .75rem .9rem; border-radius: var(--audience-control-radius, 12px); background: rgb(154 46 46 / .10); color: #7a2020 !important; font-weight: 750; }
.consent-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.25rem; }
.consent-actions > * { flex: 1 1 170px; }

.consent-primary,
.consent-secondary {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: var(--audience-control-radius, 999px);
    padding: .7rem 1rem;
    font-weight: 800;
}

.consent-primary { background: var(--theme-secondary); color: var(--theme-on-secondary); }
.consent-primary[data-consent-action="reject"] { border-color: var(--theme-secondary); background: var(--theme-secondary); color: var(--theme-on-secondary); }
.consent-secondary { border-color: rgb(var(--theme-secondary-rgb) / .22); background: rgb(var(--theme-surface-rgb) / .62); color: var(--theme-secondary); }
.consent-close { float: right; display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--line); border-radius: var(--audience-control-radius, 50%); background: rgb(var(--theme-surface-rgb) / .68); color: var(--theme-secondary); font-size: 1.45rem; }
.consent-privacy-link { display: inline-flex; margin-top: 1rem; color: var(--theme-secondary); font-size: .82rem; font-weight: 700; text-underline-offset: 4px; }
.consent-preferences { display: grid; gap: .7rem; margin-top: 1rem; }
.consent-category { display: block; padding: .9rem; border: 1px solid var(--line); border-radius: var(--audience-control-radius, 16px); background: rgb(var(--theme-surface-rgb) / .52); }
.consent-category-head { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .8rem; align-items: center; }
.consent-category strong { display: block; color: var(--theme-secondary); }
.consent-category small { color: var(--theme-muted); }
.consent-services { margin-top: .75rem; padding-top: .7rem; border-top: 1px solid var(--line); }
.consent-services > summary { color: var(--theme-secondary); font-weight: 750; cursor: pointer; }
.consent-service-list { display: grid; gap: .65rem; margin-top: .65rem; }
.consent-service { padding: .75rem; border-radius: var(--audience-control-radius, 14px); background: rgb(var(--theme-surface-rgb) / .58); }
.consent-service h3 { margin: 0 0 .35rem; font: 750 1rem/1.3 var(--body); }
.consent-service p { margin: .25rem 0; font-size: .88rem; }
.consent-service a { color: var(--theme-secondary); font-size: .88rem; font-weight: 750; }
.consent-settings-trigger,
[data-consent-settings] { display: inline-flex; border: 0; background: transparent; color: inherit; padding: .25rem; text-decoration: underline; text-underline-offset: 4px; }

.consent-dialog,
dialog.cookie-dialog {
    width: min(820px, calc(100% - 24px));
    max-height: calc(100svh - 24px);
    margin: auto;
    padding: 0;
    overflow: auto;
    border: 0;
    border-radius: var(--glass-radius);
    background: transparent;
    color: var(--theme-text);
}

.consent-dialog::backdrop,
dialog.cookie-dialog::backdrop { background: rgb(var(--theme-secondary-rgb) / .48); -webkit-backdrop-filter: blur(7px); backdrop-filter: blur(7px); }

/* Native, keyboard-accessible On/Off switches. */
.ui-switch,
.toggle-switch,
.consent-switch {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: .65rem;
    cursor: pointer;
}

.ui-switch input,
.toggle-switch input,
.consent-switch input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.ui-switch-track,
.toggle-track,
.switch-track {
    position: relative;
    display: grid;
    width: 76px;
    height: 38px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    border: 1px solid rgb(var(--theme-secondary-rgb) / .2);
    border-radius: 999px;
    background: rgb(var(--theme-muted-rgb) / .2);
    color: var(--theme-muted);
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-align: center;
    transition: background var(--motion-fast) ease, border-color var(--motion-fast) ease;
}

.ui-switch-track > i,
.toggle-track > i,
.switch-track > i { display: none; }

.ui-switch-track::after,
.toggle-track::after,
.switch-track::after {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 12px rgb(var(--theme-secondary-rgb) / .2);
    content: "";
    transition: transform var(--motion-fast) cubic-bezier(.2, .8, .2, 1);
}

.ui-switch input:checked + .ui-switch-track,
.toggle-switch input:checked + .toggle-track,
.consent-switch input:checked + .switch-track { border-color: var(--theme-primary); background: var(--theme-primary); color: var(--theme-on-primary); }

.ui-switch input:checked + .ui-switch-track::after,
.toggle-switch input:checked + .toggle-track::after,
.consent-switch input:checked + .switch-track::after { transform: translateX(38px); }

.ui-switch input:focus-visible + .ui-switch-track,
.toggle-switch input:focus-visible + .toggle-track,
.consent-switch input:focus-visible + .switch-track { outline: 3px solid var(--focus); outline-offset: 3px; }

.ui-switch input:disabled + .ui-switch-track,
.toggle-switch input:disabled + .toggle-track,
.consent-switch input:disabled + .switch-track { opacity: .5; cursor: not-allowed; }

/* Time-bound closure / Betriebsferien overlay and preview. */
.closure-overlay,
.closure-layer,
[data-closure-overlay] {
    position: fixed;
    inset: 0;
    z-index: 550;
    display: grid;
    place-items: center;
    padding: var(--page-gutter);
    background: rgb(var(--theme-secondary-rgb) / .42);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.closure-card,
.closure-dialog-card,
[data-closure-card] {
    position: relative;
    width: min(660px, 100%);
    max-height: calc(100svh - (2 * var(--page-gutter)));
    overflow-y: auto;
    padding: clamp(1.7rem, 5vw, 3.5rem);
    border-radius: calc(var(--glass-radius) * 1.1);
    background:
        radial-gradient(circle at 100% 0, rgb(var(--theme-accent-rgb) / .42), transparent 23rem),
        rgb(var(--glass-rgb) / var(--glass-alpha-strong));
    color: var(--theme-text);
    text-align: center;
    box-shadow: var(--strong-shadow);
}

.closure-card h2,
.closure-dialog-card h2 { margin: 0 0 .7rem; color: var(--theme-secondary); font-family: var(--heading); font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 400; line-height: 1.05; }
.closure-period { display: inline-flex; margin: 1rem 0; border-radius: var(--audience-control-radius, 999px); background: rgb(var(--theme-accent-rgb) / .24); color: var(--theme-secondary); padding: .55rem 1rem; font-weight: 800; }
.closure-dates { display: inline-flex; margin: 1rem 0; border-radius: var(--audience-control-radius, 999px); background: rgb(var(--theme-accent-rgb) / .24); color: var(--theme-secondary); padding: .55rem 1rem; font-weight: 800; }
.closure-close { position: absolute; top: .9rem; right: .9rem; display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--line); border-radius: var(--audience-control-radius, 50%); background: rgb(var(--theme-surface-rgb) / .72); color: var(--theme-secondary); font-size: 1.4rem; }

.closure-dialog {
    width: min(700px, calc(100% - 24px));
    max-height: calc(100svh - 24px);
    margin: auto;
    padding: 0;
    border: 0;
    border-radius: calc(var(--glass-radius) * 1.1);
    background: transparent;
}
.closure-dialog::backdrop { background: rgb(var(--theme-secondary-rgb) / .42); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }

.site-footer {
    width: calc(100% - (2 * var(--page-gutter)));
    max-width: var(--site-frame-max);
    min-height: 500px;
    margin: 0 auto var(--page-gutter);
    padding: clamp(4rem, 9vw, 7rem) var(--page-gutter) 2.5rem;
    overflow: hidden;
    border-radius: calc(var(--glass-radius) * 1.3);
    background:
        radial-gradient(circle at 85% 0, rgb(var(--theme-primary-rgb) / .48), transparent 36rem),
        var(--theme-secondary);
    color: var(--theme-on-secondary);
    text-align: center;
    box-shadow: var(--strong-shadow);
}

.footer-inner { width: min(var(--site-frame-max), 100%); margin: 0 auto; }
.footer-brand { display: grid; justify-items: center; gap: .3rem; }
.footer-brand .wordmark-ornament { color: var(--theme-accent); }
.footer-brand strong { font-family: var(--heading); font-size: clamp(1.35rem, 3vw, 2rem); letter-spacing: .08em; }
.footer-brand .brand-logo { width: min(var(--footer-logo-width-desktop), 100%); max-height: none; object-position: center; filter: brightness(0) invert(1); }
.footer-logo { flex-direction: column; justify-content: center; color: inherit; text-align: center; }
.footer-logo:is(.mode-logo, .mode-both) { width: min(var(--footer-logo-width-desktop), 100%); }
.footer-logo > img { width: min(var(--footer-logo-width-desktop), 100%); max-height: none; object-position: center; filter: brightness(0) invert(1); }
.footer-logo:is(.mode-logo, .mode-both) > img { width: 100%; }
.footer-brand p { margin: .15rem 0; }
.footer-contact-row { display: flex; justify-content: center; flex-wrap: wrap; gap: .55rem 1.25rem; margin-top: .8rem !important; font-size: clamp(.96rem,1.3vw,1.12rem); font-weight: 750; line-height: 1.45; }
.footer-contact-row a { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding-inline: .2rem; }
.site-footer a { color: inherit; text-decoration-color: rgb(255 255 255 / .5); text-underline-offset: 4px; }
.footer-service { max-width: var(--content); margin: 2.25rem auto 1.5rem; }
.footer-service > strong { color: var(--theme-accent); font-size: .75rem; letter-spacing: .1em; }
.footer-service p { margin: .35rem 0; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; font-size: .72rem; font-weight: 750; letter-spacing: .07em; }
.footer-links a { text-decoration: none; }
.footer-links button { border: 0; background: transparent; color: inherit; padding: 0; font: inherit; letter-spacing: inherit; text-transform: inherit; }
.footer-links a:hover { text-decoration: underline; }
.footer-service-links { margin-top: 1.35rem; }
.footer-service-links + .footer-links { margin-top: .55rem; }
.footer-employee-login { display: inline-flex; align-items: center; justify-content: center; gap: .35em; min-height: 44px; padding: .35rem .5rem; }
.copyright { margin-top: 1.8rem; font-size: .72rem; opacity: .72; }

.back-to-top {
    position: fixed;
    right: 1.3rem;
    bottom: 1.3rem;
    z-index: 90;
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border: var(--glass-outline-width, 1px) solid rgb(var(--glass-outline-rgb) / var(--glass-outline-alpha));
    border-radius: var(--audience-control-radius, 50%);
    background: rgb(var(--theme-secondary-rgb) / .88);
    color: var(--theme-on-secondary);
    box-shadow: 0 14px 36px rgb(var(--theme-secondary-rgb) / .24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity var(--motion-fast) ease, transform var(--motion-fast) ease;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* Progressive reveal: content stays visible until JavaScript explicitly opts in. */
.motion-ready [data-reveal] {
    opacity: var(--reveal-start-opacity);
    transform: translateY(var(--reveal-distance));
    transition: opacity var(--motion-slow) ease, transform var(--motion-slow) cubic-bezier(.2, .75, .2, 1);
}

.motion-ready [data-reveal].is-visible,
.motion-ready [data-reveal].is-revealed { opacity: 1; transform: translateY(0); }

@keyframes ambient-drift-a {
    from { transform: translate3d(-2%, -2%, 0) scale(.96); }
    to { transform: translate3d(var(--ambient-shift), var(--ambient-shift), 0) scale(1.08); }
}

@keyframes ambient-drift-b {
    from { transform: translate3d(3%, 5%, 0) scale(1.04); }
    to { transform: translate3d(calc(0% - var(--ambient-shift)), calc(0% - var(--ambient-shift)), 0) scale(.94); }
}

@keyframes photo-zoom {
    from { transform: scale(1); }
    to { transform: scale(var(--photo-zoom-scale)); }
}

body:is(.theme-urban-singles, .theme-natur-tourismus, .theme-business, .theme-familie)
    :is(h1, h2, h3, h4, .wordmark strong, .offcanvas-menu li a, .faq-question, .faq-list summary, [data-faq-question]) {
    font-weight: var(--audience-heading-weight, 400);
    letter-spacing: var(--audience-heading-spacing, normal);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .glass-surface,
    .notice-bar,
    .header-inner,
    .hero-copy,
    .wordmark,
    .content-section,
    .room-module,
    .rate-card,
    .contact-section,
    .faq-section,
    .closure-card,
    .consent-card,
    .cookie-consent,
    .public-alert { background: var(--theme-surface); }

    .offcanvas-menu,
    .consent-banner { background: var(--theme-surface); }
}

@media (max-width: 1080px) {
    .header-booking small { display: none; }
    .header-brand { max-width: none; }
    .header-brand > img { width: 100%; }
    .header-contact { min-width: 190px; }
    .header-contact a { font-size: .8rem; }
    .offcanvas-menu { width: min(620px, 68vw); }
    .content-section, .room-module { grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr); }
    .contact-section { grid-template-columns: .9fr 1.1fr; }
}

@media (min-width: 1101px) and (max-width: 1700px) {
    .site-header .header-brand {
        flex-basis: min(var(--brand-logo-width-desktop), calc(50% - 210px));
        width: min(var(--brand-logo-width-desktop), calc(50% - 210px));
        max-width: none;
    }
    .site-header .header-brand.mode-logo { width: min(var(--brand-logo-width-desktop), calc(50% - 210px)); }
}

@media (max-width: 1100px) {
    .header-contact { display: none; }
}

@media (max-width: 820px) {
    :root { --header-height: var(--header-height-mobile); }
    .site-header { padding: 10px var(--page-gutter); }
    .site-header.is-compact { min-height: var(--header-height); height: auto; padding-block: 7px; }
    .header-inner { padding: .75rem 1rem; }
    .contact-line, .header-contact { display: none; }
    .site-header .header-brand, .site-header .site-brand { max-width: calc(100% - 138px); }
    .site-header.is-compact .header-brand { max-width: calc(100% - 138px); }
    .site-header .header-brand { flex-basis: var(--brand-logo-width-mobile); width: min(var(--brand-logo-width-mobile), calc(100% - 138px)); }
    .site-header .header-brand.mode-logo { width: var(--brand-logo-width-mobile); }
    .brand-logo, .brand-logo-image, .hotel-logo { width: min(var(--brand-logo-width-mobile), 100%); height: auto; max-height: none; }
    .site-brand > img { width: 100%; height: auto; max-height: none; }
    .header-brand > img { width: 100%; height: auto; max-height: none; }
    .header-booking { display: none; }
    .header-divider { display: none; }
    .offcanvas-menu { width: min(680px, 88vw); }
    .hero-home { height: max(530px, calc(100svh - var(--header-footprint) - 16px)); min-height: 530px; }
    .hero-page { height: 430px; }
    .content-section, .room-module, .contact-section { grid-template-columns: 1fr; }
    .content-section.image-right .section-image, .room-module.image-right .room-image { order: 1; }
    .content-section.image-right .section-copy, .room-module.image-right .room-content { order: 2; }
    .section-image, .room-image { min-height: 390px; }
    .rates-overview { grid-template-columns: 1fr; }
    .contact-details { min-height: 320px; }
}

@media (max-width: 620px) {
    :root { --page-gutter: 12px; }
    body { font-size: 15px; }
    body::before, body::after { width: 75vw; }
    .notice-bar { align-items: stretch; flex-direction: column; }
    .notice-bar button { width: 100%; }
    .brand-name, .brand-identity { font-size: .83rem; letter-spacing: .02em; }
    .menu-toggle { min-width: 54px; min-height: 50px; }
    .menu-toggle > span:last-child { font-size: .58rem; }
    .header-actions { gap: .35rem; }
    .header-actions > .language-switcher { display: inline-flex; gap: .12rem; padding: .16rem; }
    .header-actions > .language-switcher a { min-width: 36px; min-height: 36px; padding: .25rem; }
    .header-actions > .language-switcher .locale-code { display: none; }
    .offcanvas-menu { width: 100vw; padding: 5.5rem 1.1rem 2rem; }
    .offcanvas-menu ul { grid-template-columns: 1fr; }
    .offcanvas-menu li a { min-height: 76px; padding-top: 1.9rem; font-size: 1.25rem; }
    .drawer-footer { align-items: stretch; flex-direction: column; }
    .drawer-footer .language-switcher, .drawer-booking { width: 100%; }
    .drawer-footer .language-switcher > *, .drawer-booking { flex: 1; }
    .hero { border-radius: calc(var(--glass-radius) * 1.1); }
    .hero-home { min-height: 500px; height: calc(100svh - var(--header-footprint) - 14px); }
    .hero-page { height: 380px; }
    .hero-copy { right: .85rem; bottom: .85rem; width: calc(100% - 1.7rem); padding: 1.35rem; }
    .hero-copy-top { gap: .65rem; }
    .hero-copy h1 { font-size: clamp(2rem, 11vw, 3.2rem); }
    .hero-brand-logo-left { top: .85rem; left: .85rem; width: min(var(--hero-left-logo-width-mobile), calc(100% - 1.7rem)); padding: .55rem; border-radius: 16px; }
    .hero.has-video .hero-brand-logo-left { top: 4.8rem; }
    .hero-card-logo { width: min(var(--hero-card-logo-width-mobile), 42vw); height: auto; }
    .hero-booking { width: 100%; margin-top: 1rem; }
    .hero-slider-toggle, .media-control, .video-control { top: .85rem; right: .85rem; bottom: auto; max-width: calc(100% - 1.7rem); }
    .hero-media.has-video .hero-slider-toggle { right: auto; left: .85rem; }
    .wordmark { min-height: 190px; }
    .wordmark .brand-logo { width: min(var(--brand-logo-width-mobile), 100%); height: auto; max-height: none; }
    .wordmark-brand { width: min(var(--brand-logo-width-mobile), 100%); }
    .footer-logo:is(.mode-logo, .mode-both) { width: min(var(--footer-logo-width-mobile), 100%); }
    .footer-brand .brand-logo, .footer-logo > img { width: min(var(--footer-logo-width-mobile), 100%); max-height: none; }
    .footer-logo:is(.mode-logo, .mode-both) > img { width: 100%; }
    .sustainability-marker { min-height: 460px; align-items: end; padding: 1.15rem; }
    .sustainability-leaf { inset: 2% 1% 42%; opacity: 1; }
    .sustainability-copy {
        align-self: end;
        width: 100%;
        padding: 1.35rem;
        background: linear-gradient(
            115deg,
            rgb(var(--glass-rgb) / var(--glass-alpha-strong)),
            rgb(var(--glass-rgb) / var(--glass-alpha)) 82%,
            transparent
        );
    }
    .sustainability-copy h2 { font-size: clamp(2rem, 10vw, 3.25rem); }
    .sustainability-copy-body { font-size: .96rem; line-height: 1.65; }
    .image-triptych { grid-template-columns: 1fr; }
    .image-triptych figure { aspect-ratio: 16 / 10; }
    .image-triptych figure:nth-child(2) { transform: none; }
    .content-section, .room-module { min-height: 0; }
    .section-image, .room-image { min-height: 280px; }
    .section-copy, .room-content, .rate-card-body, .contact-details, .contact-form-wrap { padding: 1.5rem; }
    .amenities, .contact-form-grid { grid-template-columns: 1fr; }
    .span-two { grid-column: auto; }
    .rate-row { grid-template-columns: 1fr; gap: .6rem; }
    .rate-price { text-align: left; }
    .rate-card-line { align-items: flex-start; flex-direction: column; }
    .rate-card-line strong { text-align: left; }
    .faq-section, .important-info, [data-faq-section] { padding: 1.35rem; }
    .faq-list, .faq-list.glass-surface { gap: .35rem; padding: .35rem; }
    .faq-question, .faq-list summary, [data-faq-question] { min-height: 68px; padding: .85rem 3.5rem .85rem .85rem; font-size: 1.12rem; }
    .faq-question::after, .faq-list summary::after, [data-faq-question]::after { right: .7rem; width: 36px; height: 36px; }
    .faq-answer, [data-faq-answer], .faq-list details > :not(summary) { margin-inline: .85rem; padding-right: .2rem; }
    .consent-layer, .cookie-consent-layer, [data-consent-layer] { padding: 8px; }
    .consent-actions { flex-direction: column; }
    .consent-actions > * { width: 100%; flex-basis: auto; }
    .consent-category-head { grid-template-columns: 1fr; }
    .closure-overlay, .closure-layer, [data-closure-overlay] { padding: 10px; }
    .site-footer { min-height: 550px; }
    .footer-links { flex-direction: column; }
    .footer-links > span { display: none; }
    .back-to-top { right: 1rem; bottom: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-delay: 0s !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .motion-ready [data-reveal] { opacity: 1; transform: none; }
    img.hero-slide.is-active, .hero-slide-image.is-active { transform: none; }
    .sustainability-leaf { animation: none; transform: none; }
    .brand-cursor-preview { transition: none; }
}

@media (hover: none), (pointer: coarse) {
    .brand-cursor-preview { display: none !important; }
}

@media (forced-colors: active) {
    .glass-surface,
    .notice-bar,
    .header-inner,
    .hero-copy,
    .wordmark,
    .content-section,
    .room-module,
    .rate-card,
    .contact-section,
    .faq-section,
    .closure-card,
    .consent-card { border: 1px solid CanvasText; background: Canvas; box-shadow: none; }
    .menu-toggle, .menu-close, .button-public, .booking-cta { border: 1px solid ButtonText; }
    .faq-list,
    .faq-list.glass-surface { border: 1px solid CanvasText; background: Canvas; box-shadow: none; }
    .faq-item,
    .faq-list details,
    [data-faq-item] { border: 1px solid CanvasText; background: Canvas; box-shadow: none; }
    .faq-item.is-open,
    .faq-list details[open],
    [data-faq-item].is-open { border-left: 4px solid Highlight; }
    .sustainability-leaf { display: none; }
    .sustainability-marker::after { display: none; }
    .sustainability-copy {
        border: 1px solid CanvasText;
        border-left: 6px solid Highlight;
        background: Canvas;
        box-shadow: none;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }
    .sustainability-copy h2,
    .sustainability-copy .sustainability-copy-body { color: CanvasText; }
    .sustainability-copy-accent { background: Highlight; }
}

@media (prefers-contrast: more) {
    .glass-surface,
    .notice-bar,
    .header-inner,
    .hero-copy,
    .wordmark,
    .content-section,
    .room-module,
    .rate-card,
    .contact-section,
    .faq-section,
    .closure-card,
    .consent-card,
    .cookie-consent,
    .public-alert { background: var(--theme-surface); }

    .offcanvas-menu { background: var(--theme-surface); }
    .rich-copy { color: var(--theme-text); }
    .faq-list,
    .faq-list.glass-surface { border: 1px solid var(--line); background: rgb(var(--theme-surface-rgb) / .72); }
    .faq-item,
    .faq-list details,
    [data-faq-item] { border-color: var(--line); background: var(--theme-surface); }
    .sustainability-marker, .sustainability-copy { background: var(--theme-surface); }
    .sustainability-leaf { opacity: 1; }
}

@media print {
    body { background: #fff; color: #000; }
    [data-reveal] { opacity: 1 !important; transform: none !important; }
    body::before, body::after,
    .site-header-slot, .site-header, .offcanvas-menu, .menu-backdrop,
    .back-to-top, .notice-bar, .booking-cta, .contact-form,
    .consent-layer, .cookie-consent-layer, .closure-overlay,
    .hero-slider-toggle, .media-control, .video-control, .brand-cursor-preview { display: none !important; }
    .hero { height: 240px !important; box-shadow: none; }
    .content-section, .room-module, .rate-card, .contact-section, .faq-section { border: 1px solid #bbb; background: #fff; box-shadow: none; }
    .sustainability-marker { min-height: 0; padding: 1.5rem; border: 1px solid #999; background: #fff; color: #000; box-shadow: none; }
    .sustainability-leaf { display: none; }
    .sustainability-marker::after { display: none; }
    .sustainability-copy { width: 100%; padding: 0 0 0 1rem; border: 0; border-left: 4px solid #555; background: transparent; box-shadow: none; }
    .sustainability-copy h2 { color: #000; font-size: 24pt; }
    .sustainability-copy-body { color: #000; }
    .site-footer { min-height: 0; border: 1px solid #bbb; background: #fff; color: #000; box-shadow: none; }
}
