/* ----------------------------------------------------
   DESIGN SYSTEM & VARIABLES
   ---------------------------------------------------- */
:root {
    /* Color Palette */
    --color-bg-dark:        #100D07;   /* near-black warm-toned night */
    --color-bg-dark-2:      #1C140A;   /* deep espresso-brown secondary surface */
    --color-gold-deep:      #B9812E;   /* deep antique gold */
    --color-gold:           #D4A24E;   /* primary warm gold */
    --color-gold-bright:    #F2C572;   /* bright glow gold */
    --color-gold-highlight: #FFE7B0;   /* near-white gold core */
    --color-forest-green:   #2F4A34;   /* deep forest green (grounding only) */
    --color-sage:           #6B8F71;   /* muted leaf green (grounding only) */
    --color-earth-brown:    #6B4A2E;   /* rustic wood brown (grounding only) */
    --color-cream:          #F4EBDD;   /* warm off-white body text */
    --color-ember:          #C9622A;   /* firepit orange (sparingly) */

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-accent: 'Alex Brush', cursive;
    --font-body: 'Inter', sans-serif;

    /* Shadows & Glows */
    --glow-gold-soft: 0 0 15px rgba(212, 162, 78, 0.2);
    --glow-gold-medium: 0 0 25px rgba(242, 197, 114, 0.4);
    --glow-gold-bright: 0 0 35px rgba(255, 231, 176, 0.6);
    --glow-gold-border: 0 0 10px rgba(212, 162, 78, 0.25);
    
    /* Transitions */
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Layout */
    --container-width: 1200px;
    --container-small-width: 760px;
}

/* ----------------------------------------------------
   BASE RESET & ACCESSIBILITY
   ---------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg-dark);
    color: var(--color-cream);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Custom Selection */
::selection {
    background-color: var(--color-gold-deep);
    color: var(--color-bg-dark);
}

/* Screen Readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--color-bg-dark-2);
    border: 2px solid var(--color-bg-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-deep);
}

/* ----------------------------------------------------
   TYPOGRAPHY & UTILITIES
   ---------------------------------------------------- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.02em;
}

p {
    font-weight: 300;
}

.gold-text {
    background: linear-gradient(135deg, var(--color-gold-highlight) 0%, var(--color-gold) 50%, var(--color-gold-deep) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

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

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

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--color-cream);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

/* ----------------------------------------------------
   CUSTOM CURSOR (Desktop Only)
   ---------------------------------------------------- */
.custom-cursor {
    width: 8px;
    height: 8px;
    background-color: var(--color-gold-bright);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: width 0.2s, height 0.2s;
    opacity: 0;
}

.custom-cursor-follower {
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.08s ease-out, opacity 0.3s;
    opacity: 0;
}

@media (hover: none) or (max-width: 1024px) {
    .custom-cursor,
    .custom-cursor-follower {
        display: none;
    }
}

/* ----------------------------------------------------
   SWAYING CORNER LEAVES
   ---------------------------------------------------- */
.swaying-leaf {
    position: fixed;
    width: 250px;
    height: 250px;
    pointer-events: none;
    z-index: 9;
    filter: blur(1px);
}

.leaf-top-left {
    top: -40px;
    left: -40px;
    transform-origin: top left;
    animation: swayLeft 12s ease-in-out infinite alternate;
}

.leaf-top-right {
    top: -40px;
    right: -40px;
    transform-origin: top right;
    animation: swayRight 14s ease-in-out infinite alternate;
}

@keyframes swayLeft {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(5deg) scale(1.05); }
}

@keyframes swayRight {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(-6deg) scale(1.03); }
}

@media (max-width: 768px) {
    .swaying-leaf {
        width: 150px;
        height: 150px;
    }
}

