/* ============================================
   Star Art Gallery - Premium Gallery Styles
   Colors: ivory, sand, charcoal, bronze/gold
   ============================================ */

:root {
    --color-ivory:      #faf8f5;
    --color-sand:       #e8e2d9;
    --color-sand-dark:  #d4ccc0;
    --color-charcoal:   #2c2c2c;
    --color-charcoal-soft: #3d3d3d;
    --color-bronze:     #b8860b;
    --color-gold:       #c9a227;
    --color-gold-light: #e5d4a1;
    --color-white:      #ffffff;
    --color-overlay:    rgba(44, 44, 44, 0.5);
    --color-overlay-light: rgba(250, 248, 245, 0.92);
    --font-display:     'Cormorant Garamond', Georgia, serif;
    --font-body:        'Outfit', -apple-system, sans-serif;
    --transition:       0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft:      0 4px 24px rgba(44, 44, 44, 0.08);
    --shadow-medium:    0 8px 40px rgba(44, 44, 44, 0.12);
    --shadow-strong:    0 16px 56px rgba(44, 44, 44, 0.16);
    --radius:           4px;
    --radius-lg:        8px;
    --header-height:    72px;
    /* Apple-style dark theme */
    --bg-dark:          #0a0a0a;
    --bg-dark-elevated: #111111;
    --bg-dark-card:     rgba(255, 255, 255, 0.04);
    --bg-dark-card-hover: rgba(255, 255, 255, 0.06);
    --text-on-dark:     #f5f5f7;
    --text-on-dark-muted: rgba(255, 255, 255, 0.72);
    --text-on-dark-dim:  rgba(255, 255, 255, 0.5);
    --border-on-dark:    rgba(255, 255, 255, 0.08);
    --highlight-glow:   radial-gradient(ellipse 100% 80% at 50% -10%, rgba(201, 162, 39, 0.12), transparent 55%),
                        radial-gradient(ellipse 80% 50% at 80% 50%, rgba(120, 90, 50, 0.08), transparent 50%),
                        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(80, 70, 50, 0.06), transparent 45%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-on-dark);
    background: var(--bg-dark);
    overflow-x: hidden;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: var(--highlight-glow);
    pointer-events: none;
    z-index: 0;
}
body > .skip-link,
body > header,
body > main,
body > footer { position: relative; z-index: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-gold-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-white); }
ul { list-style: none; margin: 0; padding: 0; }

:focus-visible {
    outline: 2px solid var(--color-gold-light);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 9999;
    padding: 0.75rem 1.25rem;
    background: var(--color-charcoal);
    color: var(--color-ivory);
    font-weight: 500;
    border-radius: var(--radius);
    transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(10, 10, 10, 0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-on-dark);
    transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled { background: rgba(10, 10, 10, 0.88); box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4); }

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--text-on-dark); letter-spacing: 0.02em; }
.logo:hover { color: var(--color-gold-light); }

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}
.hamburger, .hamburger::before, .hamburger::after {
    width: 22px;
    height: 2px;
    background: var(--text-on-dark);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; left: 0; }
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); top: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg); top: 0; }

.main-nav { display: flex; }
.nav-list { display: flex; gap: 2rem; align-items: center; }
.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-on-dark-muted);
    letter-spacing: 0.03em;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold-light);
    transition: width var(--transition);
}
.nav-link:hover { color: var(--text-on-dark); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--color-gold-light); }

/* Mobile nav */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--bg-dark-elevated);
        padding: calc(var(--header-height) + 2rem) 2rem 2rem;
        box-shadow: -8px 0 32px rgba(0,0,0,0.1);
        transform: translateX(100%);
        transition: transform var(--transition);
        overflow-y: auto;
    }
    .main-nav.is-open { transform: translateX(0); }
    .nav-list { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .nav-link { font-size: 1.1rem; }
}

