/* ==========================================================================
   DESIGN SYSTEM: LUMINOUS ETHER (bubblebaba)
   Minimalist & Contemporary Artist Portfolio Style
   ========================================================================== */

/* 1. Core Variables & Root Setup */
:root {
    /* Color Tokens from DESIGN.md */
    --color-surface: #fbf8ff;
    --color-surface-dim: #dbd9df;
    --color-surface-bright: #fbf8ff;
    --color-surface-lowest: #ffffff;
    --color-surface-low: #f5f2f9;
    --color-surface-container: #efedf3;
    --color-surface-high: #eae7ee;
    --color-surface-highest: #e4e1e8;
    --color-on-surface: #1b1b20;
    --color-on-surface-variant: #46464d;
    --color-inverse-surface: #303035;
    --color-inverse-on-surface: #f2f0f6;
    --color-outline: #76767e;
    --color-outline-variant: #c6c6cd;
    --color-surface-tint: #575d77;
    
    --color-primary: #3b3f54; /* Softer, high-contrast charcoal periwinkle */
    --color-on-primary: #ffffff;
    --color-primary-container: #CCD2F0; /* Core dreamy periwinkle wash */
    --color-on-primary-container: #3b3f54;
    --color-inverse-primary: #bfc5e3;
    
    --color-secondary: #5b5e68;
    --color-on-secondary: #ffffff;
    --color-secondary-container: #e0e2ee;
    --color-on-secondary-container: #61646e;
    
    --color-tertiary: #5e5e5e;
    --color-on-tertiary: #ffffff;
    --color-tertiary-container: #d4d3d2;
    --color-on-tertiary-container: #5a5b5a;
    
    --color-background: #CCD2F0; /* Dreamy Pastel Lavender Background */
    --color-on-background: #1b1b20;
    --color-surface-variant: #e4e1e8;

    /* Spacing Tokens (Spacious & Airy) */
    --spacing-base: 8px;
    --spacing-container-max: 1200px;
    --spacing-gutter: 40px;
    --spacing-margin-page: 80px;
    --spacing-section-gap: 160px; /* Big breathing room */

    /* Border Radius Tokens */
    --rounded-sm: 0px;       /* Task 4: Sharp corners for high-end minimalist styling */
    --rounded-default: 0px;  /* Task 4: Sharp corners */
    --rounded-md: 0px;       /* Task 4: Sharp corners */
    --rounded-lg: 0px;       /* Task 4: Sharp corners for cards and gallery items */
    --rounded-xl: 0px;       /* Task 4: Sharp corners */
    --rounded-full: 9999px;

    /* Transitions */
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-medium: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.15s ease;
}

/* 2. Standard CSS Reset & General */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    color: var(--color-on-surface);
    background-color: var(--color-background); /* Dreamy periwinkle wash */
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: rgba(204, 210, 240, 0.3);
}
::-webkit-scrollbar-thumb {
    background: rgba(59, 63, 84, 0.3);
    border-radius: var(--rounded-full);
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 63, 84, 0.5);
}

/* Interactive Floating Canvas Background */
#bubble-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* Page wrapper to isolate content stack above the background canvas */
.page-wrapper {
    position: relative;
    z-index: 2;
}

/* Container Padding Helper */
.container-padding {
    max-width: var(--spacing-container-max);
    margin: 0 auto;
    padding: var(--spacing-section-gap) var(--spacing-margin-page);
}

