/**
 * FINE CIGARS BAYAHIBE — Ultra Premium Demo
 * Dark Luxury Design System v2.0
 * With advanced animations and micro-interactions
 */

/* ═══════════════════════════════════════════════════════════════════════════
   FONTS
   ═══════════════════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Outfit:wght@200;300;400;500;600&display=swap');

/* ═══════════════════════════════════════════════════════════════════════════
   CSS VARIABLES
   ═══════════════════════════════════════════════════════════════════════════ */
:root {
    /* Colors — Dark Luxury */
    --black: #050403;
    --black-rich: #0a0806;
    --black-warm: #12100c;
    --surface: #1a1610;
    --surface-elevated: #241e16;
    --surface-hover: #2e261c;

    /* Gold Palette */
    --gold: #c9a962;
    --gold-light: #ddc07a;
    --gold-dark: #a68b4b;
    --gold-muted: #8a7648;
    --gold-glow: rgba(201, 169, 98, 0.15);
    --gold-glow-strong: rgba(201, 169, 98, 0.3);

    /* Text */
    --ivory: #f5f0e8;
    --ivory-muted: #d4cfc5;
    --text-muted: #9a938a;
    --text-subtle: #6b645c;

    /* Borders */
    --border: rgba(201, 169, 98, 0.12);
    --border-hover: rgba(201, 169, 98, 0.25);
    --border-active: rgba(201, 169, 98, 0.4);

    /* Semantic */
    --success: #5a9a6a;
    --error: #c45c52;
    --whatsapp: #25d366;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;

    /* Spacing — More generous for premium feel */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;
    --space-4xl: 12rem;
    --space-5xl: 16rem;

    /* Sizes */
    --container-max: 1400px;
    --container-narrow: 900px;
    --navbar-height: 80px;

    /* Radius */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 48px rgba(0,0,0,0.5);
    --shadow-gold: 0 4px 30px rgba(201, 169, 98, 0.2);
    --shadow-glow: 0 0 60px rgba(201, 169, 98, 0.15);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --duration-fast: 0.15s;
    --duration-base: 0.4s;
    --duration-slow: 0.8s;
    --duration-slower: 1.2s;

    /* Z-Index */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-navbar: 1000;
    --z-menu-overlay: 1500;
    --z-modal: 2000;
    --z-cursor: 2500;
    --z-toast: 3000;
    --z-progress: 9000;
    --z-loader: 9999;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    color-scheme: dark;
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--ivory);
    background-color: var(--black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Hide default cursor when custom cursor active */
body.cursor-ready,
body.cursor-ready a,
body.cursor-ready button {
    cursor: none;
}

/* Grain Texture Overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 10000;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Vignette Overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    background: radial-gradient(ellipse at center, transparent 0%, transparent 50%, rgba(5,4,3,0.4) 100%);
}

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

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

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

::selection {
    background: var(--gold);
    color: var(--black);
}

.skip-link {
    position: fixed;
    top: var(--space-sm);
    left: var(--space-sm);
    z-index: calc(var(--z-loader) + 2);
    padding: .75rem 1rem;
    border-radius: 999px;
    background: var(--gold);
    color: var(--black);
    font-weight: 700;
    transform: translateY(-160%);
    transition: transform var(--duration-base) var(--ease-out);
}

.skip-link:focus,
.skip-link:focus-visible {
    transform: translateY(0);
    outline: 3px solid var(--ivory);
    outline-offset: 3px;
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CUSTOM CURSOR
   ═══════════════════════════════════════════════════════════════════════════ */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
}

.cursor-dot {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s var(--ease-out), opacity 0.3s;
    box-shadow: 0 0 10px var(--gold-glow-strong);
}

.cursor-outline {
    position: fixed;
    width: 45px;
    height: 45px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.15s var(--ease-out), width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
    opacity: 0.6;
}

.cursor.hover .cursor-outline {
    width: 70px;
    height: 70px;
    border-color: var(--gold);
    background: rgba(201, 169, 98, 0.1);
    opacity: 1;
}

.cursor.hover .cursor-dot {
    transform: translate(-50%, -50%) scale(0.5);
}

.cursor.clicking .cursor-outline {
    transform: translate(-50%, -50%) scale(0.8);
}

.cursor.hidden {
    opacity: 0;
}

