/* Design System Tokens - Woloshin Banya (Rich Sapphire Midnight Blue & Shimmering Gold) */
:root {
    /* Rich Sapphire Midnight Blue Base */
    --bg-dark: #070e17;
    --bg-dark-alt: #0b1524;
    --bg-surface: #101d30;
    --glass-bg: rgba(16, 29, 48, 0.85);
    --glass-border: rgba(212, 175, 55, 0.25);
    --glass-border-light: rgba(255, 255, 255, 0.08);
    
    /* Primary Accent - Rich Metallic Gold */
    --gold: #d4af37;
    --gold-bright: #f3e5ab;
    --gold-light: #fef08a;
    --gold-dark: #b8860b;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #b8860b 100%);
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --accent-clay: #c46843;
    --accent-water: #2e8b9a;
    --accent-green: #2d6a4f;

    --font-heading: 'Kurale', serif;
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-arch: 70px 70px 24px 24px;
    --radius-full: 9999px;
    
    --shadow-soft: 0 12px 36px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.25);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* SVG Icons Styling */
.svg-icon {
    width: 1.25em;
    height: 1.25em;
    display: inline-block;
    vertical-align: -0.2em;
    stroke-width: 2;
    stroke: currentColor;
    fill: none;
    flex-shrink: 0;
}

.svg-icon-lg {
    width: 2.2rem;
    height: 2.2rem;
    vertical-align: middle;
    color: var(--gold);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
    letter-spacing: 0.3px;
}

p {
    color: var(--text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Utility Components */
.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--glass-border);
    color: var(--gold-bright);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--gold);
    box-shadow: 0 0 10px var(--gold);
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

/* Buttons - Pure Metallic Gold & Deep Blue Contrast */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #070e17;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.45);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold-bright);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.15);
    color: #fff;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border-light);
    color: var(--text-primary);
    backdrop-filter: blur(8px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* Header / Navbar - Deep Sapphire Blue + Gold Borders */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: rgba(7, 14, 23, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(7, 14, 23, 0.97);
    box-shadow: var(--shadow-soft);
    border-bottom-color: rgba(212, 175, 55, 0.35);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 16px;
    flex-wrap: nowrap;
}

.nav-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.64rem;
    font-weight: 600;
    line-height: 1.22;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--gold-bright);
    border-left: 1px solid rgba(212, 175, 55, 0.4);
    padding-left: 10px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    height: 38px;
}



.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: nowrap;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--gold-bright);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

/* Premium Language Switcher Toggle */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    background: rgba(7, 14, 23, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 30px;
    padding: 3px;
    position: relative;
    user-select: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.lang-switcher:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15), inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.lang-btn {
    background: transparent;
    border: none;
    outline: none;
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    padding: 4px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lang-btn:hover {
    color: var(--gold-bright);
}

.lang-btn.active {
    color: #070e17;
    background: linear-gradient(135deg, #f7df94 0%, #d4af37 100%);
    font-weight: 800;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

/* Animated Hamburger Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 4px;
    z-index: 1100;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--gold-bright);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 ratio */
    transform: translate(-50%, -50%) scale(1.45);
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero-video-wrapper iframe,
#heroVideoPlayer {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
    pointer-events: none;
}

.video-curtain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 2;
    pointer-events: none;
    opacity: 1;
    transition: opacity 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.video-curtain.fade-out {
    opacity: 0;
    visibility: hidden;
}

@keyframes zoomHero {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(7, 14, 23, 0.38) 0%, 
        rgba(7, 14, 23, 0.52) 60%, 
        var(--bg-dark) 100%);
    z-index: 3;
}

.hero-container {
    position: relative;
    z-index: 4;
    max-width: 1000px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-large {
    height: 84px;
    width: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.7));
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.9));
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 760px;
    margin-bottom: 40px;
    color: var(--text-secondary);
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.9));
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 20px;
}

