/* ===== Basis (ehem. /css/style.css) ===== */
/* ═══════════════════════════════════════════════════════════
   LASTRAND — "Sunset Drift" Preview Theme
   ═══════════════════════════════════════════════════════════ */
:root {
    --sand-cream: #FFF6E9;
    --sand-peach: #FFE4CC;
    --sand-deep:  #F5D6B4;
    --sunset:     #F8A15C;
    --sunset-hot: #E8762B;
    --coral:      #E85D4C;
    --navy:       #2C3E6B;
    --navy-ink:   #1E2D4F;
    --sea-haze:   #7BB5C4;
    --sea-deep:   #3D8494;
    --white:      #FFFFFF;
    --ink:        #2B2A2E;
    --ink-soft:   #5A5862;

    --font-display: 'Fraunces', Georgia, serif;
    --font-hand:    'Caveat', cursive;
    --font-body:    'Inter', -apple-system, sans-serif;

    --shadow-soft: 0 10px 40px -12px rgba(44, 62, 107, 0.15);
    --shadow-deep: 0 30px 80px -20px rgba(44, 62, 107, 0.35);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--sand-cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

/* ─── Typography ─────────────────────────────────────── */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.1;
    color: var(--navy);
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(3rem, 8vw, 6rem); font-weight: 500; font-style: italic; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.65rem, 2.8vw, 2.1rem); }
h4 { font-size: 1.2rem; }
p  { color: var(--ink-soft); letter-spacing: 0.01em; }
a  { color: var(--navy); }

.hand {
    font-family: var(--font-hand);
    color: var(--sunset-hot);
    font-weight: 700;
    font-size: 1.5em;
    line-height: 1;
    display: inline-block;
    transform: rotate(-3deg);
}

/* ─── Layout ─────────────────────────────────────── */
.container       { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 32px; }
.container--wide   { max-width: 1560px; margin: 0 auto; padding: 0 32px; }
.section         { padding: 120px 0; position: relative; }
.section--sand   { background: var(--sand-peach); }
.section--white  { background: var(--white); }
.section--tight  { padding: 80px 0; }

/* ─── Navigation ─────────────────────────────────────── */
.nav {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background: rgba(255, 246, 233, 0.75);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 100px;
    padding: 12px 28px;
    display: flex;
    gap: 8px;
    align-items: center;
    box-shadow: var(--shadow-soft);
    max-width: calc(100vw - 32px);
}
.nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.18em;
    font-size: 0.88rem;
    padding-right: 18px;
    border-right: 1px solid rgba(44, 62, 107, 0.15);
    margin-right: 6px;
}
.nav__brand:hover .nav__brand-la,
.nav__brand:hover .nav__brand-strand { color: var(--coral); }
.nav__wave           { flex-shrink: 0; color: var(--navy); }
.nav__brand-la       { color: var(--sunset-hot); transition: color 0.3s; }
.nav__brand-strand   { color: var(--sunset-hot); transition: color 0.3s; }

.nav__links { display: flex; gap: 4px; align-items: center; }

.nav a:not(.nav__brand) {
    color: var(--navy);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}
.nav a:not(.nav__brand):hover {
    background: var(--sunset);
    color: var(--white);
    transform: translateY(-1px) rotate(-1deg);
}
.nav a.is-current {
    background: var(--navy);
    color: var(--white);
}

/* Nav icons — inline before each item */
.nav__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
    color: currentColor;
    opacity: 0.85;
    vertical-align: -3px;
}
.nav__icon svg { width: 16px; height: 16px; display: block; }
.nav a:not(.nav__brand) { display: inline-flex; align-items: center; gap: 2px; }

/* CTA button inside nav */
.nav__cta {
    background: var(--sunset-hot) !important;
    color: var(--white) !important;
    padding: 8px 16px 8px 14px !important;
    border-radius: 100px !important;
    margin-left: 6px;
    box-shadow: 0 4px 12px -4px rgba(232, 118, 43, 0.55);
}
.nav__cta:hover {
    background: var(--coral) !important;
    color: var(--white) !important;
    transform: translateY(-1px) rotate(-1.5deg) !important;
}
.nav__cta .nav__icon { opacity: 1; }

.nav__extra { display: none; }

/* Compact mobile CTA — only visible on mobile top bar */
.nav a.nav__cta-mobile { display: none !important; }

/* ─── HERO (Home) ─────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 140px 24px 80px;
    overflow: hidden;
}
.hero__sky {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 80% 30%, rgba(248, 161, 92, 0.28), transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(123, 181, 196, 0.22), transparent 55%),
        linear-gradient(180deg, #FFE9D0 0%, #FFF6E9 55%, #FFE4CC 100%);
}
.hero__waves {
    position: absolute; left: 0; right: 0; bottom: 0;
    height: 220px; z-index: 4; overflow: hidden; pointer-events: none;
}
.hero__waves .wave {
    position: absolute; left: 0; width: 200%; height: 160px;
    transform-origin: center bottom; will-change: transform;
}
.wave--back  { bottom: 110px; animation: drift 52s linear infinite; }
.wave--mid   { bottom: 70px;  animation: drift 36s linear infinite reverse; }
.wave--front { bottom: 34px;  animation: drift 26s linear infinite; }
.wave--foam  { bottom: 0;     animation: drift 18s linear infinite reverse; }
@keyframes drift { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }

.hero__sun {
    position: absolute;
    top: 16%; right: 11%;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle at 38% 35%, #FFE4B3 0%, #FFC078 35%, var(--sunset) 65%, var(--coral) 100%);
    box-shadow: 0 0 80px rgba(255, 192, 120, 0.5), 0 0 160px rgba(248, 161, 92, 0.45), 0 0 240px rgba(232, 93, 76, 0.25);
    animation: sun-float 10s ease-in-out infinite;
    z-index: 1;
    filter: blur(0.5px);
}
@keyframes sun-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-14px) scale(1.03); }
}
.hero__sun-reflection {
    position: absolute; bottom: 80px; right: 10%;
    width: 220px; height: 160px; z-index: 3;
    background: radial-gradient(ellipse 60% 100% at center top, rgba(255, 192, 120, 0.6), transparent 70%);
    filter: blur(4px);
    animation: shimmer 6s ease-in-out infinite;
}
@keyframes shimmer {
    0%, 100% { opacity: 0.55; transform: scaleX(1); }
    50%      { opacity: 0.8;  transform: scaleX(1.05); }
}

/* Seagulls */
.gull { position: absolute; z-index: 2; color: var(--navy) !important; will-change: transform; display: block; line-height: 0; opacity: 0.75; }
.gull svg { display: block; width: 100%; height: auto; transform-origin: center; animation: flap 1.5s ease-in-out infinite; }
.gull--1 { top: 24%; width: 42px; opacity: 0.6;  animation: fly-gull 40s linear infinite; }
.gull--2 { top: 18%; width: 28px; opacity: 0.45; animation: fly-gull 54s linear infinite -14s; }
.gull--2 svg { animation-duration: 1.9s; animation-delay: -0.3s; }
.gull--3 { top: 32%; width: 36px; opacity: 0.55; animation: fly-gull 48s linear infinite -26s; }
.gull--3 svg { animation-duration: 1.7s; animation-delay: -0.6s; }
.gull--4 { top: 14%; width: 22px; opacity: 0.4;  animation: fly-gull 62s linear infinite -40s; }
.gull--4 svg { animation-duration: 2.2s; animation-delay: -0.9s; }
@keyframes fly-gull {
    0%   { transform: translate(-80px, 0); }
    45%  { transform: translate(45vw, -22px); }
    100% { transform: translate(110vw, 10px); }
}
@keyframes flap {
    0%, 100% { transform: scaleY(1); }
    50%      { transform: scaleY(0.45); }
}

.sailboat {
    position: absolute; bottom: 165px; left: 18%;
    width: 44px; z-index: 3; opacity: 0.85;
    animation: sail 80s linear infinite, rock 4s ease-in-out infinite;
    will-change: transform;
}
@keyframes sail { from { transform: translateX(-10vw); } to { transform: translateX(75vw); } }
@keyframes rock { 0%, 100% { margin-top: 0; } 50% { margin-top: 3px; } }

.hero__content { position: relative; z-index: 3; max-width: 900px; }

.hero__badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(8px);
    border: 1px solid rgba(44, 62, 107, 0.1);
    padding: 10px 22px; border-radius: 100px;
    font-size: 0.85rem; color: var(--navy); font-weight: 500;
    margin-bottom: 32px; transform: rotate(-1deg);
    letter-spacing: 0.02em;
}
.hero__badge::before {
    content: ''; width: 8px; height: 8px;
    background: var(--sunset-hot); border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.3); opacity: 0.6; }
}

.hero h1 { margin-bottom: 28px; }
.hero h1 em { font-style: italic; color: var(--sunset-hot); font-weight: 500; }

.hero__sub {
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    color: var(--navy); opacity: 0.75;
    margin-bottom: 48px;
    max-width: 620px; margin-left: auto; margin-right: auto;
}

.hero__quote {
    font-family: var(--font-hand);
    font-size: 1.8rem; color: var(--sunset-hot);
    transform: rotate(-2deg); display: inline-block;
    margin-top: 40px;
}

/* ─── Page Hero (Unterseiten) ─────────────────────────────────────── */
.page-hero {
    position: relative;
    padding: 180px 24px 120px;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 70% 30%, rgba(248, 161, 92, 0.28), transparent 60%),
                radial-gradient(ellipse at 25% 75%, rgba(123, 181, 196, 0.18), transparent 60%),
                linear-gradient(180deg, #FFEEDB 0%, var(--sand-cream) 100%);
}
/* Variant with background image and deep overlay */
.page-hero--image {
    background: none;
    color: var(--white);
}
.page-hero--image .page-hero__bg {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover;
    background-position: center;
    /* Mask the bottom of the image so it fades to transparent → body bg shows through */
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 50%, rgba(0,0,0,0.6) 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 50%, rgba(0,0,0,0.6) 80%, transparent 100%);
}
/* Color warmth overlay + text-readability darkening layer */
.page-hero--image .page-hero__bg::after {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 40%, rgba(30, 45, 79, 0.55), transparent 70%),
        radial-gradient(ellipse at 70% 20%, rgba(248, 161, 92, 0.35), transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(44, 62, 107, 0.35), transparent 60%),
        linear-gradient(180deg, rgba(30, 45, 79, 0.25) 0%, rgba(30, 45, 79, 0) 50%);
}
.page-hero--image > * { position: relative; z-index: 1; }
.page-hero--image .page-hero__badge {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
}
.page-hero__logo {
    display: block;
    margin: 0 auto 18px;
    width: clamp(110px, 14vw, 160px);
    height: auto;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
    animation: heroLogoIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    /* Hide alt text + broken image icon until file uploaded */
    color: transparent;
    font-size: 0;
}
.page-hero__logo[data-broken] { display: none; }
@keyframes heroLogoIn {
    from { opacity: 0; transform: translateY(-12px) scale(0.92); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 700px) {
    .page-hero__logo { width: 96px; margin-bottom: 14px; }
}

/* Quick-facts strip (legacy standalone) */
.quick-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 16px;
}
.quick-fact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 28px 16px;
    background: var(--white);
    border-radius: 24px 30px 20px 28px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s, box-shadow 0.3s;
}
.quick-fact:hover {
    transform: translateY(-4px) rotate(-0.5deg);
    box-shadow: var(--shadow-deep);
}

/* Fact cards inside a gallery — square, flush with images */
.gallery .quick-fact {
    aspect-ratio: 1;
    padding: 24px 18px;
    gap: 14px;
    transform: rotate(var(--r, -1deg));
}
.gallery .quick-fact:hover {
    transform: rotate(0) scale(1.04);
    z-index: 2;
}
.gallery .quick-fact .quick-fact__icon {
    width: 56px; height: 56px;
}
.gallery .quick-fact .quick-fact__icon svg { width: 28px; height: 28px; }
.gallery .quick-fact strong { font-size: 1.15rem; line-height: 1.15; }
.gallery .quick-fact span { font-size: 0.88rem; line-height: 1.35; }

/* Gallery mixes facts at positions 1, 4, 7, 10 — explicit gradients so all 4 icons stay visible */
.gallery .quick-fact:nth-child(1) .quick-fact__icon { background: linear-gradient(135deg, var(--sand-peach), var(--sunset)); }
.gallery .quick-fact:nth-child(4) .quick-fact__icon { background: linear-gradient(135deg, #8FC9D7, var(--sea-deep)); }
.gallery .quick-fact:nth-child(7) .quick-fact__icon { background: linear-gradient(135deg, #FFB884, var(--coral)); }
.gallery .quick-fact:nth-child(10) .quick-fact__icon { background: linear-gradient(135deg, var(--sea-haze), var(--navy)); }
.quick-fact__icon {
    width: 64px; height: 64px;
    border-radius: 50% 45% 55% 50%;
    background: linear-gradient(135deg, var(--sand-peach), var(--sunset));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 6px 18px -4px rgba(248, 161, 92, 0.4);
}
.quick-fact__icon svg { width: 32px; height: 32px; }
.quick-fact:nth-child(2) .quick-fact__icon { background: linear-gradient(135deg, #8FC9D7, var(--sea-deep)); }
.quick-fact:nth-child(3) .quick-fact__icon { background: linear-gradient(135deg, #FFB884, var(--coral)); }
.quick-fact:nth-child(4) .quick-fact__icon { background: linear-gradient(135deg, var(--sea-haze), var(--navy)); }
.quick-fact strong {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    color: var(--navy);
    font-size: 1.25rem;
    line-height: 1.15;
}
.quick-fact span {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.4;
}

@media (max-width: 820px) {
    .quick-facts { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .quick-fact { padding: 20px 14px; border-radius: 20px 24px 18px 22px; }
}
.page-hero__badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.7); backdrop-filter: blur(8px);
    border: 1px solid rgba(44,62,107,0.1);
    padding: 8px 20px; border-radius: 100px;
    font-size: 0.8rem; color: var(--navy); font-weight: 500;
    margin-bottom: 20px; letter-spacing: 0.08em;
    text-transform: uppercase;
}
.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 20px;
}
.page-hero h1 em {
    font-style: italic; color: var(--sunset-hot); font-weight: 500;
}
.page-hero__sub {
    font-family: var(--font-hand);
    font-size: 1.8rem; color: var(--sunset-hot);
    transform: rotate(-2deg);
    display: inline-block; margin-top: 8px;
}
.page-hero__text {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    max-width: 640px;
    margin: 12px auto 8px;
    color: var(--ink-soft);
    line-height: 1.6;
}
.page-hero--image h1,
.page-hero--image h1 em {
    text-shadow:
        0 2px 8px rgba(30, 45, 79, 0.45),
        0 6px 28px rgba(30, 45, 79, 0.35);
}
.page-hero--image .page-hero__text {
    color: rgba(255, 255, 255, 0.98);
    text-shadow:
        0 2px 6px rgba(15, 25, 50, 0.75),
        0 6px 22px rgba(15, 25, 50, 0.55);
}
.page-hero--image h1 {
    color: var(--white);
    text-shadow:
        0 2px 10px rgba(15, 25, 50, 0.75),
        0 8px 32px rgba(15, 25, 50, 0.55);
}
.page-hero--image h1 em {
    color: var(--sunset);
    text-shadow:
        0 2px 10px rgba(70, 25, 10, 0.7),
        0 8px 32px rgba(70, 25, 10, 0.5);
}
.page-hero--image .page-hero__sub {
    text-shadow:
        0 1px 0 rgba(15, 25, 50, 0.45),
        0 2px 12px rgba(15, 25, 50, 0.7),
        0 0 24px rgba(15, 25, 50, 0.4);
    color: #FFE4CC;
}
.page-hero--image .page-hero__badge {
    box-shadow: 0 4px 18px rgba(15, 25, 50, 0.35);
}
.page-hero--image .page-hero__badge {
    box-shadow: 0 6px 20px -6px rgba(30, 45, 79, 0.35);
}
.page-hero__mini-waves { display: none; }

/* Floating decorations on page hero */
.page-hero .gull { position: absolute; }

/* ─── Buttons ─────────────────────────────────────── */
.btn-group {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem; font-weight: 600;
    text-decoration: none; cursor: pointer; border: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 24px 30px 22px 28px;
    position: relative; overflow: hidden;
}
.btn--primary {
    background: var(--sunset-hot); color: var(--white);
    box-shadow: 0 8px 24px -6px rgba(232, 118, 43, 0.5);
}
.btn--primary:hover {
    transform: translateY(-3px) rotate(-1.5deg);
    box-shadow: 0 14px 32px -6px rgba(232, 118, 43, 0.6);
    background: var(--coral);
}
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { transform: translateY(-3px) rotate(1.5deg); background: var(--navy-ink); color: var(--white); }
.btn--ghost {
    background: rgba(255, 255, 255, 0.92); color: var(--navy);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(44, 62, 107, 0.2);
    position: relative;
    z-index: 2;
}
.btn--ghost:hover { transform: translateY(-3px) rotate(-1deg); background: var(--white); color: var(--navy); }
.btn--sm { padding: 12px 22px; font-size: 0.85rem; }
.btn__icon { width: 18px; height: 18px; flex-shrink: 0; }
.btn--sm .btn__icon { width: 16px; height: 16px; }

/* Wave divider */
.wave-divider { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 4; line-height: 0; }
.wave-divider svg { width: 100%; height: 80px; display: block; }

/* ─── Teaser Polaroids ─────────────────────────────────────── */
.teasers {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 48px; margin-top: 72px;
}
.polaroid {
    background: var(--white);
    padding: 18px 18px 60px;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none; color: inherit;
    display: block; position: relative;
}
.polaroid:nth-child(1) { transform: rotate(-2deg); }
.polaroid:nth-child(2) { transform: rotate(1deg) translateY(20px); }
.polaroid:nth-child(3) { transform: rotate(-1deg); }
.polaroid:hover {
    transform: rotate(0) translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-deep); z-index: 2;
}
.polaroid__img {
    position: relative; aspect-ratio: 4 / 5;
    overflow: hidden; background: var(--sand-deep);
    border-radius: 2px;
}
.polaroid__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 12s ease-out;
}
.polaroid:hover .polaroid__img img { transform: scale(1.12); }
.polaroid::before {
    content: ''; position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%) rotate(-4deg);
    width: 80px; height: 22px;
    background: rgba(248, 161, 92, 0.4);
    border-left: 1px dashed rgba(0,0,0,0.05);
    border-right: 1px dashed rgba(0,0,0,0.05);
}
.polaroid__caption {
    text-align: center; margin-top: 18px;
    font-family: var(--font-hand);
    font-size: 1.75rem; color: var(--navy);
    line-height: 1;
}
.polaroid__caption small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem; color: var(--ink-soft);
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-top: 8px; font-weight: 500;
}

/* ─── Section Header ─────────────────────────────────────── */
.section__head { text-align: center; margin-bottom: 60px; }
.section__label {
    font-family: var(--font-hand);
    font-size: 2rem; color: var(--sunset-hot);
    display: inline-block; transform: rotate(-2deg);
    margin-bottom: 4px;
}
.section__head p { max-width: 640px; margin: 20px auto 0; font-size: 1.1rem; }

/* ─── Features ─────────────────────────────────────── */
.features {
    background: var(--white);
    border-radius: 60px 40px 80px 50px;
    padding: 80px 60px; margin: 40px 0;
    box-shadow: var(--shadow-soft);
    position: relative; overflow: hidden;
}
.features::before {
    content: ''; position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(248, 161, 92, 0.15), transparent 70%);
    border-radius: 50%;
}
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    position: relative; z-index: 1;
    align-items: stretch;
}
.feature {
    text-align: left;
    padding: 28px 28px 32px;
    background: linear-gradient(150deg, rgba(248, 161, 92, 0.08), rgba(255, 246, 233, 0.5));
    border-radius: 24px 30px 20px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.feature:nth-child(2) {
    background: linear-gradient(150deg, rgba(143, 201, 215, 0.12), rgba(255, 246, 233, 0.5));
    border-radius: 30px 24px 26px 20px;
    margin-top: 16px;
}
.feature:nth-child(3) {
    background: linear-gradient(150deg, rgba(255, 184, 132, 0.12), rgba(255, 246, 233, 0.5));
    border-radius: 26px 20px 30px 24px;
}
.feature__icon {
    width: 56px; height: 56px;
    border-radius: 50% 45% 55% 50%;
    background: linear-gradient(135deg, var(--sand-peach), var(--sunset));
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: var(--white);
    box-shadow: 0 8px 24px -6px rgba(248, 161, 92, 0.4);
    animation: bob 6s ease-in-out infinite;
    flex-shrink: 0;
    margin: 0;
}
.feature:nth-child(2) .feature__icon {
    animation-delay: -2s;
    background: linear-gradient(135deg, #D4EEF3, var(--sea-haze));
}
.feature:nth-child(3) .feature__icon {
    animation-delay: -4s;
    background: linear-gradient(135deg, #FFB884, var(--coral, #E8762B));
}
.feature h4 { margin-bottom: 2px; font-size: 1.15rem; }
.feature p { font-size: 0.95rem; line-height: 1.55; margin: 0; }

@media (max-width: 880px) {
    .features__grid { grid-template-columns: 1fr; gap: 16px; }
    .feature:nth-child(2) { margin-top: 0; }
}
@keyframes bob {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50%      { transform: translateY(-8px) rotate(2deg); }
}
.feature h4 { margin-bottom: 8px; }

/* ─── Event-type chips ─────────────────────────────────────── */
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 28px;
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--white);
    border: 1.5px solid rgba(44, 62, 107, 0.12);
    border-radius: 100px;
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}
.chip svg { width: 18px; height: 18px; color: var(--sunset-hot); flex-shrink: 0; }
.chip:hover {
    border-color: var(--sunset);
    background: var(--sand-peach);
    transform: translateY(-1px);
}

/* ─── Private-booking specs strip ─────────────────────────────────────── */
.private-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--white);
    border-radius: 28px 36px 24px 32px;
    padding: 24px 8px;
    box-shadow: var(--shadow-soft);
}
.private-spec {
    text-align: center;
    padding: 12px 16px;
    border-right: 1px dashed rgba(44, 62, 107, 0.14);
}
.private-spec:last-child { border-right: none; }
.private-spec strong {
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    color: var(--navy);
    font-size: 1.4rem;
    line-height: 1.1;
    margin-bottom: 4px;
}
.private-spec span {
    display: block;
    font-size: 0.85rem;
    color: var(--ink-soft);
}
@media (max-width: 740px) {
    .private-specs { grid-template-columns: repeat(2, 1fr); }
    .private-spec:nth-child(2) { border-right: none; }
    .private-spec:nth-child(1), .private-spec:nth-child(2) { border-bottom: 1px dashed rgba(44, 62, 107, 0.14); padding-bottom: 16px; }
    .private-spec:nth-child(3), .private-spec:nth-child(4) { padding-top: 16px; }
}

