/* ═══════════════════════════════════════════════════════════
   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.4rem, 2.5vw, 1.9rem); }
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);
}

/* 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 2px 8px rgba(70, 25, 10, 0.55);
}
.page-hero--image .page-hero__badge {
    box-shadow: 0 4px 18px rgba(15, 25, 50, 0.35);
}
.page-hero--image .page-hero__sub {
    text-shadow: 0 2px 10px rgba(30, 45, 79, 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.6); color: var(--navy);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(44, 62, 107, 0.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, 1fr);
    gap: 40px; position: relative; z-index: 1;
}
.feature { text-align: center; }
.feature__icon {
    width: 72px; height: 72px;
    border-radius: 50% 45% 55% 50%;
    background: linear-gradient(135deg, var(--sand-peach), var(--sunset));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 30px; color: var(--white);
    box-shadow: 0 8px 24px -6px rgba(248, 161, 92, 0.4);
    animation: bob 6s ease-in-out infinite;
}
.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; }
@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); }
.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;
}

/* Doppelkachel — Inklusivleistungen */
.room--wide { grid-column: span 2; }
.room--includes {
    background: linear-gradient(140deg, var(--sand-peach) 0%, #FFD9B8 100%);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}
.room--includes::before {
    content: '';
    position: absolute;
    top: -60px; left: -60px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(255,255,255,0.55), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.room--includes__left {
    padding: 40px 28px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.room--includes__left .hand {
    color: var(--sunset-hot);
    margin-bottom: 6px;
}
.room--includes__left h3 {
    font-size: clamp(1.3rem, 1.9vw, 1.6rem);
    margin-bottom: 12px;
    line-height: 1.2;
}
.room--includes__left p {
    font-size: 0.92rem;
    max-width: 280px;
}

.includes-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px 32px 32px 12px;
    position: relative;
    z-index: 1;
    flex: 1;
    min-height: 100%;
}
.includes-list li {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(44, 62, 107, 0.18);
    flex: 1;
}
.includes-list li:last-child { border-bottom: none; }

.includes-list li .includes-list__icon {
    width: 40px; height: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--navy);
    border-radius: 12px 16px 10px 14px;
    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: 22px; height: 22px;
    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: 1rem;
    line-height: 1.15;
}
.includes-list li span {
    display: block;
    font-size: 0.82rem;
    color: var(--ink-soft);
    margin-top: 2px;
    line-height: 1.35;
}

@media (max-width: 880px) {
    .room--wide { grid-column: span 1; }
    .room--includes { grid-template-columns: 1fr; }
    .room--includes__left { padding: 32px 28px 8px; }
    .includes-list { padding: 16px 28px 28px; }
}

/* ─── 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;
}

/* ─── 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: 8px; }
.footer__col a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.3s;
}
.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; }
}