.stat-card {
    background: rgba(16, 29, 48, 0.6);
    border: 1px solid var(--glass-border-light);
    backdrop-filter: blur(12px);
    padding: 24px 16px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.stat-card:hover,
.stat-card:active {
    border-color: var(--glass-border-light);
    transform: none;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.scroll-down-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.scroll-down-indicator:hover {
    color: var(--gold);
}

.arrow-down {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(6px); }
    60% { transform: translateY(3px); }
}

/* Sections General */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 50px;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    color: var(--gold);
}

.section-subtitle {
    font-size: 1.15rem;
    max-width: 700px;
    color: var(--text-secondary);
}

.section-header.center .section-subtitle {
    margin: 0 auto;
}

/* Letter Section */
.letter-card {
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-left: 4px solid var(--gold);
}

.letter-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #070e17;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
}

.author-info h3 {
    font-size: 1.8rem;
}

.author-role {
    font-size: 0.9rem;
    color: var(--gold-bright);
}

.letter-body .lead {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.letter-body p {
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.quote-box {
    background: rgba(212, 175, 55, 0.08);
    border-radius: var(--radius-md);
    padding: 24px 32px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gold-bright);
    line-height: 1.5;
}

/* About Section Button */
.about-btn-wrap {
    margin-top: 14px;
    margin-bottom: 14px;
    display: flex;
    justify-content: center;
}

.about-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold-bright);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.about-more-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.25);
}

.about-more-btn .svg-icon {
    width: 14px;
    height: 14px;
    stroke-width: 2;
    transition: transform 0.2s ease;
}

.about-more-btn:hover .svg-icon {
    transform: translate(2px, -2px);
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.about-card {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border-light);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.about-card:hover {
    border-color: var(--glass-border);
    transform: translateY(-4px);
}

.about-icon {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--gold);
}

.about-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.synergy-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 36px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(16, 29, 48, 0.9) 100%);
    border: 1px solid var(--gold);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.synergy-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 45px rgba(212, 175, 55, 0.28);
}

.synergy-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--gold-gradient);
    color: #070e17;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.synergy-icon .svg-icon {
    color: #070e17;
    stroke: #070e17;
}

.synergy-content h4 {
    font-size: 1.45rem;
    margin-bottom: 6px;
    color: var(--gold-bright);
}

.synergy-content p {
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 0;
    color: var(--text-primary);
}

/* Complexes Tabs */
.tabs-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
}
.tabs-nav::-webkit-scrollbar { height: 4px; }
.tabs-nav::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.3); border-radius: 2px; }

.tab-btn {
    padding: 14px 28px;
    border-radius: var(--radius-full);
    background: var(--bg-surface);
    border: 1px solid var(--glass-border-light);
    color: var(--text-secondary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover {
    color: var(--text-primary);
    border-color: var(--glass-border);
}

.tab-btn.active {
    background: var(--gold-gradient);
    color: #070e17;
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

.swipe-hint {
    display: none;
}

.complex-display {
    padding: 40px 50px;
    position: relative;
    display: grid;
    grid-template-areas: "complex";
    min-height: 480px;
    align-items: center;
    overflow: visible;
}

.complex-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: rgba(7, 14, 23, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
    .complex-nav-arrow:hover {
        background: var(--gold-gradient);
        color: #070e17;
        border-color: transparent;
        transform: translateY(-50%) scale(1.12);
        box-shadow: var(--shadow-gold);
    }
}

.complex-nav-arrow:active {
    background: var(--gold-gradient);
    color: #070e17;
    border-color: transparent;
    transform: translateY(-50%) scale(0.92);
}

.complex-nav-arrow.prev {
    left: -22px;
}

.complex-nav-arrow.next {
    right: -22px;
}

.complex-content {
    grid-area: complex;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(16px) scale(0.995);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.complex-content.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0) scale(1);
}

.complex-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 400px;
}

.complex-info h3 {
    font-size: 2.5rem;
    margin: 14px 0;
    color: var(--gold);
}

.complex-desc {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.6;
    min-height: 52px;
}

.complex-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    min-height: 72px;
    align-content: flex-start;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.complex-effect {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(212, 175, 55, 0.07);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--text-primary);
}

.effect-icon {
    background: var(--gold-gradient);
    color: #070e17;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.effect-icon .svg-icon {
    width: 14px;
    height: 14px;
}

