/* ============================================
   SAILING.ONE – Premium Design System
   ============================================ */

/* --- Tokens --- */
:root {
    --bg-deep: #0a0e14;
    --bg-dark: #0f1419;
    --bg-card: #151b23;
    --bg-surface: #1a2230;
    --bg-light: #0d1520;

    --gold: #c9a84c;
    --gold-light: #e0c876;
    --gold-dark: #9e7d2a;
    --gold-glow: rgba(201, 168, 76, 0.15);

    --blue: #1e3a5f;
    --blue-light: #2a4f7f;
    --blue-glow: rgba(30, 58, 95, 0.4);

    --text: #e8e4dd;
    --text-muted: #8a9bb0;
    --text-dim: #5a6a7a;

    --red: #c0392b;
    --green: #27ae60;
    --orange: #e67e22;

    --font-serif: 'DM Serif Display', Georgia, serif;
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 10rem;

    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-deep);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--gold-light);
}

img {
    max-width: 100%;
    display: block;
}

/* --- Utility --- */
.gold {
    color: var(--gold);
}

.center {
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container--narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-gold {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.3);
    }

    50% {
        box-shadow: 0 0 20px 5px rgba(201, 168, 76, 0.15);
    }
}

@keyframes scroll-line {
    0% {
        transform: scaleY(0);
        opacity: 0;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }

    100% {
        transform: scaleY(0);
        opacity: 0;
    }
}

/* --- Custom Sailboat Cursor --- */
body {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 32 32'%3E%3Ctext y='24' font-size='22'%3E⛵%3C/text%3E%3C/svg%3E") 4 4, auto;
}

a,
button,
[onclick],
.nav-link,
.btn,
.quiz-option,
.cal-day.has-trip,
input,
select,
textarea {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 32 32'%3E%3Ctext y='24' font-size='22'%3E🧭%3C/text%3E%3C/svg%3E") 14 14, pointer;
}

/* --- Grain / Noise Texture Overlay --- */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* --- Staggered Hero Entrance --- */
@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(24px);
        filter: blur(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero-content .hero-pre {
    animation: heroReveal 0.8s ease both;
    animation-delay: 0.2s;
}

.hero-content .hero-title {
    animation: heroReveal 0.9s ease both;
    animation-delay: 0.4s;
}

.hero-content .hero-sub {
    animation: heroReveal 0.8s ease both;
    animation-delay: 0.6s;
}

.hero-content .btn {
    animation: heroReveal 0.7s ease both;
    animation-delay: 0.8s;
}

.hero-content .hero-countdown-title {
    animation: heroReveal 0.7s ease both;
    animation-delay: 0.9s;
}

.hero-content .countdown-card {
    animation: heroReveal 0.7s ease both;
    animation-delay: 1.0s;
}

.hero-scroll {
    animation: heroReveal 0.6s ease both;
    animation-delay: 1.2s;
}

/* --- Wave Section Divider --- */
.wave-divider {
    position: relative;
    width: 100%;
    height: 60px;
    overflow: hidden;
    margin-top: -1px;
}

.wave-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.wave-divider--dark {
    color: var(--bg-dark);
}

.wave-divider--deep {
    color: var(--bg-deep);
}

/* --- Card Tilt Micro-interaction --- */
.image-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 800px;
}

.image-card:hover {
    transform: rotateY(-3deg) rotateX(2deg) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(201, 168, 76, 0.15);
}

/* --- Yacht Spec Badge Counter Glow --- */
.yacht-spec-badge-value {
    transition: all 0.3s ease;
}

.yacht-spec-badge:hover .yacht-spec-badge-value {
    text-shadow: 0 0 12px rgba(201, 168, 76, 0.4);
    transform: scale(1.1);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: padding 0.4s ease, border-color 0.4s ease;
    background: transparent;
    --nav-opacity: 0;
}

.nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(201, 168, 76, 0.3) 30%,
            rgba(201, 168, 76, 0.5) 50%,
            rgba(201, 168, 76, 0.3) 70%,
            transparent 100%);
    opacity: var(--nav-opacity, 0);
    transition: opacity 0.3s ease;
}

.nav.scrolled {
    background: rgba(10, 14, 20, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.6rem 0;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 2px;
}

.nav-logo:hover {
    color: var(--text);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--text);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link--cta {
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius);
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background: var(--gold);
    color: var(--bg-deep);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text);
    transition: all var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(10, 14, 20, 0.55) 0%, rgba(15, 20, 30, 0.85) 100%),
        url('Skipper_Schmid04.jpeg') center/cover no-repeat;
    background-size: cover;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(30, 58, 95, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(10, 14, 20, 0.3) 60%,
            var(--bg-deep) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: var(--space-xl) var(--space-md);
}

.hero-pre {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: var(--space-md);
    letter-spacing: -0.5px;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: var(--gold);
    transform-origin: top;
    animation: scroll-line 2s ease-in-out infinite;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn--primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-deep);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--bg-deep);
    box-shadow: 0 6px 30px rgba(201, 168, 76, 0.35);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn--outline:hover {
    background: var(--gold);
    color: var(--bg-deep);
}

.btn--full {
    width: 100%;
}

.btn--lg {
    padding: 1.2rem 3rem;
    font-size: 1rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--space-2xl) 0;
    position: relative;
}

.section--dark {
    background: var(--bg-dark);
}

.section--pillars {
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 50%, var(--bg-deep) 100%);
}

.section--cta {
    background:
        radial-gradient(ellipse at center, var(--blue-glow) 0%, transparent 70%),
        var(--bg-deep);
    padding: var(--space-2xl) 0;
    text-align: center;
}

.section-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.section-body {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: var(--space-sm);
}

