:root {
    --nordsee: #16324a;
    --salz: #f7f7f2;
    --sand: #dfcfb5;
    --strandgras: #7f9b6b;
    --treibholz: #8d8b86;
    --petrol: #2f6172;
    --sonne: #ffd36b;
    --lime: #b7d93a;
    --azuro: #78c8ee;
    --coral: #ff8b5a;
    --pink: #ef78b5;
    --text: #17212a;
    --muted: #56646f;
    --border: #dde2df;
    --surface: #eef2f1;
    --soft: #e6ecea;
    --white: #ffffff;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-float: 0 18px 60px rgba(24, 50, 70, 0.1);
    --radius-xl: 24px;
    --radius-2xl: 28px;
    --radius-3xl: 36px;
    --transition: 0.3s ease;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: var(--salz);
    color: var(--text);
    line-height: 1.6;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    font: inherit;
    border: 0;
    background: none;
    cursor: pointer;
}
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    transition: var(--transition);
}
.site-header.is-scrolled {
    background: rgba(24, 50, 70, 0.72);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-soft);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
}
.brand-pill {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    backdrop-filter: none;
    box-shadow: none;
    text-decoration: none;
}
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 14px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}
.desktop-nav a:hover {
    color: #fff;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.mobile-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}
.mobile-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}
.mobile-nav {
    display: none;
    padding: 0 20px 20px;
}
.mobile-nav.is-open {
    display: grid;
    gap: 10px;
}
.mobile-nav a {
    display: block;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(24, 50, 70, 0.95);
    color: #fff;
}
.hero {
    position: relative;
    min-height: 96vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--nordsee);
}
.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}
.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    background: linear-gradient(to bottom, rgba(10, 20, 28, 0.24), rgba(10, 20, 28, 0.76)),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1), transparent 24%);
}
.hero-content {
    position: relative;
    z-index: 2;
    min-height: 96vh;
    display: grid;
    align-items: end;
    padding-top: 120px;
    padding-bottom: 70px;
}
.hero-badge {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(183, 217, 58, 0.38);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 0 0 1px rgba(120, 200, 238, 0.06) inset;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}
.hero h1,
.section-copy h2,
.section-head h2,
.trip-card h3,
.room-body h3,
.offer-card h3,
.feature-card h3,
.faq-item h3,
.cta-copy h2,
.dark-info-card h3,
.info-card h3,
.page-hero h1,
.contact-card h3,
.simple-card h3 {
    font-family: "Cormorant Garamond", serif;
}
.hero h1,
.page-hero h1 {
    margin: 0;
    max-width: 820px;
    font-size: clamp(52px, 9vw, 92px);
    line-height: 0.95;
    color: var(--salz);
}
.hero h1 span,
.page-hero h1 span {
    display: block;
    margin-top: 14px;
    font-family: "Inter", sans-serif;
    font-size: clamp(20px, 2.2vw, 32px);
    line-height: 1.4;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.86);
}
.hero p,
.page-hero p {
    margin: 24px 0 0;
    max-width: 700px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}