/* ========== SECTIONS COMMON ========== */
.section {
    padding: 4rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .section { padding: 3rem 1rem; }
}
@media (max-width: 480px) {
    .section { padding: 2.5rem 0.75rem; }
}
.section--narrow { max-width: 840px; margin-left: auto; margin-right: auto; }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--text-on-dark);
    text-align: center;
    margin: 0 0 0.5rem;
    letter-spacing: 0.02em;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--text-on-dark-muted);
    text-align: center;
    margin: 0 0 3rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 0.9rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius);
    text-align: center;
}
.btn:focus-visible {
    outline: 2px solid var(--color-gold-light);
    outline-offset: 3px;
}
.btn--primary {
    background: var(--text-on-dark);
    color: var(--bg-dark);
}
.btn--primary:hover { background: var(--color-gold-light); color: var(--bg-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201, 162, 39, 0.25); }
.btn--secondary {
    background: transparent;
    color: var(--text-on-dark);
    border: 1.5px solid var(--border-on-dark);
}
.btn--secondary:hover { background: var(--bg-dark-card-hover); color: var(--text-on-dark); border-color: var(--text-on-dark-muted); }
.btn--gold {
    background: var(--color-bronze);
    color: var(--color-white);
}
.btn--gold:hover { background: var(--color-gold); color: var(--color-charcoal); transform: translateY(-2px); box-shadow: var(--shadow-medium); }

/* ========== HERO SLIDESHOW ========== */
.hero {
    position: relative;
    min-height: 100vh;
    margin-top: var(--header-height);
    overflow: hidden;
}
.hero-slides {
    position: absolute;
    inset: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}
.hero-slide.active .hero-slide__bg { transform: scale(1); }
.hero-slide__video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-slide__video {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(0.92);
}
.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(44,44,44,0.35) 0%, rgba(44,44,44,0.6) 100%);
    z-index: 1;
}
.hero-slide__content {
    position: absolute;
    bottom: 15%;
    left: 1.5rem;
    right: 1.5rem;
    max-width: 640px;
    z-index: 2;
    color: var(--color-white);
}
.hero-slide__title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 600;
    margin: 0 0 0.5rem;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-slide__subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0 0 1.5rem;
    font-weight: 300;
}
.hero-slide__content .btn { color: var(--color-white); border-color: var(--color-white); }
.hero-slide__content .btn:hover { background: var(--color-white); color: var(--color-charcoal); }

.hero-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.hero-arrows {
    display: flex;
    gap: 0.5rem;
}
.hero-arrow {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--color-white);
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.25rem;
}
.hero-arrow:hover { background: rgba(255,255,255,0.35); }
.hero-arrow:focus-visible,
.hero-dot:focus-visible,
.testimonial-dot:focus-visible,
.gallery-filter:focus-visible,
.gallery-view-btn:focus-visible,
.float-btn:focus-visible,
.scroll-top:focus-visible,
.lightbox__close:focus-visible,
.lightbox__nav:focus-visible {
    outline: 2px solid var(--color-gold-light);
    outline-offset: 3px;
}
.hero-dots {
    display: flex;
    gap: 0.5rem;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}
.hero-dot.active, .hero-dot:hover { background: var(--color-white); }

.hero-swipe-hint {
    display: none;
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    margin: 0;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    animation: heroSwipePulse 2.5s ease-in-out infinite;
}
@keyframes heroSwipePulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        touch-action: pan-y pinch-zoom;
    }
    .hero-swipe-hint { display: block; }
    .hero-slide__content { bottom: 22%; padding-right: 1rem; }
    .hero-slide__title { font-size: clamp(1.75rem, 6vw, 2.5rem); }
    .hero-slide__subtitle { font-size: 1rem; }
    .hero-controls {
        bottom: 1.25rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    .hero-arrow {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
    .hero-dot { width: 12px; height: 12px; }
}

/* ========== VIDEO SECTION ========== */
/* ========== Experience the Gallery (Feature video — stunning) ========== */
.experience-video {
    padding: 5rem 1.5rem 4rem;
    background: transparent;
    position: relative;
}
.experience-video__inner {
    max-width: 1100px;
    margin: 0 auto;
}
.experience-video__label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin: 0 0 0.5rem;
    text-align: center;
}
.experience-video__title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: var(--text-on-dark);
    text-align: center;
    margin: 0 0 2.5rem;
    line-height: 1.3;
    letter-spacing: 0.02em;
}
.experience-video__frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    max-height: 380px;
    box-shadow: 0 0 0 1px var(--border-on-dark),
                0 4px 24px rgba(0, 0, 0, 0.4),
                0 0 80px rgba(201, 162, 39, 0.08);
    transition: box-shadow 0.5s ease, transform 0.5s ease;
}
.experience-video__frame:hover {
    box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.25),
                0 24px 64px rgba(0, 0, 0, 0.5),
                0 0 120px rgba(201, 162, 39, 0.12);
}
.experience-video__glow {
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, transparent 40%, transparent 60%, rgba(184, 134, 11, 0.08) 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
}
.experience-video__player {
    width: 100%;
    height: auto;
    max-height: 380px;
    display: block;
    vertical-align: top;
    pointer-events: none;
    position: relative;
    z-index: 0;
    object-fit: cover;
    object-position: center;
}
.experience-video__more {
    margin-top: 2.5rem;
    text-align: center;
}
.experience-video__more-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-on-dark-dim);
    margin: 0 0 1rem;
}
.experience-video__thumbs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.experience-video__thumb {
    width: clamp(140px, 20vw, 200px);
    aspect-ratio: 16/10;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-on-dark);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.experience-video__thumb:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    border-color: rgba(201, 162, 39, 0.3);
}
.experience-video__thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