/* ----------------------------------------------------
   BUTTON SYSTEM
   ---------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold-deep) 0%, var(--color-gold) 60%, var(--color-gold-bright) 100%);
    color: var(--color-bg-dark);
    border: none;
    box-shadow: var(--glow-gold-soft);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    box-shadow: var(--glow-gold-medium);
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-bright) 60%, var(--color-gold-highlight) 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--color-cream);
    border: 1px solid rgba(212, 162, 78, 0.4);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    border-color: var(--color-gold-bright);
    color: var(--color-gold-bright);
    background: rgba(212, 162, 78, 0.05);
    box-shadow: var(--glow-gold-soft);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--color-gold);
    border: 1px solid rgba(212, 162, 78, 0.3);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
    color: var(--color-bg-dark);
    background: var(--color-gold);
    box-shadow: var(--glow-gold-soft);
}

.btn-nav {
    padding: 0.55rem 1.25rem;
    font-size: 0.75rem;
    border-radius: 3px;
    background: transparent;
    color: var(--color-gold);
    border: 1px solid rgba(212, 162, 78, 0.4);
}

.btn-nav:hover,
.btn-nav:focus-visible {
    background: var(--color-gold);
    color: var(--color-bg-dark);
    box-shadow: var(--glow-gold-soft);
}

/* Keyboard Accessibility Outline */
.btn:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid var(--color-gold-bright);
    outline-offset: 4px;
}

/* ----------------------------------------------------
   STICKY NAVBAR
   ---------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition-smooth);
    background: transparent;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(16, 13, 7, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 162, 78, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.nav-logo,
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.logo-icon-svg {
    width: 44px;
    height: 44px;
    filter: drop-shadow(0 0 5px rgba(212, 162, 78, 0.25));
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.55rem;
    color: var(--color-gold);
    letter-spacing: 0.03em;
    transition: var(--transition-smooth);
}

.nav-logo:hover .logo-text,
.footer-logo:hover .logo-text {
    color: var(--color-gold-bright);
    text-shadow: 0 0 8px rgba(242, 197, 114, 0.3);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-cream);
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.25rem 0;
    opacity: 0.8;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold-bright);
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-gold-bright);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    padding: 5px;
}

.mobile-nav-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

/* Mobile Toggle State */
.mobile-nav-toggle.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-nav-toggle.open .bar:nth-child(2) {
    opacity: 0;
}
.mobile-nav-toggle.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--color-bg-dark-2);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: var(--transition-slow);
        z-index: 999;
        border-left: 1px solid rgba(212, 162, 78, 0.15);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
}

/* ----------------------------------------------------
   CINEMATIC HERO SECTION
   ---------------------------------------------------- */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(16, 13, 7, 0.45) 0%, rgba(16, 13, 7, 0.9) 100%);
    z-index: 2;
}

.fireflies-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 750px;
    padding: 0 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    color: var(--color-gold-bright);
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(242, 197, 114, 0.3);
}

.hero-logo-container {
    width: 100%;
    max-width: 480px;
    margin-bottom: 2rem;
}

.hero-logo-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(212, 162, 78, 0.3));
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 300;
    color: var(--color-cream);
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.tagline-word {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeWord 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.tagline-word:nth-child(1) { animation-delay: 0.8s; }
.tagline-word:nth-child(2) { animation-delay: 1.4s; }
.tagline-word:nth-child(3) { animation-delay: 2s; }

@keyframes fadeWord {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        gap: 1rem;
    }
    .hero-tagline {
        font-size: 1.75rem;
        gap: 0.8rem;
    }
}

/* Scroll cue */
.scroll-cue {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.scroll-cue:hover {
    opacity: 1;
}

.scroll-cue-svg {
    width: 28px;
    height: 42px;
}

.scroll-dot {
    animation: cueBounce 2s ease-in-out infinite;
}

@keyframes cueBounce {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(14px); opacity: 1; }
}

/* Animations Trigger Classes */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1.2s ease-out forwards;
}

.animate-scale-up {
    opacity: 0;
    transform: scale(0.95);
    animation: scaleUp 1.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.animate-fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 2.2s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}
@keyframes scaleUp {
    to { opacity: 1; transform: scale(1); }
}
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------------------
   BRAND STORY / WELCOME SECTION
   ---------------------------------------------------- */
.story {
    padding: 9rem 0;
    background-color: var(--color-bg-dark);
    position: relative;
}

.story::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to bottom, transparent, var(--color-bg-dark-2));
    pointer-events: none;
    z-index: 1;
}

.motif-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0 3.5rem;
}

.motif-divider .line {
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold-deep), transparent);
}