/* --- Split Layout --- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.split-visual {
    display: flex;
    justify-content: center;
}

.image-card {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-surface), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: var(--space-sm);
    color: var(--text-dim);
    font-size: 0.85rem;
}

.image-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.3;
}

.image-placeholder::after {
    content: attr(data-label);
    font-size: 0.8rem;
    opacity: 0.4;
    letter-spacing: 1px;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   YACHT SPECS
   ============================================ */
/* Horizontal spec badge strip */
.yacht-spec-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: var(--space-lg);
}

.yacht-spec-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(201, 168, 76, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 12px;
    padding: 0.6rem 1rem;
    min-width: 80px;
    transition: all var(--transition);
}

.yacht-spec-badge:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-2px);
}

.yacht-spec-badge--highlight {
    border-color: rgba(201, 168, 76, 0.35);
    background: rgba(201, 168, 76, 0.08);
}

.yacht-spec-badge-value {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1.2;
}

.yacht-spec-badge-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 0.15rem;
}

/* Yacht gallery row */
.yacht-gallery-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.8rem;
    margin-top: var(--space-lg);
}

.yacht-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(201, 168, 76, 0.1);
    cursor: pointer;
    transition: all 0.4s ease;
}

.yacht-gallery-item:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.yacht-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.yacht-gallery-item:hover img {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .yacht-gallery-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .yacht-spec-strip {
        gap: 0.4rem;
    }

    .yacht-spec-badge {
        padding: 0.5rem 0.7rem;
        min-width: 65px;
    }

    .yacht-spec-badge-value {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .yacht-gallery-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   NEWS / NEUIGKEITEN
   ============================================ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-bottom: var(--space-md);
}

.news-card {
    background: var(--bg-surface);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-left: 3px solid rgba(201, 168, 76, 0.25);
    border-radius: 14px;
    padding: 1.4rem 1.2rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.news-card:hover {
    border-left-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.news-card:hover::before {
    opacity: 1;
}

.news-card-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.news-card-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.news-card-badge {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
}

.news-card-title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.news-card-text {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.5;
    margin-bottom: 0.6rem;
}

.news-card-date {
    font-size: 0.7rem;
    color: rgba(201, 168, 76, 0.5);
    font-weight: 500;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    margin-top: 0.5rem;
    transition: gap var(--transition);
}

.news-card-link:hover {
    gap: 0.5rem;
}

/* Social Bar */
.social-bar {
    text-align: center;
    padding: 1.5rem 0 0;
}

.social-bar-text {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 0.8rem;
}

.social-bar-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-light);
}

.social-link svg {
    flex-shrink: 0;
}

.social-link--ig {
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.1), rgba(253, 29, 29, 0.1), rgba(252, 176, 69, 0.08));
    border-color: rgba(225, 48, 108, 0.2);
}

.social-link--ig:hover {
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.2), rgba(253, 29, 29, 0.2), rgba(252, 176, 69, 0.15));
    border-color: rgba(225, 48, 108, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.15);
}

.social-link--fb {
    background: rgba(24, 119, 242, 0.08);
    border-color: rgba(24, 119, 242, 0.15);
}

.social-link--fb:hover {
    background: rgba(24, 119, 242, 0.15);
    border-color: rgba(24, 119, 242, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.15);
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PILLAR GRID
   ============================================ */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.pillar {
    background: var(--bg-card);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    text-align: center;
    transition: all var(--transition);
}

.pillar:hover {
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pillar-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.pillar h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
    color: var(--gold);
}

.pillar p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--bg-surface);
    border: 1px solid rgba(201, 168, 76, 0.06);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    transition: all var(--transition);
}

.feature:hover {
    border-color: rgba(201, 168, 76, 0.15);
    background: rgba(201, 168, 76, 0.04);
}

.feature-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.feature span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ============================================
   STRENGTHS GRID (was: Comparison Table)
   ============================================ */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: var(--space-lg);
}

.strength-card {
    background: var(--bg-card);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: var(--radius-lg);
    padding: 1.8rem 1.4rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.strength-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.strength-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.strength-card:hover::before {
    opacity: 1;
}

.strength-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.12);
}

.strength-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.strength-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   BOOKING CALENDAR
   ============================================ */
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.calendar {
    background: var(--bg-card);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-md);
}

.calendar-month {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
}

.calendar-nav {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 1.4rem;
    cursor: pointer;
    transition: all var(--transition);
}

.calendar-nav:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 4px;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    padding: 0.5rem 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border-radius: var(--radius);
    color: var(--text-dim);
    cursor: default;
    transition: all var(--transition);
    position: relative;
}

.cal-day.empty {
    visibility: hidden;
}

.cal-day.has-trip {
    cursor: pointer;
    font-weight: 600;
}

.cal-day.trip-start {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
    border-radius: var(--radius) 0 0 var(--radius);
}

.cal-day.trip-middle {
    background: rgba(201, 168, 76, 0.08);
    color: var(--gold-light);
    border-radius: 0;
}

.cal-day.trip-end {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.cal-day.trip-single {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
}

.cal-day.trip-few {
    background: rgba(230, 126, 34, 0.15);
    color: var(--orange);
}

.cal-day.trip-full {
    background: rgba(192, 57, 43, 0.1);
    color: var(--red);
    opacity: 0.5;
}

.cal-day.has-trip:hover {
    background: rgba(201, 168, 76, 0.25);
    color: var(--gold-light);
}

.calendar-legend {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-dim);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.legend-dot--available {
    background: var(--gold);
}

.legend-dot--few {
    background: var(--orange);
}

.legend-dot--full {
    background: var(--red);
    opacity: 0.5;
}

/* --- Trip Cards --- */
.trip-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.trip-list-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-dim);
    font-size: 0.95rem;
    text-align: center;
    padding: var(--space-lg);
}