@media (max-width: 768px) {
    .experience-video { padding: 3rem 1rem 2.5rem; }
    .experience-video__title { margin-bottom: 1.5rem; font-size: clamp(1.4rem, 5vw, 1.85rem); }
    .experience-video__frame {
        border-radius: 12px;
        max-height: 260px;
    }
    .experience-video__player { max-height: 260px; }
    .experience-video__more { margin-top: 1.75rem; }
    .experience-video__thumbs { gap: 0.75rem; }
    .experience-video__thumb { width: 120px; }
}
@media (max-width: 380px) {
    .experience-video__frame { max-height: 200px; }
    .experience-video__player { max-height: 200px; }
    .experience-video__thumb { width: 100px; }
}

.section--video { background: var(--bg-dark-elevated); color: var(--text-on-dark); border-top: 1px solid var(--border-on-dark); }
.section--video .section-title,
.section--video .section-subtitle { color: var(--text-on-dark); }
.section--video .section-subtitle { opacity: 0.9; }
.video-block {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}
.video-block__player {
    width: 100%;
    display: block;
    vertical-align: top;
    pointer-events: none;
}

/* ========== FEATURE VIDEOS (Media/Video/Feature video) ========== */
.feature-videos { background: transparent; }
.feature-videos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.feature-video-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-dark-card);
    box-shadow: var(--shadow-soft);
    transition: box-shadow var(--transition);
}
.feature-video-card:hover { box-shadow: var(--shadow-medium); }
.feature-video-card__wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.feature-video-card__player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}
.feature-video-card__title {
    margin: 0;
    padding: 1rem 1.25rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-on-dark);
    text-align: center;
}

@media (max-width: 900px) {
    .feature-videos__grid { grid-template-columns: 1fr; }
    .feature-video-card__wrap { aspect-ratio: 16/9; }
}

/* ========== INTRO BLOCK ========== */
.intro-block {
    padding: 5rem 1.5rem;
    background: var(--bg-dark-card);
    text-align: center;
    border-top: 1px solid var(--border-on-dark);
    border-bottom: 1px solid var(--border-on-dark);
}
.intro-block__inner { max-width: 720px; margin: 0 auto; }
.intro-block__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--text-on-dark);
    margin: 0 0 1rem;
}
.intro-block__text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-on-dark-muted);
    margin: 0;
}

/* ========== FEATURED COLLECTIONS ========== */
.featured-collections { background: transparent; }
.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.collection-card {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-dark-card);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition);
}
.collection-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}
.collection-card__img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}
.collection-card:hover .collection-card__img { transform: scale(1.06); }
.collection-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44,44,44,0.85) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}
.collection-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin: 0 0 0.25rem;
}
.collection-card__desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    margin: 0 0 0.75rem;
}
.collection-card__link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-gold-light);
    letter-spacing: 0.05em;
}
.collection-card__link:hover { color: var(--color-white); }

@media (max-width: 900px) {
    .collections-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .collections-grid { grid-template-columns: 1fr; }
}

/* ========== WHY VISIT ========== */
.why-visit { background: var(--bg-dark-card); border-top: 1px solid var(--border-on-dark); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.why-card {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.why-card:hover { background: var(--bg-dark-card-hover); }
.why-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: rgba(201, 162, 39, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-gold-light);
}
.why-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--text-on-dark);
}
.why-card__text { font-size: 0.95rem; color: var(--text-on-dark-muted); margin: 0; }

@media (max-width: 768px) {
    .why-grid { grid-template-columns: 1fr; }
}

