/* ==========================================================================
   CSS Design System & Variables
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-matte: #0a0a0a;
    --bg-matte-light: #121212;
    --gold-accent: #dfb097;
    --gold-accent-rgb: 223, 176, 151;
    --white-crisp: #ffffff;
    --silver-text: #b0b0b0;
    --silver-muted: #666666;
    
    /* Typography */
    --font-heading: 'Syne', 'Montserrat', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-alt: 'Montserrat', sans-serif;

    /* Spacing & Borders */
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    --border-gold: 1px solid rgba(var(--gold-accent-rgb), 0.3);
    --border-gold-glow: 1px solid rgba(var(--gold-accent-rgb), 0.8);
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
    
    /* Animation Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   Global Reset & Base Style
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-matte);
}

body {
    background-color: var(--bg-matte);
    color: var(--white-crisp);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-matte);
}
::-webkit-scrollbar-thumb {
    background: rgba(var(--gold-accent-rgb), 0.3);
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-accent);
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

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

.section-padding {
    padding: 120px 0;
}

.text-gold {
    color: var(--gold-accent);
}

/* ==========================================================================
   Reusable UI Elements & Classes
   ========================================================================== */
/* Glassmorphism Panel */
.glass-panel {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--border-glass);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

/* Glowing/Elevating Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-alt);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

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

.btn-full {
    width: 100%;
}

.btn-primary-glow {
    background-color: var(--gold-accent);
    color: #000;
    border: 1px solid var(--gold-accent);
    box-shadow: 0 4px 15px rgba(var(--gold-accent-rgb), 0.25);
}

.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--gold-accent-rgb), 0.5);
    border-color: rgba(var(--gold-accent-rgb), 0.9);
    background-color: transparent;
    color: var(--white-crisp);
}

.btn-secondary-outline {
    background-color: transparent;
    color: var(--white-crisp);
    border: 1px solid rgba(var(--gold-accent-rgb), 0.4);
}

.btn-secondary-outline:hover {
    transform: translateY(-3px);
    border-color: var(--gold-accent);
    box-shadow: 0 4px 20px rgba(var(--gold-accent-rgb), 0.3);
    color: var(--gold-accent);
}

/* Section Headers */
.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: var(--font-alt);
    color: var(--gold-accent);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white-crisp);
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--gold-accent);
    margin: 20px auto 0 auto;
    box-shadow: 0 0 10px rgba(var(--gold-accent-rgb), 0.5);
}

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

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: var(--border-glass);
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(5, 5, 5, 0.9);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--white-crisp);
}

.logo span {
    color: var(--gold-accent);
}

.logo-studio {
    font-family: var(--font-alt);
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    display: block;
    margin-top: -4px;
    font-weight: 500;
    color: var(--silver-text);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-alt);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--silver-text);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-accent);
    transition: var(--transition-smooth);
    box-shadow: 0 0 8px rgba(var(--gold-accent-rgb), 0.8);
}

.nav-link:hover, 
.nav-link.active {
    color: var(--white-crisp);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--white-crisp);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   Hero Section (Ultra-Attractive)
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.95) 85%),
                linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.95) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    padding: 0 24px;
}

.hero-content {
    max-width: 780px;
}

.hero-subtitle {
    font-family: var(--font-alt);
    font-size: 0.9rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-accent);
    display: block;
    margin-bottom: 24px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--silver-text);
    margin-bottom: 40px;
    max-width: 620px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    display: block;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--gold-accent);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

.scroll-text {
    font-family: var(--font-alt);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--silver-muted);
}

@keyframes scroll-wheel {
    0% { top: 8px; opacity: 1; }
    50% { top: 16px; opacity: 0.3; }
    100% { top: 8px; opacity: 1; }
}

/* ==========================================================================
   Featured Stories Section
   ========================================================================== */
.stories-section {
    background-color: var(--bg-matte);
    position: relative;
}

