/* ═══════════════════════════════════════════════════════════════
   AKSARAY BANQUET — Premium Gallery Stylesheet
   Palette: Beige · Gold · Ivory · Warm Brown
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ────────────────────────────────────── */
:root {
    /* Core palette */
    --ivory:        #faf7f2;
    --cream:        #f3ede4;
    --warm-white:   #fdfaf6;
    --bg:           #f7f3ed;

    /* Brown scale */
    --brown-900:    #2a1c0f;
    --brown-800:    #3b2a1a;
    --brown-700:    #4e3825;
    --brown-600:    #6b4f38;
    --brown-500:    #8c6b52;
    --brown-400:    #b08a6e;
    --brown-300:    #ceb49a;
    --brown-200:    #e4d1be;
    --brown-100:    #f2e8dd;

    /* Gold scale */
    --gold:         #c9a84c;
    --gold-bright:  #e0b84a;
    --gold-deep:    #a0832a;
    --gold-pale:    rgba(201, 168, 76, 0.12);
    --gold-glow:    rgba(201, 168, 76, 0.25);

    /* Text */
    --text-primary:   #2a1c0f;
    --text-secondary: #6b4f38;
    --text-muted:     #9e8272;
    --text-faint:     #bfae9e;

    /* UI */
    --border:       rgba(110, 79, 56, 0.12);
    --border-gold:  rgba(201, 168, 76, 0.35);

    /* Shadows */
    --shadow-xs:  0 1px 4px rgba(42, 28, 15, 0.06);
    --shadow-sm:  0 2px 12px rgba(42, 28, 15, 0.10);
    --shadow-md:  0 6px 28px rgba(42, 28, 15, 0.14);
    --shadow-lg:  0 14px 56px rgba(42, 28, 15, 0.20);
    --shadow-xl:  0 24px 80px rgba(42, 28, 15, 0.26);

    /* Radii */
    --r-xs:  4px;
    --r-sm:  8px;
    --r-md:  12px;
    --r-lg:  18px;
    --r-xl:  28px;
    --r-2xl: 40px;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body:    'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Motion */
    --ease:         cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out:     cubic-bezier(0, 0, 0.2, 1);
    --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-bounce:  cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Transitions */
    --t-fast:   0.15s;
    --t-base:   0.28s;
    --t-slow:   0.5s;
    --t-xslow:  0.8s;
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--brown-200) var(--ivory);
    -webkit-text-size-adjust: 100%;
}

::-webkit-scrollbar        { width: 6px; }
::-webkit-scrollbar-track  { background: var(--ivory); }
::-webkit-scrollbar-thumb  { background: var(--brown-200); border-radius: 3px; }

body {
    font-family: var(--font-body);
    background: var(--ivory);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a   { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; font-size: inherit; }

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

/* ── Keyframes ────────────────────────────────────────────────── */
@keyframes fadeUp     { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }
@keyframes fadeIn     { from { opacity:0; } to { opacity:1; } }
@keyframes shimmer    { 0%{background-position:-200% center} 100%{background-position:200% center} }
@keyframes floatY     { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
@keyframes floatX     { 0%,100%{transform:translateX(0)} 50%{transform:translateX(5px)} }
@keyframes spin       { to { transform:rotate(360deg); } }
@keyframes pulse-glow { 0%,100%{box-shadow:0 0 0 0 var(--gold-glow)} 50%{box-shadow:0 0 0 10px transparent} }
@keyframes scrollWheel{ 0%{opacity:1;top:6px;} 80%{opacity:0;top:14px;} 100%{opacity:0;top:6px;} }
@keyframes particleFly {
    0%   { transform:translateY(0) scale(1); opacity:0; }
    10%  { opacity:.7; }
    90%  { opacity:.5; }
    100% { transform:translateY(-80vh) scale(0); opacity:0; }
}
@keyframes cardReveal {
    from { opacity:0; transform:translateY(22px) scale(0.97); }
    to   { opacity:1; transform:none; }
}
@keyframes skeletonPulse {
    0%,100% { opacity:1; }
    50%     { opacity:.5; }
}
@keyframes progressBar {
    from { transform:scaleX(0); }
    to   { transform:scaleX(1); }
}

/* ── Scroll-triggered animation helper ───────────────────────── */
[data-anim] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
[data-anim].is-visible {
    opacity: 1;
    transform: none;
}

/* ══════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    padding: 20px 0;
    transition: padding var(--t-base) var(--ease),
                background var(--t-base) var(--ease),
                box-shadow var(--t-base) var(--ease);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(250, 247, 242, 0.93);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform var(--t-base) var(--ease-spring);
}
.nav-logo:hover { transform: scale(1.03); }

.logo-ornament {
    font-size: .75rem;
    color: var(--gold);
    animation: floatY 4s ease-in-out infinite;
    will-change: transform;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    transition: color var(--t-base) var(--ease);
}

.navbar.scrolled .logo-text { color: var(--brown-800); }

/* Nav links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2px;
}

.nav-link {
    display: block;
    padding: 8px 18px;
    border-radius: var(--r-xl);
    font-size: .82rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255,255,255,.65);
    transition: all var(--t-base) var(--ease);
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(255,255,255,.1);
}

.navbar.scrolled .nav-link { color: var(--text-secondary); }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--brown-800);
    background: var(--gold-pale);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--t-base) var(--ease);
    transform-origin: center;
}

.navbar.scrolled .hamburger span { background: var(--brown-800); }

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--brown-800);
}

/* Hero background layers */
.hero-bg { position: absolute; inset: 0; }

.hero-gradient {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 65% 55% at 50% 40%, rgba(201,168,76,.07) 0%, transparent 65%),
        linear-gradient(160deg,
            #1e1208 0%,
            var(--brown-800) 25%,
            #503a28 55%,
            var(--brown-800) 75%,
            #1a0f08 100%);
}

.hero-texture {
    position: absolute; inset: 0;
    opacity: .018;
    background-image:
        radial-gradient(circle at 20% 20%, #fff 1px, transparent 1px),
        radial-gradient(circle at 70% 60%, #fff 1px, transparent 1px),
        radial-gradient(circle at 50% 90%, #fff 1px, transparent 1px);
    background-size: 64px 64px, 48px 48px, 80px 80px;
}

.hero-canvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    opacity: .7;
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 720px;
    width: 100%;
}

/* Eyebrow */
.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
    animation: fadeUp .9s var(--ease) .1s both;
}
.eyebrow-line {
    display: block;
    width: 48px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--brown-400), transparent);
}
.eyebrow-text {
    font-size: .72rem;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--brown-300);
}