/* ========== HIGHLIGHT BANNER ========== */
.highlight-banner {
    background: var(--bg-dark-elevated);
    color: var(--text-on-dark);
    border-top: 1px solid var(--border-on-dark);
    padding: 4rem 1.5rem;
    text-align: center;
}
.highlight-banner__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    margin: 0 0 0.5rem;
}
.highlight-banner__text {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    opacity: 0.9;
}
.highlight-banner .btn--gold:hover { color: var(--bg-dark); }

/* ========== GALLERY PREVIEW ========== */
.gallery-preview { background: transparent; }
.gallery-preview__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-top: 2rem;
}
.gallery-preview__item {
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-dark-card);
}
.gallery-preview__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-preview__item:hover img { transform: scale(1.08); }
.gallery-preview__item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; min-height: 240px; }

/* Mobile: swipeable gallery slideshow */
.gallery-preview__mobile-slider {
    display: none;
    margin-top: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding-bottom: 0.5rem;
}
.gallery-preview__mobile-slider::-webkit-scrollbar { height: 6px; }
.gallery-preview__mobile-slider::-webkit-scrollbar-thumb { background: var(--border-on-dark); border-radius: 3px; }
.gallery-preview__mobile-slide {
    flex: 0 0 85%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-dark-card);
    box-shadow: var(--shadow-soft);
}
.gallery-preview__mobile-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

@media (max-width: 768px) {
    .gallery-preview__grid { display: none; }
    .gallery-preview__mobile-slider {
        display: flex;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .gallery-preview__mobile-slide { flex: 0 0 80%; margin-right: 1rem; }
}

/* ========== VISIT US PREVIEW ========== */
.visit-preview {
    background: var(--bg-dark-card);
    padding: 4rem 1.5rem;
    border-top: 1px solid var(--border-on-dark);
}
.visit-preview__inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
.visit-preview__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 220px;
    background: var(--bg-dark-elevated);
}
.visit-preview__map iframe { width: 100%; height: 100%; border: 0; }
.visit-preview__info h3 { font-family: var(--font-display); font-size: 1.5rem; margin: 0 0 0.5rem; color: var(--text-on-dark); }
.visit-preview__info p { margin: 0 0 0.5rem; color: var(--text-on-dark-muted); }
.visit-preview__info .btn { margin-top: 1rem; }

@media (max-width: 768px) {
    .visit-preview__inner { grid-template-columns: 1fr; }
    .visit-preview__map { height: 200px; order: -1; }
}

/* ========== INSTAGRAM CTA ========== */
.instagram-cta {
    background: var(--bg-dark-elevated);
    color: var(--text-on-dark);
    border-top: 1px solid var(--border-on-dark);
    padding: 4rem 1.5rem;
    text-align: center;
}
.instagram-cta__title { font-family: var(--font-display); font-size: 1.75rem; margin: 0 0 0.5rem; }
.instagram-cta__handle { font-size: 1.1rem; opacity: 0.9; margin: 0 0 1.5rem; }
.instagram-cta .btn--gold { margin: 0 0.5rem 0.5rem 0; }

/* ========== TESTIMONIALS ========== */
.testimonials { background: transparent; }
.testimonial-slider {
    max-width: 720px;
    margin: 2rem auto 0;
    text-align: center;
    position: relative;
}
.testimonial-slide {
    display: none;
    padding: 1rem 0;
}
.testimonial-slide.active { display: block; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.testimonial-slide__quote {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-on-dark);
    margin: 0 0 1rem;
}
.testimonial-slide__author { font-size: 0.9rem; color: var(--text-on-dark-muted); }
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-on-dark-dim);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}
.testimonial-dot.active { background: var(--color-gold-light); }

/* ========== CTA SECTION ========== */
.cta-section {
    background: var(--bg-dark-card);
    padding: 4rem 1.5rem;
    text-align: center;
    border-top: 1px solid var(--border-on-dark);
}
.cta-section__title { font-family: var(--font-display); font-size: 1.75rem; margin: 0 0 1rem; color: var(--text-on-dark); }
.cta-section__buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
    margin-top: var(--header-height);
    padding: 6rem 1.5rem 4rem;
    background: var(--bg-dark-elevated);
    color: var(--text-on-dark);
    text-align: center;
}
.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 600;
    margin: 0 0 0.5rem;
}
.page-hero__subtitle { font-size: 1.1rem; opacity: 0.9; margin: 0; }