/* Background Wash Utility */
.bg-wash {
    background-color: rgba(239, 237, 243, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* 3. Typography Styles */
h1, h2, h3, h4, .font-serif {
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 400;
    color: var(--color-primary);
}

.font-handwritten {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 300;
}

.text-primary {
    color: var(--color-primary) !important;
}

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

/* Screen-reader-only: visually hidden but accessible to search engines & assistive tech */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.mb-16 {
    margin-bottom: 64px;
}

.pt-8 {
    padding-top: 32px;
}

/* 4. Glassmorphism Design System (Ethereal Material) */
.glass-panel, .glass-card {
    background: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: var(--rounded-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-slow);
    position: relative;
}

.glass-panel::after, .glass-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 10px 40px 0 rgba(59, 63, 84, 0.02);
    pointer-events: none;
    z-index: -1;
}

/* 5. Custom Ethereal Bubble Cursor (WOW Factor) */
#custom-cursor {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5) 0%, rgba(204, 210, 240, 0.15) 60%, rgba(59, 63, 84, 0.2) 100%);
    border-radius: var(--rounded-full);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.4s ease;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.6), 0 4px 12px rgba(59, 63, 84, 0.08);
    opacity: 0; /* Default invisible, JS displays it on mouse move */
}

#custom-cursor.hovering {
    width: 40px;
    height: 40px;
    border-color: rgba(255, 255, 255, 0.95);
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.6) 0%, rgba(204, 210, 240, 0.2) 40%, rgba(59, 63, 84, 0.3) 100%);
    animation: bubble-pulsate 1.5s infinite ease-in-out;
}

@keyframes bubble-pulsate {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.06); }
}

/* Hide native cursor for beautiful immersive vibe on desktop */
@media (hover: hover) and (pointer: fine) {
    html, body, html *, body * {
        cursor: none !important;
    }
}

/* 6. Buttons & Inputs */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.32em; /* Task 4: Premium wide spacing between letters */
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--rounded-default); /* Task 4: Sharp corners (0px) */
    transition: var(--transition-medium);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary); /* Task 4: Elegant thin border outline only */
}

.btn-primary:hover {
    background-color: rgba(59, 63, 84, 0.07);
    color: var(--color-primary);
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: rgba(59, 63, 84, 0.07);
    color: var(--color-primary);
    opacity: 1;
}

.btn-full-width {
    width: 100%;
}

/* Form inputs & textareas styling */
.form-group {
    position: relative;
    margin-bottom: 32px;
    width: 100%;
}

.form-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 8px;
    opacity: 0.8;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(59, 63, 84, 0.2);
    padding: 12px 0;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--color-on-surface);
    transition: var(--transition-fast);
    outline: none;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-primary);
    transition: var(--transition-medium);
}

.form-input:focus ~ .form-line {
    width: 100%;
}

.form-input::placeholder {
    color: var(--color-on-surface-variant);
    opacity: 0.4;
}

/* 7. Layout Components */

/* TOP UTILITY BAR */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(59, 63, 84, 0.03);
    padding: 14px var(--spacing-margin-page);
    font-size: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-primary);
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar a {
    color: inherit;
    text-decoration: none;
    margin-right: var(--spacing-gutter);
    transition: var(--transition-fast);
}

.top-bar a:hover {
    opacity: 0.6;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-gutter);
}

.top-bar-location {
    display: flex;
    align-items: center;
}

/* Bilingual Language Toggler (Frosted Selector) */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: var(--rounded-full);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.lang-btn {
    background: none;
    border: none;
    font-size: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    opacity: 0.35;
    transition: var(--transition-fast);
    padding: 2px 6px;
}

.lang-btn.active {
    opacity: 1;
    color: var(--color-primary);
}

.lang-separator {
    color: var(--color-primary);
    opacity: 0.15;
    font-size: 9px;
}

/* NAVIGATION HEADER */
.glass-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(204, 210, 240, 0.4); 
    backdrop-filter: saturate(150%) blur(40px);
    -webkit-backdrop-filter: saturate(150%) blur(40px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 99;
    transition: var(--transition-medium);
}

.nav-container {
    max-width: var(--spacing-container-max);
    margin: 0 auto;
    padding: 24px var(--spacing-margin-page);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* NAV LOGO IMAGE */
.nav-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-medium);
}

.nav-logo-link:hover {
    opacity: 0.72;
}