.trip-card {
    background: var(--bg-card);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition);
    cursor: pointer;
}

.trip-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.trip-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-sm);
}

.trip-card-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
}

.trip-card-badge {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    flex-shrink: 0;
}

.badge--available {
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.badge--few {
    background: rgba(230, 126, 34, 0.12);
    color: var(--orange);
    border: 1px solid rgba(230, 126, 34, 0.2);
}

.badge--full {
    background: rgba(192, 57, 43, 0.1);
    color: var(--red);
    border: 1px solid rgba(192, 57, 43, 0.15);
}

.trip-card-date {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

.trip-card-details {
    display: flex;
    gap: var(--space-md);
    font-size: 0.82rem;
    color: var(--text-dim);
    margin-bottom: var(--space-sm);
}

.trip-card-detail {
    display: flex;
    align-items: center;
    gap: 4px;
}

.trip-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.trip-card-price {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
}

.trip-card-price span {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-dim);
    font-weight: 400;
}

.trip-card-btn {
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    background: var(--bg-card);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius-xl);
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: var(--space-md);
    transform: translateY(20px) scale(0.97);
    transition: transform var(--transition);
    position: relative;
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    transition: all var(--transition);
}

.modal-close:hover {
    color: var(--text);
    border-color: var(--gold);
}

.modal-header {
    margin-bottom: var(--space-md);
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-top: 0.3rem;
}

.modal-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

/* --- Form --- */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a9bb0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-footer {
    margin-top: var(--space-sm);
}

.form-price {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: var(--space-sm);
    text-align: center;
}

.form-hint {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-align: center;
    margin-top: var(--space-xs);
}

/* --- Confirmation --- */
.booking-confirmation {
    text-align: center;
    padding: var(--space-lg) 0;
}

.confirmation-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
    animation: float 3s ease-in-out infinite;
}

.booking-confirmation h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: var(--space-sm);
    color: var(--gold);
}

.booking-confirmation p {
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    margin-top: var(--space-lg);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
    padding: 1.2rem 0;
    background: none;
    border: none;
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform var(--transition);
    width: 24px;
    text-align: center;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 1.2rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   CTA
   ============================================ */
.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.3;
    margin-bottom: var(--space-sm);
}

.cta-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact h4,
.footer-links h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-contact a {
    color: var(--text-muted);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.82rem;
    color: var(--text-dim);
}

.footer-legal {
    display: flex;
    gap: var(--space-md);
}

.footer-legal a {
    color: var(--text-dim);
    font-size: 0.82rem;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .pillar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        padding: 5rem var(--space-md) var(--space-md);
        transition: right var(--transition);
        border-left: 1px solid rgba(201, 168, 76, 0.1);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .split {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .split-visual {
        order: -1;
    }

    .image-card {
        max-width: 300px;
    }

    .pillar-grid {
        grid-template-columns: 1fr 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .calendar-legend {
        flex-wrap: wrap;
        gap: var(--space-sm);
    }
}

@media (max-width: 480px) {
    .pillar-grid {
        grid-template-columns: 1fr;
    }

    .strengths-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section {
        padding: var(--space-xl) 0;
    }
}

/* ============================================
   THEME SWITCHER
   ============================================ */
.theme-switcher {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1500;
}

.theme-toggle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a2230, #253040);
    border: 2px solid rgba(201, 168, 76, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 12px rgba(201, 168, 76, 0.15);
}

.theme-toggle:hover {
    transform: scale(1.1);
    border-color: #c9a84c;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(201, 168, 76, 0.3);
}

.theme-toggle-icon {
    font-size: 1.4rem;
    transition: transform var(--transition);
}

.theme-toggle.open .theme-toggle-icon {
    transform: rotate(90deg);
}

.theme-panel {
    position: absolute;
    bottom: 64px;
    right: 0;
    width: 240px;
    background: #1a2230;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-lg);
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px) scale(0.95);
    transition: all var(--transition);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.theme-panel.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.theme-panel-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8a9bb0;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.theme-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    padding: 0.6rem 0.5rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-align: left;
    color: #e8e4dd;
}

.theme-option:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.15);
}

.theme-option.active {
    background: rgba(201, 168, 76, 0.12);
    border-color: #c9a84c;
}