/* ─── Split layout ─────────────────────────────────────── */
.split {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.split:has(.info-block) { align-items: stretch; }
.split .info-block { height: 100%; display: flex; flex-direction: column; }
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__image {
    position: relative;
    border-radius: 24px 40px 28px 36px;
    overflow: hidden;
    aspect-ratio: 5 / 6;
    background: var(--sand-deep);
    box-shadow: var(--shadow-deep);
    transform: rotate(-1deg);
    transition: transform 0.5s;
}
.split__image:hover { transform: rotate(0); }
.split__image img { width: 100%; height: 100%; object-fit: cover; }

.split__content h2 { margin-bottom: 20px; }
.split__content p  { margin-bottom: 20px; font-size: 1.05rem; }

/* ─── Generic Card ─────────────────────────────────────── */
.card {
    background: var(--white);
    border-radius: 28px 32px 24px 36px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-deep);
}
.card h3 { margin-bottom: 12px; }
.card__img {
    margin: -32px -32px 24px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--sand-deep);
}
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s; }
.card:hover .card__img img { transform: scale(1.08); }
.card__meta {
    color: var(--sunset-hot);
    font-family: var(--font-hand);
    font-size: 1.3rem;
    margin-bottom: 4px;
}

/* ─── Room cards (Hotel) ─────────────────────────────────────── */
.rooms {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}
.room {
    background: var(--white);
    border-radius: 30px 38px 26px 34px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s;
    display: flex; flex-direction: column;
}
.room:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.room__img {
    aspect-ratio: 4 / 3;
    background: var(--sand-deep);
    overflow: hidden;
    position: relative;
}
.room__img > img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s; }
.room:hover .room__img > img { transform: scale(1.08); }

/* Placeholder for rooms without photos yet */
.room__img--placeholder {
    background:
        repeating-linear-gradient(135deg, transparent 0 18px, rgba(44,62,107,0.04) 18px 19px),
        linear-gradient(150deg, var(--sand-cream) 0%, var(--sand-deep) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(44, 62, 107, 0.55);
}
.room__placeholder-icon { width: 44px; height: 44px; }
.room__placeholder-label {
    font-family: var(--font-display, 'Fraunces', serif);
    font-style: italic;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

/* Slider for room galleries */
.room__img--gallery { cursor: zoom-in; }
.room__img--gallery > img {
    transition: opacity 0.3s;
    /* Hide alt-text if image fails — placeholder fallback shows behind */
    color: transparent;
}
/* Gallery container becomes placeholder when image fails to load */
.room__img--gallery {
    background:
        repeating-linear-gradient(135deg, transparent 0 18px, rgba(44,62,107,0.04) 18px 19px),
        linear-gradient(150deg, var(--sand-cream) 0%, var(--sand-deep) 100%);
}

.room__thumbs {
    position: absolute;
    bottom: 12px; left: 12px;
    display: flex; gap: 6px;
    z-index: 2;
}
.room__thumb {
    width: 52px; height: 38px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.5);
    opacity: 0.75;
    transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
    color: transparent;
    background: rgba(44, 62, 107, 0.12);
}
.room__thumb:hover { opacity: 1; transform: scale(1.05); }
.room__thumb--active { border-color: #fff; opacity: 1; }

.room__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px; height: 38px;
    background: rgba(255, 255, 255, 0.85);
    color: var(--navy);
    border: none;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(20, 28, 48, 0.18);
    opacity: 0;
    transition: opacity 0.25s, background 0.25s, transform 0.2s;
    z-index: 2;
    padding: 0;
}
.room__arrow svg { width: 18px; height: 18px; }
.room__arrow--prev { left: 12px; }
.room__arrow--next { right: 12px; }
.room__img--gallery:hover .room__arrow { opacity: 0.92; }
.room__arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); opacity: 1; }
@media (hover: none) {
    .room__arrow { opacity: 0.9; }
}
.room__price {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 100px;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--navy);
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}
.room__body { padding: 28px 32px 32px; flex: 1; display: flex; flex-direction: column; }
.room__body h3 { margin-bottom: 8px; }
.room__body > p { flex: 1; margin-bottom: 20px; }
.room__specs {
    list-style: none;
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-bottom: 24px;
}
.room__specs li {
    font-size: 0.8rem;
    background: var(--sand-cream);
    padding: 5px 12px;
    border-radius: 100px;
    color: var(--navy);
    font-weight: 500;
}

/* Einzelkachel — Inklusivleistungen */
.room--includes {
    background: linear-gradient(140deg, var(--sand-peach) 0%, #FFD9B8 100%);
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    position: relative;
}
.room--includes::before {
    content: '';
    position: absolute;
    top: -60px; left: -60px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(255,255,255,0.55), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.room--includes__head {
    padding: 32px 28px 16px;
    position: relative;
    z-index: 1;
}
.room--includes__head .hand {
    color: var(--sunset-hot);
    margin-bottom: 4px;
    display: block;
}
.room--includes__head h3 {
    font-size: clamp(1.15rem, 1.5vw, 1.35rem);
    margin-bottom: 10px;
    line-height: 1.2;
}
.room--includes__head p {
    font-size: 0.88rem;
    color: var(--ink-soft);
}

.includes-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 8px 28px 28px;
    position: relative;
    z-index: 1;
    flex: 1;
}
.includes-list li {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(44, 62, 107, 0.18);
}
.includes-list li:last-child { border-bottom: none; }

.includes-list li .includes-list__icon {
    width: 36px; height: 36px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--navy);
    border-radius: 10px 14px 9px 12px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px -4px rgba(30, 45, 79, 0.15);
    padding: 0;
}
.includes-list li .includes-list__icon svg {
    width: 20px; height: 20px;
    display: block;
    flex-shrink: 0;
}
.includes-list li > div { flex: 1; min-width: 0; }
.includes-list li strong {
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.98rem;
    line-height: 1.15;
}
.includes-list li span {
    display: block;
    font-size: 0.78rem;
    color: var(--ink-soft);
    margin-top: 2px;
    line-height: 1.35;
}

/* ─── Menu (Restaurant) ─────────────────────────────────────── */
.menu {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}
.menu__col h3 {
    font-family: var(--font-hand);
    font-size: 2rem;
    color: var(--sunset-hot);
    margin-bottom: 16px;
    transform: rotate(-1deg);
}
.menu-item {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px dashed rgba(44,62,107,0.15);
    align-items: center;
}
.menu-item:last-child { border-bottom: none; }
.menu-item__icon {
    width: 44px; height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--sand-cream);
    color: var(--navy);
    border-radius: 14px 18px 12px 16px;
    flex-shrink: 0;
}
.menu-item__icon svg {
    width: 24px; height: 24px;
    display: block;
}
.menu-item__name {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--navy);
    font-size: 1.15rem;
    margin-bottom: 4px;
}
.menu-item__desc {
    font-size: 0.9rem;
    color: var(--ink-soft);
}
.menu-item__price {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    color: var(--sunset-hot);
    font-size: 1.2rem;
}

/* ─── Events ─────────────────────────────────────── */
.events-list {
    display: flex; flex-direction: column; gap: 24px;
}
.event {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 32px;
    align-items: center;
    background: var(--white);
    border-radius: 24px 32px 20px 28px;
    padding: 24px 32px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s;
}
.event:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-deep);
}
.event__date {
    text-align: center;
    background: linear-gradient(135deg, var(--sunset), var(--coral));
    color: var(--white);
    border-radius: 20px 26px 18px 24px;
    padding: 14px 12px;
    font-family: var(--font-display);
}
.event__date strong {
    display: block;
    font-size: 2.2rem;
    line-height: 1;
    font-style: italic;
    font-weight: 500;
}
.event__date span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-top: 4px;
    opacity: 0.85;
}
.event__info h3 { margin-bottom: 6px; font-size: 1.4rem; }
.event__info p  { font-size: 0.95rem; }
.event__info .event__meta {
    font-family: var(--font-hand);
    color: var(--sea-deep);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

/* ─── Gallery ─────────────────────────────────────── */
.gallery {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery__item {
    aspect-ratio: 1;
    border-radius: 20px 26px 18px 24px;
    overflow: hidden;
    background: var(--sand-deep);
    transform: rotate(var(--r, 0));
    transition: transform 0.4s;
}
.gallery__item:nth-child(2n) { --r: 1deg; }
.gallery__item:nth-child(3n) { --r: -1.5deg; }
.gallery__item:nth-child(4n) { --r: 0.5deg; }
.gallery__item { cursor: pointer; position: relative; }
.gallery__item:hover { transform: rotate(0) scale(1.04); z-index: 2; box-shadow: var(--shadow-deep); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; }

.gallery__zoom {
    position: absolute;
    top: 12px; right: 12px;
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    color: var(--navy);
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(20, 28, 48, 0.18);
    opacity: 0.85;
    transform: scale(0.9);
    transition: opacity 0.25s, transform 0.25s, background 0.25s;
    pointer-events: none;
}
.gallery__zoom svg { width: 18px; height: 18px; }
.gallery__item:hover .gallery__zoom {
    opacity: 1;
    transform: scale(1);
    background: var(--sunset, #E8762B);
    color: #fff;
}

/* ─── Hero Video (bridges page-hero and content) ──────── */
.hero-video {
    position: relative;
    z-index: 2;
    margin-top: -70px; /* slight overlap into hero for soft transition */
    margin-bottom: 24px;
    padding-top: 24px;
    pointer-events: none; /* container doesn't block; frame re-enables */
}
.hero-video .container {
    pointer-events: none;
}
.hero-video__frame {
    pointer-events: auto;
    position: relative;
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #1B2740 0%, #2C3E6B 50%, #1F3148 100%);
    border-radius: 30px 38px 26px 34px;
    overflow: hidden;
    box-shadow:
        0 30px 80px -20px rgba(15, 25, 50, 0.45),
        0 12px 32px -10px rgba(15, 25, 50, 0.35);
    transform: rotate(-0.4deg);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-video__frame:hover { transform: rotate(0) scale(1.005); }
.hero-video__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-video__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background:
        radial-gradient(ellipse at center, rgba(248, 161, 92, 0.18) 0%, transparent 60%),
        repeating-linear-gradient(135deg, transparent 0 30px, rgba(255,255,255,0.025) 30px 31px);
}
.hero-video__play {
    width: 84px; height: 84px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--navy, #2C3E6B);
    border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow:
        0 0 0 10px rgba(255, 255, 255, 0.12),
        0 20px 40px -10px rgba(0, 0, 0, 0.4);
    transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s;
}
.hero-video__play svg { width: 32px; height: 32px; margin-left: 4px; }
.hero-video__play:hover {
    transform: scale(1.08);
    box-shadow:
        0 0 0 14px rgba(255, 255, 255, 0.18),
        0 24px 48px -10px rgba(0, 0, 0, 0.5);
}
.hero-video__label {
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--font-display, 'Fraunces', serif);
    font-style: italic;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Soft fade from frame to surrounding page-bg below */
.hero-video::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -40px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--sand-cream, #FFF6E9));
    pointer-events: none;
    z-index: -1;
}

@media (max-width: 880px) {
    .hero-video { margin-top: -80px; }
    .hero-video__frame { border-radius: 22px 28px 20px 26px; }
    .hero-video__play { width: 64px; height: 64px; }
    .hero-video__play svg { width: 24px; height: 24px; }
}

/* ─── Lightbox ────────────────────────────────────── */
.lightbox {
    position: fixed; inset: 0; z-index: 9999;
    display: none;
    align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.32s ease;
}
.lightbox.is-open { display: flex; opacity: 1; }
body.is-lightbox-open { overflow: hidden; }

.lightbox__backdrop {
    position: absolute; inset: 0;
    background: rgba(20, 28, 48, 0.72);
    backdrop-filter: blur(18px) saturate(120%);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
}

.lightbox__stage {
    position: relative;
    margin: 0;
    max-width: min(92vw, 1200px);
    max-height: 88vh;
    display: flex; flex-direction: column;
    align-items: center;
    gap: 14px;
    transform: scale(0.96);
    transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.lightbox.is-open .lightbox__stage { transform: scale(1); }

.lightbox__img {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    border-radius: 14px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    background: var(--sand-deep);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.lightbox__img.is-loaded { opacity: 1; }

.lightbox__counter {
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-sans, Inter, sans-serif);
    font-size: 0.92rem;
    letter-spacing: 0.04em;
}

.lightbox__close,
.lightbox__nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.2s, transform 0.2s;
    padding: 0;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255, 255, 255, 0.22); transform: scale(1.06); }
.lightbox__close svg,
.lightbox__nav svg { width: 22px; height: 22px; }

.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

@media (max-width: 700px) {
    .lightbox__close { top: 14px; right: 14px; width: 40px; height: 40px; }
    .lightbox__nav { width: 40px; height: 40px; }
    .lightbox__nav--prev { left: 10px; }
    .lightbox__nav--next { right: 10px; }
    .lightbox__img { max-height: 72vh; }
}

/* ─── Contact ─────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}
.contact-info h3 { margin-bottom: 12px; color: var(--navy); }
.contact-info + .contact-info { margin-top: 36px; }
.contact-info__list {
    list-style: none;
    display: flex; flex-direction: column; gap: 8px;
    font-size: 0.95rem;
}
.contact-info__list a { color: var(--navy); text-decoration: none; border-bottom: 1px dashed var(--sunset); }
.contact-info__list a:hover { color: var(--sunset-hot); }
.contact-info__label {
    font-family: var(--font-hand);
    color: var(--sunset-hot);
    font-size: 1.2rem;
    display: inline-block;
    margin-bottom: 4px;
}

form.form {
    background: var(--white);
    border-radius: 32px 38px 28px 34px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    display: flex; flex-direction: column; gap: 18px;
}
.form label {
    font-size: 0.82rem; font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.05em; text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}
.form input, .form textarea, .form select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(44,62,107,0.15);
    border-radius: 16px 20px 14px 18px;
    background: var(--sand-cream);
    font-family: inherit; font-size: 1rem; color: var(--ink);
    transition: all 0.3s;
}
.form input:focus, .form textarea:focus, .form select:focus {
    outline: none;
    border-color: var(--sunset-hot);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(232, 118, 43, 0.12);
}
.form textarea { min-height: 140px; resize: vertical; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__honeypot { position: absolute; left: -9999px; }

/* ─── CTA ─────────────────────────────────────── */
.cta {
    background: linear-gradient(135deg, var(--sunset) 0%, var(--coral) 100%);
    border-radius: 80px 40px 60px 30px;
    padding: 80px 60px; text-align: center;
    color: var(--white);
    position: relative; overflow: hidden;
    margin: 40px 0;
}
.cta::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 300'%3E%3Cpath d='M0,200 Q300,100 600,200 T1200,200 L1200,300 L0,300 Z' fill='rgba(255,255,255,0.1)'/%3E%3Cpath d='M0,230 Q300,150 600,230 T1200,230 L1200,300 L0,300 Z' fill='rgba(255,255,255,0.15)'/%3E%3C/svg%3E") bottom/cover no-repeat;
}
.cta > * { position: relative; z-index: 1; }
.cta h2 { color: var(--white); margin-bottom: 16px; }
.cta p  { color: rgba(255,255,255,0.9); font-size: 1.15rem; margin-bottom: 32px; }
.cta .btn--primary { background: var(--white); color: var(--sunset-hot); }
.cta .btn--primary:hover { background: var(--navy); color: var(--white); }