.leaf-motif-svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 5px rgba(212, 162, 78, 0.3));
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.85rem;
    line-height: 1.45;
    font-family: var(--font-heading);
    color: var(--color-cream);
    margin-bottom: 2rem;
    font-weight: 300;
}

.body-text {
    font-size: 1.05rem;
    color: var(--color-cream);
    opacity: 0.75;
    max-width: 680px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .lead-text {
        font-size: 1.45rem;
    }
}

/* ----------------------------------------------------
   BENTO EXPERIENCES GRID
   ---------------------------------------------------- */
.experiences {
    padding: 8rem 0;
    background-color: var(--color-bg-dark-2);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 1.5rem;
}

.bento-card {
    border-radius: 6px;
    background-color: var(--color-bg-dark);
    border: 1px solid rgba(212, 162, 78, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.2rem;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
    z-index: 2;
}

.bento-card.card-large {
    grid-column: span 2;
}

.bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16, 13, 7, 0.95) 0%, rgba(16, 13, 7, 0.4) 60%, transparent 100%);
    z-index: 1;
    transition: var(--transition-smooth);
}

.card-glow {
    position: absolute;
    inset: 0;
    border-radius: 6px;
    box-shadow: inset 0 0 0 1px rgba(242, 197, 114, 0);
    pointer-events: none;
    z-index: 3;
    transition: var(--transition-smooth);
}

.card-bg-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: var(--transition-smooth);
}

.card-content {
    position: relative;
    z-index: 2;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.card-header-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.card-icon {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    filter: drop-shadow(0 0 4px rgba(212, 162, 78, 0.3));
    transition: var(--transition-smooth);
}

.card-badge {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: var(--color-bg-dark);
    background: var(--color-gold);
    padding: 0.25rem 0.65rem;
    border-radius: 3px;
}

.card-title {
    font-size: 1.55rem;
    margin-bottom: 0.5rem;
    color: var(--color-cream);
    transition: var(--transition-smooth);
}

.card-description {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-cream);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

/* Card Hover States */
.bento-card:hover,
.bento-card:focus-within {
    transform: translateY(-8px);
    border-color: rgba(242, 197, 114, 0.45);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), var(--glow-gold-border);
}

.bento-card:hover .card-glow,
.bento-card:focus-within .card-glow {
    box-shadow: inset 0 0 0 1px rgba(242, 197, 114, 0.4);
}

.bento-card:hover .card-content,
.bento-card:focus-within .card-content {
    transform: translateY(0);
}

.bento-card:hover .card-description,
.bento-card:focus-within .card-description {
    opacity: 0.85;
    max-height: 80px;
    margin-top: 0.5rem;
}

.bento-card:hover .card-title,
.bento-card:focus-within .card-title {
    color: var(--color-gold-bright);
}

.bento-card:hover .card-icon,
.bento-card:focus-within .card-icon {
    transform: scale(1.1);
    color: var(--color-gold-bright);
}

/* Responsive Grid */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-card.card-large {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    .bento-card.card-large {
        grid-column: span 1;
    }
    .card-description {
        opacity: 0.85;
        max-height: 80px;
        margin-top: 0.5rem;
    }
    .card-content {
        transform: translateY(0);
    }
}

/* ----------------------------------------------------
   IMMERSIVE PHOTO GALLERY
   ---------------------------------------------------- */
.gallery {
    padding: 9rem 0;
    background-color: var(--color-bg-dark);
}

.gallery-scroll-container {
    margin-top: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2rem 0;
    cursor: grab;
    user-select: none;
    scrollbar-width: none; /* Firefox */
}

.gallery-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.gallery-track {
    display: flex;
    gap: 2rem;
    padding-left: 2rem;
    will-change: transform;
}

.gallery-item {
    flex: 0 0 450px;
    height: 300px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(212, 162, 78, 0.15);
    background-color: var(--color-bg-dark-2);
    transition: var(--transition-smooth);
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16, 13, 7, 0.9) 0%, rgba(16, 13, 7, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.gallery-item-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold-bright);
    margin-bottom: 0.25rem;
}

.gallery-item-category {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-cream);
    opacity: 0.8;
}

/* Gallery Item Hover */
.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--color-gold-bright);
    box-shadow: 0 15px 35px rgba(0,0,0,0.7), var(--glow-gold-border);
    cursor: zoom-in;
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(0.95);
}

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