/* ========== ABOUT PAGE ========== */
.about-story { padding: 4rem 1.5rem; }
.story-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}
.story-block:nth-child(even) { direction: rtl; }
.story-block:nth-child(even) > * { direction: ltr; }
.story-block__img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}
.story-block__img img { width: 100%; height: 100%; object-fit: cover; }
.story-block__content h3 { font-family: var(--font-display); font-size: 1.5rem; margin: 0 0 0.75rem; color: var(--text-on-dark); }
.story-block__content p { margin: 0 0 0.5rem; color: var(--text-on-dark-muted); }
.founder-block {
    max-width: 640px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: var(--bg-dark-card);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border-on-dark);
}
.founder-block h3 { font-family: var(--font-display); font-size: 1.35rem; margin: 0 0 0.5rem; color: var(--text-on-dark); }
.founder-block p { margin: 0; font-size: 0.95rem; color: var(--text-on-dark-muted); }

@media (max-width: 768px) {
    .story-block, .story-block:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
}

/* ========== COLLECTIONS PAGE ========== */
.collections-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.collections-filters .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}
.collections-filters .btn.active { background: var(--color-gold-light); color: var(--bg-dark); border-color: var(--color-gold-light); }
.collection-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.collection-item {
    background: var(--bg-dark-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition), box-shadow var(--transition);
}
.collection-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}
.collection-item.hidden { display: none; }
.collection-item__img-wrap {
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--color-sand);
}
.collection-item__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.collection-item:hover .collection-item__img-wrap img { transform: scale(1.05); }
.collection-item__body { padding: 1rem 1.25rem; }
.collection-item__title { font-family: var(--font-display); font-size: 1.2rem; margin: 0 0 0.35rem; color: var(--text-on-dark); }
.collection-item__desc { font-size: 0.9rem; color: var(--text-on-dark-muted); margin: 0; }
.collection-item__tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-gold-light);
}
.collections-intro {
    text-align: center;
    margin: 0 auto 1.5rem;
    max-width: 560px;
    color: var(--text-on-dark-muted);
    font-size: 1rem;
}

@media (max-width: 900px) {
    .collection-items-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .collection-items-grid { grid-template-columns: 1fr; }
}

/* ========== GALLERY PAGE — Modern & Interactive ========== */
.page-hero--gallery {
    position: relative;
    overflow: hidden;
}
.page-hero--gallery__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(44,44,44,0.4) 0%, rgba(44,44,44,0.85) 100%);
    pointer-events: none;
}
.page-hero--gallery .page-hero__title,
.page-hero--gallery .page-hero__subtitle { position: relative; z-index: 1; }
.page-hero__line {
    display: block;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-bronze), var(--color-gold-light));
    margin: 1.25rem auto 0;
    border-radius: 2px;
    position: relative;
    z-index: 1;
}
.page-hero__count {
    margin: 0.75rem 0 0;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-on-dark-muted);
    position: relative;
    z-index: 1;
}

/* Gallery toolbar */
.gallery-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-on-dark);
}
.gallery-toolbar__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.gallery-filter {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-on-dark-muted);
    background: transparent;
    border: 1px solid var(--border-on-dark);
    border-radius: 999px;
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.gallery-filter:hover {
    color: var(--text-on-dark);
    border-color: var(--text-on-dark-dim);
}
.gallery-filter.active {
    color: var(--bg-dark);
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
}
.gallery-toolbar__view {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.gallery-toolbar__label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-on-dark-muted);
}
.gallery-view-btn {
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-on-dark-muted);
    background: transparent;
    border: 1px solid var(--border-on-dark);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
}
.gallery-view-btn:hover { color: var(--text-on-dark); border-color: var(--text-on-dark-dim); }
.gallery-view-btn.active { color: var(--color-gold-light); border-color: var(--color-gold-light); background: rgba(201, 162, 39, 0.12); }

.gallery-section { padding-top: 2rem; }
.gallery-section__intro {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    color: var(--text-on-dark-muted);
}