/* ─── Info blocks / Opening hours ─────────────────────────────────────── */
.info-block {
    background: var(--white);
    border-radius: 28px 36px 24px 32px;
    padding: 36px 40px;
    box-shadow: var(--shadow-soft);
    position: relative;
}
.info-block h3 {
    font-family: var(--font-hand);
    font-size: 2rem;
    color: var(--sunset-hot);
    margin-bottom: 16px;
    transform: rotate(-1deg);
}
.hours-list {
    list-style: none;
    display: flex; flex-direction: column;
    font-size: 0.98rem;
}
.hours-list li {
    display: flex; justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(44,62,107,0.12);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list strong { color: var(--navy); }
.hours-list span { color: var(--ink-soft); }
.hours-list .closed { color: var(--coral); }

/* ─── Legal page content ─────────────────────────────────────── */
.legal {
    background: var(--white);
    border-radius: 36px 44px 32px 40px;
    padding: 64px 72px;
    box-shadow: var(--shadow-soft);
    margin: 0 auto;
}
.legal h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 32px;
    font-style: italic;
    color: var(--navy);
}
.legal h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 12px;
    color: var(--navy);
}
.legal h3 {
    font-size: 1.2rem;
    margin-top: 24px;
    margin-bottom: 8px;
}
.legal p, .legal li {
    font-size: 0.98rem;
    margin-bottom: 14px;
    color: var(--ink);
}
.legal ul, .legal ol {
    padding-left: 24px;
    margin-bottom: 14px;
}
.legal a {
    color: var(--sunset-hot);
    border-bottom: 1px dashed var(--sunset);
    text-decoration: none;
}
.legal a:hover { color: var(--coral); }

/* ─── Footer ─────────────────────────────────────── */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.85);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: -79px; left: 0; right: 0; height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C240,80 480,0 720,40 C960,80 1200,0 1440,40 L1440,80 L0,80 Z' fill='%232C3E6B'/%3E%3C/svg%3E") bottom/100% 100% no-repeat;
    pointer-events: none;
}
.site-footer .container { padding-top: 60px; }
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}
.footer__brand {
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.18em;
    font-size: 1.1rem;
    margin-bottom: 16px;
    display: inline-flex; gap: 10px; align-items: center;
}
.footer__brand .la { color: var(--sunset); }
.footer__brand .strand { color: var(--sunset); }
.footer__tagline {
    font-family: var(--font-hand);
    color: var(--sunset);
    font-size: 1.6rem;
    margin-bottom: 16px;
    transform: rotate(-2deg);
    display: inline-block;
}
.footer__about p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

.footer__social {
    display: flex; gap: 10px; margin-top: 20px;
}
.footer__social a {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: rgba(255,255,255,0.85);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
}
.footer__social a:hover {
    background: var(--sunset);
    color: var(--white);
    transform: translateY(-2px) rotate(-4deg);
}
.footer__social svg { width: 18px; height: 18px; }
.footer__col h4 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 16px;
    font-weight: 500; font-style: italic;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.footer__col li {
    min-height: 28px;
    display: flex;
    align-items: center;
}
.footer__col a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.3s;
    padding: 8px 0;
    display: inline-block;
    min-height: 44px;
    line-height: 1.5;
}
.footer__col a:hover { color: var(--sunset); }
.footer__bar {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 24px;
    display: flex; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}
.footer__bar a { color: rgba(255,255,255,0.75); }
.footer__bar a:hover { color: var(--sunset); }

/* ─── Contact Modal ─────────────────────────────────────── */
.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.modal.is-open {
    display: flex;
    animation: modal-fade 0.3s ease-out;
}
body.is-modal-open { overflow: hidden; }

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(30, 45, 79, 0.55);
    backdrop-filter: blur(8px) saturate(130%);
    -webkit-backdrop-filter: blur(8px) saturate(130%);
    cursor: pointer;
}
.modal__panel {
    position: relative;
    background: linear-gradient(165deg, var(--sand-cream) 0%, var(--sand-peach) 100%);
    border-radius: 32px 40px 28px 36px;
    box-shadow: var(--shadow-deep);
    max-width: 640px;
    width: 100%;
    max-height: calc(100vh - 48px);
    overflow: hidden auto;
    padding: 48px 48px 40px;
    animation: modal-pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal__panel::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(248, 161, 92, 0.25), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.modal__close {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--white);
    border: none;
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--navy);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
    z-index: 2;
}
.modal__close:hover {
    background: var(--sunset-hot);
    color: var(--white);
    transform: rotate(90deg);
}
.modal__close svg { width: 20px; height: 20px; }

.modal__header {
    text-align: center;
    margin-bottom: 28px;
    position: relative;
}
.modal__header h3 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    margin: 4px 0 10px;
}
.modal__header p {
    font-size: 0.95rem;
    max-width: 420px;
    margin: 0 auto;
}

.modal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    position: relative;
}
.modal__tile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: var(--white);
    border-radius: 18px 22px 16px 20px;
    text-decoration: none;
    color: var(--navy);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1.5px solid transparent;
}
.modal__tile:hover {
    transform: translateY(-3px) rotate(-0.5deg);
    box-shadow: var(--shadow-deep);
    border-color: var(--sunset);
}
.modal__tile-icon {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sand-peach), var(--sunset));
    color: var(--white);
    border-radius: 14px 18px 12px 16px;
    flex-shrink: 0;
}
.modal__tile-icon svg { width: 22px; height: 22px; }
.modal__tile strong {
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--navy);
    line-height: 1.15;
}
.modal__tile span {
    display: block;
    font-size: 0.8rem;
    color: var(--ink-soft);
    margin-top: 2px;
}
.modal__tile--full {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--sunset-hot), var(--coral));
    color: var(--white);
    gap: 18px;
    padding: 22px 24px;
}
.modal__tile--full:hover {
    border-color: var(--white);
    transform: translateY(-4px);
}
.modal__tile--full strong,
.modal__tile--full span { color: var(--white); }
.modal__tile--full span { color: rgba(255, 255, 255, 0.85); }
.modal__tile--full .modal__tile-icon {
    background: rgba(255, 255, 255, 0.2);
}
.modal__tile--full .modal__tile-arrow {
    margin-left: auto;
    font-size: 1.4rem;
    line-height: 1;
    opacity: 0.9;
}

@keyframes modal-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes modal-pop {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 540px) {
    .modal { padding: 14px; }
    .modal__panel { padding: 48px 24px 28px; border-radius: 24px 30px 22px 28px; }
    .modal__grid { grid-template-columns: 1fr; }
    .modal__tile--full { grid-column: 1; }
}

/* ─── Scroll-reveal ─────────────────────────────────────── */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ─── Mobile Nav Toggle ─────────────────────────────────────── */
.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 4px;
    color: var(--navy);
    position: relative;
    z-index: 101;
}
.nav__toggle svg { width: 22px; height: 22px; display: block; }
.nav__toggle .icon-close { display: none; }
body.is-menu-open .nav__toggle .icon-open { display: none; }
body.is-menu-open .nav__toggle .icon-close { display: block; }

/* Backdrop — visible only on mobile when menu open */
.nav__backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(30, 45, 79, 0.45);
    backdrop-filter: blur(6px);
    z-index: 95;
    opacity: 0;
    transition: opacity 0.3s;
}
body.is-menu-open .nav__backdrop { opacity: 1; }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 960px) {
    .split { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .menu { grid-template-columns: 1fr; gap: 32px; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
    /* Compact navigation with hamburger */
    .nav {
        padding: 10px 16px 10px 18px;
        top: 14px;
        left: 14px;
        right: 14px;
        transform: none;
        margin: 0 auto;
        max-width: 480px;
        width: auto;
        border-radius: 80px;
        gap: 4px;
        justify-content: space-between;
        /* backdrop-filter creates containing block — disable so menu panel can be viewport-fixed */
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 246, 233, 0.94);
    }
    .nav__brand { padding-right: 0; margin-right: 0; border-right: none; font-size: 0.82rem; gap: 8px; }
    .nav__wave { width: 28px; height: 20px; }
    .nav__toggle { display: inline-flex; align-items: center; justify-content: center; }
    .nav__backdrop { display: block; pointer-events: none; }

    /* Mobile CTA — compact reservation button in top bar */
    .nav a.nav__cta-mobile {
        display: inline-flex !important;
        align-items: center;
        gap: 6px;
        padding: 7px 12px 7px 10px !important;
        margin-left: auto;
        background: var(--sunset-hot);
        color: var(--white);
        text-decoration: none;
        border-radius: 100px !important;
        font-family: var(--font-body) !important;
        font-style: normal !important;
        font-size: 0.78rem !important;
        font-weight: 600 !important;
        white-space: nowrap;
        box-shadow: 0 4px 12px -4px rgba(232, 118, 43, 0.5);
        transition: all 0.3s;
        flex-shrink: 0;
        border-bottom: none !important;
        transform: none !important;
    }
    .nav a.nav__cta-mobile:hover,
    .nav a.nav__cta-mobile:active {
        background: var(--coral);
        color: var(--white) !important;
    }
    .nav__cta-mobile svg {
        width: 15px; height: 15px;
        flex-shrink: 0;
    }

    /* Hide the "Reservieren" text label only on very narrow widths — keep only icon */
    @media (max-width: 359px) {
        .nav__cta-mobile span { display: none; }
        .nav a.nav__cta-mobile { padding: 8px !important; }
    }
    body.is-menu-open .nav__backdrop { pointer-events: auto; }

    /* Slide-in panel */
    .nav__links {
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: min(340px, 88vw);
        background: linear-gradient(160deg, var(--sand-cream) 0%, var(--sand-peach) 100%);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 100px 32px 48px;
        transform: translateX(100%);
        transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow: -20px 0 60px -20px rgba(30, 45, 79, 0.3);
        z-index: 96;
        overflow-y: auto;
    }
    body.is-menu-open .nav__links { transform: translateX(0); }

    .nav__links::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 180px;
        background: radial-gradient(ellipse at 70% 30%, rgba(248, 161, 92, 0.25), transparent 70%);
        pointer-events: none;
    }

    .nav a:not(.nav__brand) {
        font-family: var(--font-display);
        font-style: italic;
        font-size: 1.5rem;
        font-weight: 500;
        padding: 14px 18px;
        border-radius: 16px 22px 14px 20px;
        color: var(--navy);
        text-align: left;
        border-bottom: 1px dashed rgba(44, 62, 107, 0.12);
        display: flex;
        align-items: center;
        gap: 14px;
    }
    .nav__links .nav__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px; height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.55);
        color: var(--navy);
        flex-shrink: 0;
    }
    .nav__links .nav__icon svg { width: 20px; height: 20px; display: block; }

    .nav a:not(.nav__brand):hover,
    .nav a:not(.nav__brand).is-current {
        background: var(--sunset);
        color: var(--white);
        transform: translateX(-4px) rotate(-1deg);
    }
    .nav a:not(.nav__brand).is-current .nav__icon,
    .nav a:not(.nav__brand):hover .nav__icon {
        background: rgba(255, 255, 255, 0.3);
        color: var(--white);
    }

    /* Extras: Öffnungszeiten + Anfahrt */
    .nav__extra {
        display: block;
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px dashed rgba(44, 62, 107, 0.25);
    }
    .nav__hours {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        padding: 10px 6px 16px;
    }
    .nav__extra-label {
        font-family: var(--font-hand);
        font-size: 1.2rem;
        color: var(--sunset-hot);
        transform: rotate(-2deg);
        display: inline-block;
    }
    .nav__hours strong {
        font-family: var(--font-display);
        font-style: italic;
        font-weight: 600;
        color: var(--navy);
        font-size: 1.1rem;
    }
    .nav__route {
        display: flex !important;
        align-items: center !important;
        gap: 14px !important;
        padding: 14px 16px !important;
        background: var(--navy) !important;
        color: var(--white) !important;
        border-radius: 18px 24px 16px 22px !important;
        font-family: var(--font-body) !important;
        font-style: normal !important;
        text-decoration: none !important;
        transition: all 0.3s !important;
        border: none !important;
        transform: none !important;
        font-size: 0.9rem !important;
    }
    .nav__route:hover {
        background: var(--sunset-hot) !important;
        color: var(--white) !important;
        transform: translateY(-2px) !important;
    }
    .nav__route > svg:first-child {
        width: 22px; height: 22px;
        flex-shrink: 0;
    }
    .nav__route > div {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .nav__route strong {
        display: block;
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--white);
    }
    .nav__route > div > span {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.7);
    }
    .nav__route-arrow {
        width: 16px; height: 16px;
        flex-shrink: 0;
        opacity: 0.6;
    }
}

@media (max-width: 740px) {
    .teasers { grid-template-columns: 1fr; gap: 60px; }
    .polaroid:nth-child(2) { transform: rotate(1deg); }
    .features { padding: 60px 28px; }
    .features__grid { grid-template-columns: 1fr; gap: 32px; }
    .cta { padding: 60px 28px; }
    .hero__sun { width: 120px; height: 120px; top: 12%; right: 6%; }
    .section { padding: 80px 0; }
    .page-hero { padding: 140px 24px 80px; }
    .event { grid-template-columns: 80px 1fr; gap: 16px; padding: 20px; }
    .event > .btn { grid-column: 1 / -1; justify-self: start; }
    .footer__grid { grid-template-columns: 1fr; }
    .legal { padding: 40px 28px; }
    .menu-item { grid-template-columns: 36px 1fr auto; gap: 14px; padding: 14px 0; }
    .menu-item__icon { width: 34px; height: 34px; font-size: 18px; }
}


/* ===== Overrides (ehem. /style.css) ===== */
/* ============================================================
   ENTWURF — Editorial Boutique Direction
   Erweitert /css/style.css, überschreibt was anders sein soll
   ============================================================ */

:root {
    --editorial-ink: #161E2E;        /* tiefer als navy */
    --editorial-paper: #F4ECDD;      /* warm cream */
    --editorial-paper-soft: #EAE0CC;
    --editorial-stone: #B8B2A4;      /* muted stone for labels */
    --editorial-copper: #C2683A;     /* warm accent */
    --editorial-copper-soft: #E8A678;
    --editorial-line: rgba(22, 30, 46, 0.12);
}

/* ─── Draft Banner ───────────────────────────────── */
.draft-banner {
    position: fixed; top: 12px; left: 50%; transform: translateX(-50%);
    z-index: 1500;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 18px;
    background: var(--editorial-ink);
    color: var(--editorial-paper);
    border-radius: 100px;
    font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    box-shadow: 0 8px 28px -8px rgba(0,0,0,0.4);
}
.draft-banner::before {
    content: '';
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--editorial-copper-soft);
    box-shadow: 0 0 0 3px rgba(232, 166, 120, 0.25);
}
.draft-banner a {
    color: rgba(244, 236, 221, 0.6);
    text-decoration: none;
    border-left: 1px solid rgba(244, 236, 221, 0.25);
    padding-left: 10px; margin-left: 4px;
}
.draft-banner a:hover { color: var(--editorial-paper); }

/* ─── Body baseline tweaks ──────────────────────── */
body {
    background: var(--editorial-paper);
}

/* ─── Editorial Hero (Home) ─────────────────────── */
.ed-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--editorial-ink);
    color: var(--editorial-paper);
    display: flex; flex-direction: column;
    padding: 140px 6vw 80px;
}
.ed-hero__media {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover;
    background-position: center;
    /* Cinematic vignette + warm wash */
    filter: saturate(0.88) contrast(1.05);
}
.ed-hero__media::after {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(22, 30, 46, 0.65) 0%, rgba(22, 30, 46, 0.2) 35%, rgba(22, 30, 46, 0.55) 100%),
        radial-gradient(ellipse 80% 50% at 50% 60%, rgba(194, 104, 58, 0.15), transparent 60%);
}
/* LCP: auf Mobil die kleinere Hero-Variante laden (überschreibt Inline-Style) */
@media (max-width: 768px) {
    .ed-hero__media[style*="home-location"],
    .ed-page-hero__media[style*="home-location"] {
        background-image: url('/img/home/home-location-mobile.webp') !important;
    }
}
.ed-hero__grain {
    position: absolute; inset: 0; z-index: 1;
    pointer-events: none;
    opacity: 0.18;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.92  0 0 0 0 0.85  0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    mix-blend-mode: overlay;
}
.ed-hero__inner {
    position: relative; z-index: 2;
    margin-top: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 60px;
    max-width: 1320px; width: 100%; margin-left: auto; margin-right: auto;
}
.ed-hero__chapter {
    font-family: var(--font-display, 'Fraunces', serif);
    font-style: italic;
    font-size: 0.95rem; font-weight: 500;
    letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--editorial-copper-soft);
    margin-bottom: 18px;
    display: inline-flex; align-items: center; gap: 14px;
}
.ed-hero__chapter::before {
    content: ''; display: block;
    width: 36px; height: 1px;
    background: var(--editorial-copper-soft);
}
.ed-hero__title {
    font-family: var(--font-display, 'Fraunces', serif);
    font-weight: 500;
    font-size: clamp(3rem, 8vw, 7.4rem);
    line-height: 0.96;
    letter-spacing: -0.025em;
    margin: 0;
    color: var(--editorial-paper);
    text-shadow:
        0 2px 14px rgba(0, 0, 0, 0.6),
        0 10px 44px rgba(0, 0, 0, 0.4);
}
.ed-hero__title em {
    font-style: italic;
    font-weight: 500;
    color: var(--editorial-copper-soft);
    text-shadow:
        0 2px 14px rgba(70, 25, 10, 0.5),
        0 10px 44px rgba(0, 0, 0, 0.4);
}
.ed-hero__meta {
    text-align: right;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.78rem;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(244, 236, 221, 0.7);
    line-height: 1.9;
    max-width: 180px;
}
.ed-hero__meta strong {
    display: block;
    font-family: var(--font-display, 'Fraunces', serif);
    font-style: italic; font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: 0;
    text-transform: none;
    color: var(--editorial-paper);
    margin-top: 4px;
}
.ed-hero__sub {
    font-family: var(--font-display, 'Fraunces', serif);
    font-size: clamp(1.15rem, 1.6vw, 1.35rem);
    font-weight: 400;
    line-height: 1.5;
    max-width: 480px;
    margin: 36px 0 0;
    color: rgba(244, 236, 221, 0.88);
}
.ed-hero__scroll {
    position: absolute;
    bottom: 32px; left: 50%; transform: translateX(-50%);
    z-index: 3;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(244, 236, 221, 0.6);
    font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
}
.ed-hero__scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, rgba(244, 236, 221, 0.6), transparent);
    animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1); }
}
@media (max-width: 820px) {
    .ed-hero { padding: 120px 24px 60px; }
    .ed-hero__inner { grid-template-columns: 1fr; gap: 28px; }
    .ed-hero__meta { text-align: left; max-width: none; }
    .ed-hero__scroll { display: none; }
}