.stories-carousel-container {
    position: relative;
    padding: 0 40px;
}

.stories-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    padding: 20px 0;
    cursor: grab;
}

.stories-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.stories-carousel.active {
    cursor: grabbing;
}

.story-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    height: 480px;
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: var(--transition-smooth);
    border: var(--border-glass);
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(var(--gold-accent-rgb), 0.15);
    border-color: rgba(var(--gold-accent-rgb), 0.3);
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.85) 100%);
    z-index: 1;
}

.story-glass-footer {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(10, 10, 10, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--border-glass);
    border-radius: var(--radius-md);
    padding: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(0);
    transition: var(--transition-smooth);
}

.story-meta {
    max-width: calc(100% - 50px);
}

.story-tag {
    font-family: var(--font-alt);
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--gold-accent);
    font-weight: 600;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 6px;
}

.story-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--white-crisp);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.story-location {
    font-size: 0.75rem;
    color: var(--silver-text);
}

.story-location i {
    color: var(--gold-accent);
    margin-right: 4px;
}

.story-arrow-btn {
    width: 40px;
    height: 40px;
    background-color: var(--white-crisp);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.story-card:hover .story-arrow-btn {
    background-color: var(--gold-accent);
    box-shadow: 0 0 15px rgba(var(--gold-accent-rgb), 0.6);
}

/* Carousel Nav Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(10, 10, 10, 0.6);
    border: var(--border-glass);
    border-radius: 50%;
    color: var(--white-crisp);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 5;
    transition: var(--transition-smooth);
}

.carousel-nav:hover {
    background-color: var(--gold-accent);
    color: #000;
    border-color: var(--gold-accent);
    box-shadow: 0 0 15px rgba(var(--gold-accent-rgb), 0.4);
}

.carousel-nav.prev { left: 0; }
.carousel-nav.next { right: 0; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--silver-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    width: 24px;
    background-color: var(--gold-accent);
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(var(--gold-accent-rgb), 0.5);
}

/* ==========================================================================
   Portfolio Gallery (Masonry Grid with Lightbox)
   ========================================================================== */
.portfolio-section {
    background-color: var(--bg-matte-light);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    background-color: rgba(255,255,255,0.03);
    border: var(--border-glass);
    color: var(--silver-text);
    padding: 10px 24px;
    font-family: var(--font-alt);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    border-color: rgba(var(--gold-accent-rgb), 0.4);
    color: var(--white-crisp);
    box-shadow: 0 0 12px rgba(var(--gold-accent-rgb), 0.1);
}

.filter-btn.active {
    background-color: var(--gold-accent);
    color: #000;
    border-color: var(--gold-accent);
    box-shadow: 0 0 15px rgba(var(--gold-accent-rgb), 0.4);
    font-weight: 600;
}

/* Masonry Layout */
.portfolio-grid {
    column-count: 3;
    column-gap: 24px;
}

.grid-item {
    break-inside: avoid;
    margin-bottom: 24px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    border: var(--border-glass);
    transition: var(--transition-smooth);
    background-color: #000;
    cursor: pointer;
}

.grid-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.grid-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.grid-item:hover .grid-img {
    transform: scale(1.08);
}

.grid-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.9) 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: var(--transition-smooth);
    z-index: 2;
}

.grid-item:hover .grid-hover-overlay {
    opacity: 1;
}

.grid-hover-content {
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.grid-item:hover .grid-hover-content {
    transform: translateY(0);
}

.item-category {
    font-family: var(--font-alt);
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--gold-accent);
    font-weight: 600;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 8px;
}

.item-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white-crisp);
    margin-bottom: 15px;
}

.view-btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-alt);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-accent);
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: var(--transition-fast);
}

.grid-item:hover .view-btn-glow {
    border-color: var(--gold-accent);
    text-shadow: 0 0 10px rgba(var(--gold-accent-rgb), 0.5);
}

/* ==========================================================================
   Luxury Packages & Pricing
   ========================================================================== */