.gallery-instructions {
    margin-top: 1rem;
}

.swipe-hint {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    opacity: 0.6;
}

@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 300px;
        height: 220px;
    }
    .gallery-item-overlay {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----------------------------------------------------
   LIGHTBOX SYSTEM
   ---------------------------------------------------- */
.lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(16, 13, 7, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

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

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

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border: 1px solid rgba(212, 162, 78, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), var(--glow-gold-medium);
}

.lightbox-caption {
    margin-top: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-cream);
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: var(--color-gold);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--color-gold-bright);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--color-gold);
    font-size: 2.5rem;
    cursor: pointer;
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--color-gold-bright);
    scale: 1.2;
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

@media (max-width: 768px) {
    .lightbox-prev, .lightbox-next {
        display: none;
    }
}

/* ----------------------------------------------------
   COMING SOON & LAUNCH SECTION
   ---------------------------------------------------- */
.launch {
    padding: 9rem 0;
    background-color: var(--color-bg-dark-2);
    position: relative;
    overflow: hidden;
}

.launch-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 162, 78, 0.08) 0%, rgba(16, 13, 7, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.badge-container {
    margin-bottom: 1rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.pulsing-gold-badge {
    background: rgba(212, 162, 78, 0.08);
    color: var(--color-gold-bright);
    border: 1px solid rgba(212, 162, 78, 0.35);
    box-shadow: 0 0 12px rgba(212, 162, 78, 0.15);
    animation: pulseBadge 2.5s infinite alternate;
}

.badge-icon {
    width: 14px;
    height: 14px;
}

@keyframes pulseBadge {
    0% {
        box-shadow: 0 0 12px rgba(212, 162, 78, 0.15);
        border-color: rgba(212, 162, 78, 0.35);
    }
    100% {
        box-shadow: 0 0 22px rgba(242, 197, 114, 0.35);
        border-color: rgba(242, 197, 114, 0.7);
    }
}

.launch-subtitle {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 640px;
    margin: 0 auto 1.75rem;
}

/* Glassmorphic Progress Tracker */
.progress-glass-card {
    background: rgba(28, 20, 10, 0.45);
    backdrop-filter: blur(14px) saturate(180%);
    border: 1px solid rgba(212, 162, 78, 0.2);
    border-radius: 8px;
    padding: 2.2rem;
    max-width: 520px;
    margin: 0 auto 2.2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), var(--glow-gold-border);
    z-index: 2;
    position: relative;
}

.progress-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    text-align: left;
}

.progress-status-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-icon {
    width: 24px;
    height: 24px;
    animation: rotate 6s linear infinite;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.progress-status-text {
    font-size: 1.15rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-gold-bright);
    text-shadow: 0 0 8px rgba(242, 197, 114, 0.3);
    min-height: 24px;
    display: inline-block;
    transition: opacity 0.3s;
}

.progress-bar-container {
    width: 100%;
    height: 6px;
    background: rgba(16, 13, 7, 0.6);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.85rem;
    border: 1px solid rgba(212, 162, 78, 0.1);
}

.progress-bar-ambient {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, rgba(212, 162, 78, 0.3) 0%, var(--color-gold-bright) 50%, rgba(212, 162, 78, 0.3) 100%);
    background-size: 200% 100%;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(242, 197, 114, 0.5);
    animation: progressAmbientShimmer 2.5s infinite linear;
}

@keyframes progressAmbientShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: 0% 0; }
}

/* Subscription Form styling */
.subscribe-form-container {
    max-width: 520px;
    margin: 0 auto;
}

.subscribe-form {
    width: 100%;
    margin-bottom: 1rem;
}

.input-group {
    display: flex;
    background: rgba(28, 20, 10, 0.45);
    backdrop-filter: blur(14px) saturate(180%);
    border: 1px solid rgba(212, 162, 78, 0.2);
    border-radius: 6px;
    padding: 0.25rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.input-group:focus-within {
    border-color: var(--color-gold-bright);
    box-shadow: 0 0 20px rgba(242, 197, 114, 0.35), var(--glow-gold-border);
}

.glass-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.85rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-cream);
    outline: none;
}

.glass-input::placeholder {
    color: var(--color-cream);
    opacity: 0.45;
}