.nav-logo-img {
    height: 56px;
    width: auto;
    display: block;
    /* mix-blend-mode blends white logo bg into the periwinkle nav cleanly */
    mix-blend-mode: multiply;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-gutter);
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-on-surface-variant);
    text-decoration: none;
    padding: 6px 0;
    border-bottom: 1.5px solid transparent;
    transition: var(--transition-medium);
}

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

.nav-link.active {
    color: var(--color-primary);
    border-bottom: 1.5px solid var(--color-primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
}

.menu-text-toggle {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-primary);
}

/* Mobile Dropdown Nav Menu */
.mobile-menu {
    display: none;
    width: 100%;
    background: rgba(204, 210, 240, 0.95);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 24px var(--spacing-margin-page);
    flex-direction: column;
    gap: 20px;
    animation: slide-down 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mobile-menu a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid rgba(59, 63, 84, 0.05);
}

@keyframes slide-down {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Enforce mobile menu hiding on wider screen viewports */
@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
}

/* 8. Page Sections Styling */

/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: 90vh; /* Fixed invalid property min-h */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--spacing-section-gap) var(--spacing-margin-page);
    overflow: hidden;
}

.hero-media-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background-color: #171a29; /* Deep indigo wash */
}

.hero-media-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 Aspect Ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: brightness(0.35) saturate(0.85) blur(1px); /* Moody cinematic darkening */
    border: none;
}

.hero-image-filter {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) blur(4px) brightness(0.35);
    transform: scale(1.02);
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(204, 210, 240, 0) 40%, #CCD2F0 98%);
}

.hero-content {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.hero-title {
    font-size: 108px;
    line-height: 108px;
    letter-spacing: -0.03em;
    font-weight: 400;
    color: var(--color-primary);
    font-family: 'EB Garamond', Georgia, serif;
    text-shadow: 0 4px 16px rgba(204, 210, 240, 0.2);
}

.hero-subtitle {
    font-family: 'EB Garamond', serif;
    font-size: 24px;
    line-height: 32px;
    font-style: italic;
    color: rgba(59, 63, 84, 0.85);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* HERO LOGO (bubblebaba.png shown in hero above subtitle) */
.hero-logo-wrap {
    margin-bottom: 8px;
}

.hero-logo-img {
    height: 100px;
    width: auto;
    display: block;
    margin: 0 auto;
    /* The logo is dark ink on white — invert makes it glow on dark hero bg */
    filter: invert(1) brightness(2);
    opacity: 0.88;
}

.hero-intro {
    max-width: 680px;
    margin: 0 auto;
}

.hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    line-height: 32px;
    color: rgba(27, 27, 32, 0.9);
    font-weight: 300;
}

.hero-cta-box {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* SECTION HEADERS */
.section-header {
    margin-bottom: 64px;
}

.section-title {
    font-size: 48px;
    line-height: 56px;
    letter-spacing: 0.05em;
    color: var(--color-primary);
}

/* OFFER SECTION */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Spacious 2 columns instead of 3 */
    gap: 48px;
}

.offer-card {
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--rounded-lg);
    transition: var(--transition-slow);
}

.offer-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.45);
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    border-left: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 12px 40px rgba(59, 63, 84, 0.02);
}

.card-title {
    font-size: 26px;
    line-height: 34px;
    color: var(--color-primary);
    font-weight: 400;
}

.card-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 24px;
    color: var(--color-on-surface-variant);
    font-weight: 300;
}

/* REPERTUAR (PERFORMANCE FORMATS) SECTION — text-only, single column */
.repertuar-grid {
    display: block;
    max-width: 760px;
}

.repertuar-content-box {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.showcase-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.showcase-item {
    border-left: 1.5px solid rgba(59, 63, 84, 0.12);
    padding-left: 32px;
    transition: var(--transition-medium);
}

.showcase-item:hover {
    border-left-color: var(--color-primary);
}

.showcase-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.showcase-desc {
    font-size: 16px;
    line-height: 26px;
    color: var(--color-on-surface-variant);
    font-weight: 300;
}

.repertuar-visual-box {
    position: sticky;
    top: 140px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-image-container {
    width: 85%;
    aspect-ratio: 1 / 1;
    border-radius: var(--rounded-full);
    padding: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(59, 63, 84, 0.08);
}

.circle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--rounded-full);
}