/* ─── Editorial Section Frame ───────────────────── */
.ed-section {
    padding: 140px 6vw;
    position: relative;
}
.ed-section--tight { padding: 80px 6vw; }
.ed-section--paper-soft {
    background: linear-gradient(180deg,
        var(--editorial-paper) 0%,
        var(--editorial-paper-soft) 14%,
        var(--editorial-paper-soft) 86%,
        var(--editorial-paper) 100%);
}
.ed-section--ink {
    background: var(--editorial-ink);
    color: var(--editorial-paper);
    margin: 0 24px;
    border-radius: 32px 40px 28px 36px;
    box-shadow: 0 40px 80px -30px rgba(22, 30, 46, 0.4);
}
@media (max-width: 820px) { .ed-section--ink { margin: 0 12px; border-radius: 24px 28px 22px 26px; } }
.ed-container { max-width: 1320px; margin: 0 auto; }
.ed-container--narrow { max-width: 920px; margin: 0 auto; }

/* Section heading framing */
.ed-head {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    align-items: baseline;
    margin-bottom: 80px;
}
.ed-head__label {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.78rem; font-weight: 500;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--editorial-stone);
    padding-top: 12px;
    border-top: 1px solid var(--editorial-line);
}
.ed-section--ink .ed-head__label { color: rgba(244, 236, 221, 0.5); border-color: rgba(244, 236, 221, 0.2); }
.ed-head__title {
    font-family: var(--font-display, 'Fraunces', serif);
    font-weight: 500;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.018em;
    margin: 0;
    color: var(--editorial-ink);
    max-width: 820px;
}
.ed-section--ink .ed-head__title { color: var(--editorial-paper); }
.ed-head__title em { font-style: italic; color: var(--editorial-copper); font-weight: 500; }
.ed-section--ink .ed-head__title em { color: var(--editorial-copper-soft); }
.ed-head__lead {
    font-family: var(--font-display, 'Fraunces', serif);
    font-size: 1.25rem;
    line-height: 1.55;
    max-width: 620px;
    margin: 28px 0 0;
    color: rgba(22, 30, 46, 0.7);
}
.ed-section--ink .ed-head__lead { color: rgba(244, 236, 221, 0.75); }
@media (max-width: 820px) {
    .ed-head { grid-template-columns: 1fr; gap: 14px; margin-bottom: 48px; }
    .ed-head__label { padding-top: 10px; }
}

/* ─── Trinity (Drei Häuser) ─────────────────────── */
.ed-trinity {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.ed-trinity__card {
    position: relative;
    display: block;
    text-decoration: none;
    color: var(--editorial-ink);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ed-trinity__card:hover { transform: translateY(-6px); }
.ed-trinity__card:nth-child(1) { margin-top: 0; }
.ed-trinity__card:nth-child(2) { margin-top: 48px; }
.ed-trinity__card:nth-child(3) { margin-top: 16px; }
.ed-trinity__img {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 24px 30px 22px 28px;
    position: relative;
    background: var(--editorial-paper-soft);
    box-shadow: 0 20px 50px -20px rgba(22, 30, 46, 0.25);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ed-trinity__card:nth-child(1) .ed-trinity__img { transform: rotate(-0.6deg); }
.ed-trinity__card:nth-child(2) .ed-trinity__img { transform: rotate(0.4deg); border-radius: 30px 24px 28px 22px; }
.ed-trinity__card:nth-child(3) .ed-trinity__img { transform: rotate(-0.3deg); border-radius: 26px 22px 30px 24px; }
.ed-trinity__card:hover .ed-trinity__img { transform: rotate(0) scale(1.01); }
.ed-trinity__img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ed-trinity__card:hover .ed-trinity__img img { transform: scale(1.04); }
.ed-trinity__num {
    position: absolute;
    top: 16px; left: 16px;
    z-index: 1;
    font-family: var(--font-display, 'Fraunces', serif);
    font-style: italic;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    color: var(--editorial-paper);
    background: rgba(22, 30, 46, 0.7);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 100px;
}
.ed-trinity__body { padding-top: 24px; }
.ed-trinity__kicker {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.72rem;
    letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--editorial-stone);
    margin-bottom: 10px;
}
.ed-trinity__title {
    font-family: var(--font-display, 'Fraunces', serif);
    font-weight: 500;
    font-size: 1.85rem;
    line-height: 1.1;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.ed-trinity__title em { font-style: italic; color: var(--editorial-copper); }
.ed-trinity__desc {
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(22, 30, 46, 0.65);
    margin: 0 0 16px;
}
.ed-trinity__more {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--editorial-ink);
    border-bottom: 1px solid var(--editorial-ink);
    padding-bottom: 2px;
}
@media (max-width: 820px) {
    .ed-trinity { grid-template-columns: 1fr; gap: 48px; }
    .ed-trinity__card:nth-child(n) { margin-top: 0; }
}

/* ─── Quote / Editorial pull ────────────────────── */
.ed-quote {
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
    padding: 40px 0;
}
.ed-quote__text {
    font-family: var(--font-display, 'Fraunces', serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.25;
    color: var(--editorial-ink);
    margin: 0 0 28px;
    letter-spacing: -0.012em;
}
.ed-section--ink .ed-quote__text { color: var(--editorial-paper); }
.ed-quote__attr {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.76rem;
    letter-spacing: 0.26em; text-transform: uppercase;
    color: var(--editorial-stone);
}
.ed-quote__rule {
    width: 60px; height: 1px;
    background: var(--editorial-copper);
    margin: 0 auto 32px;
}

/* ─── Story split (alternating editorial split) ── */
.ed-story {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 80px;
    align-items: center;
}
.ed-story--reverse { grid-template-columns: 0.95fr 1.05fr; }
.ed-story--reverse .ed-story__media { order: 2; }
.ed-story__media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 26px 34px 24px 30px;
    background: var(--editorial-paper-soft);
    box-shadow: 0 24px 60px -22px rgba(22, 30, 46, 0.3);
    transform: rotate(-0.5deg);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ed-story--reverse .ed-story__media {
    transform: rotate(0.6deg);
    border-radius: 30px 24px 28px 22px;
}
.ed-story__media:hover { transform: rotate(0) scale(1.01); }
.ed-story__media img { width: 100%; height: 100%; object-fit: cover; }
/* Hotel Zimmer-Tour: Poster oben mitte ausrichten (wie Event-Poster) */
.ed-story__media--video img[src*="hotel-zimmer-poster"] { object-position: center top; }
/* Klickbares Story-Bild mit Video-Lightbox (Play-Overlay) */
.ed-story__media--video { cursor: pointer; }
.ed-story__play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 3;
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(244, 236, 221, 0.92); color: var(--editorial-ink);
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
    box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.45);
    transition: transform 0.25s, background 0.25s;
}
.ed-story__play svg { width: 26px; height: 26px; margin-left: 3px; }
.ed-story__media--video:hover .ed-story__play { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
.ed-story__media--video:focus-visible { outline: 3px solid var(--editorial-copper); outline-offset: 3px; }

/* Hover-Fix: abgerundete Ecken bleiben beim Hover beschnitten.
   WebKit/Blink clippen border-radius + overflow:hidden NICHT mehr, sobald ein
   skaliertes/transformiertes Kind eine eigene Compositing-Ebene bekommt — die
   Ecken werden dann eckig. Eine solide Maske erzwingt das runde Clipping für
   den gesamten Subtree (keine sichtbare Nebenwirkung, Box-Shadow bleibt). */
.ed-trinity__img,
.ed-room,
.ed-story__media,
.ed-hvid {
    -webkit-mask-image: -webkit-linear-gradient(#fff, #fff);
            mask-image: linear-gradient(#fff, #fff);
}
.ed-story__body {}
.ed-story__kicker {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.72rem;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--editorial-stone);
    margin-bottom: 18px;
}
.ed-story__title {
    font-family: var(--font-display, 'Fraunces', serif);
    font-weight: 500;
    font-size: clamp(2rem, 3.6vw, 3.1rem);
    line-height: 1.05;
    letter-spacing: -0.015em;
    margin: 0 0 24px;
    color: var(--editorial-ink);
}
.ed-story__title em { font-style: italic; color: var(--editorial-copper); }
.ed-story__text {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(22, 30, 46, 0.75);
    max-width: 480px;
}
.ed-story__text + .ed-story__text { margin-top: 16px; }
.ed-story__cta {
    margin-top: 32px;
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 28px;
    background: var(--editorial-ink);
    color: var(--editorial-paper);
    text-decoration: none;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    border-radius: 100px;
    transition: background 0.25s, transform 0.25s;
}
.ed-story__cta:hover {
    background: var(--editorial-copper);
    transform: translateY(-2px);
}
@media (max-width: 820px) {
    .ed-story, .ed-story--reverse { grid-template-columns: 1fr; gap: 32px; }
    .ed-story--reverse .ed-story__media { order: 0; }
    .ed-story__media { aspect-ratio: 4 / 3; }
}

/* ─── Hotel Room Spotlight ──────────────────────── */
.ed-room {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 0;
    margin-bottom: 120px;
    align-items: stretch;
    background: #fff;
    border-radius: 28px 36px 26px 32px;
    overflow: hidden;
    box-shadow: 0 36px 72px -28px rgba(22, 30, 46, 0.22);
}
.ed-room:last-child { margin-bottom: 0; }
.ed-room--reverse { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); border-radius: 36px 28px 32px 26px; }
.ed-room:nth-child(even) { border-radius: 32px 26px 36px 28px; }
.ed-room--reverse .ed-room__media { order: 2; }
/* Image cell stretches to body height — image absolutely fills it */
.ed-room__media {
    position: relative;
    overflow: hidden;
    background: var(--editorial-paper-soft);
    min-height: 480px;
}
.ed-room__media img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ed-room:hover .ed-room__media img { transform: scale(1.02); }
.ed-room__num {
    position: absolute;
    top: 24px; left: 24px;
    z-index: 3;
    font-family: var(--font-display, 'Fraunces', serif);
    font-style: italic;
    font-size: 1rem;
    letter-spacing: 0.2em;
    padding: 8px 16px;
    background: rgba(22, 30, 46, 0.78);
    color: var(--editorial-paper);
    border-radius: 100px;
    backdrop-filter: blur(8px);
}
/* Slider arrows */
.ed-room__nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 2;
    width: 44px; height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--editorial-ink);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.25s, background 0.25s;
    box-shadow: 0 6px 24px -6px rgba(0,0,0,0.35);
}
.ed-room__media:hover .ed-room__nav { opacity: 1; }
.ed-room__nav:hover { background: #fff; }
.ed-room__nav--prev { left: 16px; }
.ed-room__nav--next { right: 16px; }
.ed-room__nav svg { width: 22px; height: 22px; }
/* Thumb strip */
.ed-room__thumbs {
    position: absolute;
    bottom: 16px; left: 16px; right: 16px;
    z-index: 2;
    display: flex; gap: 8px;
    justify-content: center;
}
.ed-room__thumb {
    width: 56px; height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 3px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.25s, transform 0.25s;
    box-shadow: 0 4px 16px -6px rgba(0,0,0,0.4);
}
.ed-room__thumb:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, 0.85); }
.ed-room__thumb.is-active { border-color: var(--editorial-copper-soft); }
/* Placeholder when no photo — fills the same stretched cell */
.ed-room__media--placeholder {
    background:
        repeating-linear-gradient(135deg, rgba(22,30,46,0.04) 0 18px, transparent 18px 36px),
        linear-gradient(135deg, var(--editorial-paper-soft), #DCD2BD);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 14px;
    color: rgba(22, 30, 46, 0.5);
}
.ed-room__media--placeholder svg { width: 56px; height: 56px; stroke-width: 1.4; }
.ed-room__media--placeholder > span:last-child {
    font-family: var(--font-display, 'Fraunces', serif);
    font-style: italic;
    font-size: 1rem;
    letter-spacing: 0.04em;
}
.ed-room__body {
    padding: 56px 56px;
    display: flex; flex-direction: column;
    justify-content: center;
}
.ed-room__kicker {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.72rem;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--editorial-stone);
    margin-bottom: 14px;
    display: flex; align-items: center; gap: 12px;
}
.ed-room__kicker::after {
    content: ''; display: block;
    width: 32px; height: 1px;
    background: var(--editorial-stone);
}
.ed-room__title {
    font-family: var(--font-display, 'Fraunces', serif);
    font-weight: 500;
    font-size: clamp(2rem, 3.4vw, 2.9rem);
    line-height: 1.05;
    letter-spacing: -0.015em;
    margin: 0 0 18px;
    color: var(--editorial-ink);
}
.ed-room__title em { font-style: italic; color: var(--editorial-copper); }
.ed-room__story {
    font-size: 1.02rem;
    line-height: 1.65;
    color: rgba(22, 30, 46, 0.72);
    margin: 0 0 28px;
    max-width: 480px;
}
.ed-room__specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 28px;
    margin: 28px 0;
    padding: 28px 0;
    border-top: 1px solid var(--editorial-line);
    border-bottom: 1px solid var(--editorial-line);
    list-style: none;
}
.ed-room__specs li {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.92rem;
    color: rgba(22, 30, 46, 0.78);
}
.ed-room__specs li::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--editorial-copper);
    flex-shrink: 0;
}
.ed-room__foot {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px 24px;
}
.ed-room__price {
    font-family: var(--font-display, 'Fraunces', serif);
}
.ed-room__price-label {
    display: block;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.7rem;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--editorial-stone);
    margin-bottom: 4px;
}
.ed-room__price-value {
    font-style: italic;
    font-weight: 500;
    font-size: 1.85rem;
    color: var(--editorial-ink);
    letter-spacing: -0.015em;
    white-space: nowrap;
}
.ed-room__price-value small {
    font-size: 0.85rem;
    color: rgba(22, 30, 46, 0.55);
    font-style: normal;
    margin-left: 4px;
    white-space: nowrap;
}
.ed-room__cta {
    justify-self: end;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 26px;
    background: var(--editorial-ink);
    color: var(--editorial-paper);
    text-decoration: none;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    border-radius: 100px;
    transition: background 0.25s, transform 0.25s;
    white-space: nowrap;
}
.ed-room__cta:hover { background: var(--editorial-copper); transform: translateY(-2px); }
/* Zwei Buchungs-Buttons nebeneinander (z. B. Deluxe 3 / 4 Personen) */
.ed-room__cta-group { justify-self: end; display: flex; gap: 10px; flex-wrap: wrap; }
.ed-room__cta-group .ed-room__cta { justify-self: auto; }
.ed-room__cta--ghost { background: transparent; color: var(--editorial-ink); box-shadow: inset 0 0 0 1.5px rgba(22, 30, 46, 0.25); }
.ed-room__cta--ghost:hover { background: var(--editorial-ink); color: var(--editorial-paper); box-shadow: none; }
.ed-room__phone {
    grid-column: 1 / -1;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.82rem;
    color: rgba(22, 30, 46, 0.65);
    text-decoration: none;
    border-bottom: 1px solid rgba(22, 30, 46, 0.35);
    padding-bottom: 1px;
    justify-self: start;
    margin-top: 4px;
}
@media (max-width: 980px) {
    .ed-room, .ed-room--reverse { grid-template-columns: 1fr; margin-bottom: 64px; }
    .ed-room--reverse .ed-room__media { order: 0; }
    /* Hard min-height guarantees the media cell renders in every browser, even
       those without aspect-ratio support. aspect-ratio refines the shape on
       modern engines; the floor wins on older ones. */
    .ed-room__media {
        min-height: 240px;
        height: 70vw;
        max-height: 320px;
        aspect-ratio: 4 / 3;
    }
    .ed-room__body, .ed-room--reverse .ed-room__body { padding: 36px 28px; }
    .ed-room__specs { grid-template-columns: 1fr; gap: 10px 0; }
    .ed-room__foot { grid-template-columns: 1fr; gap: 16px; }
    .ed-room__cta { justify-self: start; }
    .ed-room__cta-group { justify-self: start; }
    .ed-room__nav { opacity: 1; width: 36px; height: 36px; }
    .ed-room__nav svg { width: 18px; height: 18px; }
    .ed-room__thumb { width: 44px; height: 32px; }
}

/* ─── Includes ribbon ───────────────────────────── */
.ed-includes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    border-top: 1px solid var(--editorial-line);
    border-bottom: 1px solid var(--editorial-line);
}
.ed-section--ink .ed-includes {
    border-color: rgba(244, 236, 221, 0.18);
}
.ed-includes__item {
    padding: 36px 28px;
    border-right: 1px solid var(--editorial-line);
}
.ed-section--ink .ed-includes__item { border-color: rgba(244, 236, 221, 0.18); }
.ed-includes__item:last-child { border-right: none; }
.ed-includes__num {
    font-family: var(--font-display, 'Fraunces', serif);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--editorial-copper);
    margin-bottom: 16px;
    display: block;
}
.ed-section--ink .ed-includes__num { color: var(--editorial-copper-soft); }
.ed-includes__title {
    font-family: var(--font-display, 'Fraunces', serif);
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 1.15;
    margin: 0 0 8px;
    color: var(--editorial-ink);
}
.ed-section--ink .ed-includes__title { color: var(--editorial-paper); }
.ed-includes__desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(22, 30, 46, 0.6);
    margin: 0;
}
.ed-section--ink .ed-includes__desc { color: rgba(244, 236, 221, 0.7); }
@media (max-width: 820px) {
    .ed-includes__item { border-right: none; border-bottom: 1px solid var(--editorial-line); }
    .ed-section--ink .ed-includes__item { border-color: rgba(244, 236, 221, 0.18); }
    .ed-includes__item:last-child { border-bottom: none; }
}