.page-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--nordsee);
}
.page-hero .hero-content {
    min-height: 70vh;
    padding-bottom: 58px;
}
.hero-actions,
.inline-actions,
.section-action-center {
    margin-top: 32px;
}
.hero-actions,
.inline-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary {
    background: var(--lime);
    color: var(--nordsee);
    box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
    background: #c8eb47;
}
.btn-secondary {
    border: 1px solid rgba(22, 50, 74, 0.16);
    background: var(--white);
    color: var(--nordsee);
}
.btn-secondary:hover {
    background: rgba(120, 200, 238, 0.14);
}
.btn-light {
    background: var(--salz);
    color: var(--nordsee);
}
.btn-light:hover {
    background: #fff;
}
.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}
.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.16);
}
.section {
    padding: 96px 0;
}
.section-tight {
    padding-top: 70px;
    padding-bottom: 70px;
}
.section-white {
    background: var(--white);
}
.section-surface {
    background: var(--surface);
}
.section-soft {
    background: var(--soft);
}
.section-dark {
    background: var(--nordsee);
    color: var(--salz);
}
.section-faq {
    padding-top: 0;
    padding-bottom: 96px;
}
.intro-grid,
.brand-grid {
    display: grid;
    gap: 40px;
    align-items: end;
    grid-template-columns: 1.2fr 0.8fr;
}
.split-grid {
    display: grid;
    gap: 40px;
    align-items: center;
    grid-template-columns: 0.95fr 1.05fr;
}
.split-grid.reverse {
    grid-template-columns: 1.05fr 0.95fr;
}
.section-copy h2,
.section-head h2,
.cta-copy h2 {
    margin: 16px 0 0;
    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 1.08;
    color: var(--nordsee);
}
.section-copy.light h2 {
    color: var(--salz);
}
.section-copy p,
.section-head p,
.cta-copy p {
    margin: 20px 0 0;
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
}
.section-copy.light p {
    color: rgba(255, 255, 255, 0.82);
}
.eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--petrol);
}
.eyebrow-light {
    color: var(--sand);
}
.section-head {
    max-width: 760px;
    margin-bottom: 40px;
}
.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.info-card,
.dark-info-card,
.feature-card,
.trip-card,
.offer-card,
.faq-item,
.cta-box,
.room-card,
.contact-card,
.simple-card,
.form-box {
    box-shadow: var(--shadow-soft);
}
.info-card {
    background: var(--surface);
    padding: 28px;
    border-radius: var(--radius-2xl);
}
.small-title {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--petrol);
}
.small-title-light {
    color: var(--sand);
}
.info-card ul,
.dark-info-card ul {
    margin: 20px 0 0;
    padding-left: 18px;
}
.info-card li,
.dark-info-card li {
    margin-bottom: 12px;
    line-height: 1.7;
}
.experience-grid,
.trip-grid,
.offer-grid,
.room-grid,
.simple-grid,
.contact-grid {
    display: grid;
    gap: 24px;
}
.experience-grid {
    grid-template-columns: repeat(4, 1fr);
}
.feature-card {
    display: block;
    padding: 28px;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border);
    background: var(--salz);
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-4px);
}
.feature-card h3 {
    margin: 0;
    font-size: 36px;
    color: var(--nordsee);
}
.feature-card p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.8;
}
.feature-card span {
    display: inline-block;
    margin-top: 18px;
    color: var(--petrol);
    font-weight: 600;
}
.room-grid {
    grid-template-columns: repeat(3, 1fr);
}
.room-card {
    overflow: hidden;
    border-radius: var(--radius-2xl);
    background: var(--white);
}
.room-image {
    height: 320px;
}
.room-image img,
.media-card img,
.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.room-body {
    padding: 24px;
}
.room-body h3,
.offer-card h3,
.trip-card h3,
.contact-card h3,
.simple-card h3 {
    margin: 0;
    font-size: 38px;
    color: var(--nordsee);
}
.room-body p,
.offer-card p,
.trip-card p,
.faq-item p,
.contact-card p,
.simple-card p {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.8;
}
.room-body ul {
    margin: 18px 0 0;
    padding-left: 18px;
}
.room-body li {
    margin-bottom: 8px;
}
.room-body .btn,
.offer-card .btn {
    margin-top: 24px;
}
.media-card {
    overflow: hidden;
    border-radius: 32px;
    min-height: 460px;
}
.media-card img {
    min-height: 460px;
}
.trip-grid,
.offer-grid,
.simple-grid {
    grid-template-columns: repeat(3, 1fr);
}
.trip-card,
.offer-card,
.faq-item,
.contact-card,
.simple-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-2xl);
}
.trip-card {
    background: var(--salz);
}
.offer-card {
    border: 1px solid var(--border);
}
.offer-label {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(183, 217, 58, 0.18);
    color: var(--nordsee);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.dark-info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 32px;
    backdrop-filter: blur(10px);
}
.dark-info-card ul {
    color: rgba(255, 255, 255, 0.86);
}
.cta-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    background: var(--surface);
    border-radius: var(--radius-3xl);
    padding: 42px;
}
.faq-list {
    display: grid;
    gap: 16px;
}
.faq-item h3 {
    font-size: 22px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: var(--nordsee);
}
.site-footer {
    background: var(--nordsee);
    color: rgba(255, 255, 255, 0.82);
    padding: 60px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.7fr 0.7fr;
    gap: 30px;
}
.footer-brand {
    color: var(--salz);
    font-weight: 700;
    letter-spacing: 0.14em;
    margin-bottom: 12px;
}
.site-footer h4 {
    color: var(--salz);
    margin: 0 0 14px;
}
.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.site-footer li {
    margin-bottom: 10px;
}
.contact-grid {
    grid-template-columns: repeat(3, 1fr);
}
.contact-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 28px;
}
.contact-card h3 {
    font-size: 34px;
}
.form-box {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 32px;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-field.full {
    grid-column: 1 / -1;
}
.form-field label {
    font-size: 14px;
    font-weight: 600;
    color: var(--nordsee);
}
.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--salz);
    border-radius: 16px;
    padding: 14px 16px;
    font: inherit;
    color: var(--text);
}
.form-field textarea {
    min-height: 140px;
    resize: vertical;
}
.page-banner {
    overflow: hidden;
    border-radius: 32px;
    min-height: 420px;
    box-shadow: var(--shadow-soft);
}
.page-banner img {
    min-height: 420px;
}
.list-clean {
    margin: 18px 0 0;
    padding-left: 18px;
}
.list-clean li {
    margin-bottom: 8px;
}
@media (max-width: 1200px) {
    .experience-grid,
    .room-grid,
    .trip-grid,
    .offer-grid,
    .simple-grid,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .intro-grid,
    .brand-grid,
    .split-grid,
    .split-grid.reverse,
    .cta-box,
    .footer-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 980px) {
    .desktop-nav {
        display: none;
    }
    .mobile-toggle {
        display: inline-flex;
    }
    .section {
        padding: 78px 0;
    }
    .hero-content {
        padding-bottom: 56px;
    }
    .room-image,
    .media-card,
    .media-card img,
    .page-banner,
    .page-banner img {
        min-height: 320px;
        height: 320px;
    }
}
@media (max-width: 768px) {
    .experience-grid,
    .room-grid,
    .trip-grid,
    .offer-grid,
    .simple-grid,
    .contact-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }
    .section-copy p,
    .section-head p,
    .cta-copy p,
    .hero p,
    .page-hero p {
        font-size: 16px;
    }
    .btn {
        width: 100%;
    }
    .hero-actions,
    .inline-actions,
    .cta-actions {
        flex-direction: column;
    }
    .header-inner {
        gap: 12px;
    }
    .brand-pill {
        font-size: 12px;
        padding: 10px 14px;
    }
    .cta-box,
    .form-box {
        padding: 28px;
    }
}