/* Title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.8rem, 10vw, 7.5rem);
    font-weight: 400;
    letter-spacing: 12px;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 16px;
    background: linear-gradient(
        135deg,
        #f0e8da 0%,
        var(--gold-bright) 30%,
        #f0e8da 50%,
        var(--gold-bright) 70%,
        #f0e8da 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeUp .9s var(--ease) .25s both, shimmer 9s linear infinite;
    will-change: background-position;
}

/* Date */
.hero-date {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.8vw, 1.8rem);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 24px;
    animation: fadeUp .9s var(--ease) .4s both;
}

/* Divider */
.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 22px;
    animation: fadeUp .9s var(--ease) .5s both;
}
.divider-line  { display:block; width:60px; height:1px; background:linear-gradient(90deg,transparent,var(--brown-400),transparent); }
.divider-diamond { font-size:.55rem; color:var(--gold); opacity:.7; }
.divider-dot   { width:3px; height:3px; border-radius:50%; background:var(--brown-400); }

/* Subtitle */
.hero-subtitle {
    font-size: clamp(.95rem, 2vw, 1.15rem);
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--brown-300);
    line-height: 1.8;
    margin-bottom: 48px;
    animation: fadeUp .9s var(--ease) .6s both;
}

/* CTA button */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    border: 1px solid rgba(201,168,76,.4);
    border-radius: var(--r-2xl);
    font-size: .82rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brown-200);
    background: rgba(201,168,76,.04);
    transition: all var(--t-base) var(--ease);
    animation: fadeUp .9s var(--ease) .8s both;
    position: relative;
    overflow: hidden;
}
.hero-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,.12), transparent);
    opacity: 0;
    transition: opacity var(--t-base);
}
.hero-btn:hover {
    color: var(--gold-bright);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(201,168,76,.18);
}
.hero-btn:hover::before { opacity: 1; }
.hero-btn svg { transition: transform var(--t-base) var(--ease-spring); }
.hero-btn:hover svg { transform: translateX(4px); }

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 36px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeIn 1s var(--ease) 1.8s both;
}
.hero-scroll-hint span { font-size:.65rem; letter-spacing:3px; color:var(--brown-400); text-transform:uppercase; }
.scroll-mouse {
    width: 22px; height: 36px;
    border: 1.5px solid rgba(255,255,255,.18);
    border-radius: 12px;
    position: relative;
}
.scroll-wheel {
    width: 3px; height: 7px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2.2s var(--ease) infinite;
}

/* ══════════════════════════════════════════════════════════════
   GALLERY SECTION
══════════════════════════════════════════════════════════════ */
.gallery-section {
    padding: 0 0 120px;
    background: var(--warm-white);
    position: relative;
}