/* ─── Editorial Page Hero (subpage) ─────────────── */
.ed-page-hero {
    position: relative;
    min-height: 70vh;
    margin: 32px 24px 0;
    padding: 130px 6vw 90px;
    overflow: hidden;
    background: var(--editorial-ink);
    color: var(--editorial-paper);
    display: flex; align-items: end;
    border-radius: 32px 40px 28px 36px;
    box-shadow: 0 40px 80px -30px rgba(22, 30, 46, 0.4);
}
@media (max-width: 820px) { .ed-page-hero { margin: 16px 12px 0; padding: 120px 24px 60px; border-radius: 24px 28px 22px 26px; } }
.ed-page-hero__media {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover; background-position: center;
    filter: saturate(0.9) contrast(1.04);
}
.ed-page-hero__media::after {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(22,30,46,0.7) 0%, rgba(22,30,46,0.45) 40%, rgba(22,30,46,0.85) 100%),
        radial-gradient(ellipse 70% 50% at 35% 65%, rgba(22, 30, 46, 0.4), transparent 70%);
}
.ed-page-hero__inner {
    position: relative; z-index: 1;
    max-width: 1320px; width: 100%;
    margin: 0 auto;
}
.ed-page-hero__chapter {
    font-family: var(--font-display, 'Fraunces', serif);
    font-style: italic;
    font-size: 0.85rem;
    letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--editorial-copper-soft);
    margin-bottom: 18px;
    display: inline-flex; align-items: center; gap: 14px;
}
.ed-page-hero__chapter::before {
    content: ''; width: 36px; height: 1px;
    background: var(--editorial-copper-soft);
}
/* Keyword-Eyebrow als eigene Zeile innerhalb der H1 (SEO: Keyword in H1, Optik unverändert) */
.ed-page-hero__title .ed-page-hero__chapter {
    display: flex; width: fit-content; text-shadow: none;
}
.ed-page-hero__title {
    font-family: var(--font-display, 'Fraunces', serif);
    font-weight: 500;
    font-size: clamp(2.8rem, 7vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.02em;
    margin: 0 0 32px;
    max-width: 1000px;
    color: var(--editorial-paper);
    text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.55),
        0 8px 40px rgba(0, 0, 0, 0.35);
}
.ed-page-hero__title em {
    font-style: italic;
    color: var(--editorial-copper-soft);
    font-weight: 500;
    text-shadow:
        0 2px 12px rgba(70, 25, 10, 0.5),
        0 8px 40px rgba(0, 0, 0, 0.35);
}
.ed-page-hero__lead {
    font-family: var(--font-display, 'Fraunces', serif);
    font-size: clamp(1.1rem, 1.6vw, 1.3rem);
    line-height: 1.55;
    max-width: 600px;
    color: rgba(244, 236, 221, 0.95);
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
@media (max-width: 820px) {
    .ed-page-hero { padding: 130px 24px 60px; min-height: 60vh; }
}

/* ─── Booking Widget (SiteMinder integration) ──── */
.ed-booking {
    margin: -32px 24px 56px;
    padding: 22px 28px;
    background: #fff;
    border-radius: 24px 30px 22px 28px;
    box-shadow: 0 30px 60px -22px rgba(22, 30, 46, 0.22);
    position: relative;
    z-index: 10;
}
.ed-booking__form {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 0.9fr auto;
    gap: 14px;
    align-items: end;
}
.ed-booking__field {
    display: flex; flex-direction: column;
    gap: 6px;
}
.ed-booking__label {
    font-family: var(--font-body);
    font-size: 0.66rem; font-weight: 500;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--editorial-stone);
}
.ed-booking__input {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--editorial-ink);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--editorial-line);
    padding: 8px 0 8px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    -webkit-appearance: none;
}
.ed-booking__input:focus { border-bottom-color: var(--editorial-copper); }
.ed-booking__input[type="date"] { min-height: 28px; }
.ed-booking__input::placeholder { color: rgba(22, 30, 46, 0.3); font-style: italic; }
.ed-booking__submit {
    padding: 14px 24px;
    background: var(--editorial-ink);
    color: var(--editorial-paper);
    border: none;
    border-radius: 100px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.84rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: background 0.25s, transform 0.25s;
    align-self: end;
    white-space: nowrap;
}
.ed-booking__submit:hover { background: var(--editorial-copper); transform: translateY(-2px); }
.ed-booking__note {
    grid-column: 1 / -1;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.85rem;
    color: rgba(22, 30, 46, 0.55);
    margin: 6px 0 0;
    text-align: center;
}
.ed-booking__note strong { color: var(--editorial-copper); font-style: normal; font-weight: 500; }

@media (max-width: 820px) {
    .ed-booking { margin: -24px 12px 40px; padding: 20px 18px; }
    .ed-booking__form { grid-template-columns: 1fr 1fr; }
    .ed-booking__submit { grid-column: 1 / -1; padding: 14px; }
}
@media (max-width: 480px) {
    .ed-booking__form { grid-template-columns: 1fr; gap: 10px; }
    .ed-section { padding: 56px 14px; }
    .ed-section--tight { padding: 36px 14px; }
}

/* ─── Editorial Ribbon (replaces stats strip) ──── */
.ed-ribbon {
    text-align: center;
    padding: 24px 24px 48px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    line-height: 1.7;
    color: rgba(22, 30, 46, 0.7);
    max-width: 980px;
    margin: 0 auto;
}
.ed-ribbon::before {
    content: '⌇';
    display: block;
    font-style: normal;
    font-size: 1.4rem;
    color: var(--editorial-copper);
    margin-bottom: 18px;
    letter-spacing: 0;
}
.ed-ribbon strong {
    color: var(--editorial-ink);
    font-style: normal;
    font-weight: 500;
}
.ed-ribbon em {
    color: var(--editorial-copper);
    font-style: italic;
}
@media (max-width: 820px) {
    .ed-ribbon { padding: 16px 20px 36px; line-height: 1.6; }
}

/* ─── Stat strip (legacy — kept for fallback) ──── */
.ed-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0;
    border-top: 1px solid var(--editorial-line);
    border-bottom: 1px solid var(--editorial-line);
}
.ed-stats__cell {
    padding: 36px 24px;
    border-right: 1px solid var(--editorial-line);
}
.ed-stats__cell:last-child { border-right: none; }
.ed-stats__num {
    display: block;
    font-family: var(--font-display, 'Fraunces', serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 1;
    color: var(--editorial-ink);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}
.ed-stats__label {
    font-size: 0.78rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--editorial-stone);
}
@media (max-width: 820px) {
    .ed-stats { grid-template-columns: repeat(2, 1fr); }
    .ed-stats__cell:nth-child(2) { border-right: none; }
    .ed-stats__cell:nth-child(1), .ed-stats__cell:nth-child(2) { border-bottom: 1px solid var(--editorial-line); }
}

/* ─── Footer CTA Pad ────────────────────────────── */
.ed-cta {
    text-align: center;
    padding: 90px 24px;
    margin: 64px 24px 32px;
    background: var(--editorial-ink);
    color: var(--editorial-paper);
    border-radius: 32px 40px 28px 36px;
    box-shadow: 0 40px 80px -30px rgba(22, 30, 46, 0.4);
}
@media (max-width: 820px) { .ed-cta { margin: 40px 12px 16px; padding: 64px 24px; border-radius: 24px 28px 22px 26px; } }
.ed-cta__kicker {
    font-family: var(--font-display, 'Fraunces', serif);
    font-style: italic;
    font-size: 0.95rem;
    letter-spacing: 0.16em;
    color: var(--editorial-copper-soft);
    margin-bottom: 16px;
    display: block;
}
.ed-cta__title {
    font-family: var(--font-display, 'Fraunces', serif);
    font-weight: 500;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.05;
    margin: 0 0 18px;
    color: var(--editorial-paper);
    letter-spacing: -0.018em;
}
.ed-cta__title em { font-style: italic; color: var(--editorial-copper-soft); }
.ed-cta__lead {
    font-family: var(--font-display, 'Fraunces', serif);
    font-size: 1.2rem;
    color: rgba(244, 236, 221, 0.75);
    max-width: 560px; margin: 0 auto 40px;
    line-height: 1.55;
}
.ed-cta__buttons {
    display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center;
}
.ed-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px;
    border-radius: 100px;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: background 0.25s, color 0.25s, transform 0.25s;
}
.ed-btn--solid {
    background: var(--editorial-copper);
    color: var(--editorial-paper);
}
.ed-btn--solid:hover { background: var(--editorial-copper-soft); transform: translateY(-2px); }
.ed-btn--ghost {
    background: transparent;
    color: var(--editorial-paper);
    border: 1px solid rgba(244, 236, 221, 0.35);
}
.ed-btn--ghost:hover { background: rgba(244, 236, 221, 0.1); transform: translateY(-2px); }

/* ─── Nav adjustments for entwurf ───────────────── */
/* Lift nav higher so the hero's rounded top edge cuts it in half */
.nav {
    top: 10px !important;
    background: rgba(244, 236, 221, 0.92) !important;
    z-index: 200 !important;
    box-shadow: 0 14px 36px -10px rgba(22, 30, 46, 0.25) !important;
}
/* Raise the hero margin to cut into nav from below */
.ed-page-hero { margin-top: 50px !important; }
.ed-hero { margin-top: 50px !important; border-radius: 32px 40px 28px 36px; margin-left: 24px; margin-right: 24px; padding-top: 130px !important; }
@media (max-width: 820px) {
    .ed-page-hero { margin-top: 76px !important; min-height: 56vh; padding: 100px 24px 50px !important; }
    .ed-hero { margin-top: 76px !important; margin-left: 12px; margin-right: 12px; border-radius: 24px 28px 22px 26px; min-height: 84vh; padding: 100px 24px 50px !important; }
    .ed-page-hero__title, .ed-hero__title { font-size: clamp(1.95rem, 8.2vw, 3.15rem) !important; }
    .ed-page-hero__lead, .ed-hero__sub { font-size: 1rem !important; }
    .ed-hero__meta { display: none; }
    .ed-hero__inner { grid-template-columns: 1fr !important; gap: 0 !important; }
}

/* ─── Editorial Mobile Menu ─────────────────────── */
@media (max-width: 820px) {
    /* Nav bar — tighter, more cream */
    .nav {
        padding: 8px 14px 8px 16px !important;
        top: 8px !important;
        gap: 6px !important;
        max-width: calc(100% - 24px) !important;
        background: rgba(244, 236, 221, 0.95) !important;
        border-color: rgba(22, 30, 46, 0.1) !important;
    }
    .nav__brand .nav__brand-la,
    .nav__brand .nav__brand-strand {
        font-family: var(--font-display);
        font-style: italic;
        font-weight: 500;
        letter-spacing: 0.02em;
        text-transform: none;
    }
    .nav__brand .nav__brand-strand { color: var(--editorial-copper); }
    .nav__wave { color: var(--editorial-copper); }
    .nav__toggle {
        color: var(--editorial-ink);
        background: transparent;
        border: none;
        padding: 6px;
        cursor: pointer;
    }

    /* Mobile CTA — warm copper pill with "Kontakt" label */
    .nav a.nav__cta-mobile {
        display: inline-flex !important;
        align-items: center;
        gap: 7px;
        background: var(--editorial-copper) !important;
        color: var(--editorial-paper) !important;
        padding: 8px 15px !important;
        height: 36px;
        border-radius: 100px !important;
        justify-content: center;
        flex-shrink: 0;
        margin-left: auto;
        font-family: var(--font-body);
        font-size: 0.82rem;
        font-weight: 600;
        letter-spacing: 0.01em;
        box-shadow: 0 6px 16px -6px rgba(194, 104, 58, 0.5) !important;
    }
    .nav a.nav__cta-mobile span { display: inline !important; }
    .nav__cta-mobile svg { width: 16px; height: 16px; flex-shrink: 0; }
    .nav a.nav__cta-mobile:hover,
    .nav a.nav__cta-mobile:active {
        background: var(--editorial-copper-soft) !important;
        color: var(--editorial-paper) !important;
    }

    /* Hamburger button */
    .nav__toggle {
        width: 36px; height: 36px;
        flex-shrink: 0;
        border-radius: 50%;
        background: rgba(22, 30, 46, 0.08) !important;
    }
    .nav__toggle:hover { background: rgba(22, 30, 46, 0.16) !important; }

    /* Slide-in panel — Editorial paper + copper accents */
    .nav__backdrop {
        background: rgba(22, 30, 46, 0.55) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
    }
    .nav__links {
        background: linear-gradient(150deg, var(--editorial-paper-soft) 0%, var(--editorial-paper) 50%, var(--editorial-paper) 100%) !important;
        padding: 110px 28px 40px !important;
        width: min(360px, 90vw) !important;
        border-radius: 32px 0 0 32px;
        box-shadow: -24px 0 70px -20px rgba(22, 30, 46, 0.5) !important;
    }
    .nav__links::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 220px;
        background:
            radial-gradient(ellipse 80% 60% at 80% 20%, rgba(194, 104, 58, 0.18), transparent 60%),
            radial-gradient(ellipse 60% 40% at 0% 60%, rgba(184, 178, 164, 0.2), transparent 60%) !important;
        pointer-events: none;
    }
    .nav__links::after {
        content: 'Lastrand';
        position: absolute;
        top: 36px; left: 28px;
        font-family: var(--font-display);
        font-style: italic;
        font-size: 0.72rem;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: var(--editorial-copper);
    }

    /* Nav links — editorial typography (scoped to slide-in menu so it doesn't
       hijack .nav__cta-mobile in the top bar) */
    .nav__links a:not(.nav__brand) {
        font-family: var(--font-display) !important;
        font-style: italic !important;
        font-weight: 500 !important;
        font-size: 1.45rem !important;
        line-height: 1.1 !important;
        padding: 16px 18px !important;
        border-radius: 14px !important;
        color: var(--editorial-ink) !important;
        text-align: left;
        border-bottom: 1px solid var(--editorial-line) !important;
        gap: 14px !important;
        transition: background 0.25s, color 0.25s, padding-left 0.25s !important;
    }
    .nav__links .nav__icon {
        width: 36px; height: 36px;
        background: rgba(255, 255, 255, 0.55) !important;
        color: var(--editorial-copper) !important;
        border-radius: 50% !important;
    }
    .nav__links a:not(.nav__brand):hover,
    .nav__links a:not(.nav__brand).is-current {
        background: var(--editorial-ink) !important;
        color: var(--editorial-paper) !important;
        transform: none !important;
        padding-left: 22px !important;
    }
    .nav__links a:not(.nav__brand).is-current .nav__icon,
    .nav__links a:not(.nav__brand):hover .nav__icon {
        background: rgba(244, 236, 221, 0.15) !important;
        color: var(--editorial-copper-soft) !important;
    }

    /* Show Kontakt in mobile menu too — redundant access for users who tap menu first */
    .nav__links .nav__cta { display: flex !important; }

    /* Extras (Anfahrt) — Editorial styling */
    .nav__extra {
        margin-top: 28px !important;
        padding-top: 24px !important;
        border-top: 1px solid var(--editorial-line) !important;
    }
    .nav__hours {
        padding: 8px 4px 16px !important;
    }
    .nav__extra-label {
        font-family: var(--font-body) !important;
        font-style: normal !important;
        font-size: 0.66rem !important;
        font-weight: 500;
        letter-spacing: 0.22em !important;
        text-transform: uppercase !important;
        color: var(--editorial-stone) !important;
        transform: none !important;
    }
    .nav__hours strong {
        font-family: var(--font-display) !important;
        font-style: italic !important;
        font-size: 1.1rem !important;
        color: var(--editorial-ink) !important;
    }
    .nav__route {
        background: var(--editorial-ink) !important;
        color: var(--editorial-paper) !important;
        border-radius: 18px !important;
        padding: 16px 18px !important;
        border-bottom: none !important;
    }
    .nav__route strong { color: var(--editorial-paper) !important; font-family: var(--font-display) !important; font-style: italic !important; font-size: 1.05rem !important; }
    .nav__route span { color: rgba(244, 236, 221, 0.7) !important; font-size: 0.78rem !important; }
    .nav__route svg { color: var(--editorial-copper-soft) !important; }
    .nav__route-arrow { color: var(--editorial-copper-soft) !important; }
}

/* ─── Mobile content tweaks ─────────────────────── */
@media (max-width: 820px) {
    /* Tighten section padding — tablet/large phone */
    .ed-section { padding: 64px 20px; }
    .ed-section--tight { padding: 40px 20px; }
    .ed-head { gap: 8px; margin-bottom: 36px; }
    .ed-head__title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
    .ed-head__lead { font-size: 1rem; line-height: 1.5; }

    /* Trinity cards — restore even sizing */
    .ed-trinity { gap: 32px; }
    .ed-trinity__title { font-size: 1.5rem; }

    /* Hotel quick facts — tighter padding, allow wrap */
    .ed-hotel-facts { padding: 18px 16px; gap: 8px 14px; }
    .ed-hotel-fact { font-size: 0.72rem; gap: 6px; }
    .ed-hotel-fact svg { width: 16px; height: 16px; }

    /* Room cards — Reset alternating border-radius on mobile to consistent */
    .ed-room, .ed-room--reverse, .ed-room:nth-child(even) {
        border-radius: 22px 28px 20px 26px;
        margin-bottom: 56px;
    }
    /* media handled in the 980px breakpoint above — no override needed */
    .ed-room__body { padding: 36px 24px !important; }
    .ed-room__title { font-size: clamp(1.6rem, 6vw, 2rem); }
    .ed-room__chips { gap: 6px; }
    .ed-room__chip { font-size: 0.72rem; padding: 5px 10px; }
    .ed-room__quote { padding: 14px 16px; font-size: 0.88rem; }

    /* Stats strip — 2 columns on mobile */
    .ed-stats { grid-template-columns: repeat(2, 1fr); }
    .ed-stats__cell:nth-child(2) { border-right: none; }
    .ed-stats__cell:nth-child(1), .ed-stats__cell:nth-child(2) { border-bottom: 1px solid var(--editorial-line); }

    /* Story split — bigger gap for mobile, smaller title */
    .ed-story__title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .ed-story__text { font-size: 0.95rem; }

    /* Draft banner smaller */
    .draft-banner {
        font-size: 0.6rem !important;
        padding: 5px 10px !important;
        bottom: 10px !important;
    }

    /* Footer — tighter spacing */
    .site-footer { padding-top: 48px !important; }
    .site-footer .container { padding: 0 24px !important; }

    /* Modal — better mobile margins */
    .ed-modal__panel { padding: 36px 22px 26px; }
    .ed-modal__title { font-size: 1.7rem !important; }
}
/* Draft banner moves to bottom corner to stay out of the way */
.draft-banner {
    top: auto !important;
    bottom: 16px !important;
    left: 16px !important;
    transform: none !important;
    font-size: 0.66rem !important;
    padding: 6px 14px !important;
}

/* ─── Hotel Amenity Board (Im Hotel auch dabei) ── */
.ed-amenity-board {
    padding: 56px 48px 48px;
    background:
        radial-gradient(ellipse 70% 100% at 100% 0%, rgba(194, 104, 58, 0.12), transparent 55%),
        linear-gradient(140deg, var(--editorial-paper) 0%, var(--editorial-paper) 50%, var(--editorial-paper-soft) 100%);
    border-radius: 28px 36px 26px 32px;
    box-shadow: 0 30px 60px -28px rgba(22, 30, 46, 0.2);
}
.ed-amenity-board__head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.ed-amenity-board__head .ed-head__label { padding-top: 0; margin-bottom: 16px; display: inline-block; border-top: none; }
.ed-amenity-board__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: -0.015em;
    margin: 0 0 12px;
    color: var(--editorial-ink);
}
.ed-amenity-board__title em { font-style: italic; color: var(--editorial-copper); }
.ed-amenity-board__lead {
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(22, 30, 46, 0.65);
    margin: 0;
}
.ed-amenity-board__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 36px;
}
.ed-amenity-board__group {}
.ed-amenity-board__label {
    font-family: var(--font-body);
    font-size: 0.68rem; font-weight: 500;
    letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--editorial-stone);
    padding-bottom: 10px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--editorial-line);
}
.ed-amenity-board__items {
    display: flex; flex-wrap: wrap;
    gap: 6px 12px;
    font-size: 0.86rem;
    line-height: 1.55;
    color: rgba(22, 30, 46, 0.78);
}
.ed-amenity-board__items span {
    white-space: nowrap;
    display: inline-flex; align-items: baseline; gap: 5px;
}
.ed-amenity-board__items span::before {
    content: '✓';
    color: var(--editorial-copper);
    font-weight: 500;
    font-size: 0.85em;
}
.ed-amenity-board__items small {
    color: rgba(22, 30, 46, 0.5);
    font-size: 0.78rem;
    margin-left: 2px;
}
.ed-amenity-board__foot {
    margin: 36px 0 0;
    padding-top: 24px;
    border-top: 1px solid var(--editorial-line);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(22, 30, 46, 0.7);
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.ed-amenity-board__foot strong { font-style: normal; color: var(--editorial-ink); font-weight: 500; }
@media (max-width: 980px) {
    .ed-amenity-board__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .ed-amenity-board { padding: 40px 24px 32px; }
    .ed-amenity-board__grid { grid-template-columns: 1fr; gap: 22px; }
}

/* ─── Highlights der Unterkunft (Booking-style) ── */
.ed-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 30px;
    background: #fff;
    border-radius: 24px 30px 22px 28px;
    box-shadow: 0 24px 56px -28px rgba(22, 30, 46, 0.2);
}
.ed-highlight {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: start;
}
.ed-highlight__icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(194, 104, 58, 0.1);
    color: var(--editorial-copper);
    border-radius: 14px 18px 12px 16px;
    flex-shrink: 0;
}
.ed-highlight__icon svg { width: 24px; height: 24px; }
.ed-highlight__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.2;
    margin: 0 0 6px;
    color: var(--editorial-ink);
}
.ed-highlight__desc {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(22, 30, 46, 0.7);
    margin: 0;
}
@media (max-width: 820px) {
    .ed-highlights { grid-template-columns: 1fr; gap: 18px; padding: 22px; }
}