.top-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    margin-bottom: 18px;
}
.floating-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.floating-nav a {
    display: inline-flex;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    backdrop-filter: blur(8px);
    font-size: 14px;
}
.floating-nav a:nth-child(1) {
    border-color: rgba(183, 217, 58, 0.4);
}
.floating-nav a:nth-child(2) {
    border-color: rgba(120, 200, 238, 0.4);
}
.floating-nav a:nth-child(3) {
    border-color: rgba(255, 139, 90, 0.4);
}
.floating-nav a:nth-child(4) {
    border-color: rgba(239, 120, 181, 0.35);
}
.floating-nav a:hover {
    background: rgba(255, 255, 255, 0.2);
}
.benefit-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: -44px;
    position: relative;
    z-index: 4;
}
.benefit-item {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 24px;
    box-shadow: var(--shadow-float);
    border-top: 4px solid var(--lime);
}
.benefit-item:nth-child(2) {
    border-top-color: var(--azuro);
}
.benefit-item:nth-child(3) {
    border-top-color: var(--coral);
}
.benefit-item:nth-child(4) {
    border-top-color: var(--pink);
}
.benefit-item strong {
    display: block;
    color: var(--nordsee);
    font-size: 16px;
    margin-bottom: 8px;
}
.benefit-item span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}
.offer-premium {
    position: relative;
    overflow: hidden;
}
.offer-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(24, 50, 70, 0.98), rgba(53, 93, 99, 0.92));
    z-index: 0;
}
.offer-premium .container {
    position: relative;
    z-index: 1;
}
.offer-premium .section-head h2,
.offer-premium .section-head p,
.offer-premium .eyebrow {
    color: var(--salz);
}
.offer-premium .section-head p {
    color: rgba(255, 255, 255, 0.82);
}
.offer-premium .eyebrow {
    color: var(--sand);
}
.offer-card-premium {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    color: #fff;
    padding: 28px;
    border-radius: 28px;
    box-shadow: var(--shadow-float);
}
.offer-card-premium h3 {
    margin: 16px 0 0;
    font-size: 38px;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
}
.offer-card-premium p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}
.offer-meta {
    margin-top: 18px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
}
.offer-price {
    margin-top: 18px;
    font-size: 18px;
    color: #fff;
}
.offer-price del {
    opacity: 0.6;
    margin-right: 8px;
}
.quote-band {
    background: linear-gradient(135deg, #d8c7ae, #efe8de);
    border-radius: 36px;
    padding: 42px;
    box-shadow: var(--shadow-soft);
}
.quote-band blockquote {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 44px;
    line-height: 1.15;
    color: var(--nordsee);
}
.quote-band p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 16px;
}
.mosaic-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    grid-template-rows: 240px 240px;
    gap: 20px;
}
.mosaic-grid .mosaic-large {
    grid-row: 1 / span 2;
}
.mosaic-item {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
    position: relative;
}
.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mosaic-caption {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--nordsee);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-bottom .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
}
.footer-bottom a:hover {
    color: var(--lime);
}
@media (max-width: 1200px) {
    .benefit-strip,
    .mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mosaic-grid {
        grid-template-rows: 220px 220px;
    }
    .mosaic-grid .mosaic-large {
        grid-row: auto;
    }
}
@media (max-width: 768px) {
    .benefit-strip,
    .mosaic-grid {
        grid-template-columns: 1fr;
    }
    .quote-band {
        padding: 28px;
    }
    .quote-band blockquote {
        font-size: 34px;
    }
    .footer-bottom {
        flex-direction: column;
    }
    .top-meta,
    .floating-nav {
        display: none;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}
.kicker-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}
.kicker-list li {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(216, 199, 174, 0.26);
    color: var(--nordsee);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.page-content {
    display: grid;
    gap: 26px;
}
.legal-box {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 32px;
    box-shadow: var(--shadow-soft);
}
.legal-box h2 {
    margin: 0 0 16px;
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    color: var(--nordsee);
}
.legal-box h3 {
    margin: 26px 0 10px;
    font-size: 18px;
    color: var(--nordsee);
}
.legal-box p,
.legal-box li {
    color: var(--muted);
    line-height: 1.8;
}
.legal-box ul {
    padding-left: 18px;
}
.footer-note {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.7;
}

.section-head h2,
.section-copy h2,
.cta-copy h2 {
    position: relative;
}
.section-head h2::after,
.section-copy h2::after,
.cta-copy h2::after {
    content: "";
    display: block;
    width: 84px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--lime), var(--azuro));
    margin-top: 16px;
}
.top-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.top-meta span:nth-child(1) {
    border-color: rgba(183, 217, 58, 0.35);
}
.top-meta span:nth-child(2) {
    border-color: rgba(120, 200, 238, 0.35);
}
.top-meta span:nth-child(3) {
    border-color: rgba(255, 139, 90, 0.3);
}
.desktop-nav a {
    position: relative;
}
.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--lime), var(--azuro));
    transition: width 0.25s ease;
}
.desktop-nav a:hover::after {
    width: 100%;
}
.desktop-nav {
    position: relative;
}
.desktop-nav .mega-item {
    position: relative;
    display: flex;
    align-items: center;
}
.desktop-nav .mega-item > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.desktop-nav .mega-item > a::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    transition: all 0.25s ease;
}
.desktop-nav .mega-item:hover > a::before {
    background: var(--lime);
    box-shadow: 0 0 0 4px rgba(183, 217, 58, 0.15);
}
.mega-panel {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    min-width: 560px;
    padding: 22px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(12, 25, 38, 0.16);
    border: 1px solid rgba(22, 50, 74, 0.08);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.26s ease;
}
.mega-item:hover .mega-panel,
.mega-item:focus-within .mega-panel {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}
.mega-link {
    display: block;
    padding: 16px 18px;
    border-radius: 20px;
    background: var(--salz);
    transition: all 0.25s ease;
}
.mega-link strong {
    display: block;
    color: var(--nordsee);
    font-size: 16px;
    margin-bottom: 6px;
}
.mega-link span {
    display: block;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}