.theme-swatch {
    width: 32px;
    height: 32px;
    border-radius: var(--radius);
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.theme-swatch--dark {
    background: linear-gradient(135deg, #0a0e14 50%, #c9a84c 50%);
}

.theme-swatch--original {
    background: linear-gradient(135deg, #f5f0e8 50%, #8b6914 50%);
}

.theme-option-info strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #e8e4dd;
}

.theme-option-info small {
    font-size: 0.72rem;
    color: #8a9bb0;
}

/* ============================================
   THEME: ORIGINAL WARM (Light / Editorial)
   Inspired by the original SAILING.ONE aesthetic
   ============================================ */
[data-theme="original"] {
    --bg-deep: #f5f0e8;
    --bg-dark: #ebe5d8;
    --bg-card: #ffffff;
    --bg-surface: #f0ebe2;
    --bg-light: #faf7f2;

    --gold: #8b6914;
    --gold-light: #a57d1a;
    --gold-dark: #6d5210;
    --gold-glow: rgba(139, 105, 20, 0.1);

    --blue: #2c4a6e;
    --blue-light: #3d6491;
    --blue-glow: rgba(44, 74, 110, 0.08);

    --text: #1a1a1a;
    --text-muted: #4a4a4a;
    --text-dim: #8a8a7a;

    --red: #c0392b;
    --green: #27ae60;
    --orange: #d35400;
}

/* Nav override for light theme */
[data-theme="original"] .nav.scrolled {
    background: rgba(245, 240, 232, 0.95);
    border-bottom: 1px solid rgba(139, 105, 20, 0.15);
}

[data-theme="original"] .nav-links.open {
    background: var(--bg-card);
}

/* Hero gradient override */
[data-theme="original"] .hero {
    background:
        linear-gradient(135deg, rgba(245, 240, 232, 0.3) 0%, rgba(235, 229, 216, 0.85) 100%),
        linear-gradient(to bottom, #d4c9a8, #2c4a6e);
}

[data-theme="original"] .hero::before {
    background:
        radial-gradient(ellipse at 20% 80%, rgba(44, 74, 110, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(139, 105, 20, 0.06) 0%, transparent 50%);
}

[data-theme="original"] .hero-overlay {
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(245, 240, 232, 0.4) 60%,
            var(--bg-deep) 100%);
}

/* Section background overrides */
[data-theme="original"] .section--pillars {
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 50%, var(--bg-deep) 100%);
}

[data-theme="original"] .section--cta {
    background:
        radial-gradient(ellipse at center, rgba(44, 74, 110, 0.05) 0%, transparent 70%),
        var(--bg-deep);
}

/* Card & border overrides for light */
[data-theme="original"] .pillar {
    border-color: rgba(139, 105, 20, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="original"] .pillar:hover {
    border-color: rgba(139, 105, 20, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

[data-theme="original"] .feature {
    border-color: rgba(139, 105, 20, 0.08);
}

[data-theme="original"] .feature:hover {
    border-color: rgba(139, 105, 20, 0.2);
    background: rgba(139, 105, 20, 0.04);
}

[data-theme="original"] .strength-card {
    border-color: rgba(139, 105, 20, 0.1);
}

[data-theme="original"] .strength-card:hover {
    border-color: rgba(139, 105, 20, 0.25);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="original"] .strength-icon {
    background: rgba(139, 105, 20, 0.05);
    border-color: rgba(139, 105, 20, 0.1);
}

/* Calendar overrides */
[data-theme="original"] .calendar {
    border-color: rgba(139, 105, 20, 0.12);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

[data-theme="original"] .calendar-nav {
    border-color: rgba(139, 105, 20, 0.15);
}

[data-theme="original"] .calendar-legend {
    border-top-color: rgba(0, 0, 0, 0.06);
}

[data-theme="original"] .trip-card {
    border-color: rgba(139, 105, 20, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="original"] .trip-card:hover {
    border-color: rgba(139, 105, 20, 0.25);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="original"] .trip-card-footer {
    border-top-color: rgba(0, 0, 0, 0.06);
}

/* Modal overlay for light */
[data-theme="original"] .modal-overlay {
    background: rgba(245, 240, 232, 0.85);
}

[data-theme="original"] .modal {
    border-color: rgba(139, 105, 20, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

[data-theme="original"] .modal-close {
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="original"] .form-group input,
[data-theme="original"] .form-group select,
[data-theme="original"] .form-group textarea {
    border-color: rgba(0, 0, 0, 0.1);
}

/* FAQ for light */
[data-theme="original"] .faq-item {
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

/* Footer for light */
[data-theme="original"] .footer {
    background: #e8e2d5;
    border-top-color: rgba(139, 105, 20, 0.1);
}

[data-theme="original"] .footer-bottom {
    border-top-color: rgba(0, 0, 0, 0.06);
}

/* Button adjustments */
[data-theme="original"] .btn--primary {
    box-shadow: 0 4px 16px rgba(139, 105, 20, 0.2);
}

[data-theme="original"] .btn--primary:hover {
    box-shadow: 0 6px 24px rgba(139, 105, 20, 0.3);
}

/* Nav toggle for light */
[data-theme="original"] .nav-toggle span {
    background: var(--text);
}

/* Scroll line */
[data-theme="original"] .hero-scroll-line {
    background: var(--gold);
}

/* Image placeholder */
[data-theme="original"] .image-placeholder {
    background: linear-gradient(135deg, var(--bg-surface), #c8bea8);
}

/* Theme switcher keeps its dark styling in all themes */

/* Smooth transition for theme change */
body {
    transition: background-color 0.5s ease, color 0.5s ease;
}

.nav,
.section,
.hero,
.footer,
.modal,
.calendar,
.pillar,
.feature,
.trip-card,
.faq-item,
.btn {
    transition: all 0.5s ease;
}

/* ============================================
   NAV LOGO IMAGE
   ============================================ */
.nav-logo-img {
    height: 28px;
    width: auto;
    margin-right: 8px;
    vertical-align: middle;
    filter: drop-shadow(0 0 4px rgba(201, 168, 76, 0.3));
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.2));
}

/* ============================================
   COUNTDOWN
   ============================================ */
.countdown-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-surface);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
}

.countdown-days {
    font-size: 1.2em;
    font-weight: 700;
}

.countdown-route {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.countdown-route-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.countdown-route-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-dim);
    flex-shrink: 0;
}

.countdown-route-dot.active {
    background: var(--gold);
    box-shadow: 0 0 8px rgba(201, 168, 76, 0.4);
}

.countdown-route-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--text-dim), var(--gold), var(--text-dim));
    opacity: 0.3;
}

.countdown-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.countdown-detail {
    text-align: center;
}

.countdown-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 0.3rem;
}

.countdown-value {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-main);
}

.spots-pulse {
    color: var(--gold) !important;
    animation: spotsPulse 2s ease-in-out infinite;
}

@keyframes spotsPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ============================================
   REVIER MAP
   ============================================ */
/* ============================================
   INTERACTIVE REVIER MAP
   ============================================ */
.interactive-map-container {
    position: relative;
}

.map-wrapper {
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 40%, rgba(30, 58, 95, 0.15) 0%, var(--bg-surface) 70%);
    position: relative;
}