.floating-paper-accent {
    position: absolute;
    bottom: -16px;
    left: -20px;
    padding: 24px 32px;
    border-radius: var(--rounded-md);
    max-width: 280px;
    transform: rotate(-3deg);
    animation: floating-sway-opp 4s infinite ease-in-out;
}

.hand-drawn-arrow {
    position: absolute;
    bottom: -35px;
    right: 20px;
    pointer-events: none;
}

.hand-drawn-arrow path {
    stroke: var(--color-primary);
}

@keyframes floating-sway-opp {
    0%, 100% { transform: rotate(-3deg) translateY(0); }
    50% { transform: rotate(-1.5deg) translateY(4px); }
}

/* GALLERY SECTION (Visual, Large grid, minimal captions) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns for high-end cinematic display */
    gap: 32px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--rounded-lg);
    z-index: 10;
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.02);
}

/* Gallery video card — iframe fills container via absolute positioning */
.gallery-video-card {
    position: relative;
    overflow: hidden;
    background: #0d0f1a;
}

.gallery-video-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Subtle VIDEO label shown over the embed */
.video-tag {
    position: absolute;
    top: 18px;
    left: 22px;
    z-index: 5;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
}

/* Fallback link shown behind the iframe — visible if YouTube is blocked */
.video-fallback-card {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 15, 26, 0.85);
    text-decoration: none;
    transition: var(--transition-medium);
}

.video-fallback-card:hover {
    background: rgba(13, 15, 26, 0.7);
}

.video-fallback-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 14px 32px;
}

/* Iframe sits above the fallback card (z-index 2 vs 1) */
.gallery-video-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    z-index: 2;
}

.item-large {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
}

.item-wide {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
}

/* Gallery Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(23, 26, 41, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.5);
    cursor: none;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: white;
}

.lightbox-content {
    max-width: 80vw;
    max-height: 80vh;
    border-radius: var(--rounded-md);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
    animation: zoom-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    object-fit: contain;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 40px;
    padding: 20px;
    cursor: none;
    transition: var(--transition-fast);
}

.lightbox-nav:hover {
    color: white;
}

.nav-prev { left: 40px; }
.nav-next { right: 40px; }

@keyframes zoom-in {
    from { transform: scale(0.97); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* SHOP SECTION (Clean & minimal) */