.gallery-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 1rem;
    padding: 0;
    transition: opacity 0.3s ease;
}
.gallery-bento.gallery--grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    grid-auto-rows: 260px;
}
.gallery-bento.gallery--grid .gallery-tile--wide,
.gallery-bento.gallery--grid .gallery-tile--tall,
.gallery-bento.gallery--grid .gallery-tile--big {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-tile {
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-dark-card);
    position: relative;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.4s ease, filter 0.3s ease;
    box-shadow: 0 6px 24px rgba(44, 44, 44, 0.1);
}
.gallery-tile.revealed {
    opacity: 1;
    transform: translateY(0);
}
.gallery-tile.gallery-tile--hidden {
    display: none;
}
.gallery-tile:hover {
    box-shadow: 0 24px 48px rgba(44, 44, 44, 0.2);
    transform: translateY(-4px);
}
.gallery-tile.revealed:hover { transform: translateY(-4px); }
.gallery-tile__inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-tile:hover img {
    transform: scale(1.1);
}
.gallery-tile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44,44,44,0.82) 0%, rgba(44,44,44,0.2) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}
.gallery-tile:hover .gallery-tile__overlay { opacity: 1; }
.gallery-tile__zoom {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-white);
    transition: transform 0.3s ease;
}
.gallery-tile__zoom svg {
    width: 32px;
    height: 32px;
    opacity: 0.95;
}
.gallery-tile:hover .gallery-tile__zoom { transform: scale(1.05); }

/* Bento sizes */
.gallery-tile--wide { grid-column: span 2; }
.gallery-tile--tall { grid-row: span 2; }
.gallery-tile--big { grid-column: span 2; grid-row: span 2; }

@media (max-width: 900px) {
    .gallery-toolbar { flex-direction: column; align-items: stretch; }
    .gallery-toolbar__filters { justify-content: center; }
    .gallery-toolbar__view { justify-content: center; }
    .gallery-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .gallery-bento.gallery--grid { grid-auto-rows: 200px; }
    .gallery-tile--wide { grid-column: span 2; }
    .gallery-tile--tall { grid-row: span 2; }
    .gallery-tile--big { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 500px) {
    .gallery-bento { grid-auto-rows: 180px; gap: 0.75rem; }
    .gallery-bento.gallery--grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
}

/* Staggered reveal for gallery tiles */
.gallery-tile.revealed:nth-child(1) { transition-delay: 0.03s; }
.gallery-tile.revealed:nth-child(2) { transition-delay: 0.06s; }
.gallery-tile.revealed:nth-child(3) { transition-delay: 0.09s; }
.gallery-tile.revealed:nth-child(4) { transition-delay: 0.12s; }
.gallery-tile.revealed:nth-child(5) { transition-delay: 0.15s; }
.gallery-tile.revealed:nth-child(6) { transition-delay: 0.18s; }
.gallery-tile.revealed:nth-child(7) { transition-delay: 0.21s; }
.gallery-tile.revealed:nth-child(8) { transition-delay: 0.24s; }
.gallery-tile.revealed:nth-child(9) { transition-delay: 0.27s; }
.gallery-tile.revealed:nth-child(10) { transition-delay: 0.3s; }
.gallery-tile.revealed:nth-child(n+11) { transition-delay: 0.33s; }

/* ========== Lightbox — Premium ========== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0);
    backdrop-filter: none;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.35s ease, background 0.35s ease;
}
.lightbox.is-open {
    display: flex;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(12px);
    opacity: 1;
}
.lightbox__content {
    max-width: 95vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lightbox.is-open .lightbox__content { transform: scale(1); }
.lightbox__img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.5);
    transition: opacity 0.25s ease;
}
.lightbox__img.is-changing { opacity: 0; }
.lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.lightbox__close:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
}
.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 1.75rem;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}
.lightbox__nav:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
}
.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }
.lightbox__counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.9);
}

@media (max-width: 768px) {
    .lightbox__nav { width: 44px; height: 44px; font-size: 1.5rem; }
    .lightbox__prev { left: 0.75rem; }
    .lightbox__next { right: 0.75rem; }
    .lightbox__close { top: 1rem; right: 1rem; width: 44px; height: 44px; }
}

/* ========== VISIT PAGE ========== */
.visit-content { padding: 2rem 1.5rem 4rem; }
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.visit-map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    min-height: 360px;
}
.visit-map-wrap iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }
.visit-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.visit-card {
    background: var(--bg-dark-card);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-on-dark);
}
.visit-card h3 { font-family: var(--font-display); font-size: 1.2rem; margin: 0 0 0.5rem; color: var(--text-on-dark); }
.visit-card p { margin: 0; color: var(--text-on-dark-muted); }
.visit-card a { color: var(--color-gold-light); }

@media (max-width: 768px) {
    .visit-grid { grid-template-columns: 1fr; }
    .visit-map-wrap { min-height: 280px; }
}