.map-svg {
    width: 100%;
    height: auto;
    display: block;
}

.map-hint {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 1rem;
    letter-spacing: 0.05em;
}

/* Pins */
.map-pin {
    cursor: pointer;
}

.map-pin .pin-inner {
    transition: transform 0.3s ease;
    transform-box: fill-box;
    transform-origin: center;
}

.map-pin:hover .pin-inner {
    transform: scale(1.4);
}

.map-pin:hover .pin-label {
    opacity: 1;
    fill: rgba(201, 168, 76, 1);
}

.pin-label {
    transition: all 0.3s ease;
}

.pin-core {
    transition: all 0.3s ease;
}

.map-pin:hover .pin-core {
    fill: rgba(201, 168, 76, 1);
}

.map-pin.active .pin-core {
    fill: rgba(201, 168, 76, 1);
}

/* Pulse animation */
@keyframes pinPulse {
    0% {
        r: 8;
        opacity: 0.6;
    }

    100% {
        r: 22;
        opacity: 0;
    }
}

.pin-pulse {
    animation: pinPulse 2s ease-out infinite;
}

.pin-pulse-2 {
    animation: pinPulse 2s ease-out infinite 0.7s;
}

/* Route lines */
@keyframes routeDash {
    to {
        stroke-dashoffset: -20;
    }
}

.route-line {
    animation: routeDash 3s linear infinite;
}

/* Detail panel */
.revier-detail {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%) translateX(20px);
    background: rgba(18, 28, 48, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 320px;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.revier-detail.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(-50%) translateX(0);
}

.revier-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.3rem;
    line-height: 1;
    transition: color 0.2s;
}

.revier-close:hover {
    color: var(--text-main);
}

.revier-detail-flag {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.revier-detail-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 0.8rem;
}

.revier-detail-meta {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.revier-meta-item {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 6px;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.03em;
}

.revier-detail-highlight {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.revier-detail-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
}

.revier-feature-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 5px;
    color: var(--text-dim);
}

.revier-detail-cta {
    display: block;
    text-align: center;
    padding: 0.7rem 1.2rem;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.08));
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 8px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.revier-detail-cta:hover {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.25), rgba(201, 168, 76, 0.12));
    transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 768px) {
    .revier-detail {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        max-width: 100%;
        margin-top: 1rem;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0 2rem;
        transition: all 0.4s ease;
    }

    .revier-detail.active {
        opacity: 1;
        transform: none;
        max-height: 500px;
        padding: 2rem;
    }
}

/* ============================================
   LOGBUCH
   ============================================ */
.logbuch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.logbuch-entry {
    background: var(--bg-surface);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
}

.logbuch-entry:hover {
    border-color: rgba(201, 168, 76, 0.2);
}

.logbuch-date {
    display: inline-block;
    background: var(--gold);
    color: var(--bg-deep);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.logbuch-route {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 0.8rem;
}

.logbuch-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--text-dim);
}

.logbuch-learning {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    padding-top: 1rem;
}

/* ============================================
   BOARDING PASS TESTIMONIALS
   ============================================ */