.pricing-section {
    background-color: var(--bg-matte);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 15fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    padding: 50px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    border-color: rgba(var(--gold-accent-rgb), 0.2);
}

.featured-card {
    border-color: rgba(var(--gold-accent-rgb), 0.6);
    box-shadow: 0 10px 30px rgba(var(--gold-accent-rgb), 0.05);
}

.featured-card:hover {
    border-color: var(--gold-accent);
    box-shadow: 0 15px 40px rgba(var(--gold-accent-rgb), 0.15);
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold-accent);
    color: #000;
    font-family: var(--font-alt);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(var(--gold-accent-rgb), 0.4);
}

.card-badge-placeholder {
    height: 15px;
    margin-top: -15px;
}

.package-name {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.package-description {
    font-size: 0.9rem;
    color: var(--silver-text);
    margin-bottom: 30px;
    min-height: 48px;
}

.package-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 40px;
}

.package-price .currency {
    font-size: 1.6rem;
    color: var(--gold-accent);
    font-weight: 500;
}

.package-price .price-val {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white-crisp);
    letter-spacing: -0.02em;
    margin: 0 4px;
}

.package-price .period {
    color: var(--silver-muted);
    font-size: 0.9rem;
}

.package-features {
    list-style: none;
    margin-bottom: 40px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--silver-text);
}

.feature-icon {
    color: var(--gold-accent);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: rgba(var(--gold-accent-rgb), 0.1);
    border-radius: 50%;
}

/* ==========================================================================
   Reserve Date Form (Floating Design)
   ========================================================================== */
.reserve-section {
    background-color: var(--bg-matte-light);
    position: relative;
    overflow: hidden;
}

.reserve-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.reserve-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.08;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background-color: var(--gold-accent);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background-color: #ffffff;
    bottom: -150px;
    left: -150px;
}

.reserve-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.reserve-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 15px 0 24px 0;
}

.reserve-text {
    color: var(--silver-text);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.info-badges {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-badge {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-badge i {
    font-size: 1.5rem;
    padding: 12px;
    background: rgba(255,255,255,0.02);
    border: var(--border-glass);
    border-radius: var(--radius-md);
}

.info-badge h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.info-badge p {
    font-size: 0.85rem;
    color: var(--silver-text);
}

.reserve-form-container {
    perspective: 1000px;
}

.reserve-glass-card {
    padding: 40px;
}

.reserve-glass-card .card-header {
    margin-bottom: 30px;
}

.reserve-glass-card .card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.reserve-glass-card .card-header p {
    color: var(--silver-text);
    font-size: 0.9rem;
}

.reserve-form .form-group {
    margin-bottom: 24px;
}

.reserve-form label {
    display: block;
    font-family: var(--font-alt);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--silver-text);
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--silver-muted);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.reserve-form input,
.reserve-form select {
    width: 100%;
    padding: 14px 18px 14px 50px;
    background: rgba(255,255,255,0.02);
    border: var(--border-glass);
    border-radius: var(--radius-sm);
    color: var(--white-crisp);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.reserve-form input::placeholder {
    color: var(--silver-muted);
}

.reserve-form input:focus,
.reserve-form select:focus {
    outline: none;
    border-color: var(--gold-accent);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 0 15px rgba(var(--gold-accent-rgb), 0.15);
}

.reserve-form input:focus + .input-icon,
.reserve-form select:focus + .input-icon {
    color: var(--gold-accent);
}

/* Style Select Options dropdown list background */
.reserve-form select option {
    background-color: var(--bg-matte-light);
    color: var(--white-crisp);
}

.btn-loader {
    margin-left: 8px;
}

.hidden {
    display: none !important;
}

/* ==========================================================================
   Studio Location & Contact
   ========================================================================== */
.contact-section {
    background-color: var(--bg-matte);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    padding: 50px 30px;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--gold-accent-rgb), 0.3);
    box-shadow: 0 15px 40px rgba(var(--gold-accent-rgb), 0.08);
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    border: var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold-accent);
    margin: 0 auto 24px auto;
    background: rgba(255,255,255,0.01);
    transition: var(--transition-smooth);
}