.mega-link:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}
.hero-media img {
    transform: scale(1.04);
    transition: transform 1.2s ease;
}
.hero.is-loaded .hero-media img,
.page-hero.is-loaded .hero-media img {
    transform: scale(1);
}
.reveal {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
    transition:
        opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}
.reveal[data-delay="1"] {
    transition-delay: 0.08s;
}
.reveal[data-delay="2"] {
    transition-delay: 0.16s;
}
.reveal[data-delay="3"] {
    transition-delay: 0.24s;
}
.reveal[data-delay="4"] {
    transition-delay: 0.32s;
}
.section-head,
.section-copy {
    position: relative;
}
.section-head p,
.section-copy p {
    max-width: 760px;
}
.media-card,
.room-card,
.offer-card,
.offer-card-premium,
.mosaic-item {
    overflow: hidden;
}
.media-card img,
.room-image img,
.mosaic-item img {
    transition:
        transform 1s ease,
        filter 0.6s ease;
}
.media-card:hover img,
.room-card:hover .room-image img,
.mosaic-item:hover img {
    transform: scale(1.04);
    filter: saturate(1.06);
}
.hero::after,
.page-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 180px;
    background: linear-gradient(to top, rgba(247, 247, 242, 0.26), transparent);
    z-index: 1;
    pointer-events: none;
}
.quote-band {
    position: relative;
    overflow: hidden;
}
.quote-band::before {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(120, 200, 238, 0.24), transparent 65%);
}
.footer-premium {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    padding: 26px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    margin-bottom: 28px;
}
.footer-premium h3 {
    margin: 0;
    color: var(--salz);
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    line-height: 1.05;
}
.footer-premium p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.76);
    max-width: 760px;
}
.footer-premium .btn-secondary {
    background: rgba(255, 255, 255, 0.92);
}
.footer-grid h4 {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
}
.footer-brand {
    font-size: 15px;
}
@media (max-width: 1100px) {
    .mega-panel {
        display: none;
    }
    .desktop-nav .mega-item > a::before {
        display: none;
    }
}
@media (max-width: 768px) {
    .footer-premium {
        grid-template-columns: 1fr;
    }
    .footer-premium h3 {
        font-size: 30px;
    }
}

.footer-logo {
    display: block;
    max-height: 60px;
    width: auto;
}
.brand-pill {
    display: inline-flex;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
}
.site-logo {
    display: block;
    max-height: 52px;
    width: auto;
}
@media (max-width: 768px) {
    .brand-pill {
        padding: 0 0 0 8px;
        margin-left: 4px;
    }

    .site-logo {
        max-height: 56px;
    }
}
/* =========================================================
   Fix: AGB Text bleibt sichtbar
   Ursache: reveal-Klasse blendet Inhalt nachträglich aus
   ========================================================= */

.section-white,
.section-white.reveal,
.section-white .reveal,
.page-content,
.page-content.reveal,
.page-content .reveal,
.legal-box,
.legal-box.reveal,
.legal-box .reveal,
.section-surface,
.section-surface.reveal,
.section-surface .reveal {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}