.effect-text strong {
    color: var(--gold-bright);
}

/* Official Arched Card Tops matching Woloshin Banya site */
.complex-image {
    border-radius: var(--radius-arch);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--glass-border);
}

.complex-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.complex-image:hover img {
    transform: scale(1.05);
}

/* Programs Section */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.program-card {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border-light);
    padding: 36px 28px;
    border-radius: var(--radius-md);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.program-card:hover {
    border-color: var(--glass-border);
    transform: translateY(-4px);
}

.card-cta-btn {
    margin-top: 24px;
}

.card-badge {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.program-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.program-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.program-list li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.program-list li strong {
    color: var(--text-primary);
}

/* Gastronomy Section */
.gastronomy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
    align-items: center;
}

.gastronomy-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 420px;
    border: 1px solid var(--glass-border);
}

.gastronomy-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gastronomy-content h2 {
    font-size: 2.6rem;
    margin-bottom: 16px;
    color: var(--gold);
}

.gastronomy-content p {
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.dishes-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.dish-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dish-item strong {
    color: var(--text-primary);
}

/* Vouchers Grid */
.vouchers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.voucher-card {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border-light);
    border-radius: var(--radius-md);
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.voucher-cover {
    width: 100%;
    height: 150px;
    position: relative;
    overflow: hidden;
}

.voucher-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.voucher-card:hover .voucher-cover img {
    transform: scale(1.06);
}

.voucher-card-inner {
    padding: 24px 20px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.voucher-card:hover {
    border-color: var(--glass-border);
    transform: translateY(-6px);
}

.voucher-card.popular {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.12) 0%, var(--bg-surface) 100%);
}

.popular-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: var(--gold-gradient);
    color: #070e17;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: var(--shadow-gold);
}

.voucher-header {
    margin-bottom: 20px;
}

.v-tag {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.v-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.v-price .currency {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.voucher-body h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.voucher-body p {
    font-size: 0.85rem;
    margin-bottom: 20px;
    min-height: 40px;
}

.v-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.v-features li {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border-light);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--glass-border);
    transform: translateY(-4px);
}

.b-icon {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.benefit-card h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--gold);
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Concierge Script */
.script-box {
    padding: 36px 48px;
}

.script-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.script-header h3 {
    font-size: 1.8rem;
    margin-top: 6px;
    color: var(--gold);
}

.script-body {
    background: rgba(0, 0, 0, 0.4);
    border: 1px dashed var(--glass-border);
    border-radius: var(--radius-md);
    padding: 24px 32px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--gold-bright);
}

/* Chat Interface for Concierge Script */
.chat-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

.chat-bubble {
    border-radius: 16px;
    padding: 18px 24px;
    position: relative;
    max-width: 85%;
}

.guest-bubble {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom-left-radius: 4px;
    color: var(--text-primary);
}

.concierge-bubble {
    align-self: flex-end;
    background: rgba(16, 29, 48, 0.9);
    border: 1px solid var(--glass-border);
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.chat-sender {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 8px;
}

.guest-bubble .chat-sender {
    color: #94a3b8;
}

.chat-text {
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--text-primary);
    font-style: italic;
}

.concierge-bubble .script-body {
    background: transparent;
    border: none;
    padding: 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--gold-bright);
}

/* Calculator Section */
.calc-card {
    padding: 48px;
}

.calc-header {
    text-align: center;
    margin-bottom: 40px;
}

.calc-header h2 {
    font-size: 2.6rem;
    margin-bottom: 8px;
    color: var(--gold);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.input-group {
    margin-bottom: 24px;
}

.input-group label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.val-badge {
    background: var(--gold-gradient);
    color: #070e17;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
}

input[type="range"] {
    width: 100%;
    accent-color: var(--gold);
}

select {
    width: 100%;
    background: var(--bg-surface);
    border: 1px solid var(--glass-border-light);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    outline: none;
}

select:focus {
    border-color: var(--gold);
}

.rate-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.4;
}

.rate-note .svg-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gold);
}

.calc-outputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.out-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
    border-radius: var(--radius-md);
}

.out-card.highlight {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--gold);
}