/* ========== CONTACT PAGE ========== */
.contact-content {
    padding: 2rem 1.5rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.contact-form-wrap {
    background: var(--bg-dark-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-on-dark);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
    color: var(--text-on-dark);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-on-dark);
    background: var(--bg-dark);
    border: 1px solid var(--border-on-dark);
    border-radius: var(--radius);
    transition: border-color var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-on-dark-dim); }
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold-light);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-error { font-size: 0.85rem; color: #ef9a9a; margin-top: 0.25rem; }
.form-message {
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}
.form-message.success { background: rgba(46, 125, 50, 0.2); color: #a5d6a7; border: 1px solid rgba(46, 125, 50, 0.4); }
.form-message.error { background: rgba(198, 40, 40, 0.2); color: #ef9a9a; border: 1px solid rgba(198, 40, 40, 0.4); }
.contact-details h3 { font-family: var(--font-display); font-size: 1.35rem; margin: 0 0 0.75rem; color: var(--text-on-dark); }
.contact-details p { margin: 0 0 0.5rem; color: var(--text-on-dark-muted); }
.contact-details .btn { margin-top: 1rem; }

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--bg-dark-elevated);
    color: var(--text-on-dark-muted);
    border-top: 1px solid var(--border-on-dark);
    padding: 3rem 1.5rem 1.5rem;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-newsletter__text { font-size: 0.9rem; opacity: 0.85; margin: 0; }
.footer-logo { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--text-on-dark); }
.footer-logo:hover { color: var(--color-gold-light); }
.footer-tagline { font-size: 0.9rem; opacity: 0.85; margin: 0.5rem 0 0; }
.footer-links h4, .footer-contact h4, .footer-social h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 0.75rem;
    opacity: 0.9;
}
.footer-links ul { margin: 0; }
.footer-links a, .footer-contact a, .social-link {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}
.footer-links a:hover, .footer-contact a:hover, .social-link:hover { color: var(--color-gold-light); }
.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-on-dark);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.footer-bottom p { margin: 0; font-size: 0.9rem; opacity: 0.8; }
.footer-credit { font-size: 0.8rem; opacity: 0.65; margin-left: auto; }
.footer-credit a { color: inherit; text-decoration: none; }
.footer-credit a:hover { color: var(--color-gold-light); opacity: 1; }

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}

/* ========== FLOATING BUTTONS ========== */
.float-btn {
    position: fixed;
    bottom: 1.5rem;
    z-index: 9999;
    pointer-events: auto;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-white);
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition), box-shadow var(--transition);
}
.float-btn:hover { transform: scale(1.08); box-shadow: var(--shadow-strong); }
.float-btn__icon { display: block; flex-shrink: 0; }
.float-btn__icon--whatsapp { color: #fff; }
.float-btn__icon--instagram { color: #fff; }
.float-whatsapp { right: 1.25rem; background: #25D366; }
.float-instagram { right: 5rem; background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.btn__wa-icon, .wa-icon { display: inline-block; vertical-align: middle; margin-right: 0.4em; }
.btn__wa-icon svg, .wa-icon svg { vertical-align: middle; }
.contact-whatsapp a { display: inline-flex; align-items: center; }
.scroll-top {
    position: fixed;
    bottom: 1.5rem;
    left: 1.25rem;
    z-index: 9998;
    width: 44px;
    height: 44px;
    background: var(--bg-dark-elevated);
    color: var(--text-on-dark);
    border: 1px solid var(--border-on-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--color-gold-light); color: var(--bg-dark); }

@media (max-width: 768px) {
    .float-instagram { right: 1.25rem; bottom: 5.5rem; }
    .float-whatsapp { bottom: 5.5rem; right: 5rem; }
    .scroll-top { left: auto; right: 1.25rem; bottom: 5.5rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ========== LAZY LOAD ========== */
img[data-src] { opacity: 0; transition: opacity 0.4s ease; }
img[data-src].loaded { opacity: 1; }

/* ========== HOMEPAGE SPLIT REDESIGN ========== */
.premium-split__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.75rem;
}
.premium-split--two-pane .premium-split__grid {
    position: relative;
}
.premium-split--two-pane .premium-split__grid::after {
    content: "";
    position: absolute;
    top: 0.25rem;
    bottom: 0.25rem;
    left: calc(60% - 0.875rem);
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(201, 162, 39, 0.32) 18%,
        rgba(201, 162, 39, 0.32) 82%,
        transparent 100%
    );
    pointer-events: none;
}
.premium-panel {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-on-dark);
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}
.premium-panel__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold-light);
}
.premium-panel__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3vw, 2.35rem);
    line-height: 1.2;
}
.premium-panel__subtitle {
    margin: 0.65rem 0 0;
    color: var(--text-on-dark-muted);
    max-width: 58ch;
}
.premium-card-grid {
    margin-top: 1.5rem;
    display: grid;
    gap: 1.15rem;
}
.premium-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-on-dark);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.55s ease, box-shadow 0.55s ease, border-color 0.45s ease;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}
.premium-panel--art .premium-card {
    border-color: rgba(201, 162, 39, 0.2);
}
.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}
.premium-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.premium-panel--art .premium-card img {
    height: 290px;
}
.premium-card:hover img {
    transform: scale(1.03);
}
.premium-card__body {
    padding: 1.15rem 1.1rem 1.35rem;
}
.premium-card__body h3 {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 1.45rem;
    line-height: 1.25;
}
.premium-card__body p {
    margin: 0;
    color: var(--text-on-dark-muted);
    line-height: 1.7;
}
.premium-details {
    margin-top: 0.8rem;
}
.premium-details summary {
    cursor: pointer;
    font-weight: 500;
    color: var(--color-gold-light);
}
.premium-details p {
    margin-top: 0.5rem;
}
.premium-read-more {
    margin-top: 1rem;
}