/* Hide cursor on mobile */
@media (hover: none) {
    .cursor { display: none; }
    body, a, button { cursor: auto; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SCROLL PROGRESS BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    z-index: var(--z-progress);
    transform-origin: left;
    box-shadow: 0 0 10px var(--gold-glow-strong), 0 0 30px var(--gold-glow);
}

/* ═══════════════════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    color: var(--ivory);
}

h1 {
    font-size: clamp(4rem, 14vw, 12rem);
    font-weight: 400;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 400;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
}

h4 {
    font-size: 1.75rem;
}

h5 {
    font-size: 1.5rem;
}

p {
    color: var(--text-muted);
    max-width: 65ch;
    font-size: 1.1rem;
}

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

em, .italic {
    font-style: italic;
    color: var(--gold);
}

strong {
    font-weight: 500;
    color: var(--ivory);
}

/* Split Text Animation Ready */
.split-text .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
}

.split-text .word {
    display: inline-block;
    overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════════════════
   DECORATIVE ELEMENTS
   ═══════════════════════════════════════════════════════════════════════════ */
.line-decoration {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.line-decoration::before,
.line-decoration::after {
    content: '';
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

.ornament {
    display: inline-block;
    width: 60px;
    height: 1px;
    background: var(--gold-muted);
    position: relative;
}

.ornament::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border: 1px solid var(--gold);
    transform: translate(-50%, -50%) rotate(45deg);
}

/* ═══════════════════════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════════════════════ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container-narrow {
    max-width: var(--container-narrow);
}

.container-full {
    max-width: none;
    padding: 0;
}

/* Grid */
.grid {
    display: grid;
    gap: var(--space-xl);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Flex */
.flex { display: flex; }
.flex-center { justify-content: center; align-items: center; }
.flex-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* Section — More generous spacing */
.section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.section-dark {
    background: var(--black-rich);
}

.section-surface {
    background: var(--surface);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-lg);
}

.section-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold-muted);
}

.section-title {
    margin-bottom: var(--space-lg);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 50ch;
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-navbar);
    padding: var(--space-lg) 0;
    transition: all var(--duration-slow) var(--ease-out);
}

.navbar.scrolled {
    background: rgba(5, 4, 3, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border);
}

.navbar-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--ivory);
    letter-spacing: -0.02em;
    transition: opacity var(--duration-base);
}

.navbar-brand:hover {
    opacity: 0.8;
}

.navbar-brand em {
    margin-left: 0.18em;
    font-style: italic;
    color: var(--gold);
}

.navbar-nav {
    display: flex;
    gap: var(--space-xl);
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    padding: var(--space-sm) 0;
    transition: color var(--duration-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--duration-base) var(--ease-out);
}

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

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

/* Mobile Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    gap: 6px;
    z-index: calc(var(--z-menu-overlay) + 1);
}

.navbar-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--ivory);
    transition: all var(--duration-base) var(--ease-out);
    transform-origin: center;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 992px) {
    .navbar-toggle { display: flex; }
    .navbar-nav {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FULLSCREEN MENU OVERLAY
   ═══════════════════════════════════════════════════════════════════════════ */
.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: var(--z-menu-overlay);
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration-slow) var(--ease-out), visibility var(--duration-slow);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-overlay-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-rich) 50%, var(--surface) 100%);
    opacity: 0.95;
}

.menu-overlay-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.menu-link {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 400;
    color: var(--ivory);
    opacity: 0;
    transform: translateY(40px);
    transition: color var(--duration-base), opacity var(--duration-slow), transform var(--duration-slow);
    transition-delay: calc(var(--i, 0) * 0.1s);
}

.menu-overlay.active .menu-link {
    opacity: 1;
    transform: translateY(0);
}

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

.menu-link em {
    font-style: italic;
}

.menu-footer {
    margin-top: var(--space-3xl);
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--duration-slow) var(--ease-out);
    transition-delay: 0.5s;
}

.menu-overlay.active .menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.menu-social {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
}

.menu-social a {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: color var(--duration-base), transform var(--duration-base);
}

.menu-social a:hover {
    color: var(--gold);
    transform: scale(1.2);
}

/* ═══════════════════════════════════════════════════════════════════════════
   BUTTONS — MAGNETIC EFFECT READY
   ═══════════════════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 1.1rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid transparent;
    background: transparent;
    transition: all var(--duration-base) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn-magnetic {
    transition: transform 0.2s var(--ease-out);
}

.btn-inner {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
    z-index: 2;
}

/* Button Shine Effect */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s var(--ease-out);
}

.btn:hover::before {
    left: 100%;
}

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

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    border-color: var(--gold-muted);
    color: var(--gold);
}