/* ─── Hotel-Level Quick Facts (Page hero strip) ── */
.ed-hotel-facts {
    margin: 32px 24px 0;
    padding: 28px 36px;
    background: #fff;
    border-radius: 24px 30px 22px 28px;
    box-shadow: 0 24px 56px -28px rgba(22, 30, 46, 0.22);
    display: flex; flex-wrap: wrap;
    gap: 12px 24px;
    justify-content: center;
    align-items: center;
}
.ed-hotel-fact {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-body); font-size: 0.86rem; font-weight: 500;
    color: var(--editorial-ink);
}
.ed-hotel-fact svg {
    width: 20px; height: 20px;
    color: var(--editorial-copper);
    flex-shrink: 0;
}
.ed-hotel-fact__sep {
    width: 1px; height: 14px;
    background: var(--editorial-line);
}
@media (max-width: 820px) {
    .ed-hotel-facts { margin: 24px 12px 0; padding: 22px 20px; gap: 10px 18px; }
    .ed-hotel-fact { font-size: 0.78rem; }
    .ed-hotel-fact svg { width: 18px; height: 18px; }
    .ed-hotel-fact__sep { display: none; }
}

/* ─── Room chip pills (under title) ──────────── */
.ed-room__chips {
    display: flex; flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 24px;
}
.ed-room__chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px;
    border: 1px solid rgba(22, 30, 46, 0.22);
    border-radius: 100px;
    font-family: var(--font-body); font-size: 0.78rem; font-weight: 500;
    color: var(--editorial-ink);
    background: rgba(255, 255, 255, 0.6);
}
.ed-room__chip svg { width: 14px; height: 14px; color: var(--editorial-copper); }
.ed-room__chip--size { background: var(--editorial-copper); color: #FFF8EE; border-color: var(--editorial-copper); }
.ed-room__chip--size svg { color: rgba(255, 248, 238, 0.9); }

/* Room metric row — Größe + Bett + Bewertung */
.ed-room__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 18px 0;
    margin: 0 0 22px;
    border-top: 1px solid var(--editorial-line);
    border-bottom: 1px solid var(--editorial-line);
}
.ed-room__metric {
    display: flex; flex-direction: column; gap: 4px;
}
.ed-room__metric-label {
    font-family: var(--font-body); font-size: 0.66rem; font-weight: 500;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--editorial-stone);
}
.ed-room__metric-value {
    font-family: var(--font-display); font-style: italic; font-weight: 500;
    font-size: 1.05rem; line-height: 1.2;
    color: var(--editorial-ink);
    display: flex; align-items: center; gap: 8px;
}
.ed-room__metric-value svg { width: 16px; height: 16px; color: var(--editorial-copper); flex-shrink: 0; }
.ed-room__rating {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px;
    background: rgba(194, 104, 58, 0.08);
    border: 1px solid rgba(194, 104, 58, 0.3);
    border-radius: 100px;
    font-family: var(--font-display); font-size: 0.82rem;
    color: var(--editorial-ink);
    margin-bottom: 22px;
}
.ed-room__rating strong { font-style: italic; color: var(--editorial-copper); font-weight: 500; font-size: 1rem; }

/* Guest review quote pill */
.ed-room__quote {
    margin: 6px 0 22px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.5);
    border-left: 2px solid var(--editorial-copper);
    border-radius: 0 10px 10px 0;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(22, 30, 46, 0.82);
}
.ed-room__quote-attr {
    display: block;
    margin-top: 10px;
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--editorial-stone);
}
.ed-room__quote-attr strong {
    color: var(--editorial-copper);
    font-weight: 500;
}

/* Compact amenities (replaces expandable details) */
.ed-room__amenities {
    margin: 18px 0 22px;
    padding: 16px 0;
    border-top: 1px solid var(--editorial-line);
    border-bottom: 1px solid var(--editorial-line);
}
.ed-room__amenities-row {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    padding: 6px 0;
    align-items: baseline;
}
.ed-room__amenities-label {
    font-family: var(--font-body);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--editorial-stone);
    padding-top: 3px;
    white-space: nowrap;
}
.ed-room__amenities-items {
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(22, 30, 46, 0.78);
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    min-width: 0;
}
.ed-room__amenities-items span {
    white-space: nowrap;
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
}
.ed-room__amenities-items span::before {
    content: '✓';
    color: var(--editorial-copper);
    font-weight: 500;
    font-size: 0.85em;
    flex-shrink: 0;
}
@media (max-width: 600px) {
    .ed-room__amenities-row { grid-template-columns: 1fr; gap: 4px; }
    .ed-room__amenities-items { gap: 4px 12px; }
}

/* Expandable details (Bad / Aussicht / Ausstattung) — KEPT for fallback but unused now */
.ed-room__details {
    margin: 18px 0 22px;
    border: 1px solid var(--editorial-line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.4);
    overflow: hidden;
}
.ed-room__details > summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 20px;
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--font-body); font-size: 0.78rem; font-weight: 500;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--editorial-ink);
    transition: background 0.2s;
}
.ed-room__details > summary::-webkit-details-marker { display: none; }
.ed-room__details > summary::after {
    content: '+';
    font-family: var(--font-display); font-style: italic; font-weight: 400;
    font-size: 1.4rem;
    color: var(--editorial-copper);
    transition: transform 0.25s;
    letter-spacing: 0;
    text-transform: none;
}
.ed-room__details[open] > summary::after { content: '−'; }
.ed-room__details > summary:hover { background: rgba(255, 255, 255, 0.7); }
.ed-room__details-body {
    padding: 8px 20px 22px;
    border-top: 1px solid var(--editorial-line);
}
.ed-room__detail-group { margin-top: 16px; }
.ed-room__detail-group:first-child { margin-top: 12px; }
.ed-room__detail-label {
    font-family: var(--font-body); font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--editorial-stone);
    margin-bottom: 10px;
}
.ed-room__detail-list {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6px 18px;
}
.ed-room__detail-list li {
    font-size: 0.86rem; line-height: 1.4;
    color: rgba(22, 30, 46, 0.78);
    padding-left: 22px;
    position: relative;
}
.ed-room__detail-list li::before {
    content: '✓';
    position: absolute; left: 0; top: 1px;
    color: var(--editorial-copper);
    font-size: 0.85rem;
    font-weight: 500;
}
.ed-room__smoke {
    padding-top: 14px; margin-top: 14px;
    border-top: 1px solid var(--editorial-line);
    font-family: var(--font-body); font-size: 0.78rem;
    color: rgba(22, 30, 46, 0.6);
}
.ed-room__smoke strong { color: var(--editorial-ink); margin-right: 6px; }

@media (max-width: 600px) {
    .ed-room__detail-list { grid-template-columns: 1fr; }
    .ed-room__metrics { grid-template-columns: 1fr; }
}

/* ─── Editorial Menu Card ──────────────────────── */
.ed-menu {
    margin: 0 24px;
    padding: 80px 64px 72px;
    background:
        radial-gradient(ellipse 60% 80% at 100% 0%, rgba(194, 104, 58, 0.1), transparent 55%),
        radial-gradient(ellipse 80% 60% at 0% 100%, rgba(184, 178, 164, 0.15), transparent 50%),
        linear-gradient(140deg, var(--editorial-paper) 0%, var(--editorial-paper) 60%, var(--editorial-paper-soft) 100%);
    color: var(--editorial-ink);
    border-radius: 32px 40px 28px 36px;
    box-shadow: 0 40px 80px -30px rgba(22, 30, 46, 0.2);
    position: relative;
    overflow: hidden;
}
.ed-menu__head { text-align: center; margin: 0 auto 56px; max-width: 720px; }
.ed-menu__label {
    font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--editorial-stone); margin-bottom: 14px;
    display: inline-flex; align-items: center; gap: 14px;
}
.ed-menu__label::before, .ed-menu__label::after {
    content: ''; width: 36px; height: 1px; background: var(--editorial-copper);
}
.ed-menu__title {
    font-family: var(--font-display); font-weight: 500;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    line-height: 1.02; letter-spacing: -0.02em;
    margin: 0 0 14px; color: var(--editorial-ink);
}
.ed-menu__title em { font-style: italic; color: var(--editorial-copper); }
.ed-menu__lead {
    font-family: var(--font-display); font-size: 1.05rem;
    line-height: 1.55; color: rgba(22, 30, 46, 0.65);
    max-width: 520px; margin: 0 auto;
}
.ed-menu__grid {
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0 80px;
    max-width: 1100px; margin: 0 auto;
}
.ed-menu__cat { margin-bottom: 48px; }
.ed-menu__cat:last-child { margin-bottom: 0; }
.ed-menu__cat-kicker {
    font-family: var(--font-display); font-style: italic;
    font-size: 0.85rem; color: var(--editorial-copper);
    letter-spacing: 0.08em; margin-bottom: 6px; display: block;
}
.ed-menu__cat-title {
    font-family: var(--font-display); font-weight: 500;
    font-size: 1.65rem; line-height: 1.1;
    margin: 0 0 24px; color: var(--editorial-ink);
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(22, 30, 46, 0.18);
    display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
}
.ed-menu__cat-title small {
    font-family: var(--font-body); font-weight: 400; font-size: 0.7rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--editorial-stone);
}
.ed-menu__item { margin-bottom: 22px; }
.ed-menu__item:last-child { margin-bottom: 0; }
.ed-menu__item-head {
    display: flex; align-items: baseline; gap: 8px;
    margin-bottom: 4px;
}
.ed-menu__item-name {
    font-family: var(--font-display); font-weight: 500;
    font-size: 1.02rem; line-height: 1.2;
    color: var(--editorial-ink);
    white-space: nowrap;
    overflow: hidden; text-overflow: ellipsis;
    min-width: 0;
}
/* Mobil: lange Gericht-Namen umbrechen statt abschneiden (verhindert Overflow rechts) */
@media (max-width: 820px) {
    .ed-menu__item-name { white-space: normal; overflow: visible; text-overflow: clip; }
    .ed-menu__item-desc { max-width: 100%; }
}
.ed-menu__item-dots {
    flex: 1; min-width: 24px;
    border-bottom: 1.5px dotted rgba(22, 30, 46, 0.22);
    margin-bottom: 6px;
}
.ed-menu__item-price {
    font-family: var(--font-display); font-style: italic;
    font-size: 1.08rem; font-weight: 500;
    color: var(--editorial-ink);
    white-space: nowrap;
}
.ed-menu__item-price::after {
    content: ' €';
    font-size: 0.85em;
    color: rgba(22, 30, 46, 0.55);
    font-style: normal;
}
.ed-menu__item-desc {
    font-size: 0.85rem; line-height: 1.45;
    color: rgba(22, 30, 46, 0.6);
    margin: 0;
    max-width: 95%;
}
.ed-menu__foot {
    text-align: center; max-width: 720px; margin: 56px auto 0;
    padding-top: 36px;
    border-top: 1px solid rgba(22, 30, 46, 0.15);
}
.ed-menu__foot-note {
    font-family: var(--font-display); font-style: italic;
    font-size: 0.95rem; color: rgba(22, 30, 46, 0.6);
    line-height: 1.5;
    margin: 0 0 24px;
}
.ed-menu__cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px;
    background: var(--editorial-ink);
    color: var(--editorial-paper);
    border-radius: 100px;
    text-decoration: none;
    font-family: var(--font-body); font-size: 0.85rem;
    letter-spacing: 0.1em;
    transition: transform 0.25s, background 0.25s;
}
.ed-menu__cta:hover { background: var(--editorial-copper); transform: translateY(-2px); }
@media (max-width: 900px) {
    .ed-menu { margin: 0 12px; padding: 56px 28px 48px; border-radius: 22px 28px 20px 26px; }
    .ed-menu__grid { grid-template-columns: 1fr; gap: 0; }
    .ed-menu__cat-title { font-size: 1.4rem; }
}

/* ─── Duo-Card (Includes + CTA in one block) ──── */
.duo-card {
    position: relative;
    margin: 0 24px;
    border-radius: 32px 40px 28px 36px;
    box-shadow: 0 40px 80px -30px rgba(22, 30, 46, 0.2);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    min-height: 540px;
    background:
        radial-gradient(ellipse 70% 100% at 100% 50%, rgba(194, 104, 58, 0.18), transparent 55%),
        radial-gradient(ellipse 80% 80% at 0% 100%, rgba(184, 178, 164, 0.2), transparent 50%),
        linear-gradient(110deg, var(--editorial-paper-soft) 0%, var(--editorial-paper) 50%, var(--editorial-paper) 100%);
    color: var(--editorial-ink);
}
.duo-card__includes {
    padding: 70px 56px;
    display: flex; flex-direction: column; justify-content: center;
}
.duo-card__cta {
    padding: 70px 48px;
    display: flex; flex-direction: column; justify-content: center;
    position: relative;
    border-left: 1px solid rgba(22, 30, 46, 0.1);
    background: radial-gradient(ellipse 90% 70% at 50% 30%, rgba(194, 104, 58, 0.06), transparent 70%);
}
.duo-card__label {
    font-family: var(--font-body); font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: rgba(22, 30, 46, 0.5); margin-bottom: 14px;
    display: inline-flex; align-items: center; gap: 12px;
}
.duo-card__label::before { content: ''; width: 30px; height: 1px; background: rgba(22, 30, 46, 0.4); }
.duo-card__title {
    font-family: var(--font-display); font-weight: 500;
    font-size: clamp(1.7rem, 2.4vw, 2.2rem);
    line-height: 1.05; letter-spacing: -0.015em;
    margin: 0 0 32px; color: var(--editorial-ink);
}
.duo-card__title em { font-style: italic; color: var(--editorial-copper); }
.duo-includes-list {
    display: flex; flex-direction: column; gap: 0;
    margin: 0; padding: 0; list-style: none;
}
.duo-includes-list__item {
    display: grid; grid-template-columns: 104px 1fr; gap: 16px;
    padding: 18px 0; border-bottom: 1px solid rgba(22, 30, 46, 0.12);
}
.duo-includes-list__num { hyphens: none; word-break: keep-all; }
.duo-includes-list__item:last-child { border-bottom: none; }
.duo-includes-list__num { font-family: var(--font-display); font-style: italic; color: var(--editorial-copper); font-size: 0.95rem; padding-top: 2px; }
.duo-includes-list__title { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; line-height: 1.2; color: var(--editorial-ink); margin: 0 0 2px; }
.duo-includes-list__desc { font-size: 0.85rem; line-height: 1.45; color: rgba(22, 30, 46, 0.6); margin: 0; }
.duo-card__cta-kicker { font-family: var(--font-display); font-style: italic; font-size: 0.95rem; color: var(--editorial-copper); letter-spacing: 0.06em; margin-bottom: 10px; display: block; }
.duo-card__cta-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.02; letter-spacing: -0.018em; margin: 0 0 18px; color: var(--editorial-ink); }
.duo-card__cta-title em { font-style: italic; color: var(--editorial-copper); }
.duo-card__cta-lead { font-family: var(--font-display); font-size: 1.05rem; line-height: 1.55; color: rgba(22, 30, 46, 0.7); margin: 0 0 32px; max-width: 360px; }
.duo-card__cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.duo-card__cta-btn { padding: 14px 26px; border-radius: 100px; text-decoration: none; font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.1em; transition: transform 0.25s, background 0.25s; }
.duo-card__cta-btn--solid { background: var(--editorial-ink); color: var(--editorial-paper); }
.duo-card__cta-btn--solid:hover { background: #2A3852; transform: translateY(-2px); }
.duo-card__cta-btn--ghost { background: transparent; color: var(--editorial-ink); border: 1px solid rgba(22, 30, 46, 0.25); }
.duo-card__cta-btn--ghost:hover { background: rgba(22, 30, 46, 0.06); transform: translateY(-2px); }
@media (max-width: 980px) {
    .duo-card { grid-template-columns: 1fr; min-height: 0; }
    .duo-card__cta { border-left: none; border-top: 1px solid rgba(22, 30, 46, 0.1); }
    .duo-card__includes, .duo-card__cta { padding: 56px 32px; }
}
@media (max-width: 820px) {
    .duo-card { margin: 0 12px; border-radius: 22px 28px 20px 26px; }
}

/* ─── Legal page (Impressum, Datenschutz, AGB) ── */
.legal-hero {
    position: relative;
    margin: 50px 24px 0;
    padding: 100px 6vw 80px;
    overflow: hidden;
    background: linear-gradient(150deg, var(--editorial-paper-soft) 0%, var(--editorial-paper) 60%, var(--editorial-paper) 100%);
    border-radius: 32px 40px 28px 36px;
    box-shadow: 0 30px 70px -30px rgba(22, 30, 46, 0.2);
}
.legal-hero__chapter { font-family: var(--font-display); font-style: italic; font-size: 0.85rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--editorial-copper); margin-bottom: 18px; display: inline-flex; align-items: center; gap: 14px; }
.legal-hero__chapter::before { content: ''; width: 36px; height: 1px; background: var(--editorial-copper); }
.legal-hero__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.8rem, 6vw, 5rem); line-height: 0.98; letter-spacing: -0.02em; margin: 0; color: var(--editorial-ink); }
.legal-hero__title em { font-style: italic; color: var(--editorial-copper); font-weight: 500; }
.legal-hero__lead { font-family: var(--font-display); font-size: 1.1rem; line-height: 1.55; max-width: 600px; margin: 24px 0 0; color: rgba(22, 30, 46, 0.65); }