.section-wave-top {
    width: 100%;
    line-height: 0;
    margin-bottom: -1px;
}
.section-wave-top svg {
    display: block;
    width: 100%; height: 60px;
}

/* Section header */
.section-header {
    text-align: center;
    padding-top: 80px;
    margin-bottom: 48px;
}

.section-label {
    display: inline-block;
    font-size: .7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 14px;
    font-weight: 400;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 400;
    color: var(--brown-800);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-desc {
    font-size: .9rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ── Gallery Toolbar ─────────────────────────────────────────── */
.gallery-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
    padding: 18px 24px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
}

.photo-counter {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.counter-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--brown-700);
    line-height: 1;
}
.counter-label {
    font-size: .78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.toolbar-actions {
    display: flex;
    gap: 10px;
}

.toolbar-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--r-xl);
    border: 1px solid var(--border);
    background: #fff;
    font-size: .78rem;
    font-weight: 400;
    letter-spacing: .5px;
    color: var(--text-secondary);
    transition: all var(--t-base) var(--ease);
}
.toolbar-btn:hover {
    border-color: var(--brown-400);
    color: var(--brown-700);
    box-shadow: var(--shadow-xs);
    transform: translateY(-1px);
}

.toolbar-btn-gold {
    background: var(--brown-800);
    border-color: var(--brown-800);
    color: var(--brown-200);
}
.toolbar-btn-gold:hover {
    background: var(--brown-700);
    border-color: var(--brown-700);
    color: #fff;
}

/* ── Gallery Grid ───────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    align-items: start;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    cursor: pointer;
    background: var(--brown-100);
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4 / 3;
    animation: cardReveal .45s var(--ease) forwards;
    transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
    will-change: transform;
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .65s var(--ease);
    will-change: transform;
}
.gallery-item:hover img { transform: scale(1.07); }

/* Skeleton loading state */
.gallery-item.loading img { opacity: 0; }
.gallery-item.loading::after {
    content: '';
    position: absolute; inset: 0;
    background: var(--brown-100);
    animation: skeletonPulse 1.4s ease-in-out infinite;
}

/* Hover overlay */
.item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to top,
        rgba(42, 28, 15, .65) 0%,
        rgba(42, 28, 15, .15) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity var(--t-base) var(--ease);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 18px;
}
.gallery-item:hover .item-overlay { opacity: 1; }

.overlay-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    border-radius: var(--r-xl);
    background: rgba(255,255,255,.9);
    color: var(--brown-800);
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .5px;
    transition: all .2s;
    transform: translateY(8px);
    opacity: 0;
    transition: transform var(--t-base) var(--ease-spring), opacity var(--t-base), background .15s;
}
.gallery-item:hover .overlay-view-btn {
    transform: translateY(0);
    opacity: 1;
}
.overlay-view-btn:hover { background: #fff; }

/* ── Gallery States ─────────────────────────────────────────── */
.gallery-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 60px 0 40px;
}

.loader-ring {
    width: 48px; height: 48px;
    border: 3px solid var(--brown-200);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    font-size: .82rem;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.gallery-empty {
    text-align: center;
    padding: 80px 24px;
    background: var(--cream);
    border-radius: var(--r-lg);
    border: 1px dashed var(--border);
    margin-top: 20px;
}
.empty-icon { font-size: 3rem; margin-bottom: 16px; opacity: .5; }
.gallery-empty h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--brown-700); margin-bottom: 8px; }
.gallery-empty p  { color: var(--text-muted); font-size: .88rem; }
.gallery-empty code { background: var(--brown-100); padding: 2px 8px; border-radius: var(--r-xs); font-family: monospace; color: var(--brown-700); }

.gallery-end {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 48px 0 16px;
    font-size: .75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-faint);
}
.end-ornament { color: var(--gold); opacity: .6; }

/* ══════════════════════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════════════════════ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-backdrop {
    position: absolute; inset: 0;
    background: rgba(15, 10, 5, .95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.lb-container {
    position: relative;
    z-index: 1;
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 72px 80px 32px;
    gap: 18px;
}

/* Image */
.lb-img-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-height: calc(100dvh - 180px);
    position: relative;
}

.lb-skeleton {
    position: absolute; inset: 0;
    border-radius: var(--r-sm);
    background: linear-gradient(90deg, #2a1c0f 25%, #3b2a1a 50%, #2a1c0f 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s linear infinite;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-fast);
}
.lb-skeleton.visible { opacity: 1; }

.lb-image {
    max-width: min(92vw, 1200px);
    max-height: calc(100dvh - 190px);
    object-fit: contain;
    border-radius: var(--r-sm);
    box-shadow: 0 20px 80px rgba(0,0,0,.7);
    transition: opacity .3s var(--ease), transform .4s var(--ease-spring);
    user-select: none;
}

/* Buttons */
.lb-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--t-base) var(--ease);
    cursor: pointer;
}