.boarding-pass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.boarding-pass {
    background: var(--bg-surface);
    border: 2px dashed rgba(201, 168, 76, 0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.boarding-pass:hover {
    border-color: rgba(201, 168, 76, 0.35);
    transform: translateY(-3px);
}

.boarding-pass-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background: rgba(201, 168, 76, 0.06);
    border-bottom: 1px dashed rgba(201, 168, 76, 0.12);
}

.boarding-pass-airline {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.boarding-pass-class {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    background: rgba(201, 168, 76, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.boarding-pass-body {
    padding: 1.5rem;
}

.boarding-pass-route {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.boarding-pass-city {
    text-align: center;
}

.boarding-pass-code {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 2px;
}

.boarding-pass-name {
    display: block;
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.boarding-pass-arrow {
    font-size: 1.2rem;
    color: var(--gold);
    opacity: 0.6;
    transform: rotate(90deg);
}

.boarding-pass-stars {
    text-align: center;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--gold);
    padding: 0.5rem 0 0;
}

.boarding-pass-quote {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
    padding: 1rem 0;
    border-top: 1px dashed rgba(201, 168, 76, 0.1);
    border-bottom: 1px dashed rgba(201, 168, 76, 0.1);
}

.testimonials-trust {
    text-align: center;
    margin-top: var(--space-lg);
    font-size: 0.85rem;
    color: var(--text-dim);
}

.testimonials-trust a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.testimonials-trust a:hover {
    opacity: 0.8;
}

.boarding-pass-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    font-size: 0.8rem;
}

.boarding-pass-name-pax {
    color: var(--gold);
    font-weight: 500;
}

.boarding-pass-date {
    color: var(--text-dim);
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* ============================================
   QUIZ
   ============================================ */
.quiz-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-surface);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    min-height: 280px;
}

.quiz-step {
    display: none;
    animation: quizFade 0.4s ease;
}

.quiz-step.active {
    display: block;
}

@keyframes quizFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quiz-question {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 2rem;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.quiz-option {
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.15);
    color: var(--text-muted);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    text-align: left;
}

.quiz-option:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

/* Quiz progress bar */
.quiz-progress {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    position: relative;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), #d4a843);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.quiz-progress-text {
    position: absolute;
    right: 0;
    top: 12px;
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}

/* Quiz lead form */
.quiz-lead-form {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(201, 168, 76, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: var(--radius);
}

.quiz-lead-intro {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.quiz-lead-form .form-group {
    margin-bottom: 0.8rem;
}

.quiz-lead-form input {
    width: 100%;
    padding: 0.7rem 1rem;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.quiz-lead-form input:focus {
    border-color: var(--gold);
    outline: none;
}

.quiz-lead-success {
    margin: 2rem 0;
    text-align: center;
    animation: quizFade 0.5s ease;
}

.quiz-lead-success .confirmation-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.quiz-lead-success p {
    color: var(--text-muted);
}

.quiz-result {
    animation: quizFade 0.5s ease;
}

.quiz-result-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.quiz-result-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.quiz-result-text {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.quiz-result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn--outline {
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition);
}

.btn--outline:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all 0.3s ease;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--bg-surface);
    color: var(--text-main);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Auto-show tooltip briefly on page load */
@keyframes wa-tooltip-peek {
    0% {
        opacity: 0;
        transform: translateX(10px);
    }

    15% {
        opacity: 1;
        transform: translateX(0);
    }

    85% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(10px);
    }
}

.whatsapp-tooltip.auto-show {
    animation: wa-tooltip-peek 4s ease-in-out forwards;
    pointer-events: auto;
}

/* ============================================
   LOGBUCH ENTRY IMAGES
   ============================================ */

.logbuch-entry {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.logbuch-entry-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.logbuch-entry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.logbuch-entry:hover .logbuch-entry-img img {
    transform: scale(1.05);
}

.logbuch-entry-content {
    flex: 1;
    padding: 1.25rem;
    overflow: hidden;
}

.logbuch-entry-content .logbuch-route {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.logbuch-entry-content .logbuch-meta {
    flex-wrap: wrap;
}

.logbuch-entry-content .logbuch-learning {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ============================================
   IMPRESSIONEN GALLERY
   ============================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item--wide {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.gallery-item--tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 14, 20, 0.5) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item--wide {
        grid-column: span 1;
        aspect-ratio: 16 / 9;
    }

    .gallery-item--tall {
        grid-row: span 1;
        aspect-ratio: 3 / 4;
    }
}

/* ============================================
   WEATHER WIDGET
   ============================================ */

.weather-widget {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.weather-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.weather-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.weather-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--blue));
}

.weather-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.weather-location {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-main);
}

.weather-flag {
    font-size: 1.5rem;
}

.weather-temp {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.weather-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: capitalize;
    margin-bottom: 1rem;
}

.weather-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.weather-detail {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.weather-detail-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.weather-detail-value {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
}

.weather-loading {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

.weather-loading .spinner {
    width: 30px;
    height: 30px;
    border: 3px solid var(--border);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: weatherSpin 0.8s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes weatherSpin {
    to {
        transform: rotate(360deg);
    }
}

.weather-error {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.weather-updated {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.6;
}

/* ============================================
   YACHT GALLERY
   ============================================ */
.yacht-gallery {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.yacht-gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.yacht-gallery-main img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.yacht-gallery-thumbs {
    display: flex;
    gap: 0.75rem;
}

.yacht-thumb {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.yacht-thumb:hover {
    opacity: 1;
    border-color: var(--gold);
    transform: translateY(-2px);
}

.yacht-thumb img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

/* ============================================
   INTERACTIVE DECKPLAN – Premium Edition
   ============================================ */
.deckplan-container {
    max-width: 960px;
    margin: 0 auto;
}

.deckplan-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.2);
    background:
        radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(55, 120, 180, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, #0d1520 0%, #111b28 50%, #0d1520 100%);
    box-shadow:
        0 0 0 1px rgba(201, 168, 76, 0.08),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    padding: 2.5rem 2rem;
}

/* Subtle nautical grid overlay */
.deckplan-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

/* Compass rose watermark */
.deckplan-wrapper::after {
    content: '⎈';
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    font-size: 2rem;
    color: rgba(201, 168, 76, 0.08);
    z-index: 1;
    pointer-events: none;
}

/* Image viewport with zoom support + parallax */
.deckplan-viewport {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    z-index: 2;
    cursor: default;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center center;
    will-change: transform;
}

.deckplan-image {
    width: 100%;
    display: block;
    filter: invert(0.88) brightness(1.1) contrast(1.15) hue-rotate(180deg) saturate(0.5);
}

.deckplan-wrapper.zoomed .deckplan-viewport {
    transform: scale(1.8);
}

/* Hotspot base – refined */
.deckplan-hotspot {
    position: absolute;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 5;
    transform: translate(-50%, -50%);
    padding: 0;
    transition: z-index 0s;
}

.hotspot-dot {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #d8bc63, var(--gold));
    border: 2.5px solid rgba(10, 14, 20, 0.7);
    box-shadow:
        0 0 12px rgba(201, 168, 76, 0.5),
        0 0 4px rgba(201, 168, 76, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hotspot label */
.hotspot-label {
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) scale(0.85);
    background: rgba(10, 14, 20, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 6px;
    padding: 3px 9px;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
    letter-spacing: 0.02em;
}

.hotspot-label::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: rgba(201, 168, 76, 0.3);
}

.deckplan-hotspot:hover .hotspot-label {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.hotspot-ping {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.35);
    animation: hotspotPing 2.5s ease-out infinite;
}

@keyframes hotspotPing {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    70% {
        transform: scale(2.8);
        opacity: 0;
    }

    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}

.deckplan-hotspot:hover .hotspot-dot,
.deckplan-hotspot.active .hotspot-dot {
    transform: scale(1.4);
    box-shadow:
        0 0 20px rgba(201, 168, 76, 0.9),
        0 0 40px rgba(201, 168, 76, 0.3);
}

.deckplan-hotspot.active .hotspot-ping {
    animation: none;
    opacity: 0;
}

.deckplan-hotspot.active .hotspot-label {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    background: rgba(201, 168, 76, 0.15);
    color: #fff;
}

/* Dim other hotspots when one is active */
.deckplan-wrapper.zoomed .deckplan-hotspot:not(.active) {
    opacity: 0.25;
    transition: opacity 0.5s ease;
}

/* Info panel – glassmorphism redesign */
.deckplan-info {
    position: relative;
    margin-top: 1.5rem;
    background: linear-gradient(135deg,
            rgba(15, 22, 32, 0.95) 0%,
            rgba(20, 30, 42, 0.92) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 14px;
    padding: 1.5rem 2rem;
    opacity: 0;
    transform: translateY(15px);
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.deckplan-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
}

.deckplan-info.active {
    opacity: 1;
    transform: translateY(0);
    max-height: 600px;
    pointer-events: all;
}

.deckplan-info-close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.3rem;
    line-height: 1;
    transition: all 0.2s;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deckplan-info-close:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.06);
}

.deckplan-info-icon {
    font-size: 1.6rem;
    margin-right: 0.75rem;
    line-height: 1;
}

.deckplan-info-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.6rem;
}

.deckplan-info-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--gold);
    margin: 0;
}

.deckplan-info-photo {
    display: none;
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    margin-bottom: 0.75rem;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.5s ease 0.15s, transform 0.5s ease 0.15s;
}

.deckplan-info.active .deckplan-info-photo {
    opacity: 1;
    transform: scale(1);
}

.deckplan-info-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    padding-left: 2.35rem;
}

/* Highlight chips */
.deckplan-info-highlights {
    display: none;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding-left: 2.35rem;
    margin-bottom: 0.6rem;
}

.deckplan-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 20px;
    padding: 0.25rem 0.65rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

/* Reset button */
.deckplan-reset {
    display: none;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    z-index: 10;
    background: rgba(10, 14, 20, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-sans);
}

.deckplan-reset:hover {
    background: rgba(201, 168, 76, 0.12);
}

.deckplan-wrapper.zoomed .deckplan-reset {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Deckplan hint text */
.deckplan-hint {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.78rem;
    color: var(--text-dim);
    letter-spacing: 0.03em;
    opacity: 0.7;
    transition: opacity 0.3s;
    z-index: 2;
    position: relative;
}

.deckplan-wrapper.zoomed~.deckplan-hint {
    opacity: 0;
}

@media (max-width: 768px) {
    .deckplan-wrapper {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

    .deckplan-hotspot {
        width: 44px;
        height: 44px;
    }

    .hotspot-dot,
    .hotspot-ping {
        width: 14px;
        height: 14px;
    }

    .hotspot-label {
        display: none;
    }

    .deckplan-wrapper.zoomed .deckplan-image {
        transform: scale(1.5);
    }

    .deckplan-info {
        padding: 1.2rem 1.2rem;
    }

    .deckplan-info-text {
        padding-left: 0;
    }

    .deckplan-info-header {
        flex-wrap: wrap;
    }
}

/* ============================================
   LEGAL MODALS (Impressum / Datenschutz)
   ============================================ */
.legal-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.legal-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.legal-modal {
    background: var(--bg-card);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius-lg);
    max-width: 640px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s ease;
}

.legal-modal-overlay.active .legal-modal {
    transform: scale(1) translateY(0);
}

.legal-modal h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.legal-modal h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-main);
    margin: 1.5rem 0 0.5rem;
    font-weight: 600;
}

.legal-modal p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.legal-modal a {
    color: var(--gold);
}

.legal-modal .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 1rem;
    transform: translateY(100%);
    animation: cookieSlideUp 0.5s ease 1s forwards;
}

.cookie-banner.hidden {
    display: none;
}

@keyframes cookieSlideUp {
    to {
        transform: translateY(0);
    }
}

.cookie-banner-inner {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(15, 25, 45, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 14px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.4);
}

.cookie-banner-inner p {
    flex: 1;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin: 0;
    min-width: 200px;
}

.cookie-banner-inner a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.5rem;
}