.btn-submit {
    background: linear-gradient(135deg, var(--color-gold-deep) 0%, var(--color-gold) 60%, var(--color-gold-bright) 100%);
    color: var(--color-bg-dark);
    padding: 0.8rem 1.75rem;
    border: none;
    border-radius: 3px;
    gap: 0.5rem;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-bright) 60%, var(--color-gold-highlight) 100%);
    box-shadow: var(--glow-gold-soft);
}

.btn-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.btn-submit:hover .btn-arrow {
    transform: translateX(3px);
}

.trust-text {
    font-size: 0.75rem;
    color: var(--color-cream);
    opacity: 0.5;
}

.form-feedback {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    min-height: 20px;
    transition: var(--transition-smooth);
}

.form-feedback.success {
    color: var(--color-gold-bright);
    text-shadow: 0 0 5px rgba(242, 197, 114, 0.2);
}

.form-feedback.error {
    color: var(--color-ember);
}

@media (max-width: 600px) {
    .input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        gap: 0.85rem;
        padding: 0;
        box-shadow: none;
    }
    
    .glass-input {
        background: rgba(28, 20, 10, 0.45);
        backdrop-filter: blur(14px) saturate(180%);
        border: 1px solid rgba(212, 162, 78, 0.2);
        border-radius: 6px;
        width: 100%;
        transition: var(--transition-smooth);
    }

    .glass-input:focus {
        border-color: var(--color-gold-bright);
        box-shadow: 0 0 20px rgba(242, 197, 114, 0.35), var(--glow-gold-border);
    }
    
    .btn-submit {
        width: 100%;
        padding: 0.95rem;
    }
}

/* ----------------------------------------------------
   LOCATION SECTION
   ---------------------------------------------------- */
.location {
    padding: 8rem 0;
    background-color: var(--color-bg-dark);
}

.location-details-card {
    background: var(--color-bg-dark-2);
    border: 1px solid rgba(212, 162, 78, 0.1);
    border-radius: 6px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.details-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.detail-icon {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 6px rgba(212, 162, 78, 0.3));
}

.location-text {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.85;
}

.location-text strong {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: var(--color-gold-bright);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(212, 162, 78, 0.3);
    border-radius: 50%;
    color: var(--color-gold);
    transition: var(--transition-smooth);
    background: transparent;
}

.social-icon-link svg {
    width: 20px;
    height: 20px;
}

.social-icon-link:hover {
    color: var(--color-bg-dark);
    background-color: var(--color-gold-bright);
    border-color: var(--color-gold-bright);
    box-shadow: var(--glow-gold-soft);
    transform: translateY(-4px);
}

/* ----------------------------------------------------
   FOOTER SECTION
   ---------------------------------------------------- */
.footer {
    padding: 5rem 0 3.5rem;
    background-color: var(--color-bg-dark-2);
    border-top: 1px solid rgba(212, 162, 78, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-tagline {
    font-family: var(--font-accent);
    font-size: 1.55rem;
    color: var(--color-gold-bright);
    margin-top: 0.5rem;
    text-shadow: 0 0 5px rgba(242, 197, 114, 0.2);
}

.footer-title {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--color-cream);
    opacity: 0.7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    width: fit-content;
}

.footer-links a:hover {
    color: var(--color-gold-bright);
    opacity: 1;
    transform: translateX(3px);
}

.footer-text {
    font-size: 0.85rem;
    color: var(--color-cream);
    opacity: 0.6;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.footer-text a {
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        align-items: center;
    }
}

/* ----------------------------------------------------
   SCROLL REVEAL (Intersection Observer)
   ---------------------------------------------------- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* ----------------------------------------------------
   PREFERS REDUCED MOTION FALLBACK
   ---------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .custom-cursor,
    .custom-cursor-follower,
    .fireflies-canvas,
    .swaying-leaf {
        display: none !important;
    }
    .reveal-on-scroll,
    .tagline-word,
    .animate-scale-up,
    .animate-fade-in-up,
    .animate-fade-in {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }
    .hero-bg {
        transform: none !important;
    }
    .spinner-icon {
        animation: none !important;
    }
    .progress-bar {
        width: 85% !important;
        transition: none !important;
    }
}