.lb-close {
    position: absolute;
    top: 18px; right: 20px;
    width: 44px; height: 44px;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.7);
    border: 1px solid rgba(255,255,255,.08);
}
.lb-close:hover {
    background: rgba(255,255,255,.14);
    color: #fff;
    transform: rotate(90deg);
}

.lb-arrow {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px;
    background: rgba(255,255,255,.05);
    color: rgba(255,255,255,.6);
    border: 1px solid rgba(255,255,255,.08);
}
.lb-arrow:hover {
    background: rgba(201,168,76,.15);
    border-color: rgba(201,168,76,.3);
    color: var(--gold-bright);
}

.lb-prev { left: 18px; }
.lb-next { right: 18px; }

/* Panel */
.lb-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 640px;
}

.lb-counter {
    font-size: .78rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,.3);
}
.lb-sep { margin: 0 6px; }

.lb-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--r-xl);
    border: 1px solid rgba(201,168,76,.3);
    color: var(--gold);
    font-size: .78rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all var(--t-base) var(--ease);
}
.lb-download:hover {
    background: rgba(201,168,76,.12);
    border-color: var(--gold);
    transform: translateY(-1px);
}

/* Progress bar (swipe indicator) */
.lb-progress {
    position: absolute;
    bottom: 0; left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
    border-radius: 1px;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform .35s var(--ease);
}

/* Lightbox entrance animation */
.lightbox .lb-image {
    animation: fadeIn .3s var(--ease) both;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
    background: var(--brown-900);
    padding: 0 0 40px;
    position: relative;
}

.footer-decor {
    display: flex;
    align-items: center;
    padding: 0 28px;
    margin-bottom: 60px;
}
.footer-decor-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,168,76,.25)); }
.footer-decor-line:last-child { background: linear-gradient(90deg, rgba(201,168,76,.25), transparent); }
.footer-decor-diamond { padding: 0 16px; font-size: .55rem; color: var(--gold); opacity: .5; }

.footer-inner { text-align: center; padding: 0 24px; }

.footer-brand {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--brown-300), var(--gold), var(--brown-300));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 10s linear infinite;
}

.footer-tagline {
    font-size: .88rem;
    font-weight: 300;
    color: var(--brown-400);
    margin-bottom: 8px;
}
.footer-event {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gold);
    opacity: .75;
    margin-bottom: 48px;
}
.footer-copy {
    font-size: .7rem;
    letter-spacing: 1.5px;
    color: var(--brown-600);
    padding-top: 28px;
    border-top: 1px solid rgba(201,168,76,.08);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */

/* Large */
@media (max-width: 1200px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Tablet */
@media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .lb-container { padding: 56px 60px 28px; }
}

/* Mobile */
@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        position: fixed; inset: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: rgba(42, 28, 15, .97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        visibility: hidden;
        opacity: 0;
        transition: all var(--t-base) var(--ease);
        z-index: 999;
    }
    .nav-links.open {
        visibility: visible;
        opacity: 1;
    }
    .nav-link {
        font-size: 1.1rem;
        padding: 13px 40px;
        letter-spacing: 2px;
        color: rgba(255,255,255,.7) !important;
    }
    .nav-link:hover, .nav-link.active { color: #fff !important; background: rgba(255,255,255,.08) !important; }

    .hero-title { letter-spacing: 6px; }
    .section-header { padding-top: 60px; }
    .section-wave-top svg { height: 40px; }

    .gallery-toolbar { flex-direction: column; align-items: stretch; text-align: center; }
    .toolbar-actions { justify-content: center; }

    .lb-container { padding: 56px 14px 24px; }
    .lb-arrow { width: 42px; height: 42px; }
    .lb-prev { left: 6px; }
    .lb-next { right: 6px; }
    .lb-close { top: 12px; right: 12px; width: 40px; height: 40px; }
    .lb-panel { flex-direction: column; gap: 12px; }
}

/* Small mobile */
@media (max-width: 540px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

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

/* Touch device: always show overlay */
@media (hover: none) {
    .item-overlay         { opacity: 1 !important; background: linear-gradient(to top, rgba(42,28,15,.5) 0%, transparent 70%); }
    .overlay-view-btn     { transform: none !important; opacity: 1 !important; }
    .gallery-item:hover   { transform: none; box-shadow: var(--shadow-sm); }
    .gallery-item:hover img { transform: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