.out-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 8px;
}

.out-value {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    white-space: nowrap;
}

.out-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
    display: block;
}

/* Formats Panel */
.formats-panel {
    padding: 40px;
}

.formats-panel h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--gold);
}

.warning-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(196, 104, 67, 0.12);
    border: 1px solid rgba(196, 104, 67, 0.3);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin: 24px 0;
}

.w-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 14px rgba(212, 175, 55, 0.2);
}

.w-icon svg {
    width: 24px;
    height: 24px;
}

.custom-partnership-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(16, 29, 48, 0.8) 100%);
    border: 1px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin-top: 28px;
    box-shadow: var(--shadow-gold);
}

.cp-icon {
    width: 44px;
    height: 44px;
    background: var(--gold-gradient);
    color: #070e17;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
}

.cp-icon svg {
    width: 24px;
    height: 24px;
}

.cp-content h4 {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 6px;
}

.cp-content p {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Contact Section */
.contact-card {
    padding: 48px;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    color: var(--gold);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.c-person {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.c-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #070e17;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
}

.c-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.c-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: var(--transition);
}

.c-link:hover {
    border-color: var(--gold);
    color: var(--gold-bright);
}

.c-disabled {
    opacity: 0.6;
    cursor: default;
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}
.c-disabled:hover {
    border-color: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.c-loc {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding-left: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border-light);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    outline: none;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--gold);
}

/* Footer Styles */
.footer {
    padding: 60px 0 40px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-card {
    background: rgba(22, 33, 26, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Column 1: Brand & Location */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.footer-brand-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.08em;
}

.footer-hours {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    width: fit-content;
}

.footer-hours .svg-icon {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
}

.footer-address-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.4;
}

.footer-address .svg-icon {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.copy-coords-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: #e59d2c;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 0;
    transition: all 0.25s ease;
    width: fit-content;
}

.copy-coords-btn:hover {
    color: #f7b243;
    transform: translateX(2px);
}

.copy-coords-btn .svg-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    transition: transform 0.25s ease;
}

.copy-coords-btn.copied {
    color: #4cd964;
}

/* Column 2: Direct Contacts */
.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.03em;
    margin: 0 0 4px 0;
}

.footer-phone {
    margin-bottom: 4px;
}

.phone-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-link:hover {
    color: var(--gold);
    transform: translateX(3px);
}

.footer-link .svg-icon {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    flex-shrink: 0;
}

