/* =========================================
   Ruby Nail Spa - Premium CSS
   ========================================= */

/* --- CSS Variables --- */
:root {
    --primary-black: #171810;
    --secondary-black: #171810;
    --primary-gold: #C5A059;
    --light-gold: #E8D399;
    --text-light: #F5F5F5;
    --text-muted: #A0A0A0;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-black);
    color: var(--text-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeSpeed;
}

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

ul {
    list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all var(--transition-smooth);
    cursor: pointer;
}

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

.btn-gold:hover {
    background-color: transparent;
    color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.3);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    padding: 6px 16px;
    font-size: 12px;
}

.btn-outline-gold:hover {
    background-color: var(--primary-gold);
    color: var(--primary-black);
}

/* =========================================
   Header Styles
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* --- Top Bar --- */
.top-bar {
    font-family: var(--font-heading);
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
    font-size: 15px;
    letter-spacing: 1px;
    transition: transform var(--transition-smooth);
}

.top-bar-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.top-contact {
    justify-self: start;
}

.top-cta {
    justify-self: center;
    grid-column: 2;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0.5px;
}

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

.phone-link svg {
    color: var(--primary-gold);
}

/* --- Main Header --- */
.main-header {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    transition: all var(--transition-smooth);
    padding: 25px 0;
}

.main-header.scrolled {
    padding: 15px 0;
    background-color: transparent;
    box-shadow: none;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Area */
.logo-area .logo {
    display: flex;
    flex-direction: column;
}

.logo-image {
    max-height: 70px;
    width: auto;
    object-fit: contain;
    transform: scale(1.8);
    transform-origin: left center;
    filter: invert(1) brightness(1.15);
}

/* Navigation */
.main-nav ul {
    display: flex;
    gap: 40px;
}

.main-nav a {
    position: relative;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 0;
    color: var(--text-light);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-gold);
}

/* Underline Animation */
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-gold);
    transition: width var(--transition-smooth);
}

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

/* Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mobile nav CTA — hidden on desktop, shown inside slide-out menu */
.nav-mobile-cta {
    display: none;
}

/* =========================================
   Floating Side Book Button (mobile only)
   ========================================= */
.mobile-book-btn {
    display: none;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    background: var(--primary-gold);
    color: var(--primary-black);
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 11px;
    border-radius: 8px 0 0 8px;
    box-shadow: -4px 0 20px rgba(197, 160, 89, 0.5);
    text-decoration: none;
    transition: padding 0.25s ease, box-shadow 0.25s ease;
}

.mobile-book-btn:active {
    padding-right: 5px;
    box-shadow: -2px 0 10px rgba(197, 160, 89, 0.4);
}

.mobile-book-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.mobile-book-btn span {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
}

/* =========================================
   Floating Call Button (all screen sizes)
   ========================================= */
.floating-call-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 998;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    background: var(--primary-gold);
    color: var(--primary-black);
    border-radius: 28px;
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.5);
    text-decoration: none;
    white-space: nowrap;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.floating-call-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.floating-call-btn span {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.floating-call-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 26px rgba(197, 160, 89, 0.65);
}

.floating-call-btn:active {
    transform: scale(0.96);
}

@media (max-width: 768px) {
    .floating-call-btn {
        height: 48px;
        padding: 0 16px;
        gap: 8px;
        bottom: 16px;
        right: 16px;
    }

    .floating-call-btn span {
        font-size: 13px;
    }

    .floating-call-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Closed day styling */
.hours-closed {
    color: #c0392b;
    font-weight: 600;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--primary-gold);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--primary-gold);
}

/* =========================================
   Hero Section
   ========================================= */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px 60px;
    background-color: #0b0b0a; /* Very dark background */
    
    /* CSS Grid Pattern */
    background-image: 
        linear-gradient(rgba(197, 160, 89, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 160, 89, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveGrid 30s linear infinite;
    will-change: background-position;
}

.hero-slides {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

@keyframes moveGrid {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

/* Subtle radial gradient overlay for focus */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 11, 10, 0.62) 0%, rgba(11, 11, 10, 0.58) 45%, rgba(11, 11, 10, 0.85) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 460px;
}

.hero-badge {
    display: inline-block;
    border: 1px solid rgba(197, 160, 89, 0.5);
    background: rgba(11, 11, 10, 0.45);
    backdrop-filter: blur(2px);
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--light-gold);
    margin-bottom: 30px;
}