.contact-card:hover .contact-icon-wrapper {
    background: var(--gold-accent);
    color: #000;
    box-shadow: 0 0 20px rgba(var(--gold-accent-rgb), 0.5);
    border-color: var(--gold-accent);
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.contact-detail {
    font-size: 1.05rem;
    color: var(--white-crisp);
    font-weight: 500;
    margin-bottom: 6px;
}

.contact-sub {
    font-size: 0.85rem;
    color: var(--silver-muted);
}

/* ==========================================================================
   Premium Footer
   ========================================================================== */
.footer {
    background-color: #050505;
    border-top: var(--border-glass);
    padding: 80px 0 40px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand {
    max-width: 600px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    letter-spacing: -0.04em;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-logo span {
    color: var(--gold-accent);
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--silver-text);
    line-height: 1.7;
}

.footer-social-links {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.social-icon {
    width: 48px;
    height: 48px;
    border: var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver-text);
    font-size: 1.1rem;
    background: rgba(255,255,255,0.01);
    transition: var(--transition-smooth);
}

.social-icon:hover {
    color: #000;
    background-color: var(--gold-accent);
    border-color: var(--gold-accent);
    box-shadow: 0 0 18px rgba(var(--gold-accent-rgb), 0.6);
    transform: translateY(-3px);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255,255,255,0.06);
    margin-bottom: 30px;
}

.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--silver-muted);
}

.footer-bottom a {
    color: var(--gold-accent);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Full-Screen Lightbox Modal
   ========================================================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    color: var(--white-crisp);
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 2010;
}

.lightbox-close:hover {
    color: var(--gold-accent);
    transform: rotate(90deg);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.03);
    border: var(--border-glass);
    border-radius: 50%;
    color: var(--white-crisp);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2010;
    transition: var(--transition-smooth);
}

.lightbox-arrow:hover {
    background: var(--gold-accent);
    color: #000;
    border-color: var(--gold-accent);
    box-shadow: 0 0 20px rgba(var(--gold-accent-rgb), 0.5);
}

.lightbox-arrow-left { left: 40px; }
.lightbox-arrow-right { right: 40px; }

.lightbox-content {
    max-width: 80%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border: var(--border-glass);
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.lightbox-info-bar {
    width: 100%;
    margin-top: 20px;
    text-align: center;
    max-width: 600px;
}

.lightbox-category {
    font-family: var(--font-alt);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-accent);
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.lightbox-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.lightbox-desc {
    font-size: 0.9rem;
    color: var(--silver-text);
}

/* ==========================================================================
   Responsive & Adaptive Media Queries
   ========================================================================== */

/* Large Tablets and Laptops */
@media (max-width: 1199px) {
    .pricing-grid {
        gap: 20px;
    }
    .pricing-card {
        padding: 40px 24px;
    }
    .portfolio-grid {
        column-count: 3;
    }
}

/* Small Laptops & Horizontal Tablets */
@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 3.6rem;
    }
    
    .stories-carousel-container {
        padding: 0;
    }
    
    .story-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .portfolio-grid {
        column-count: 2;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .reserve-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Mobile Devices & Verticals */
@media (max-width: 767px) {
    .header-container {
        padding: 14px 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 76px);
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-cta {
        display: none; /* Put in mobile menu or hide */
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 0.25em;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 15px;
    }
    
    .story-card {
        flex: 0 0 100%;
    }
    
    .portfolio-grid {
        column-count: 1;
    }
    
    .reserve-glass-card {
        padding: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .lightbox-arrow {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    
    .lightbox-arrow-left { left: 15px; }
    .lightbox-arrow-right { right: 15px; }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
    }
}