.footer-write-us {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.footer-write-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.email-underline {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Column 3: Social Media Links */
.social-links-grid {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon-btn .svg-icon {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.social-icon-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.social-icon-btn:hover .svg-icon {
    transform: scale(1.1);
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(212, 175, 55, 0.25) 50%, rgba(255, 255, 255, 0) 100%);
    margin: 32px 0 24px 0;
}

/* Bottom Section */
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-requisites {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: monospace, sans-serif;
    letter-spacing: 0.02em;
    margin: 0;
    line-height: 1.5;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    width: fit-content;
}

.footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-meta p {
    margin: 0;
}

.status-tag {
    font-style: italic;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .footer-card {
        padding: 24px 20px;
        border-radius: 18px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .footer-requisites {
        width: 100%;
        font-size: 0.78rem;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    z-index: 2001;
    width: 100%;
    max-width: 480px;
    padding: 40px;
    margin: 20px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.8rem;
    cursor: pointer;
}

.modal-content h3 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--gold);
}

.modal-content p {
    font-size: 0.9rem;
    margin-bottom: 24px;
}

/* Responsive Breakpoints & Adaptive Drawer Header */
@media (max-width: 1120px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: rgba(7, 14, 23, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--glass-border);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 40px 32px;
        gap: 20px;
        z-index: 1050;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.8);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.15rem;
        font-family: var(--font-heading);
        color: var(--text-primary);
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    
    .nav-link:hover {
        color: var(--gold-bright);
        padding-left: 8px;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: repeat(2, 1fr); }
    .vouchers-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .programs-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-actions .btn-primary {
        display: none !important;
    }
    .hero-title { font-size: 2.4rem; }
    .hero-subtitle {
        font-size: clamp(0.85rem, 3.8vw, 0.98rem);
        line-height: 1.42;
        margin-bottom: 24px;
        max-width: 96%;
    }

    /* Hero CTA group: balanced single-line 2-button layout on mobile */
    .hero-cta-group {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
        margin-bottom: 32px;
        padding: 0;
    }

    /* Hide 3rd button (concierge script) on mobile */
    .hero-cta-group .btn:nth-child(3) {
        display: none !important;
    }

    .hero-cta-group .btn {
        padding: 12px 8px;
        font-size: clamp(0.72rem, 2.8vw, 0.85rem);
        font-weight: 600;
        line-height: 1.2;
        min-height: 48px;
        height: auto;
        border-radius: 14px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 6px;
        text-align: center;
        width: 100%;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    }

    .hero-cta-group .btn .svg-icon {
        width: 16px;
        height: 16px;
        margin: 0;
        flex-shrink: 0;
    }

    /* Hero stats: compact single-line 3-card layout on mobile */
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        margin-top: 16px;
    }

    .hero-stats .stat-card {
        padding: 10px 4px;
        border-radius: 12px;
        text-align: center;
    }

    .hero-stats .stat-value {
        font-size: clamp(1.05rem, 4.2vw, 1.35rem);
        line-height: 1.1;
        margin-bottom: 3px;
    }

    .hero-stats .stat-label {
        font-size: clamp(0.62rem, 2.3vw, 0.72rem);
        line-height: 1.25;
    }
    .gastronomy-grid { grid-template-columns: 1fr; }
    .calc-grid { display: flex; flex-direction: column; }
    .calc-outputs { order: 1; margin-bottom: 20px; }
    .calc-inputs { order: 2; }
    .contact-grid { grid-template-columns: 1fr; }
    .vouchers-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .dishes-list { grid-template-columns: 1fr; }


    /* About: 2 cards per row on mobile */
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-bottom: 28px;
    }
    .about-card {
        padding: 18px 14px;
    }
    .about-card h3 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }
    .about-card p {
        font-size: 0.82rem;
        line-height: 1.5;
    }
    .about-icon { margin-bottom: 10px; }
    .about-icon .svg-icon-lg { width: 28px; height: 28px; }

    /* Synergy banner mobile styles */
    .synergy-banner {
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
        padding: 18px 16px;
    }
    .synergy-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    .synergy-icon .svg-icon {
        width: 20px;
        height: 20px;
    }
    .synergy-content h4 {
        font-size: 1.15rem;
        margin-bottom: 4px;
    }
    .synergy-content p {
        font-size: 0.84rem;
        line-height: 1.48;
    }

    /* Program Cards mobile styles - compact & space-efficient */
    .programs-grid {
        gap: 16px;
    }
    .program-card {
        padding: 18px 16px;
        border-radius: var(--radius-md);
    }
    .program-card h3 {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
    .program-list {
        gap: 6px;
    }
    .program-list li {
        font-size: 0.82rem;
        line-height: 1.4;
    }
    .program-list li .svg-icon {
        width: 14px;
        height: 14px;
        margin-top: 2px;
    }
    .card-cta-btn {
        margin-top: 14px;
        padding: 9px 14px;
        font-size: 0.8rem;
    }

    /* Complexes: swipe hint + unified 1-line segmented tab bar on mobile */
    .swipe-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        font-size: 0.72rem;
        color: var(--gold-bright);
        margin-bottom: 10px;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        font-weight: 500;
        opacity: 0.85;
    }

    .tabs-nav {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 4px;
        margin-bottom: 20px;
        padding: 4px;
        background: rgba(12, 22, 36, 0.85);
        border: 1px solid var(--glass-border-light);
        border-radius: 14px;
        backdrop-filter: blur(12px);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        width: 100%;
    }
    .tabs-nav::-webkit-scrollbar { display: none; }

    .tab-btn {
        flex: 0 0 auto;
        padding: 8px 12px;
        font-size: 0.78rem;
        font-weight: 600;
        border-radius: 10px;
        border: none;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        white-space: nowrap;
        background: transparent;
        color: var(--text-secondary);
        transition: var(--transition);
    }

    .tab-btn .svg-icon {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }

    /* Mobile Complexes Card - Photo on TOP with elegant hierarchy */
    .complex-display {
        padding: 16px 14px;
        min-height: 0;
    }

    .complex-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        min-height: auto;
    }

    .complex-image {
        order: -1;
        width: 100%;
        height: 200px;
        position: relative;
        border-radius: var(--radius-md);
        overflow: hidden;
        margin-bottom: 12px;
    }

    .complex-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .complex-info {
        display: flex;
        flex-direction: column;
    }

    .badge {
        font-size: 0.72rem;
        padding: 4px 10px;
        align-self: flex-start;
        margin-bottom: 6px;
    }

    .complex-info h3 {
        font-size: 1.55rem;
        margin: 2px 0 10px;
        color: var(--gold);
    }

    .complex-desc {
        font-size: 0.88rem;
        margin-bottom: 12px;
        line-height: 1.48;
        min-height: auto;
    }

    .complex-features {
        gap: 6px;
        margin-bottom: 14px;
        min-height: auto;
    }

    .feature-tag {
        font-size: 0.74rem;
        padding: 5px 10px;
    }

    .complex-effect {
        padding: 10px 12px;
        font-size: 0.82rem;
        gap: 8px;
        min-height: auto;
    }

    .complex-nav-arrow {
        top: 116px;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        background: rgba(7, 14, 23, 0.8);
        border: 1px solid rgba(212, 175, 55, 0.5);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 25;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    .complex-nav-arrow:active {
        transform: translateY(-50%) scale(0.9);
        background: var(--gold-gradient);
        color: #070e17;
    }
    .complex-nav-arrow.prev { left: 8px; }
    .complex-nav-arrow.next { right: 8px; }

    /* Gastronomy section mobile */
    .gastronomy-grid {
        grid-template-columns: 1fr;
        padding: 18px 16px;
        gap: 16px;
    }
    .gastronomy-img {
        height: 200px;
        border-radius: var(--radius-md);
        overflow: hidden;
    }
    .gastronomy-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .gastronomy-content h2 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    .gastronomy-content p {
        font-size: 0.88rem;
        margin-bottom: 14px;
        line-height: 1.5;
    }
    .dishes-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .dish-item {
        padding: 10px 12px;
        font-size: 0.84rem;
        border-radius: 8px;
    }

    /* Vouchers section mobile - horizontal swipe gallery carousel */
    .vouchers-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 14px;
        padding-bottom: 12px;
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .vouchers-grid::-webkit-scrollbar {
        display: none;
    }
    .voucher-card {
        flex: 0 0 82vw;
        max-width: 290px;
        scroll-snap-align: center;
        border-radius: var(--radius-md);
    }
    .voucher-cover {
        height: 125px;
    }
    .voucher-card-inner {
        padding: 14px 14px;
    }
    .voucher-header h3 {
        font-size: 1.15rem;
    }
    .voucher-price {
        font-size: 1.05rem;
    }
    .voucher-desc {
        font-size: 0.8rem;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    .voucher-features li {
        font-size: 0.78rem;
        gap: 5px;
    }

    /* Benefits section mobile - 2-column grid for space efficiency */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .benefit-card {
        padding: 14px 12px;
        border-radius: var(--radius-md);
    }
    .b-icon {
        width: 34px;
        height: 34px;
        margin-bottom: 8px;
    }
    .b-icon .svg-icon-lg {
        width: 18px;
        height: 18px;
    }
    .benefit-card h4 {
        font-size: 0.92rem;
        margin-bottom: 4px;
        line-height: 1.3;
    }
    .benefit-card p {
        font-size: 0.76rem;
        line-height: 1.4;
    }

    /* Concierge Script section mobile */
    .script-box {
        padding: 18px 16px;
        border-radius: var(--radius-md);
    }
    .script-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 16px;
    }
    .script-header h3 {
        font-size: 1.3rem;
    }
    .chat-container {
        gap: 10px;
    }
    .chat-bubble {
        max-width: 96%;
        padding: 12px 14px;
        font-size: 0.84rem;
        line-height: 1.48;
    }

    /* Calculator section mobile - output cards directly below Guest slider */
    .calc-card {
        padding: 18px 16px;
        border-radius: var(--radius-md);
    }
    .calc-header h2 {
        font-size: 1.5rem;
    }
    .calc-header p {
        font-size: 0.84rem;
    }
    .calc-grid {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    .calc-inputs {
        display: contents;
    }
    .calc-outputs {
        order: 1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 6px;
    }
    .calc-inputs .input-group:nth-child(1) {
        order: 2;
    }
    .calc-inputs .input-group:nth-child(2) {
        order: 3;
    }
    .calc-inputs .input-group:nth-child(3) {
        order: 4;
    }

    .input-group label {
        font-size: 0.82rem;
    }
    .input-group select, .input-group input[type="range"] {
        padding: 10px 12px;
        font-size: 0.86rem;
    }
    .out-card {
        padding: 12px 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 85px;
        box-sizing: border-box;
    }
    .out-label {
        font-size: 0.72rem;
        line-height: 1.25;
        min-height: 2.5em;
        margin-bottom: 4px;
        display: flex;
        align-items: center;
    }
    .out-value {
        font-size: clamp(0.92rem, 3.8vw, 1.22rem);
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.1;
    }
    .out-sub {
        font-size: 0.7rem;
        line-height: 1.25;
    }
    .rate-note {
        font-size: 0.76rem;
        padding: 8px 10px;
    }

    /* Formats section mobile */
    .formats-panel {
        padding: 20px 16px;
        border-radius: var(--radius-md);
    }
    .formats-panel h3 {
        font-size: 1.4rem;
    }
    .formats-panel p {
        font-size: 0.86rem;
    }
    .warning-box {
        padding: 14px 14px;
        gap: 12px;
        font-size: 0.82rem;
    }
    .custom-partnership-card {
        padding: 16px 16px;
        gap: 12px;
    }
    .custom-partnership-card h4 {
        font-size: 1.1rem;
    }
    .custom-partnership-card p {
        font-size: 0.82rem;
    }

    /* Contact section mobile - redesigned for maximum elegance */
    .contact-card {
        padding: 20px 16px;
        border-radius: var(--radius-md);
    }
    .contact-header h2 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    .contact-header p {
        font-size: 0.84rem;
        line-height: 1.45;
        margin-bottom: 20px;
    }
    .c-person {
        padding: 12px 14px;
        gap: 12px;
        border-radius: var(--radius-md);
        margin-bottom: 12px;
    }
    .c-avatar {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .c-person h4 {
        font-size: 0.98rem;
    }
    .c-person p {
        font-size: 0.78rem;
    }
    .c-links {
        gap: 8px;
        margin-bottom: 20px;
    }
    .c-link, .c-loc {
        padding: 10px 12px;
        font-size: 0.82rem;
        border-radius: 8px;
    }
    .contact-form {
        gap: 12px;
    }
    .contact-form input, .contact-form select {
        padding: 10px 14px;
        font-size: 0.86rem;
        touch-action: manipulation;
    }
    .contact-form .btn {
        touch-action: manipulation;
    }
}

@media (max-width: 420px) {
    .about-grid { gap: 10px; }
    .about-card { padding: 16px 12px; }
    .about-card h3 { font-size: 0.98rem; }
    .about-card p { font-size: 0.78rem; }
    .tab-btn { padding: 9px 12px; font-size: 0.78rem; }
}

/* Cookie Consent Banner - GDPR & Google Compliant */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: calc(100% - 48px);
    max-width: 720px;
    background: rgba(10, 20, 32, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border-light);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.15);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.cookie-text .svg-icon {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-actions .btn {
    padding: 8px 16px;
    font-size: 0.82rem;
    border-radius: 10px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 16px;
        width: calc(100% - 24px);
        padding: 14px 16px;
    }
    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .cookie-text {
        font-size: 0.78rem;
    }
    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }
    .cookie-actions .btn {
        flex: 1;
        text-align: center;
        justify-content: center;
    }
}