.cookie-btn {
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.cookie-btn--accept {
    background: var(--gold);
    color: var(--bg-dark);
}

.cookie-btn--accept:hover {
    background: #d4b44a;
    transform: translateY(-1px);
}

.cookie-btn--decline {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-dim);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-btn--decline:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* ============================================
   SCROLL PROGRESS: SAILBOAT ON WAVES
   ============================================ */
.scroll-progress {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55px;
    z-index: 9998;
    pointer-events: none;
    overflow: hidden;
}

.scroll-boat-wrapper {
    position: absolute;
    bottom: -4px;
    left: 0%;
    transform: translateX(-50%);
    transition: left 0.1s linear;
    animation: scrollBoatRock 3s ease-in-out infinite;
    transform-origin: center bottom;
    pointer-events: auto;
    cursor: pointer;
    z-index: 3;
}

.scroll-boat-svg {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

/* Waves */
.scroll-waves {
    position: absolute;
    bottom: 0;
    left: -50%;
    width: 300%;
    height: 16px;
    pointer-events: none;
    z-index: 4;
}

.scroll-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 16px;
}

.scroll-wave-1 {
    z-index: 5;
    animation: scrollWaveMove 6s linear infinite;
}

.scroll-wave-2 {
    z-index: 4;
    bottom: 2px;
    animation: scrollWaveMove 8s linear infinite reverse;
}

@keyframes scrollBoatRock {

    0%,
    100% {
        transform: translateX(-50%) rotate(-1.5deg) translateY(0);
    }

    25% {
        transform: translateX(-50%) rotate(1deg) translateY(-2px);
    }

    50% {
        transform: translateX(-50%) rotate(-0.5deg) translateY(-1px);
    }

    75% {
        transform: translateX(-50%) rotate(1.5deg) translateY(-3px);
    }
}

@keyframes scrollWaveMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(33.33%);
    }
}