.qr-showcase__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 760px;
    margin: 0 auto;
}
.qr-card {
    text-align: center;
    background: var(--bg-dark-card);
    border: 1px solid var(--border-on-dark);
    border-radius: 12px;
    padding: 1rem;
}
.qr-card img {
    width: 220px;
    max-width: 100%;
    margin: 0 auto 0.85rem;
    border-radius: 10px;
}
.qr-card h3 {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
}

/* ========== EVENTS PAGE ========== */
.events-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.5rem;
    align-items: center;
}
.events-showcase__media video,
.events-showcase__media img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border-on-dark);
    background: var(--bg-dark-card);
}
.events-showcase__content h2 {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
}
.events-showcase__content p {
    margin: 0 0 1rem;
    color: var(--text-on-dark-muted);
}
.events-list__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.event-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-on-dark);
    border-radius: 12px;
    padding: 1rem;
}
.event-card__meta {
    margin: 0 0 0.4rem;
    color: var(--color-gold-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.event-card h3 {
    margin: 0 0 0.45rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
}
.event-card p {
    margin: 0;
    color: var(--text-on-dark-muted);
}

/* ========== CONTACT QR ========== */
.contact-qr-grid {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}
.contact-qr-card {
    text-align: center;
    background: var(--bg-dark-card);
    border: 1px solid var(--border-on-dark);
    border-radius: 10px;
    padding: 0.75rem;
}
.contact-qr-card img {
    width: 100%;
    max-width: 140px;
    margin: 0 auto 0.45rem;
}
.contact-qr-card p {
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .premium-split__grid,
    .events-showcase,
    .events-list__grid {
        grid-template-columns: 1fr;
    }
    .premium-split--two-pane .premium-split__grid::after {
        display: none;
    }
    .premium-panel--art .premium-card img {
        height: 240px;
    }
}
@media (max-width: 600px) {
    .qr-showcase__grid,
    .contact-qr-grid {
        grid-template-columns: 1fr;
    }
    .premium-card img {
        height: 200px;
    }
}

/* ========== GLOBAL PREMIUM REFINEMENTS ========== */
body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.section {
    padding-top: 4.75rem;
    padding-bottom: 4.75rem;
}

.section-title {
    letter-spacing: 0.03em;
}

.section-subtitle {
    margin-bottom: 3.25rem;
}

.btn {
    border-radius: 999px;
}

.premium-panel {
    backdrop-filter: blur(4px);
}

.event-card {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.contact-form-wrap {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.form-group input,
.form-group textarea {
    border-radius: 10px;
}

.site-footer {
    padding: 3.5rem 1.5rem 1.75rem;
}

.section,
.page-hero,
.cta-section,
.visit-preview,
.events-showcase,
.events-list {
    position: relative;
}

.section::before,
.events-showcase::before,
.events-list::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.22), transparent);
    pointer-events: none;
}

.premium-card,
.event-card,
.qr-card,
.contact-qr-card,
.contact-form-wrap,
.visit-card {
    border-color: rgba(255, 255, 255, 0.12);
}