.hero-title {
    font-size: 64px;
    font-family: var(--font-heading);
    color: var(--light-gold);
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 6px 28px rgba(0, 0, 0, 0.55);
}

.hero-title-highlight {
    background: linear-gradient(100deg, rgba(197, 160, 89, 0.88) 0%, rgba(232, 211, 153, 0.88) 100%);
    color: var(--primary-black);
    padding: 3px 12px;
    border-radius: 4px;
    text-shadow: none;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.hero-subtitle {
    font-size: 13px;
    font-family: var(--font-body);
    color: var(--text-light);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-address {
    font-size: 12px;
    font-family: var(--font-body);
    color: rgba(245, 245, 245, 0.85);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0 auto;
    width: 200px;
}

.hero-divider .divider-line {
    height: 1px;
    flex-grow: 1;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.5), transparent);
}

.hero-divider .divider-icon {
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    animation: pulseSparkle 4s ease-in-out infinite;
}

@keyframes pulseSparkle {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.7; 
    }
    50% { 
        transform: scale(1.3) rotate(45deg); 
        opacity: 1; 
        filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.8));
    }
}

/* =========================================
   Feature Section (About / Services)
   ========================================= */
.feature-section {
    padding: 60px 20px 120px;
    background-color: var(--secondary-black);
    position: relative;
    border-top: 1px solid rgba(197, 160, 89, 0.05);
}

.feature-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* Left Text Area */
.feature-text {
    flex: 1;
    max-width: 500px;
}