.btn-outline:hover {
    border-color: var(--gold);
    background: var(--gold-glow);
}

.btn-ghost {
    color: var(--ivory);
    padding-left: 0;
    padding-right: 0;
}

.btn-ghost::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-muted);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--duration-base) var(--ease-out);
}

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

.btn-ghost:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
    border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    border-color: #20bd5a;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 1.4rem 3rem;
    font-size: 0.95rem;
}

.btn i {
    font-size: 0.9em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO — DRAMATIC & CINEMATIC
   ═══════════════════════════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: -5%;
    background-size: cover;
    background-position: center;
    filter: saturate(0.6) brightness(0.35);
    will-change: transform;
}

/* Ken Burns disabled for better performance */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5,4,3,0.3) 0%,
        rgba(5,4,3,0.1) 40%,
        rgba(5,4,3,0.4) 70%,
        rgba(5,4,3,0.95) 100%
    );
}

/* Vignette on hero */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(5,4,3,0.6) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-xl);
    max-width: 1000px;
}

.hero-eyebrow {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-xl);
    opacity: 0;
}

.hero-title {
    margin-bottom: var(--space-xl);
    opacity: 0;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero-title em {
    display: inline-block;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-style: italic;
    color: var(--ivory-muted);
    margin-bottom: var(--space-2xl);
    max-width: none;
    opacity: 0;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    opacity: 0;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    opacity: 0;
}

.hero-scroll span {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-muted);
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
    0%, 100% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    51% {
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CARDS — PREMIUM WITH HOVER EFFECTS
   ═══════════════════════════════════════════════════════════════════════════ */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--duration-slow) var(--ease-out);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-glow) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--duration-slow);
    pointer-events: none;
}

.card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.card:hover::before {
    opacity: 1;
}

.card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slower) var(--ease-out), filter var(--duration-slow);
    filter: saturate(0.8);
}

.card:hover .card-image img {
    transform: scale(1.08);
    filter: saturate(1);
}

/* Image reveal mask */
.card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--black);
    transform: translateX(-101%);
    transition: transform 0s;
}

.card.revealed .card-image::after {
    animation: imageReveal 1s var(--ease-out) forwards;
}

@keyframes imageReveal {
    0% {
        transform: translateX(-101%);
    }
    50% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(101%);
    }
}

.card-body {
    padding: var(--space-xl);
    position: relative;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
}

.card-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.card-price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gold);
}

/* Feature Card */
.feature-card {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all var(--duration-slow) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
    transition: width var(--duration-slow);
}

.feature-card:hover::before {
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.feature-card:hover {
    border-color: var(--border-hover);
    background: var(--surface-elevated);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-xl);
    filter: brightness(0) invert(0.7) sepia(1) saturate(3) hue-rotate(10deg);
    transition: transform var(--duration-base), filter var(--duration-base);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    filter: brightness(0) invert(0.85) sepia(1) saturate(3) hue-rotate(10deg);
}

.feature-icon-fa {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: var(--space-xl);
    display: block;
    transition: transform var(--duration-base), text-shadow var(--duration-base);
}

.feature-card:hover .feature-icon-fa {
    transform: scale(1.15);
    text-shadow: 0 0 30px var(--gold-glow-strong);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: var(--space-md);
}

.feature-text {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════════════════
   GALLERY — WITH IMAGE REVEALS
   ═══════════════════════════════════════════════════════════════════════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

@media (max-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item.wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.5) brightness(0.7);
    transition: all var(--duration-slower) var(--ease-out);
}

.gallery-item:hover img {
    filter: saturate(1) brightness(1);
    transform: scale(1.08);
}

/* Vignette on gallery items */
.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(5,4,3,0.5) 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--duration-base);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-label {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--ivory);
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--duration-base) var(--ease-out);
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   HORIZONTAL SCROLL GALLERY
   ═══════════════════════════════════════════════════════════════════════════ */
.horizontal-gallery {
    position: relative;
    overflow: hidden;
    padding: var(--space-3xl) 0;
}

.horizontal-gallery-track {
    display: flex;
    gap: var(--space-lg);
    padding: 0 var(--space-xl);
    cursor: grab;
    user-select: none;
}

.horizontal-gallery-track:active {
    cursor: grabbing;
}

.horizontal-gallery-item {
    flex: 0 0 auto;
    width: 400px;
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .horizontal-gallery-item {
        width: 280px;
    }
}