@media (max-width: 768px) {
    .scroll-progress {
        height: 35px;
    }

    .scroll-boat-wrapper {
        bottom: -6px;
    }

    .scroll-boat-svg {
        width: 22px;
        height: 24px;
    }

    .scroll-waves {
        height: 10px;
    }

    .scroll-wave {
        height: 10px;
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }

    .whatsapp-float svg {
        width: 22px;
        height: 22px;
    }
}

/* ============================================
   EASTER EGGS 🥚
   ============================================ */

/* Pirate Mode (Konami Code) */
.pirate-mode {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.6));
    animation: pirateFlash 0.4s ease;
}

.pirate-mode-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 100000;
    font-size: 3rem;
    text-align: center;
    pointer-events: none;
    animation: piratePop 2s ease forwards;
}

.pirate-mode-banner span {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold);
    margin-top: 0.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

@keyframes pirateFlash {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

@keyframes piratePop {
    0% {
        transform: translate(-50%, -50%) scale(0) rotate(-20deg);
        opacity: 0;
    }

    30% {
        transform: translate(-50%, -50%) scale(1.3) rotate(5deg);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 1;
    }

    80% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.5) rotate(10deg);
        opacity: 0;
    }
}

/* Ahoi Toast */
.ahoi-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 100000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 2rem 3rem;
    text-align: center;
    pointer-events: none;
    animation: ahoiPop 2.5s ease forwards;
}

.ahoi-toast .ahoi-emoji {
    font-size: 4rem;
    display: block;
    animation: ahoiWave 0.5s ease 0.3s 3;
}

.ahoi-toast .ahoi-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-top: 0.5rem;
}

.ahoi-toast .ahoi-sub {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-top: 0.3rem;
}

@keyframes ahoiPop {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }

    15% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }

    25% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    80% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
}

@keyframes ahoiWave {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(15deg);
    }

    75% {
        transform: rotate(-15deg);
    }
}

/* Barrel Roll (logo 5x) */
.barrel-roll {
    animation: barrelRoll 1.2s ease 1;
}

@keyframes barrelRoll {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Confetti */
.confetti-piece {
    position: fixed;
    z-index: 100000;
    width: 10px;
    height: 10px;
    pointer-events: none;
    animation: confettiFall 2.5s ease forwards;
}

@keyframes confettiFall {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(100vh) rotate(720deg) scale(0.3);
    }
}

/* Screen Wave */
.screen-wave {
    animation: screenWave 0.6s ease;
}

@keyframes screenWave {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-5px) rotate(-0.3deg);
    }

    40% {
        transform: translateX(5px) rotate(0.3deg);
    }

    60% {
        transform: translateX(-3px) rotate(-0.2deg);
    }

    80% {
        transform: translateX(3px) rotate(0.1deg);
    }
}

/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

/* ==========================================
   FOMO SOCIAL PROOF TOAST
   ========================================== */
.fomo-toast {
    position: fixed;
    bottom: -100px;
    left: 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-sm);

    /* ==========================================
   BOOKING MODAL
   ========================================== */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 15, 26, 0.85);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .modal-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    .modal {
        background: var(--bg-surface);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--radius-lg);
        width: 100%;
        max-width: 500px;
        padding: 2.5rem;
        position: relative;
        transform: translateY(20px);
        transition: all 0.3s ease;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-overlay.active .modal {
        transform: translateY(0);
    }

    .modal-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        color: var(--text-dim);
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s;
    }

    .modal-close:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--text-main);
    }

    .modal-header {
        margin-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 1.5rem;
    }

    .modal-header h3 {
        font-family: var(--font-serif);
        font-size: 1.8rem;
        color: var(--gold);
        margin-bottom: 0.5rem;
    }

    .modal-header p {
        color: var(--text-dim);
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .modal-price {
        display: inline-block;
        background: rgba(201, 168, 76, 0.1);
        color: var(--gold);
        padding: 0.4rem 0.8rem;
        border-radius: var(--radius-sm);
        font-weight: 500;
        font-size: 0.9rem;
    }

    .modal-desc {
        font-size: 0.85rem;
        color: var(--text-muted);
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .modal-form .form-group {
        margin-bottom: 1.2rem;
    }

    .modal-form label {
        display: block;
        font-size: 0.8rem;
        color: var(--text-muted);
        margin-bottom: 0.4rem;
    }

    .modal-form input,
    .modal-form textarea {
        width: 100%;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-sm);
        padding: 0.8rem 1rem;
        color: var(--text-main);
        font-family: var(--font-sans);
        transition: border-color 0.2s;
    }

    .modal-form input:focus,
    .modal-form textarea:focus {
        outline: none;
        border-color: var(--gold);
    }

    .modal-form textarea {
        min-height: 100px;
        resize: vertical;
    }

    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.fomo-toast.show {
    bottom: 2rem;
    opacity: 1;
}

.fomo-icon {
    font-size: 1.5rem;
    background: rgba(201, 168, 76, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.fomo-content {
    display: flex;
    flex-direction: column;
}

.fomo-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    margin: 0;
}

.fomo-time {
    font-size: 0.75rem;
    color: var(--gold);
    margin: 0;
}

@media (max-width: 768px) {
    .fomo-toast {
        left: 1rem;
        right: 1rem;
        bottom: -100px;
    }

    .fomo-toast.show {
        bottom: 5.5rem;
        /* Above WhatsApp button */
    }
}