.feature-subtitle {
    font-size: 11px;
    font-family: var(--font-body);
    color: var(--primary-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.feature-heading {
    font-size: 56px;
    font-family: var(--font-heading);
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 400;
}

.feature-paragraph {
    font-size: 16px;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.feature-btn {
    padding: 15px 30px;
    font-size: 13px;
    letter-spacing: 2px;
}

.feature-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
}

.feature-footer-line {
    width: 40px;
    height: 1px;
    background-color: var(--primary-gold);
}

.feature-address {
    font-size: 11px;
    font-family: var(--font-body);
    color: var(--primary-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Right Image Slider Area */
.feature-images {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dot Indicators */
.slider-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    padding: 0;
}

.dot.active {
    background: var(--primary-gold);
    transform: scale(1.3);
}

/* =========================================
   Our Story Section
   ========================================= */
.story-section {
    padding: 50px 20px 100px;
    background-color: var(--primary-black);
    border-top: 1px solid rgba(197, 160, 89, 0.05);
    scroll-margin-top: 180px;
}

.story-container {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

/* Left Image */
.story-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.story-image-frame {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.story-image-frame::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 4px;
    z-index: 0;
}

.story-image {
    position: relative;
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    z-index: 1;
}

/* Right Text */
.story-text {
    flex: 1;
    max-width: 520px;
}

.story-subtitle {
    font-size: 11px;
    font-family: var(--font-body);
    color: var(--primary-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.story-heading {
    font-size: 50px;
    font-family: var(--font-heading);
    color: var(--text-light);
    line-height: 1.15;
    margin-bottom: 28px;
    font-weight: 400;
}

.story-heading-gold {
    color: var(--primary-gold);
    font-style: italic;
}

.story-paragraph {
    font-size: 16px;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
}

.story-address-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.story-address-btn:hover {
    background-color: rgba(197, 160, 89, 0.1);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

/* =========================================
/* =========================================
   Services Section
   ========================================= */
.services-section {
    padding: 0;
    background-color: var(--primary-black);
}

.menu-page-section {
    padding-top: 40px;
    background-color: var(--primary-black);
    scroll-margin-top: 180px;
}

.services-header {
    text-align: center;
    padding: 0 20px 24px;
}

.services-label {
    font-size: 11px;
    font-family: var(--font-body);
    color: var(--primary-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.services-title {
    font-size: 46px;
    font-family: var(--font-heading);
    color: var(--text-light);
    font-weight: 400;
}

/* 4-column grid, 2 rows */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 420px);
}

.service-card {
    overflow: hidden;
    position: relative;
    border: 1.5px solid rgba(197, 160, 89, 0.5);
}
/* Text cards — dark cream background like the reference */
.service-text-card {
    background-color: #1a1608;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    gap: 24px;
}

.service-name {
    font-size: 36px;
    font-family: var(--font-heading);
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.2;
}

.service-menu-btn {
    display: inline-block;
    padding: 10px 22px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-style: italic;
    color: var(--primary-black);
    background-color: var(--text-light);
    border-radius: 4px;
    width: fit-content;
    transition: all var(--transition-fast);
}

.service-menu-btn:hover {
    background-color: var(--primary-gold);
    color: #fff;
}

/* Photo cards */
.service-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.service-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center;
}

.service-photo-card:hover img {
    transform: scale(1.06);
}

/* =========================================
   CTA Banner Section
   ========================================= */
.cta-section {
    padding: 20px 40px 20px;
    background-color: var(--primary-black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background glow blob behind the card */
.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(197, 160, 89, 0.18) 0%, rgba(197, 160, 89, 0.06) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: bgGlowPulse 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes bgGlowPulse {
    0%, 100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-inner {
    max-width: 520px;
    margin: 0 auto;
    padding: 40px 40px;
    background: radial-gradient(ellipse at center, #2a1c06 0%, #1c1409 60%, #0f0b04 100%);
    border-radius: 16px;
    border: 1.5px solid rgba(197, 160, 89, 0.8);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 30px rgba(197, 160, 89, 0.25),
        0 0 60px rgba(197, 160, 89, 0.1),
        inset 0 0 40px rgba(197, 160, 89, 0.05);
    animation: cardGlow 3s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% {
        box-shadow:
            0 0 30px rgba(197, 160, 89, 0.25),
            0 0 60px rgba(197, 160, 89, 0.1),
            inset 0 0 40px rgba(197, 160, 89, 0.05);
        border-color: rgba(197, 160, 89, 0.8);
    }
    50% {
        box-shadow:
            0 0 50px rgba(232, 211, 153, 0.5),
            0 0 100px rgba(197, 160, 89, 0.25),
            inset 0 0 60px rgba(197, 160, 89, 0.1);
        border-color: rgba(232, 211, 153, 1);
    }
}

/* Shimmer sweep effect */
.cta-inner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(232, 211, 153, 0.12) 50%,
        transparent 60%
    );
    animation: shimmerSweep 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmerSweep {
    0%   { left: -75%; }
    100% { left: 125%; }
}

/* Diagonal stripe texture overlay */
.cta-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(197, 160, 89, 0.04) 0px,
        rgba(197, 160, 89, 0.04) 1px,
        transparent 1px,
        transparent 28px
    );
    border-radius: 16px;
    pointer-events: none;
}

.cta-subtitle {
    font-size: 10px;
    font-family: var(--font-body);
    color: var(--primary-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.cta-heading {
    font-size: 36px;
    font-family: var(--font-heading);
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.cta-address {
    font-size: 11px;
    font-family: var(--font-body);
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.cta-phone {
    display: block;
    font-size: 16px;
    font-family: var(--font-heading);
    color: var(--primary-gold);
    letter-spacing: 2px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: color var(--transition-fast);
}

.cta-phone:hover {
    color: var(--light-gold);
}

.cta-btn {
    padding: 13px 36px;
    font-size: 12px;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    background-color: var(--primary-gold);
    color: #1c1409;
    border: none;
    font-weight: 600;
}

.cta-btn:hover {
    background-color: var(--light-gold);
    color: #1c1409;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.3);
}

/* =========================================
   Gallery Section
   ========================================= */
.gallery-section {
    padding: 80px 40px;
    background-color: var(--primary-black);
    border-top: 1px solid rgba(197, 160, 89, 0.08);
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-label {
    font-size: 11px;
    font-family: var(--font-body);
    color: var(--primary-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.gallery-title {
    font-size: 46px;
    font-family: var(--font-heading);
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 14px;
}

.gallery-desc {
    font-size: 14px;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* Uniform 4-per-row grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 1280px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    cursor: pointer;
    height: 260px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

/* Gold overlay on hover */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(197, 160, 89, 0.0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 18px;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(197, 160, 89, 0.35);
}

.gallery-item:hover .gallery-overlay span {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
/* =========================================
   Testimonials Section
   ========================================= */
.testimonials-section {
    padding: 90px 40px;
    background-color: var(--primary-black);
    border-top: 1px solid rgba(197, 160, 89, 0.08);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-badge {
    display: inline-block;
    border: 1px solid rgba(197, 160, 89, 0.5);
    padding: 8px 20px;
    font-size: 11px;
    font-family: var(--font-body);
    color: var(--primary-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.testimonials-title {
    font-size: 56px;
    font-family: var(--font-heading);
    color: var(--primary-gold);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonials-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.t-line {
    width: 60px;
    height: 1px;
    background: rgba(197, 160, 89, 0.4);
}

/* 3-column grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Review Card */
.review-card {
    background-color: #1a160a;
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 4px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.review-card:hover {
    border-color: rgba(197, 160, 89, 0.5);
    transform: translateY(-4px);
}

/* Featured (middle) card — slightly lighter */
.review-card.featured {
    background-color: #211a0c;
    border-color: rgba(197, 160, 89, 0.35);
}

.review-service-tag {
    display: inline-block;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--primary-gold);
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 2px;
    padding: 5px 12px;
    border-radius: 2px;
    width: fit-content;
}

.review-stars {
    color: var(--primary-gold);
    font-size: 18px;
    letter-spacing: 2px;
}

.review-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.9;
    flex: 1;
}

.review-divider {
    height: 1px;
    background: rgba(197, 160, 89, 0.2);
    margin: 4px 0;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center; /* changed from flex-end */
}

.review-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(197, 160, 89, 0.4);
}

.review-name {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.review-tag {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--text-muted);
}

.review-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.review-cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 0;
    text-align: center;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-gold);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.review-cta-btn:hover {
    background-color: var(--primary-gold);
    color: #171810;
}

/* =========================================
   Lightbox
   ========================================= */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.85);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.9), 0 0 0 1px rgba(197, 160, 89, 0.3);
    display: block;
}

.lightbox-close {
    position: fixed;
    top: 24px;
    right: 32px;
    z-index: 2;
    background: none;
    border: 1px solid rgba(197, 160, 89, 0.5);
    color: var(--primary-gold);
    font-size: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover {
    background: var(--primary-gold);
    color: #000;
}

/* =========================================
   Services Menu Page
   ========================================= */
.menu-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}

.menu-section {
    margin-bottom: 80px;
}

.menu-section-title {
    font-size: 32px;
    font-family: var(--font-heading);
    color: var(--primary-gold);
    text-align: center;
    letter-spacing: 4px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.menu-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--primary-gold);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.menu-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 60px;
}

.menu-item {
    display: flex;
    flex-direction: column;
}

.menu-header {
    display: flex;
    align-items: baseline;
    margin-bottom: 8px;
}

.menu-name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-light);
    white-space: nowrap;
}

.menu-dots {
    flex-grow: 1;
    border-bottom: 2px dotted rgba(197, 160, 89, 0.4);
    margin: 0 15px;
    position: relative;
    top: -4px;
}

.menu-price {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-gold);
    white-space: nowrap;
}

.menu-desc {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
}

.menu-list {
    list-style: none;
    margin: 0 0 12px 0;
    padding: 0;
}

.menu-list li {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
    position: relative;
    padding-left: 15px;
}

.menu-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

.menu-note {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--primary-gold);
    margin-top: 4px;
}

/* =========================================
   Full Gallery Page
   ========================================= */
.full-gallery-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.masonry-grid {
    column-count: 4;
    column-gap: 20px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 2px solid var(--primary-gold);
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

.masonry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(23, 24, 16, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.masonry-overlay span {
    color: var(--primary-gold);
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--primary-gold);
    padding: 10px 20px;
    border-radius: 30px;
}

@media (max-width: 900px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .masonry-grid {
        column-count: 1;
    }
    .full-gallery-wrapper {
        padding: 40px 20px;
    }
}

/* =========================================
   About Us Page
   ========================================= */
.about-section {
    padding: 100px 40px;
    background-color: var(--primary-black);
    max-width: 1400px;
    margin: 0 auto;
}

.services-page-header + .about-section {
    padding-top: 36px;
}

.about-split {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-media {
    flex: 1.1;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.about-video {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 4px;
    background: #000;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.about-content .about-video {
    margin: 28px 0 30px;
}

.about-video video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-gold);
    z-index: -1;
    border-radius: 4px;
}

.about-content {
    flex: 1;
}

.about-subtitle {
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--primary-gold);
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: var(--font-body);
}

.about-heading {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-heading span {
    color: var(--primary-gold);
    font-style: italic;
}

.about-text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--primary-gold);
    font-style: italic;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--text-light);
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .about-split {
        flex-direction: column;
        gap: 60px;
    }
    
    .about-heading {
        font-size: 36px;
    }
}

/* =========================================
   Footer Section
   ========================================= */
.site-footer {
    background-color: var(--primary-black);
    color: var(--text-light);
    border-top: 1px solid rgba(197, 160, 89, 0.15);
}

.footer-container {
    display: flex;
    min-height: 500px;
}

/* Left Map */
.footer-map-container {
    flex: 1;
    min-height: 400px;
    overflow: hidden;
    border-right: 1px solid rgba(197, 160, 89, 0.2);
}

.footer-map-container iframe {
    width: 100%;
    height: 100% !important;
    min-height: 100%;
    display: block;
    filter: grayscale(55%) invert(90%) hue-rotate(180deg) contrast(85%);
}

/* Right Info */
.footer-info-container {
    flex: 1;
    padding: 60px 80px;
    background-color: #110e06; /* Slightly darker than main background */
}

.footer-label {
    font-size: 11px;
    font-family: var(--font-body);
    color: var(--primary-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.footer-title {
    font-size: 42px;
    font-family: var(--font-heading);
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.2;
}

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

.footer-desc {
    font-family: var(--font-heading);
    font-size: 15px;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 90%;
}

.footer-contact-cards {
    display: flex;
    flex-direction: column;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
}

.contact-card:first-child {
    border-top: 1px solid rgba(197, 160, 89, 0.3); /* Stronger top border */
}

.contact-icon {
    font-size: 20px;
    color: var(--primary-gold);
    margin-top: 2px;
}

.contact-details {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 11px;
    font-family: var(--font-body);
    color: var(--primary-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-value {
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text-light);
    line-height: 1.6;
}

.contact-link {
    color: var(--text-light);
    transition: color var(--transition-fast);
}

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

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text-light);
    margin-bottom: 8px;
    max-width: 350px;
}

.footer-bottom {
    text-align: center;
    padding: 24px;
    background-color: #000;
    color: var(--text-muted);
    font-size: 12px;
    font-family: var(--font-body);
    border-top: 1px solid rgba(197, 160, 89, 0.15);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .feature-container {
        flex-direction: column;
        gap: 60px;
    }
    
    .feature-images {
        width: 100%;
        justify-content: center;
    }
    
    .slider-wrapper {
        height: 500px;
        max-width: 100%;
    }

    .feature-heading {
        font-size: 42px;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 86vw);
        height: 100vh;
        background-color: var(--primary-black);
        border-left: 1px solid rgba(197, 160, 89, 0.2);
        padding: 100px 40px;
        transition: right var(--transition-smooth);
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    }
    
    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 30px;
    }

    .main-nav a {
        font-size: 18px;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-actions .btn {
        display: none;
    }

    .nav-mobile-cta {
        display: block;
    }

    .mobile-book-btn {
        display: flex;
        padding: 16px 8px;
        gap: 8px;
        font-size: 11px;
    }

    .mobile-book-btn svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 576px) {
    .top-bar-inner {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 0 12px;
    }

    .top-cta {
        display: none;
    }

    .logo-area h1 {
        font-size: 22px;
    }

    .logo-area .tagline {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .hero-title {
        font-size: 32px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .gallery-item {
        height: 160px;
    }
}

/* =========================================
   Mobile Optimization (max-width: 768px)
   ========================================= */
@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    /* --- Hero Section --- */
    .hero-section {
        min-height: 85vh;
        padding: 0 20px;
    }

    .hero-content {
        padding-top: 120px;
        padding-bottom: 60px;
        max-width: 350px;
        margin: 0 auto;
    }

    .hero-badge {
        font-size: 10px;
        letter-spacing: 3px;
        padding: 6px 14px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 14px;
        max-width: 100%;
    }

    .hero-address {
        font-size: 10px;
        letter-spacing: 1px;
        line-height: 1.7;
        margin-bottom: 28px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* --- Services Grid --- */
    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .service-card {
        min-height: 200px;
    }

    .service-text-card {
        padding: 30px 20px;
        min-height: 180px;
    }

    .service-name {
        font-size: 26px;
    }

    .service-photo-card {
        height: 320px;
        min-height: 320px;
    }
    
    .service-photo-card img,
    .service-photo-card .service-video {
        width: 100%;
        height: 320px;
        object-fit: cover;
    }

    /* --- Feature / About Section --- */
    .feature-section {
        padding: 40px 20px 50px;
    }

    .feature-container {
        flex-direction: column;
        gap: 40px;
        padding: 0;
    }

    .feature-heading {
        font-size: 32px;
    }

    .feature-text {
        font-size: 14px;
        max-width: 100%;
    }

    .slider-wrapper {
        height: 320px;
        max-width: 100%;
    }

    /* --- Story Section --- */
    .story-container {
        flex-direction: column;
        gap: 40px;
    }

    .story-image-wrapper {
        width: 100%;
    }

    .story-image-frame::before {
        display: none;
    }

    .story-image {
        height: auto;
        max-height: 300px;
    }

    .story-text {
        max-width: 100%;
    }

    .story-heading {
        font-size: 28px;
    }

    /* --- Gallery Section --- */
    .gallery-section {
        padding: 60px 20px;
    }

    .gallery-title {
        font-size: 32px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* --- CTA Section --- */
    .cta-section {
        padding: 60px 20px;
    }

    .cta-heading {
        font-size: 28px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* --- Testimonials --- */
    .testimonials-section {
        padding: 60px 20px;
    }

    .testimonials-title {
        font-size: 32px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* --- Footer --- */
    .footer-container {
        flex-direction: column;
    }

    .footer-map-container {
        height: 280px;
        min-height: 280px;
        width: 100%;
        border-right: 0;
        border-bottom: 1px solid rgba(197, 160, 89, 0.25);
    }

    .footer-map-container iframe {
        height: 280px !important;
    }

    .footer-info-container {
        padding: 40px 20px;
    }

    .footer-title {
        font-size: 28px;
    }

    .footer-contact-cards {
        gap: 16px;
    }

    /* --- Services Section Header --- */
    .services-header {
        padding: 40px 20px 20px;
    }

    .services-title {
        font-size: 32px;
    }

    /* --- Section labels & titles --- */
    h2 {
        word-break: break-word;
    }

    /* --- Top Bar --- */
    .top-bar {
        padding: 8px 0;
    }

    .top-bar-inner {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 16px;
    }

    .top-cta {
        display: none;
    }

    /* --- Logo --- */
    .logo-image {
        height: 48px;
        transform: scale(1.2);
    }

    /* --- About Us Page --- */
    .about-split {
        flex-direction: column;
        gap: 40px;
    }

    .services-page-header + .about-section {
        padding-top: 28px;
    }

    .about-media {
        width: 100%;
    }

    .about-image img,
    .about-video {
        height: 300px;
    }

    .about-image::before {
        display: none; /* Hide decorative border on mobile to save space */
    }

    .about-heading {
        font-size: 32px;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    /* --- Services / Menu Page --- */
    .menu-wrapper {
        padding: 30px 16px;
    }

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

    .menu-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .menu-name {
        white-space: normal;
        flex: 1;
    }

    .menu-dots {
        min-width: 15px;
    }

    .menu-section-title {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .menu-desc,
    .menu-list li {
        font-size: 14px;
    }

    .services-page-header {
        padding-top: 110px !important;
        padding-bottom: 50px !important;
    }

    .services-page-header h1 {
        font-size: 32px !important;
    }

    /* --- Gallery Page --- */
    .masonry-grid {
        column-count: 2 !important; /* 2 columns for better visibility on small screens */
        column-gap: 15px;
    }

    .masonry-item {
        margin-bottom: 15px;
    }

    /* --- General padding reset --- */
    section {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* =========================================
   Promo Popup Banner
   ========================================= */
.promo-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.promo-popup-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.promo-popup {
    position: relative;
    width: 100%;
    max-width: 400px;
    max-height: 90vh;
    transform: scale(0.9);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.promo-popup-overlay.active .promo-popup {
    transform: scale(1);
}

.promo-popup img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(197, 160, 89, 0.3);
}

.promo-popup-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: var(--primary-black);
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
    transition: transform var(--transition-fast);
}

.promo-popup-close:hover {
    transform: scale(1.1);
}