.horizontal-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.6) brightness(0.8);
    transition: all var(--duration-slow);
}

.horizontal-gallery-item:hover img {
    filter: saturate(1) brightness(1);
    transform: scale(1.05);
}

.horizontal-gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    background: linear-gradient(to top, rgba(5,4,3,0.9) 0%, transparent 100%);
}

.horizontal-gallery-label h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
}

.horizontal-gallery-label p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.horizontal-gallery-hint {
    position: absolute;
    right: var(--space-xl);
    bottom: var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════════════════
   QUOTE SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.quote-section {
    padding: var(--space-5xl) 0;
    position: relative;
    overflow: hidden;
}

.quote-bg {
    position: absolute;
    inset: -10%;
    background-size: cover;
    background-position: center;
    filter: saturate(0.2) brightness(0.15);
}

.quote-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--black) 80%);
}

.quote-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 12rem;
    line-height: 0.4;
    color: var(--gold-muted);
    opacity: 0.2;
}

.quote-text {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--ivory);
    line-height: 1.5;
    margin-bottom: var(--space-2xl);
}

.quote-author {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════════════════
   STATS — PREMIUM NUMBERS
   ═══════════════════════════════════════════════════════════════════════════ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
    padding: var(--space-3xl) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.stats-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 40px var(--gold-glow);
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: var(--space-md);
}

/* ═══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════════════ */
.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: var(--space-2xl);
    position: relative;
    transition: all var(--duration-slow);
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    background: var(--surface-elevated);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-xl);
    left: var(--space-xl);
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--gold-muted);
    opacity: 0.3;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--ivory);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--black);
}

.testimonial-name {
    font-weight: 500;
    color: var(--ivory);
    font-size: 0.95rem;
}

.testimonial-location {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.8rem;
    margin-top: 3px;
    letter-spacing: 2px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER — ELEGANT
   ═══════════════════════════════════════════════════════════════════════════ */
.footer {
    background: var(--black-rich);
    border-top: 1px solid var(--border);
    padding: var(--space-4xl) 0 var(--space-xl);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--ivory);
    margin-bottom: var(--space-md);
}

.footer-brand em {
    font-style: italic;
    color: var(--gold);
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

.footer-heading {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-xl);
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a,
.footer-links li {
    font-size: 1rem;
    color: var(--text-muted);
    transition: color var(--duration-fast);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

@media (max-width: 576px) {
    .footer-social { justify-content: center; }
}

.footer-social a {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--duration-base);
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

@media (max-width: 576px) {
    .footer-bottom { justify-content: center; text-align: center; }
}

.footer-legal {
    font-size: 0.75rem;
    color: var(--text-subtle);
}

.footer-warning {
    font-size: 0.7rem;
    font-style: italic;
    color: var(--gold-muted);
    max-width: 400px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   WHATSAPP FAB
   ═══════════════════════════════════════════════════════════════════════════ */
.whatsapp-fab {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: var(--z-sticky);
    transition: all var(--duration-base) var(--ease-out);
    opacity: 0;
    transform: scale(0) rotate(-180deg);
}

.whatsapp-fab.visible {
    opacity: 1;
    transform: scale(1) rotate(0);
}

.whatsapp-fab:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* Pulse animation */
.whatsapp-fab::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--whatsapp);
    animation: fabPulse 2s ease-out infinite;
}

@keyframes fabPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════════════════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: var(--space-xl);
    left: var(--space-xl);
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    z-index: var(--z-sticky);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-base) var(--ease-out);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   LOADER — CINEMATIC
   ═══════════════════════════════════════════════════════════════════════════ */
.loader {
    position: fixed;
    inset: 0;
    z-index: var(--z-loader);
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
}

.loader-brand {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--ivory);
    opacity: 0;
    transform: translateY(20px);
}

.loader-brand em {
    font-style: italic;
    color: var(--gold);
}

.loader-bar {
    width: 200px;
    height: 1px;
    background: var(--border);
    position: relative;
    overflow: hidden;
    opacity: 0;
}

.loader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    box-shadow: 0 0 10px var(--gold-glow-strong);
}