.legal-section { padding: 90px 6vw; }
.legal-container { max-width: 760px; margin: 0 auto; }
.legal-toc { background: #fff; border-radius: 24px 30px 22px 28px; padding: 32px 36px; box-shadow: 0 24px 56px -30px rgba(22, 30, 46, 0.2); margin-bottom: 64px; }
.legal-toc__label { font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--editorial-stone); margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--editorial-line); }
.legal-toc__list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.legal-toc__list a { font-family: var(--font-display); font-size: 1rem; color: var(--editorial-ink); text-decoration: none; padding-left: 24px; position: relative; transition: color 0.2s; display: block; padding-top: 4px; padding-bottom: 4px; }
.legal-toc__list a::before { content: counter(toc, decimal-leading-zero); counter-increment: toc; position: absolute; left: 0; top: 4px; font-family: var(--font-display); font-style: italic; color: var(--editorial-copper); font-size: 0.85rem; }
.legal-toc__list { counter-reset: toc; }
.legal-toc__list a:hover { color: var(--editorial-copper); }

.legal-content { color: var(--editorial-ink); }
.legal-content h2 {
    font-family: var(--font-display); font-weight: 500;
    font-size: clamp(1.6rem, 2.6vw, 2rem);
    line-height: 1.1; letter-spacing: -0.015em;
    margin: 64px 0 18px;
    color: var(--editorial-ink);
    padding-top: 32px;
    border-top: 1px solid var(--editorial-line);
    counter-increment: legalH2;
    position: relative;
}
.legal-content { counter-reset: legalH2; }
.legal-content h2::before {
    content: counter(legalH2, decimal-leading-zero);
    font-family: var(--font-display); font-style: italic;
    color: var(--editorial-copper);
    font-size: 0.85rem;
    display: block; margin-bottom: 6px;
    letter-spacing: 0.04em;
}
.legal-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.legal-content p { font-size: 1rem; line-height: 1.7; color: rgba(22, 30, 46, 0.78); margin: 0 0 14px; max-width: 660px; }
.legal-content p strong { color: var(--editorial-ink); font-weight: 500; }
.legal-content a { color: var(--editorial-copper); text-decoration: none; border-bottom: 1px solid rgba(194, 104, 58, 0.3); transition: border-color 0.2s; }
.legal-content a:hover { border-bottom-color: var(--editorial-copper); }
.legal-content h3 { font-family: var(--font-display); font-weight: 500; font-style: italic; font-size: 1.15rem; margin: 24px 0 10px; color: var(--editorial-ink); }
@media (max-width: 820px) {
    .legal-hero { margin: 40px 12px 0; padding: 80px 24px 60px; border-radius: 22px 28px 20px 26px; }
    .legal-section { padding: 60px 24px; }
    .legal-toc__list { grid-template-columns: 1fr; }
}

/* ─── Editorial Contact Modal ──────────────────── */
.ed-modal {
    position: fixed; inset: 0; z-index: 1500;
    display: none;
    align-items: center; justify-content: center;
    padding: 24px;
}
.ed-modal.is-open {
    display: flex;
    animation: edModalIn 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes edModalIn { from { opacity: 0 } to { opacity: 1 } }
.ed-modal__backdrop {
    position: absolute; inset: 0;
    background: rgba(22, 30, 46, 0.7);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    cursor: pointer;
}
.ed-modal__panel {
    position: relative; z-index: 1;
    width: 100%; max-width: 760px;
    flex: 0 1 760px;
    background: var(--editorial-paper);
    border-radius: 32px 40px 28px 36px;
    padding: 56px 56px 48px;
    box-shadow: 0 60px 120px -30px rgba(22, 30, 46, 0.55);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    opacity: 0;
    transform: rotate(-0.3deg) translateY(20px) scale(0.96);
    transition: opacity 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ed-modal.is-open .ed-modal__panel {
    opacity: 1;
    transform: rotate(-0.3deg) translateY(0) scale(1);
}
.ed-modal__close {
    position: absolute; top: 22px; right: 22px;
    width: 40px; height: 40px;
    border: 1px solid var(--editorial-line);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--editorial-ink);
    transition: background 0.25s, color 0.25s, transform 0.4s;
}
.ed-modal__close:hover { background: var(--editorial-ink); color: var(--editorial-paper); transform: rotate(90deg); }
.ed-modal__close svg { width: 18px; height: 18px; }
.ed-modal__header { margin: 0 0 36px; max-width: 480px; }
.ed-modal__label {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--editorial-stone);
    margin-bottom: 14px;
    display: inline-flex; align-items: center; gap: 12px;
}
.ed-modal__label::before {
    content: ''; width: 36px; height: 1px;
    background: var(--editorial-copper);
}
.ed-modal__title {
    font-family: var(--font-display, 'Fraunces', serif);
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.02;
    letter-spacing: -0.018em;
    margin: 0 0 12px;
    color: var(--editorial-ink);
}
.ed-modal__title em { font-style: italic; color: var(--editorial-copper); font-weight: 500; }
.ed-modal__lead {
    font-family: var(--font-display, 'Fraunces', serif);
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(22, 30, 46, 0.7);
    margin: 0;
}
.ed-modal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.ed-modal__tile {
    display: grid;
    grid-template-columns: 40px 1fr 16px;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: #fff;
    border-radius: 18px 22px 16px 20px;
    text-decoration: none;
    color: var(--editorial-ink);
    box-shadow: 0 14px 28px -16px rgba(22, 30, 46, 0.25);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.ed-modal__tile:hover {
    transform: translateY(-3px) rotate(0.3deg);
    box-shadow: 0 22px 40px -16px rgba(22, 30, 46, 0.35);
}
.ed-modal__tile--full {
    grid-column: 1 / -1;
    background: var(--editorial-ink);
    color: var(--editorial-paper);
}
.ed-modal__tile-icon {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    color: var(--editorial-copper);
    background: rgba(194, 104, 58, 0.1);
    border-radius: 12px 14px 11px 13px;
}
.ed-modal__tile--full .ed-modal__tile-icon { color: var(--editorial-copper-soft); background: rgba(232, 166, 120, 0.18); }
.ed-modal__tile-icon svg { width: 20px; height: 20px; }
.ed-modal__tile-num {
    font-family: var(--font-display, 'Fraunces', serif);
    font-style: italic;
    font-size: 0.78rem;
    color: var(--editorial-copper);
    letter-spacing: 0.04em;
    margin-right: 8px;
}
.ed-modal__tile--full .ed-modal__tile-num { color: var(--editorial-copper-soft); }
.ed-modal__tile-name {
    font-family: var(--font-display, 'Fraunces', serif);
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.15;
    margin-bottom: 3px;
    color: var(--editorial-ink);
    display: flex; align-items: baseline; flex-wrap: wrap;
}
.ed-modal__tile--full .ed-modal__tile-name { color: var(--editorial-paper); }
.ed-modal__tile-desc {
    font-size: 0.82rem;
    color: rgba(22, 30, 46, 0.6);
    line-height: 1.35;
}
.ed-modal__tile--full .ed-modal__tile-desc { color: rgba(244, 236, 221, 0.7); }
.ed-modal__tile-arrow {
    font-family: var(--font-display, 'Fraunces', serif);
    font-style: italic;
    color: var(--editorial-copper);
    font-size: 1.3rem;
    transition: transform 0.25s;
    line-height: 1;
}
.ed-modal__tile--full .ed-modal__tile-arrow { color: var(--editorial-copper-soft); }
.ed-modal__tile:hover .ed-modal__tile-arrow { transform: translateX(4px); }
body.is-ed-modal-open { overflow: hidden; }

@media (max-width: 640px) {
    .ed-modal { padding: 12px; }
    .ed-modal__panel { padding: 40px 24px 28px; border-radius: 22px 28px 20px 24px; }
    .ed-modal__grid { grid-template-columns: 1fr; }
    .ed-modal__close { top: 14px; right: 14px; }
}

/* ─── Editorial Footer override ─────────────────── */
.site-footer {
    background: var(--editorial-ink) !important;
    color: var(--editorial-paper) !important;
    margin: 64px 24px 24px;
    padding: 84px 0 0 !important;
    border-radius: 32px 40px 28px 36px;
    box-shadow: 0 40px 80px -30px rgba(22, 30, 46, 0.4);
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(194, 104, 58, 0.12), transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(194, 104, 58, 0.06), transparent 60%);
    pointer-events: none;
}
.site-footer .container { position: relative; z-index: 1; padding: 0 64px; max-width: 1320px; }
.site-footer .footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(244, 236, 221, 0.18);
}
/* About block — editorial brand wordmark */
.site-footer .footer__about { display: flex; flex-direction: column; gap: 20px; }
.site-footer .footer__brand {
    display: flex; align-items: center; gap: 12px;
}
.site-footer .footer__brand svg { color: var(--editorial-copper-soft); }
.site-footer .footer__brand .la {
    font-family: var(--font-display, 'Fraunces', serif);
    font-style: italic;
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0.02em;
    color: var(--editorial-paper);
    text-transform: none;
}
.site-footer .footer__brand .strand {
    font-family: var(--font-display, 'Fraunces', serif);
    font-style: italic;
    font-weight: 500;
    font-size: 1.6rem;
    color: var(--editorial-copper-soft);
    text-transform: none;
}
.site-footer .footer__tagline {
    font-family: var(--font-display, 'Fraunces', serif) !important;
    font-family: var(--font-display, 'Fraunces', serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--editorial-copper-soft) !important;
    letter-spacing: 0;
    text-transform: none !important;
    transform: rotate(-0.4deg);
    display: inline-block;
    margin: 4px 0 12px;
}
.site-footer .footer__about p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(244, 236, 221, 0.7) !important;
    max-width: 320px;
    margin: 0 0 14px;
}
.site-footer .footer__social {
    display: flex; gap: 10px;
}
.site-footer .footer__social a {
    width: 38px; height: 38px;
    background: rgba(244, 236, 221, 0.08) !important;
    border: 1px solid rgba(244, 236, 221, 0.18);
    color: var(--editorial-paper) !important;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.site-footer .footer__social a:hover {
    background: var(--editorial-copper) !important;
    border-color: var(--editorial-copper);
    transform: translateY(-2px);
}
.site-footer .footer__social svg { width: 16px; height: 16px; }

/* Col headers — editorial labels */
.site-footer .footer__col h2 {
    font-family: var(--font-body, 'Inter', sans-serif) !important;
    font-size: 0.7rem !important;
    font-weight: 500;
    letter-spacing: 0.28em !important;
    text-transform: uppercase !important;
    color: rgba(244, 236, 221, 0.45) !important;
    padding-top: 12px;
    margin: 0 0 24px;
    border-top: 1px solid rgba(244, 236, 221, 0.18);
    position: relative;
}
.site-footer .footer__col h2::before {
    content: counter(footerCol, upper-roman);
    counter-increment: footerCol;
    position: absolute;
    top: 12px; right: 0;
    font-family: var(--font-display, 'Fraunces', serif);
    font-style: italic;
    color: var(--editorial-copper-soft);
    letter-spacing: 0;
    text-transform: none;
    font-size: 0.85rem;
}
.site-footer .footer__grid { counter-reset: footerCol; }
.site-footer .footer__col ul {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column;
    gap: 12px;
}
.site-footer .footer__col li {
    font-family: var(--font-display, 'Fraunces', serif);
    font-size: 1.05rem;
    line-height: 1.4;
    color: rgba(244, 236, 221, 0.85);
}
.site-footer .footer__col li a {
    color: rgba(244, 236, 221, 0.85) !important;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
}
.site-footer .footer__col li a:hover {
    color: var(--editorial-copper-soft) !important;
    border-bottom-color: var(--editorial-copper-soft);
}

/* Bottom bar */
.site-footer .footer__bar {
    padding: 24px 0 28px;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body, 'Inter', sans-serif) !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(244, 236, 221, 0.45) !important;
    border-top: none !important;
}
.site-footer .footer__bar > div:last-child {
    font-family: var(--font-display, 'Fraunces', serif) !important;
    font-style: italic;
    font-size: 0.95rem !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    color: var(--editorial-copper-soft) !important;
}

@media (max-width: 980px) {
    .site-footer { margin: 40px 12px 16px; border-radius: 24px 28px 22px 26px; padding-top: 56px !important; }
    .site-footer .container { padding: 0 28px; }
    .site-footer .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; padding-bottom: 40px; }
    .site-footer .footer__about { grid-column: 1 / -1; }
    .site-footer .footer__bar { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 560px) {
    .site-footer .footer__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   VARIANTEN-SEITE — scoped Styles für /entwurf/varianten.html
   ═══════════════════════════════════════════════════ */

/* ── Page-Frame ── */
.var-page { background: var(--editorial-paper); padding: 56px 24px 96px; }
.var-page__inner { max-width: 1320px; margin: 0 auto; }
.var-page__intro { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.var-page__intro h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--editorial-ink);
    margin: 0 0 16px;
}
.var-page__intro h1 em { color: var(--editorial-copper); font-style: italic; }
.var-page__intro p {
    font-family: var(--font-display); font-style: italic;
    color: rgba(22,30,46,0.65); font-size: 1.05rem;
    margin: 0;
}
.var-section {
    margin: 64px 0 0;
    padding: 40px 0 0;
    border-top: 1px solid rgba(22,30,46,0.1);
}
.var-section__head {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--editorial-copper);
    margin: 0 0 8px;
    text-align: center;
}
.var-section__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    font-weight: 500;
    color: var(--editorial-ink);
    text-align: center;
    margin: 0 0 56px;
}
.var-section__title em { color: var(--editorial-copper); font-style: italic; }

.var-card {
    background: #fff;
    border-radius: 28px 34px 26px 32px;
    padding: 32px 32px 40px;
    margin: 0 0 40px;
    box-shadow: 0 24px 48px -28px rgba(22,30,46,0.18);
    border: 1px solid rgba(22,30,46,0.06);
}
.var-card__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--editorial-copper);
    background: rgba(194,104,58,0.08);
    padding: 5px 12px;
    border-radius: 100px;
    margin: 0 0 10px;
}
.var-card__name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--editorial-ink);
    margin: 0 0 6px;
}
.var-card__name em { color: var(--editorial-copper); font-style: italic; }
.var-card__desc {
    font-family: var(--font-display);
    font-style: italic;
    color: rgba(22,30,46,0.6);
    font-size: 0.98rem;
    margin: 0 0 32px;
    padding: 0 0 24px;
    border-bottom: 1px dashed rgba(22,30,46,0.12);
    max-width: 720px;
}
.var-card__preview {
    background: var(--editorial-paper);
    border-radius: 18px;
    padding: 32px 24px;
    position: relative;
}
.var-card__preview--hero {
    background: linear-gradient(160deg, var(--editorial-ink) 0%, #1F2A45 60%, #2C3858 100%);
    padding: 80px 24px 60px;
}

/* ═══ Zone-Variante A · Essence (Editorial-Block + paired Facts) ═══ */
.zone-essence {
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
    padding: 24px 24px 8px;
}
.zone-essence__kicker {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--editorial-copper);
    margin: 0 0 24px;
}
.zone-essence__kicker::before,
.zone-essence__kicker::after {
    content: ''; display: block;
    width: 36px; height: 1px;
    background: var(--editorial-copper);
    opacity: 0.5;
}
.zone-essence__lead {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-style: italic;
    color: var(--editorial-ink);
    line-height: 1.5;
    margin: 0 0 40px;
    font-weight: 400;
}
.zone-essence__lead strong {
    color: var(--editorial-copper);
    font-style: normal;
    font-weight: 500;
}
.zone-essence__facts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 820px;
    margin: 0 auto;
}
.zone-essence__fact {
    display: inline-flex; align-items: baseline; gap: 9px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(22,30,46,0.78);
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(22, 30, 46, 0.1);
    border-radius: 100px;
    padding: 9px 18px;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transition: border-color 0.2s, background 0.2s;
}
.zone-essence__fact:hover {
    border-color: rgba(194, 104, 58, 0.4);
    background: rgba(255, 255, 255, 0.75);
}
.zone-essence__fact::before {
    content: '✦';
    color: var(--editorial-copper);
    font-size: 0.78rem;
    flex-shrink: 0;
}
.zone-essence__fact strong { color: var(--editorial-ink); font-weight: 600; }
@media (max-width: 640px) {
    .zone-essence__facts { gap: 8px; }
    .zone-essence__fact { font-size: 0.84rem; padding: 8px 14px; }
}

/* ═══ Zone-Variante C · Direct Story Bridge ═══ */
.zone-story-bridge {
    text-align: center;
    max-width: 680px; margin: 0 auto;
    padding: 32px 24px;
}
.zone-story-bridge__caveat {
    font-family: var(--font-caveat, 'Caveat', cursive);
    color: var(--editorial-copper);
    font-size: 1.5rem;
    margin: 0 0 16px;
    transform: rotate(-2deg);
    display: inline-block;
}
.zone-story-bridge__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--editorial-ink);
    margin: 0 0 8px;
}
.zone-story-bridge__title em { color: var(--editorial-copper); font-style: italic; }
.zone-story-bridge__lead {
    font-family: var(--font-display); font-style: italic;
    color: rgba(22,30,46,0.65);
    font-size: 1.05rem;
    margin: 0;
}

/* ═══ Zone-Variante D · Three Numbered Pillars ═══ */
.zone-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 16px 16px 0;
}
.zone-pillar {
    text-align: center;
    padding: 24px 16px;
}
.zone-pillar__num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 3.2rem;
    color: var(--editorial-copper);
    line-height: 1; margin: 0 0 14px;
    font-weight: 500;
    opacity: 0.7;
}
.zone-pillar__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--editorial-ink);
    margin: 0 0 8px;
    font-weight: 500;
}
.zone-pillar__title em { color: var(--editorial-copper); font-style: italic; }
.zone-pillar__desc {
    font-family: var(--font-body);
    font-size: 0.93rem;
    color: rgba(22,30,46,0.65);
    line-height: 1.55;
    margin: 0;
}
@media (max-width: 720px) {
    .zone-pillars { grid-template-columns: 1fr; gap: 8px; }
    .zone-pillar { padding: 18px 16px; border-bottom: 1px dashed rgba(22,30,46,0.12); }
    .zone-pillar:last-child { border-bottom: none; }
}

/* ═══ Booking-Variante A · Centered Narrow ═══ */
.ed-booking--narrow {
    max-width: 820px; margin: 0 auto; margin-top: -32px;
}