.shop-capsule {
    border-radius: var(--rounded-lg);
    padding: var(--spacing-section-gap) var(--spacing-gutter);
    text-align: center;
    overflow: hidden;
    z-index: 5;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.shop-glow-orb-left, .shop-glow-orb-right {
    display: none;
}

.shop-inner-content {
    max-width: 620px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.shop-title {
    font-size: 38px;
    line-height: 48px;
    letter-spacing: -0.01em;
    color: var(--color-primary);
}

.uppercase-wide {
    letter-spacing: 0.32em !important;
}

/* CONTACT SECTION — centred single-column after form removal */
.contact-centered {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    text-align: center;
}

.contact-centered .section-title {
    text-align: center;
}

/* Primary email call-to-action link */
.contact-email-cta {
    display: inline-block;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 22px;
    font-style: italic;
    color: var(--color-primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(59, 63, 84, 0.3);
    padding-bottom: 4px;
    letter-spacing: 0.03em;
    transition: var(--transition-medium);
}

.contact-email-cta:hover {
    border-bottom-color: var(--color-primary);
    opacity: 0.7;
}

.contact-centered .contact-methods {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.contact-card {
    display: flex;
    align-items: center;
    padding: 20px 28px;
    border-radius: var(--rounded-md);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.contact-card-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: 4px;
    opacity: 0.7;
}

.contact-card-text a, .contact-location-text {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-card-text a:hover {
    opacity: 0.7;
}

.contact-bottom-accent {
    margin-top: 16px;
}

/* BOOKING INFO BLOCK — open, centred, editorial */
.booking-info {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
    padding: 0;
}

/* Thin decorative top rule */
.booking-rule {
    width: 40px;
    height: 1px;
    background: rgba(59, 63, 84, 0.25);
    margin-bottom: 40px;
}

.booking-title {
    font-size: 26px;
    line-height: 36px;
    font-style: italic;
    color: var(--color-primary);
    font-weight: 400;
    margin: 0 0 32px 0;
    letter-spacing: 0.01em;
}

.booking-body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 32px;
    color: rgba(59, 63, 84, 0.65);
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 40px 0;
}

/* Minimal uppercase button — thin border, no fill */
.booking-cta {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-primary);
    text-decoration: none;
    border: 1px solid rgba(59, 63, 84, 0.4);
    padding: 14px 36px;
    transition: var(--transition-medium);
    background: transparent;
}

.booking-cta:hover {
    background: rgba(59, 63, 84, 0.06);
    border-color: var(--color-primary);
}

@media (max-width: 768px) {
    .booking-title {
        font-size: 22px;
        line-height: 32px;
    }

    .booking-cta {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
    }
}

.contact-form-card {
    padding: 48px;
    border-radius: var(--rounded-lg);
}

.magic-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Feedback banner in contact form */
.form-feedback {
    padding: 14px;
    border-radius: var(--rounded-sm);
    font-size: 13px;
    font-weight: 600;
    margin-top: 12px;
    text-align: center;
}

.form-feedback.success {
    background-color: rgba(255, 255, 255, 0.5);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.form-feedback.error {
    background-color: rgba(240, 200, 200, 0.35);
    color: #8a1f1f;
    border: 1px solid #8a1f1f;
}

.hidden {
    display: none !important;
}

/* 9. Footer & FAB */

/* FOOTER */
.glass-footer {
    background: rgba(204, 210, 240, 0.3);
    backdrop-filter: blur(30px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 64px var(--spacing-margin-page);
    position: relative;
    z-index: 10;
    margin-top: var(--spacing-section-gap);
}

.footer-container {
    max-width: var(--spacing-container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-gutter);
}

.footer-brand {
    font-size: 28px;
    color: var(--color-primary);
}

/* FOOTER LOGO IMAGE */
.footer-logo-img {
    height: 32px;
    width: auto;
    display: block;
    opacity: 0.75;
    mix-blend-mode: multiply;
    transition: var(--transition-fast);
}

.footer-logo-img:hover {
    opacity: 1;
}

.footer-copyright {
    font-size: 13px;
    color: var(--color-on-primary-container);
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: var(--spacing-gutter);
}

.footer-links a {
    font-size: 13px;
    color: var(--color-primary);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
}

/* 10. Responsive Breakpoints (Mobile-First Optimization) */

@media (max-width: 1024px) {
    :root {
        --spacing-margin-page: 40px;
        --spacing-section-gap: 120px;
    }
    
    .hero-title {
        font-size: 80px;
        line-height: 80px;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .repertuar-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-section-gap);
    }
    
    .repertuar-visual-box {
        order: -1;
        position: static;
    }
    
    .circle-image-container {
        width: 60%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .gallery-item, .item-large, .item-wide {
        grid-column: span 1;
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 768px) {
    .top-bar-contact {
        display: none;
    }
    
    .top-bar {
        padding: 12px var(--spacing-margin-page);
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 56px;
        line-height: 60px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        line-height: 26px;
    }
    
    .hero-desc {
        font-size: 17px;
        line-height: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
    }
    
    .circle-image-container {
        width: 80%;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 36px;
    }
    
    .lightbox-nav {
        font-size: 32px;
        padding: 10px;
    }
    
    .nav-prev { left: 10px; }
    .nav-next { right: 10px; }
    
    .shop-title {
        font-size: 28px;
        line-height: 38px;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}