.loader-text {
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FORMS — PREMIUM INPUTS
   ═══════════════════════════════════════════════════════════════════════════ */
.form-group {
    margin-bottom: var(--space-xl);
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea,
select.form-input {
    width: 100%;
    padding: var(--space-lg) var(--space-lg);
    background: var(--black-rich);
    border: 1px solid var(--border);
    color: var(--ivory);
    font-family: var(--font-body);
    font-size: 1.1rem;
    transition: all var(--duration-base);
    appearance: none;
}

.form-input:focus,
.form-textarea:focus,
select.form-input:focus {
    outline: none;
    border-color: var(--gold-muted);
    background: var(--surface);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-subtle);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

select.form-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a962' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-lg) center;
    background-size: 16px;
    padding-right: calc(var(--space-lg) * 2 + 16px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.mt-auto { margin-top: auto; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(60px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-mask {
    position: relative;
    overflow: hidden;
}

.reveal-mask::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(-101%);
}

.reveal-mask.active::after {
    animation: revealMask 1.2s var(--ease-out) forwards;
}

@keyframes revealMask {
    0% { transform: translateX(-101%); }
    50% { transform: translateX(0%); }
    100% { transform: translateX(101%); }
}

/* Parallax ready */
[data-parallax] {
    will-change: transform;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .hero-bg { animation: none; }
    .quote-bg { animation: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE-SPECIFIC — PRODUCT GRID
   ═══════════════════════════════════════════════════════════════════════════ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

@media (max-width: 992px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .product-grid { grid-template-columns: 1fr; }
}

.product-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--gold);
    color: var(--black);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    z-index: 2;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE-SPECIFIC — MUSEUM ARTIFACT GRID
   ═══════════════════════════════════════════════════════════════════════════ */
.artifact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

@media (max-width: 992px) {
    .artifact-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 576px) {
    .artifact-grid { grid-template-columns: repeat(2, 1fr); }
}

.artifact-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background: var(--surface);
}

.artifact-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.3) brightness(0.5);
    transition: all var(--duration-slower) var(--ease-out);
}

.artifact-item:hover img {
    filter: saturate(1) brightness(1);
    transform: scale(1.1);
}

.artifact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,4,3,0.95) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity var(--duration-base);
}

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

.artifact-label {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--ivory);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE-SPECIFIC — CONTACT
   ═══════════════════════════════════════════════════════════════════════════ */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

@media (max-width: 576px) {
    .contact-info-grid { grid-template-columns: 1fr; }
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all var(--duration-base);
}

.contact-info-card:hover {
    border-color: var(--border-hover);
    background: var(--surface-elevated);
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--black-rich);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: var(--space-xs);
}

.contact-info-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--ivory);
    transition: color var(--duration-fast);
}

.contact-info-card a:hover {
    color: var(--gold);
}

.contact-form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: var(--space-2xl);
}

.contact-form-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--ivory);
}

.map-container {
    border: 1px solid var(--border);
    overflow: hidden;
    filter: saturate(0.4) brightness(0.7) contrast(1.1);
    transition: filter var(--duration-slow);
}

.map-container:hover {
    filter: saturate(0.7) brightness(0.85);
}

/* Social Links Large */
.social-links-large {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.social-link-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xl) var(--space-2xl);
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-muted);
    min-width: 140px;
    transition: all var(--duration-base);
}

.social-link-large i {
    font-size: 2.5rem;
    transition: all var(--duration-base);
}