/* ═══ Booking-Variante B · Asymmetric Split ═══ */
.ed-booking--split {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 0;
    padding: 0; overflow: hidden;
    max-width: 1080px;
    margin: -32px auto 56px;
}
.ed-booking--split .ed-booking__pane-form {
    padding: 28px 32px;
}
.ed-booking--split .ed-booking__pane-side {
    background: linear-gradient(150deg, var(--editorial-paper-soft) 0%, #F0E5CC 100%);
    padding: 28px 32px;
    border-left: 1px dashed rgba(22,30,46,0.15);
    display: flex; flex-direction: column; justify-content: center;
}
.ed-booking--split .ed-booking__form {
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
}
.ed-booking--split .ed-booking__submit {
    grid-column: 1 / -1;
    padding: 14px;
}
.ed-booking__side-kicker {
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--editorial-copper);
    margin: 0 0 14px;
}
.ed-booking__side-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 12px;
}
.ed-booking__side-list li {
    display: flex; align-items: baseline; gap: 10px;
    font-family: var(--font-display); font-style: italic;
    font-size: 0.98rem;
    color: rgba(22,30,46,0.78);
}
.ed-booking__side-list li::before {
    content: '✦'; color: var(--editorial-copper); font-style: normal;
    font-size: 0.85rem; flex-shrink: 0;
}
.ed-booking__side-list strong { color: var(--editorial-ink); font-weight: 500; font-style: normal; }
@media (max-width: 820px) {
    /* Inset + center so the widget isn't edge-to-edge full width on mobile */
    .ed-booking--split {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: -24px auto 40px;
        width: calc(100% - 40px);
    }
    .ed-booking--split .ed-booking__pane-side { border-left: none; border-top: 1px dashed rgba(22,30,46,0.15); }
    .ed-booking--split .ed-booking__form { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .ed-booking--split .ed-booking__pane-form { padding: 22px 22px; }
    .ed-booking--split .ed-booking__pane-side { padding: 22px 22px; }
}

/* ═══ Booking-Variante C · Inline Pill ═══ */
.ed-booking-pill {
    max-width: 1080px;
    margin: -16px auto 56px;
    background: #fff;
    border-radius: 100px;
    padding: 14px 18px 14px 28px;
    display: flex; align-items: center; gap: 24px;
    box-shadow: 0 24px 48px -28px rgba(22,30,46,0.2);
    flex-wrap: wrap;
}
.ed-booking-pill__field {
    display: flex; align-items: baseline; gap: 8px;
    flex: 1; min-width: 140px;
}
.ed-booking-pill__field-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--editorial-stone);
    flex-shrink: 0;
}
.ed-booking-pill__field input,
.ed-booking-pill__field select {
    border: none; background: transparent; outline: none;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    color: var(--editorial-ink);
    width: 100%;
    padding: 6px 0;
    border-bottom: 1px solid rgba(22,30,46,0.12);
    -webkit-appearance: none;
}
.ed-booking-pill__field input:focus,
.ed-booking-pill__field select:focus {
    border-bottom-color: var(--editorial-copper);
}
.ed-booking-pill__divider {
    width: 1px; height: 28px;
    background: rgba(22,30,46,0.1);
    flex-shrink: 0;
}
.ed-booking-pill__submit {
    padding: 12px 22px;
    background: var(--editorial-ink);
    color: var(--editorial-paper);
    border: none;
    border-radius: 100px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.25s;
}
.ed-booking-pill__submit:hover { background: var(--editorial-copper); }
@media (max-width: 820px) {
    .ed-booking-pill {
        border-radius: 24px;
        padding: 18px;
        flex-direction: column;
        align-items: stretch;
    }
    .ed-booking-pill__divider { display: none; }
    .ed-booking-pill__submit { width: 100%; padding: 14px; }
}

/* ═══ Booking-Variante D · Polaroid Floating Card ═══ */
.ed-booking--polaroid-wrap {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    min-height: 380px;
}
.ed-booking--polaroid-bg {
    background-image: url('/images/hotel/aussenansicht.jpg'),
        linear-gradient(135deg, #2C3E6B, #4A6A8E);
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    border-radius: 24px 32px 22px 30px;
    height: 380px;
    position: relative;
}
.ed-booking--polaroid {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 320px;
    background: #fff;
    padding: 28px 26px 24px;
    border-radius: 8px;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
    transform: rotate(1.2deg);
    z-index: 5;
}
.ed-booking--polaroid::before {
    content: 'Direktbuchung';
    position: absolute;
    top: -14px; left: 20px;
    font-family: var(--font-caveat, 'Caveat', cursive);
    font-size: 1.3rem;
    color: var(--editorial-copper);
    background: var(--editorial-paper-soft);
    padding: 0 12px;
    transform: rotate(-3deg);
}
.ed-booking--polaroid .ed-booking__form {
    grid-template-columns: 1fr;
    gap: 16px;
}
.ed-booking--polaroid .ed-booking__submit { padding: 12px; }
.ed-booking--polaroid .ed-booking__note { text-align: left; font-size: 0.78rem; }
@media (max-width: 820px) {
    .ed-booking--polaroid-bg { height: auto; min-height: 200px; }
    .ed-booking--polaroid {
        position: relative; top: 0; right: 0;
        width: auto; margin: -60px 16px 16px;
        transform: rotate(0);
    }
}

/* Final picker */
.var-finalpicker {
    margin: 80px auto 0;
    padding: 40px 32px;
    background: var(--editorial-ink);
    color: var(--editorial-paper);
    border-radius: 28px 34px 26px 32px;
    text-align: center;
    max-width: 920px;
}
.var-finalpicker h3 {
    font-family: var(--font-display);
    font-size: 1.6rem; margin: 0 0 12px;
    font-weight: 500;
}
.var-finalpicker h3 em { color: var(--editorial-copper-soft); font-style: italic; }
.var-finalpicker p {
    font-family: var(--font-display); font-style: italic;
    color: rgba(244, 236, 221, 0.7);
    margin: 0 0 24px;
}
.var-finalpicker code {
    font-family: var(--font-body);
    background: rgba(244, 236, 221, 0.12);
    padding: 4px 10px;
    border-radius: 6px;
    color: var(--editorial-copper-soft);
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════
   HEAT GAUGE — site-wide scroll-tracked palette warming
   /heat-gauge.js updates --editorial-paper + --editorial-paper-soft
   on <html>, cascading to all sections that use them. Transitions
   smooth the gap between rAF updates.
   ═══════════════════════════════════════════════════ */
body,
.ed-section,
.ed-section--paper-soft,
.ed-page-hero,
.ed-hero,
.ed-quickfacts,
.legal-hero,
.legal-section {
    transition: background-color 0.15s linear, background 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
    body, .ed-section, .ed-section--paper-soft, .ed-page-hero,
    .ed-hero, .ed-quickfacts, .legal-hero, .legal-section {
        transition: none;
    }
}

/* ═══════════════════════════════════════════════════
   FLOATING CTA — context-aware sticky action button
   Injected by /floating-cta.js based on pathname
   ═══════════════════════════════════════════════════ */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px 14px 24px;
    background: var(--editorial-ink);
    color: var(--editorial-paper);
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1;
    text-decoration: none;
    border-radius: 100px;
    box-shadow: 0 16px 36px -12px rgba(22, 30, 46, 0.45),
                0 0 0 1px rgba(255, 255, 255, 0.04);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.25s ease;
    will-change: transform, opacity;
}
.floating-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.floating-cta:hover,
.floating-cta:focus-visible {
    background: var(--editorial-copper);
    color: var(--editorial-paper);
    transform: translateY(-2px);
    outline: none;
}
.floating-cta__label { white-space: nowrap; }
.floating-cta__arrow {
    font-style: normal;
    font-size: 1.05em;
    transition: transform 0.25s ease;
    color: var(--editorial-copper-soft);
}
.floating-cta:hover .floating-cta__arrow,
.floating-cta:focus-visible .floating-cta__arrow {
    transform: translateX(4px);
    color: var(--editorial-paper);
}

@media (max-width: 720px) {
    .floating-cta {
        bottom: 14px;
        right: 14px;
        left: 14px;
        justify-content: center;
        padding: 14px 18px;
        font-size: 0.96rem;
        border-radius: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .floating-cta { transition: opacity 0.15s linear; transform: none; }
    .floating-cta.is-visible { transform: none; }
}

/* ═══════════════════════════════════════════════════
   KONTAKT-CARDS — mobile horizontal-scroll with peek
   Inline styles on .kontakt-cards keep desktop grid intact;
   this media query converts to horizontal scroll on mobile.
   ═══════════════════════════════════════════════════ */
@media (max-width: 820px) {
    .kontakt-cards {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 16px !important;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 24px 0 32px;
        margin: 0 -20px;       /* break out of section padding so peek reaches viewport edge */
        scroll-padding-left: 20px;
        scrollbar-width: none;
    }
    .kontakt-cards::-webkit-scrollbar { display: none; }
    .kontakt-cards::before,
    .kontakt-cards::after {
        content: '';
        flex: 0 0 4px;          /* tiny edge spacer so first/last cards don't touch viewport edge */
    }
    .kontakt-card {
        flex: 0 0 calc(100vw - 120px);  /* viewport minus left edge + ~80px peek of next card */
        max-width: 340px;
        scroll-snap-align: start;
        margin-top: 0 !important;       /* override the desktop stagger */
        transform: none !important;     /* drop the editorial rotation on mobile so peek aligns cleanly */
        padding: 32px 26px !important;  /* tighter than desktop's 40px 36px */
    }
}
@media (max-width: 480px) {
    .kontakt-cards {
        margin: 0 -16px;
        scroll-padding-left: 16px;
    }
    .kontakt-card {
        flex-basis: calc(100vw - 100px); /* 80px peek on smaller screens */
        padding: 28px 22px !important;
    }
}

/* ═══════════════════════════════════════════════════
   EVENTS-GRID — collapse inline 2-col grid on mobile
   ═══════════════════════════════════════════════════ */
.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (max-width: 820px) {
    .events-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
}

/* ═══════════════════════════════════════════════════
   GÄSTESTIMMEN (Reviews) — server-rendered from reviews.json
   ═══════════════════════════════════════════════════ */
.ed-reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.ed-review {
    margin: 0;
    background: #fff;
    border-radius: 24px 30px 22px 28px;
    padding: 30px 30px 26px;
    box-shadow: 0 26px 56px -30px rgba(22, 30, 46, 0.22);
    border: 1px solid rgba(22, 30, 46, 0.06);
    display: flex; flex-direction: column; gap: 14px;
}
.ed-review__stars { color: var(--editorial-copper); font-size: 1.05rem; letter-spacing: 2px; }
.ed-review__text {
    margin: 0; font-family: var(--font-display); font-style: italic;
    font-size: 1.05rem; line-height: 1.55; color: rgba(22, 30, 46, 0.85);
}
.ed-review__by {
    font-family: var(--font-body); font-size: 0.84rem;
    color: rgba(22, 30, 46, 0.55); margin-top: auto;
}
.ed-review__by strong { color: var(--editorial-ink); font-weight: 600; }

/* Server-rendered event cards (events.json) */
.events-grid .ed-event-card {
    background: #fff;
    border-radius: 24px 30px 22px 28px;
    padding: 34px 32px;
    box-shadow: 0 26px 56px -30px rgba(22, 30, 46, 0.2);
    border: 1px solid rgba(22, 30, 46, 0.06);
}
.ed-event-card__meta {
    font-family: var(--font-display); font-style: italic;
    color: var(--editorial-copper); font-size: 0.95rem;
    letter-spacing: 0.04em; margin-bottom: 14px;
}
.ed-event-card__title {
    font-family: var(--font-display); font-weight: 500;
    font-size: 1.5rem; line-height: 1.1; margin: 0 0 12px;
    color: var(--editorial-ink);
}
.ed-event-card__desc {
    font-family: var(--font-body); font-size: 0.96rem;
    line-height: 1.6; color: rgba(22, 30, 46, 0.7); margin: 0;
}
@media (max-width: 640px) {
    .ed-reviews__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   ROOM LIGHTBOX — zoom hint on hover + fullscreen gallery
   ═══════════════════════════════════════════════════ */
.ed-room__zoom {
    position: absolute; bottom: 14px; right: 14px; z-index: 4;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(22, 30, 46, 0.72); color: #F4ECDD;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.25s;
    pointer-events: none;
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.ed-room__zoom svg { width: 20px; height: 20px; }
.ed-room__media:hover .ed-room__zoom { opacity: 1; }
/* hide zoom hint in edit mode (image click opens media picker there) */
.cms-editing .ed-room__zoom { display: none; }

.lb { position: fixed; inset: 0; z-index: 9600; display: none; }
.lb.is-open { display: block; }
.lb__backdrop { position: absolute; inset: 0; background: rgba(13, 21, 37, 0.93); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.lb__img {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    max-width: 92vw; max-height: 84vh; border-radius: 6px;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
}
.lb__close {
    position: absolute; top: 18px; right: 20px; z-index: 2;
    width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
    background: rgba(244, 236, 221, 0.14); color: #F4ECDD; font-size: 1.25rem;
}
.lb__nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
    width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer;
    background: rgba(244, 236, 221, 0.14); color: #F4ECDD; font-size: 2rem; line-height: 1;
    display: flex; align-items: center; justify-content: center;
}
.lb__prev { left: 20px; } .lb__next { right: 20px; }
.lb__close:hover, .lb__nav:hover { background: rgba(244, 236, 221, 0.3); }
.lb__counter {
    position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
    color: rgba(244, 236, 221, 0.8); font-family: 'Inter', sans-serif;
    font-size: 0.85rem; letter-spacing: 0.05em;
}
@media (max-width: 720px) {
    .lb__nav { width: 44px; height: 44px; font-size: 1.6rem; }
    .lb__prev { left: 8px; } .lb__next { right: 8px; }
    .lb__close { top: 10px; right: 10px; }
}

/* Event-Card Video (MP4, z. B. TikTok-Clip) */
/* Event-Card: Video-Vorschau oben, volle Breite, klickbar → Lightbox */
.ed-event-card__media {
    position: relative;
    margin: -34px -32px 22px;           /* bis an die Card-Kanten (Card-Padding 34/32) */
    border-radius: 24px 30px 0 0;        /* obere Card-Ecken nachbilden */
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 5 / 4;
    background: #0D1525;
}
.ed-event-card__poster {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
}
.ed-event-card__media:hover .ed-story__play { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
.ed-event-card__media:focus-visible { outline: 3px solid var(--editorial-copper); outline-offset: -3px; }

/* ═══════════════════════════════════════════════════
   HERO-VIDEOS — hochkant Thumbnails im Hero + Video-Lightbox
   ═══════════════════════════════════════════════════ */
.ed-hvid-section__inner { text-align: center; }
.ed-hvid-section__kicker {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-body);
    font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--editorial-copper);
    margin: 0 0 28px;
}
.ed-hvid-section__kicker::before, .ed-hvid-section__kicker::after {
    content: ''; display: block; width: 36px; height: 1px;
    background: var(--editorial-copper); opacity: 0.5;
}
.ed-hero-videos {
    display: flex; gap: 22px; align-items: flex-start;
    justify-content: center; flex-wrap: wrap;
}
.ed-hvid {
    position: relative; flex: 0 0 auto;
    width: 150px; height: 267px;           /* 9:16 */
    border: none; padding: 0; cursor: pointer;
    border-radius: 16px; overflow: hidden;
    background-size: cover; background-position: center; background-color: #161E2E;
    box-shadow: 0 18px 40px -14px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.12) inset;
    transition: transform 0.25s, box-shadow 0.25s;
}
.ed-hvid::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.55) 100%); }
.ed-hvid:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 26px 54px -16px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.2) inset; }
.ed-hvid__play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2;
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(244,236,221,0.92); color: #161E2E;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.25s, background 0.25s;
}
.ed-hvid__play svg { width: 20px; height: 20px; margin-left: 2px; }
.ed-hvid:hover .ed-hvid__play { transform: translate(-50%,-50%) scale(1.1); background: #fff; }
.ed-hvid__label {
    position: absolute; left: 10px; right: 10px; bottom: 10px; z-index: 2;
    color: #F4ECDD; font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 500;
    line-height: 1.2; text-align: left;
}
@media (max-width: 820px) {
    .ed-hero-videos { gap: 16px; }
    .ed-hvid { width: 132px; height: 234px; }
    .ed-hvid__play { width: 42px; height: 42px; }
}

/* Video-Lightbox */
.vlb { position: fixed; inset: 0; z-index: 9700; display: none; }
.vlb.is-open { display: block; }
.vlb__backdrop { position: absolute; inset: 0; background: rgba(13,21,37,0.94); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.vlb__stage { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: min(92vw, 480px); }
.vlb__video { width: 100%; max-height: 88vh; border-radius: 10px; background: #000; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7); display: block; }
.vlb__close { position: absolute; top: 16px; right: 18px; z-index: 2; width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer; background: rgba(244,236,221,0.14); color: #F4ECDD; font-size: 1.3rem; }
.vlb__close:hover { background: rgba(244,236,221,0.3); }


/* Hero-Logo-Badge — Marken-Wiedererkennung oben rechts */
.ed-hero,.ed-page-hero{position:relative}
.hero-badge{position:absolute;z-index:6;top:24px;right:24px;display:flex;flex-direction:column;align-items:flex-end;gap:12px;pointer-events:none}
.hero-badge__seal{background:#ffffff;box-shadow:0 10px 30px -10px rgba(22,30,46,.5);display:flex;align-items:center;justify-content:center}
.hero-badge__seal--round{width:166px;height:166px;border-radius:50%;padding:4px}
.hero-badge__seal--round img{width:100%;height:100%;object-fit:contain;display:block}
.hero-badge__seal--rect{border-radius:18px;padding:6px 14px}
.hero-badge__seal--rect img{height:90px;width:auto;display:block}
@media (max-width:820px){.hero-badge{top:16px;right:13px;gap:8px}.hero-badge__seal--round{width:90px;height:90px;padding:3px}.hero-badge__seal--rect{border-radius:12px;padding:5px 10px}.hero-badge__seal--rect img{height:52px}}

.hero-badge__seal.hero-badge__seal--beach{padding:14px}
@media (max-width:820px){.hero-badge__seal.hero-badge__seal--beach{padding:9px}}


/* Trinity-Karten: Marken-Logo als rundes Overlay oben rechts */
.ed-trinity__img{position:relative}
.ed-trinity__logo{position:absolute;top:14px;right:14px;z-index:3;width:64px;height:64px;border-radius:50%;background:#fff;box-shadow:0 6px 18px -6px rgba(22,30,46,.5);display:flex;align-items:center;justify-content:center;padding:6px;pointer-events:none}
.ed-trinity__logo img{width:100%;height:100%;object-fit:contain;display:block}
.ed-trinity__logo.ed-trinity__logo--beach{padding:9px}
@media (max-width:820px){.ed-trinity__logo{width:52px;height:52px;top:10px;right:10px;padding:5px}.ed-trinity__logo.ed-trinity__logo--beach{padding:7px}}


/* Header-Wortmarke (Variante C): zweizeilig, Sub serif-kursiv */
.nav__brand-text{display:flex;flex-direction:column;text-align:left;line-height:1.04;gap:5px}
.nav__brand-sub{font-family:var(--font-display,'Fraunces',Georgia,serif);font-style:italic;font-weight:500;font-size:.74rem;letter-spacing:.01em;color:var(--navy,#2C3E6B);opacity:.85;white-space:nowrap}
.nav__brand-main{font-family:var(--font-body,'Inter',sans-serif);font-weight:700;letter-spacing:.16em;font-size:1.02rem;color:var(--sunset-hot,#E8762B)}
@media (max-width:820px){.nav__brand-text{gap:3px}.nav__brand-sub{font-size:.5rem;letter-spacing:0}.nav__brand-main{font-size:.86rem;letter-spacing:.12em}}