.social-link-large span {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.social-link-large:hover {
    border-color: var(--gold-muted);
    background: var(--surface-elevated);
    color: var(--gold);
    transform: translateY(-5px);
}

.social-link-large:hover i {
    color: var(--gold);
    transform: scale(1.1);
}

/* ═══════════════════════════════════════════════════════════════════════════
   LIGHTBOX — PREMIUM
   ═══════════════════════════════════════════════════════════════════════════ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5,4,3,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-caption {
    text-align: center;
    margin-top: var(--space-lg);
    font-family: var(--font-display);
    font-style: italic;
    color: var(--ivory-muted);
}

.lightbox-close {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    font-size: 1.5rem;
    z-index: 3;
    transition: all var(--duration-base);
}

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

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    font-size: 1.2rem;
    z-index: 3;
    transition: all var(--duration-base);
}

.lightbox-prev { left: var(--space-xl); }
.lightbox-next { right: var(--space-xl); }

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

.fcb-video-modal {
    position: fixed;
    inset: 0;
    z-index: calc(var(--z-modal) + 20);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 4vw, 2.5rem);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration-base), visibility var(--duration-base);
}

.fcb-video-modal.active {
    opacity: 1;
    visibility: visible;
}

.fcb-video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5,4,3,0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.fcb-video-modal-panel {
    position: relative;
    z-index: 2;
    width: min(1100px, 100%);
}

.fcb-video-modal-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(201,169,98,0.32);
    background: #080605;
    box-shadow: 0 28px 80px rgba(0,0,0,0.45);
}

.fcb-video-modal-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.fcb-video-modal-close {
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: 3;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    background: var(--gold);
    box-shadow: 0 16px 34px rgba(0,0,0,0.34);
    cursor: pointer;
}

.fcb-video-modal-meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
    color: var(--ivory);
}

.fcb-video-modal-meta strong {
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.fcb-video-modal-meta a {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .78rem;
}

@media (max-width: 720px) {
    .fcb-video-modal { padding: .75rem; }
    .fcb-video-modal-close { top: 10px; right: 10px; }
    .fcb-video-modal-meta { display: block; }
    .fcb-video-modal-meta a { display: inline-block; margin-top: .7rem; }
}

/* Age verification */
body.age-gate-open,
body.is-loading {
    overflow: hidden;
}

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 4vw, 2rem);
    background:
        radial-gradient(circle at 50% 20%, rgba(201, 169, 98, 0.16), transparent 32%),
        rgba(5, 4, 3, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.age-gate-panel {
    width: min(560px, 100%);
    border: 1px solid rgba(201, 169, 98, 0.28);
    border-radius: var(--radius-lg);
    background: rgba(18, 14, 11, 0.92);
    box-shadow: var(--shadow-xl);
    padding: clamp(1.35rem, 4vw, 2.35rem);
    text-align: center;
}

.age-gate-eyebrow {
    display: inline-flex;
    margin-bottom: var(--space-sm);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.age-gate h2 {
    margin: 0 0 var(--space-md);
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.35rem);
    line-height: 1;
    color: var(--ivory);
}

.age-gate p {
    margin: 0 auto var(--space-xl);
    max-width: 440px;
    color: var(--text-muted);
    line-height: 1.7;
}

.age-gate-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.age-gate-actions .btn {
    min-width: 180px;
    justify-content: center;
}

body.age-gate-open .cursor {
    display: none;
}

body.cursor-ready.age-gate-open,
body.cursor-ready.age-gate-open * {
    cursor: auto !important;
}

body.cursor-ready.age-gate-open button,
body.cursor-ready.age-gate-open .btn {
    cursor: pointer !important;
}

.age-gate-actions .btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

@media (max-width: 560px) {
    .age-gate-actions .btn {
        width: 100%;
    }
}

/* Final mobile hardening before launch */
.menu-link:focus-visible,
.menu-social a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 6px;
}

/* Font Awesome does not render the TripAdvisor brand icon reliably in this stack. */
.fa-tripadvisor::before {
    content: "TA";
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.72em;
    letter-spacing: -0.02em;
}

@media (max-width: 576px) {
    .navbar {
        padding: 0.72rem 0;
    }

    .navbar.scrolled {
        padding: 0.58rem 0;
    }

    .navbar-inner {
        padding: 0 1rem;
        gap: 0.75rem;
    }

    .navbar-brand {
        max-width: calc(100vw - 84px);
        font-size: clamp(1.18rem, 6vw, 1.5rem);
        line-height: 1.02;
        letter-spacing: 0;
        white-space: normal;
    }

    .navbar-brand em {
        margin-left: 0.12em;
    }

    .navbar-toggle {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
    }

    .menu-overlay {
        align-items: flex-start;
        justify-content: center;
        overflow-y: auto;
        padding: calc(env(safe-area-inset-top) + 5.2rem) 1rem calc(env(safe-area-inset-bottom) + 1.4rem);
    }

    .menu-overlay-content {
        width: min(100%, 360px);
    }

    .menu-nav {
        gap: 0.58rem;
    }

    .menu-link {
        display: block;
        width: 100%;
        padding: 0.18rem 0;
        font-size: clamp(1.72rem, 9.2vw, 2.42rem);
        line-height: 1.05;
        letter-spacing: 0;
    }

    .menu-footer {
        margin-top: 1.25rem;
    }

    .menu-social {
        gap: 0.65rem;
        flex-wrap: wrap;
    }

    .menu-social a {
        width: 44px;
        height: 44px;
        border: 1px solid rgba(201, 169, 98, 0.22);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.05rem;
    }
}

@media (max-width: 360px) {
    .navbar-brand {
        font-size: clamp(1.05rem, 5.8vw, 1.28rem);
    }

    .menu-link {
        font-size: clamp(1.52rem, 8.6vw, 2.05rem);
    }
}
