/* ============================================
   SOLANISHUTTER — Premium Wedding Photography
   Design System — Matched to Reference
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Dark backgrounds — warm olive-black tint (NOT pure black) */
    --bg-dark: #0e110c;
    --bg-dark-2: #12150f;
    --bg-dark-card: #191d15;
    --bg-dark-card-hover: #1f2319;

    /* Cream / light backgrounds */
    --bg-cream: #f5f0e6;
    --bg-cream-2: #ebe4d6;

    /* Gold spectrum — warm amber */
    --gold: #c9a84c;
    --gold-bright: #dbb95a;
    --gold-deep: #b09035;
    --gold-light: #e8ce78;
    --gold-glow: rgba(201, 168, 76, 0.18);
    --gold-border: rgba(201, 168, 76, 0.30);
    --gold-border-strong: rgba(201, 168, 76, 0.55);

    /* Text */
    --cream: #f5f0e6;
    --cream-soft: #ddd6c8;
    --text-dark: #1e1c16;
    --text-dark-secondary: #55503f;
    --text-light: #f5f0e6;
    --text-light-secondary: #a89e8a;
    --text-muted: #706858;

    /* Accents */
    --whatsapp: #25D366;
    --whatsapp-hover: #20bd5a;

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

    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Animations ---------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(37, 211, 102, 0.35);
    }

    50% {
        box-shadow: 0 0 35px rgba(37, 211, 102, 0.55);
    }
}

/* ---------- Section Common ---------- */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 65px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    position: relative;
    padding: 0 24px;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
}

.section-label::before {
    right: 100%;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.section-label::after {
    left: 100%;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--cream);
    margin-bottom: 16px;
}

.text-accent {
    color: var(--gold);
    font-style: italic;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.12rem;
    color: var(--text-light-secondary);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Light section overrides */
.about .section-title,
.gallery .section-title,
.faq .section-title {
    color: var(--text-dark);
}

.about .section-label,
.gallery .section-label,
.faq .section-label {
    color: var(--gold-deep);
}

.gallery .section-subtitle,
.faq .section-subtitle {
    color: var(--text-dark-secondary);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: var(--bg-dark);
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: var(--bg-dark);
    font-weight: 600;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
    transform: translateY(-2px);
}

.btn-small {
    padding: 12px 22px;
    font-size: 0.8rem;
}

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

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

/* ============================================
   NAVIGATION — minimal top bar
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(14, 17, 12, 0.96);
    backdrop-filter: blur(16px);
    padding: 10px 0;
    border-bottom: 1px solid var(--gold-border);
}

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

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.logo-text {
    color: var(--cream);
}

.logo-accent {
    color: var(--gold);
    font-style: italic;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--cream-soft);
    transition: color var(--transition-fast);
}

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

.nav-links a.is-active {
    color: var(--gold);
}

.nav-cta {
    padding: 9px 22px !important;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)) !important;
    color: var(--bg-dark) !important;
    border-radius: 6px;
    font-weight: 600 !important;
}

.nav-cta:hover {
    color: var(--bg-dark) !important;
    box-shadow: 0 4px 18px rgba(201, 168, 76, 0.35);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--cream);
    transition: all var(--transition-fast);
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   HERO — Brand-name centered, warm golden
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* Warm dark with golden ambience, slight olive tint */
    background:
        radial-gradient(ellipse at 50% 35%, rgba(201, 168, 76, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 30% 70%, rgba(180, 140, 50, 0.07) 0%, transparent 40%),
        radial-gradient(ellipse at 75% 25%, rgba(220, 190, 80, 0.05) 0%, transparent 35%),
        linear-gradient(180deg, #18150d 0%, #0e110c 40%, #0c0f09 100%);
}

/* Hero text position — controlled from dashboard */
.hero.hero-pos-top {
    align-items: flex-start;
    padding-top: 140px;
}

.hero.hero-pos-center {
    align-items: center;
    padding-top: 0;
}

.hero.hero-pos-bottom {
    align-items: flex-end;
    padding-bottom: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(12, 14, 9, 0.45) 0%, rgba(12, 14, 9, 0.75) 100%),
        radial-gradient(ellipse at 50% 90%, rgba(201, 168, 76, 0.08), transparent 40%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 0 24px;
    z-index: 2;
}

/* Nav links inside hero (matching reference) */
.hero-nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 0.8s 0.2s forwards;
}

.hero-nav-links a {
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--cream-soft);
    transition: color var(--transition-fast);
}

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

/* Big brand name — the hero centerpiece */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeInUp 1s 0.4s forwards;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6), 0 4px 40px rgba(0, 0, 0, 0.3);
}

.hero-brand {
    color: var(--cream);
}

.hero-brand-accent {
    color: var(--gold);
    font-style: italic;
    font-weight: 500;
}

/* Image logo replacements (when uploaded from dashboard) */
.nav-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.hero-logo-img {
    max-height: clamp(80px, 18vw, 180px);
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

/* Tagline under brand name */
.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 400;
    color: var(--cream-soft);
    margin-bottom: 8px;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUp 0.8s 0.6s forwards;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cream-soft);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s 0.75s forwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s 0.9s forwards;
}

.hero-wa-btn {
    padding: 16px 36px;
    font-size: 0.9rem;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Gradient fade at hero bottom — subtle "there's more" hint */
.hero-fade-edge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(to bottom, transparent, rgba(14, 17, 12, 0.95));
    z-index: 3;
    pointer-events: none;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    cursor: pointer;
    opacity: 0;
    animation: fadeInUp 0.8s 1.1s forwards;
}

.hero-scroll-hint svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
    opacity: 0.6;
    animation: scrollBounce 2s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

.hero-scroll-hint:hover svg {
    opacity: 1;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* ============================================
   ABOUT — Cream background
   ============================================ */
.about {
    background: var(--bg-cream);
    color: var(--text-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 65px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
    border: 3px solid var(--gold-border-strong);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0d4c0, #c9bba5);
}

.about-image-placeholder svg {
    width: 70px;
    height: 70px;
    color: var(--gold-deep);
    opacity: 0.35;
}

.about-image-frame {
    position: absolute;
    top: 14px;
    left: 14px;
    right: -14px;
    bottom: -14px;
    border: 2px solid var(--gold);
    opacity: 0.35;
    border-radius: 10px;
}

.about-content .section-label {
    padding-left: 0;
}

.about-content .section-label::before {
    display: none;
}

.about-text {
    font-size: 1.08rem;
    color: var(--text-dark-secondary);
    margin-bottom: 18px;
    line-height: 1.9;
}

.about-stats {
    display: flex;
    gap: 36px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid var(--gold-border);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gold-deep);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold-deep);
}

.stat-label {
    font-family: var(--font-ui);
    font-size: 0.76rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dark-secondary);
    margin-top: 6px;
}

/* ============================================
   SERVICES — White background, gold cards
   ============================================ */
.services {
    background: #ffffff;
    color: var(--text-dark);
}

.services .section-title {
    color: var(--text-dark);
}

.services .section-label {
    color: var(--gold-deep);
}

.services .section-subtitle {
    color: var(--text-dark-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.service-card {
    background: #ffffff;
    border: 1.5px solid var(--gold-border);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2.5px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, var(--gold-glow), transparent 65%);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.service-card:hover {
    background: #fff;
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1), 0 0 20px var(--gold-glow);
}

.service-card:hover::before,
.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 22px;
    color: var(--gold);
    transition: transform var(--transition-medium);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.12);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.service-desc {
    font-size: 0.96rem;
    color: var(--text-dark-secondary);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ============================================
   GALLERY — Cream section with gold-framed images
   ============================================ */
.gallery {
    background: var(--bg-cream);
    color: var(--text-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 210px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    border: 3px solid var(--gold-border-strong);
}

.gallery-item:hover {
    transform: scale(1.03);
    z-index: 2;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18), 0 0 18px var(--gold-glow);
    border-color: var(--gold);
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
            hsl(var(--hue, 35), 22%, 62%),
            hsl(var(--hue, 35), 18%, 48%));
    font-family: var(--font-ui);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 17, 12, 0.85), transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

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

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gold-bright);
    font-style: italic;
}

.gallery-item-featured {
    grid-column: span 2;
    grid-row: span 2;
}

/* ============================================
   WEDDING STORIES — Album Cards
   ============================================ */
.wedding-stories {
    background: var(--surface-1);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.story-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    border: 2px solid var(--gold-border-strong);
    background: var(--surface-2);
}

.story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25), 0 0 20px var(--gold-glow);
    border-color: var(--gold);
}

.story-card-image {
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, hsl(35, 22%, 62%), hsl(35, 18%, 48%));
}

.story-card-image.aspect-landscape {
    aspect-ratio: 16 / 9;
    height: auto;
}

.story-card-image.aspect-portrait {
    aspect-ratio: 3 / 4;
    height: auto;
}

.story-card-image.aspect-square {
    aspect-ratio: 1 / 1;
    height: auto;
}

.story-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-card:hover .story-card-image img {
    transform: scale(1.08);
}

.story-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px 18px;
    background: linear-gradient(to top, rgba(14, 17, 12, 0.92), rgba(14, 17, 12, 0.4) 60%, transparent);
}

.story-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--gold-bright);
    font-style: italic;
    margin-bottom: 4px;
}

.story-card-meta {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 10px;
}

.story-card-photos {
    background: var(--gold-dim);
    color: var(--gold);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.stories-empty {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   TESTIMONIALS — White section
   ============================================ */
.testimonials {
    background: #ffffff;
    color: var(--text-dark);
}

.testimonials .section-title {
    color: var(--text-dark);
}

.testimonials .section-label {
    color: var(--gold-deep);
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
    max-width: 840px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 45px 45px;
    text-align: center;
}

.testimonial-stars {
    font-size: 1.3rem;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 22px;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 1.18rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 30px;
    position: relative;
    padding: 0 16px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -22px;
    left: -8px;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.25;
    line-height: 1;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bg-dark);
    letter-spacing: 1px;
    border: 2px solid var(--gold-light);
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
}

.testimonial-location {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.testimonial-album-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 20px;
    background: transparent;
    border: 1.5px solid var(--gold);
    border-radius: 24px;
    color: var(--gold);
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-album-btn:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(184, 156, 100, 0.3);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 18px;
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--gold-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

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

.testimonial-btn svg {
    width: 18px;
    height: 18px;
    color: var(--text-dark);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-dot.active {
    background: var(--gold);
    width: 26px;
    border-radius: 4px;
}

/* ============================================
   FAQ — Cream section
   ============================================ */
.faq {
    background: var(--bg-cream);
    color: var(--text-dark);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1.5px solid var(--gold-border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--gold-deep);
}

.faq-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--gold-deep);
    transition: transform var(--transition-medium);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 1rem;
    color: var(--text-dark-secondary);
    line-height: 1.8;
    padding-right: 36px;
}

/* ============================================
   BLOG — White section
   ============================================ */
.blog {
    background: var(--bg-cream);
    color: var(--text-dark);
}

.blog .section-title {
    color: var(--text-dark);
}

.blog .section-label {
    color: var(--gold-deep);
}

.blog .section-subtitle {
    color: var(--text-dark-secondary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.blog-card {
    background: #ffffff;
    border: 1.5px solid var(--gold-border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-medium);
}

.blog-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 15px var(--gold-glow);
}

.blog-image {
    position: relative;
    height: 190px;
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
            hsl(var(--hue, 35), 22%, 20%),
            hsl(var(--hue, 35), 18%, 14%));
    font-family: var(--font-ui);
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.blog-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: var(--bg-dark);
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
}

.blog-content {
    padding: 24px;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.93rem;
    color: var(--text-dark-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.blog-date {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-card {
    cursor: pointer;
}

/* ============================================
   BLOG DETAIL OVERLAY
   ============================================ */
.blog-detail-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(6px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
}

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

.blog-detail-modal {
    max-width: 780px;
    margin: 40px auto;
    background: var(--bg-dark-card);
    border: 1.5px solid var(--gold-border);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 0.35s ease;
}

.blog-detail-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.blog-detail-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.blog-detail-cover {
    width: 100%;
    height: 340px;
    overflow: hidden;
}

.blog-detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-cover:empty {
    display: none;
}

.blog-detail-body {
    padding: 36px 40px 48px;
}

.blog-detail-tag {
    display: inline-block;
    padding: 4px 14px;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: var(--bg-dark);
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 16px;
}

.blog-detail-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    color: var(--cream);
    line-height: 1.3;
    margin-bottom: 12px;
}

.blog-detail-date {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gold-border);
}

.blog-detail-content {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-light-secondary);
    line-height: 1.85;
}

.blog-detail-content p {
    margin-bottom: 18px;
}

@media (max-width: 768px) {
    .blog-detail-modal {
        margin: 16px;
        border-radius: 12px;
    }

    .blog-detail-cover {
        height: 220px;
    }

    .blog-detail-body {
        padding: 24px 20px 36px;
    }

    .blog-detail-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   CONTACT — White
   ============================================ */
.contact {
    background: #ffffff;
    color: var(--text-dark);
}

.contact .section-title {
    color: var(--text-dark);
}

.contact .section-label {
    color: var(--gold-deep);
}

.contact .section-subtitle {
    color: var(--text-dark-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 46px;
    align-items: start;
    max-width: 1080px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form .contact-map {
    margin-top: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: #ffffff;
    border: 1.5px solid var(--gold-border);
    border-radius: 8px;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 1.02rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

.form-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 12px var(--gold-glow);
}

.form-label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-ui);
    font-size: 0.83rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: all var(--transition-fast);
}

.form-textarea~.form-label {
    top: 16px;
    transform: none;
}

.form-input:focus~.form-label,
.form-input:not(:placeholder-shown)~.form-label {
    top: -9px;
    left: 12px;
    font-size: 0.7rem;
    color: var(--gold);
    background: #ffffff;
    padding: 0 5px;
    transform: none;
}

.form-textarea {
    resize: none;
    min-height: 98px;
}

.form-error {
    display: block;
    font-size: 0.72rem;
    color: #e74c3c;
    margin-top: 4px;
    font-family: var(--font-ui);
    min-height: 1em;
}

.form-input.input-error {
    border-color: #e74c3c;
    box-shadow: 0 0 8px rgba(231, 76, 60, 0.15);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-card {
    background: var(--bg-cream);
    border: 1.5px solid var(--gold-border);
    border-radius: 10px;
    min-height: 186px;
    padding: 22px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-info-link-card {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.contact-info-link-card:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.contact-info-card:hover {
    border-color: var(--gold-border-strong);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.contact-info-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 10px;
    color: var(--gold);
}

.contact-info-icon svg {
    width: 100%;
    height: 100%;
}

.contact-info-icon.whatsapp-highlight {
    color: var(--whatsapp);
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-info-card p {
    font-size: 0.88rem;
    color: var(--text-dark-secondary);
    line-height: 1.5;
    margin-bottom: 0;
}

.contact-info-card .btn {
    margin-top: 12px;
}

/* ============================================
   FOOTER — Dark with gold accents
   ============================================ */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--gold-border);
    padding: 34px 0 22px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.35fr) minmax(120px, 0.65fr) minmax(180px, 0.9fr);
    gap: 34px;
    align-items: start;
    margin-bottom: 24px;
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-light-secondary);
    margin-top: 8px;
}

.footer-location {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    color: #1a1a1a;
    transform: translateY(-2px);
}

.footer-social svg {
    width: 16px;
    height: 16px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 12px;
}

.footer-accordion summary {
    list-style: none;
}

.footer-accordion summary::-webkit-details-marker {
    display: none;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    color: var(--text-light-secondary);
    transition: color var(--transition-fast);
}

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

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

.footer-bottom p {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ============================================
   SKELETON LOADING
   ============================================ */
@keyframes shimmer {
    0% {
        background-position: -400px 0;
    }

    100% {
        background-position: 400px 0;
    }
}

.skeleton-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-dark-card);
    border: 1px solid var(--gold-border);
}

.skeleton-img {
    width: 100%;
    height: 220px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 25%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.03) 75%);
    background-size: 800px 100%;
    animation: shimmer 1.8s infinite ease-in-out;
}

.skeleton-text {
    height: 14px;
    margin: 16px;
    border-radius: 6px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 25%, rgba(255, 255, 255, 0.09) 50%, rgba(255, 255, 255, 0.04) 75%);
    background-size: 800px 100%;
    animation: shimmer 1.8s infinite ease-in-out;
}

.skeleton-text.short {
    width: 60%;
    height: 10px;
    margin-top: 8px;
}

/* ============================================
   ALBUM DETAIL LAYOUT
   ============================================ */
.album-detail-count {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    background: rgba(184, 156, 100, 0.1);
    border: 1px solid rgba(184, 156, 100, 0.3);
    border-radius: 20px;
    color: var(--gold);
    font-family: var(--font-ui);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 158px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--bg-dark-card);
    border: 1.5px solid var(--gold-border);
    border-radius: 50%;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: #1a1a1a;
    border-color: var(--gold);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 58px;
    height: 58px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-medium);
    opacity: 0;
    transform: scale(0.8);
    animation: pulse-glow 3s ease-in-out infinite paused;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.floating-whatsapp.visible {
    opacity: 1;
    transform: scale(1);
    animation-play-state: running;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.floating-whatsapp svg {
    width: 26px;
    height: 26px;
    fill: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: var(--bg-dark-card);
    color: var(--cream);
    padding: 9px 16px;
    border-radius: 8px;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    white-space: nowrap;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gold-border);
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition-fast);
    pointer-events: none;
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   MAINTENANCE SCREEN
   ============================================ */
.maintenance-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: linear-gradient(145deg, #0e110c 0%, #1a1d17 50%, #0e110c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.maintenance-content {
    max-width: 480px;
    padding: 40px 24px;
}

.maintenance-icon {
    margin-bottom: 28px;
    animation: maintenancePulse 2.5s ease-in-out infinite;
}

.maintenance-icon svg {
    width: 64px;
    height: 64px;
    stroke: var(--gold);
}

@keyframes maintenancePulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

.maintenance-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--cream);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.maintenance-text {
    font-family: var(--font-ui);
    font-size: 1rem;
    color: var(--text-light-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.maintenance-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.maintenance-whatsapp svg {
    width: 20px;
    height: 20px;
}

.maintenance-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 2010;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

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

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2.5rem;
    color: var(--cream);
    z-index: 2001;
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--transition-fast);
}

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

.lightbox-content {
    max-width: 85vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-caption {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-top: 12px;
    text-align: center;
    max-width: 600px;
}

.lightbox-content img {
    max-width: 85vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2001;
}

.lightbox-nav svg {
    width: 24px;
    height: 24px;
    stroke: var(--cream);
}

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

.lightbox-nav:hover svg {
    stroke: #1a1a1a;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 36px;
        height: 36px;
    }

    .lightbox-nav svg {
        width: 18px;
        height: 18px;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }
}

/* ============================================
   FORM SUCCESS
   ============================================ */
.form-success {
    text-align: center;
    padding: 36px;
    animation: fadeInUp 0.5s ease;
}

.form-success-icon {
    font-size: 3rem;
    margin-bottom: 14px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-light-secondary);
    font-size: 1rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 175px;
    }

    .gallery-item-featured {
        grid-column: span 2;
        grid-row: span 2;
    }

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

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

    .blog-card:last-child {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 55px;
    }

    /* Mobile Nav */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 340px;
        height: 100vh;
        background: rgba(14, 17, 12, 0.98);
        backdrop-filter: blur(18px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 50px 36px;
        gap: 26px;
        transition: right var(--transition-medium);
        border-left: 1.5px solid var(--gold-border);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 0.95rem;
    }

    /* Hero */
    .hero-nav-links {
        display: none;
    }

    .hero-title {
        font-size: clamp(2.8rem, 12vw, 4.5rem);
    }

    .hero-tagline {
        font-size: clamp(1rem, 3vw, 1.3rem);
    }

    .hero-cta-group {
        flex-direction: column;
    }

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

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-image-wrapper {
        max-width: 340px;
        margin: 0 auto;
    }

    .about-stats {
        gap: 22px;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .service-card {
        padding: 32px 24px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }

    .gallery-item-featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item-wide {
        grid-column: span 1;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 28px 14px;
    }

    .testimonial-text {
        font-size: 1.02rem;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card:last-child {
        display: block;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form .contact-map {
        margin-top: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 18px;
    }

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

    .footer-social {
        justify-content: center;
    }

    .footer-accordion {
        border-top: 1px solid var(--gold-border);
    }

    .footer-accordion summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 44px;
        margin-bottom: 0;
        cursor: pointer;
        font-family: var(--font-ui);
        font-size: 0.82rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .footer-accordion summary::after {
        content: "+";
        color: var(--text-muted);
        font-size: 1.1rem;
        line-height: 1;
    }

    .footer-accordion[open] summary::after {
        content: "-";
    }

    .footer-links {
        gap: 10px;
        padding: 2px 0 14px;
    }

    .footer-newsletter {
        padding: 14px 0;
        margin-bottom: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    /* Floating WA */
    .floating-whatsapp {
        bottom: 18px;
        right: 18px;
        width: 52px;
        height: 52px;
    }

    .back-to-top {
        bottom: 146px;
        right: 22px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-stats {
        flex-direction: column;
        gap: 18px;
        align-items: center;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 190px;
    }

    .gallery-item-tall,
    .gallery-item-wide,
    .gallery-item-featured {
        grid-row: span 1;
        grid-column: span 1;
    }

    .section-header {
        margin-bottom: 45px;
    }
}

/* ============================================
   ALBUM DETAIL MODAL — Public Gallery
   ============================================ */
.album-detail-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
}

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

.album-detail-modal {
    max-width: 1100px;
    margin: 40px auto;
    padding: 40px 36px 60px;
    position: relative;
}

.album-detail-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.album-detail-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.album-detail-header {
    text-align: center;
    margin-bottom: 12px;
}

.album-detail-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    color: var(--cream);
}

.album-detail-meta {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: var(--text-light-secondary);
    letter-spacing: 1px;
}

.album-detail-desc {
    text-align: center;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-light-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.album-detail-grid {
    columns: 3;
    column-gap: 12px;
}

.album-detail-grid img {
    width: 100%;
    display: block;
    border-radius: 8px;
    border: 1.5px solid var(--gold-border);
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease;
    margin-bottom: 12px;
    break-inside: avoid;
}

.album-detail-grid img:hover {
    transform: scale(1.02);
    border-color: var(--gold);
}

@media (max-width: 768px) {
    .album-detail-modal {
        padding: 20px 16px 40px;
        margin: 20px auto;
    }

    .album-detail-grid {
        columns: 2;
        column-gap: 8px;
    }

    .album-detail-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .album-detail-grid {
        columns: 1;
    }
}

/* ==================== SKELETON LOADING ==================== */
@keyframes shimmer {
    0% {
        background-position: -400px 0;
    }

    100% {
        background-position: 400px 0;
    }
}

.skeleton-card {
    background: var(--bg-dark-2, #12150f);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px;
    min-height: 200px;
}

.skeleton-image {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 25%, rgba(255, 255, 255, 0.06) 50%, rgba(255, 255, 255, 0.03) 75%);
    background-size: 800px 100%;
    animation: shimmer 1.5s infinite;
    margin-bottom: 12px;
}

.skeleton-line {
    height: 12px;
    border-radius: 6px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 25%, rgba(255, 255, 255, 0.06) 50%, rgba(255, 255, 255, 0.03) 75%);
    background-size: 800px 100%;
    animation: shimmer 1.5s infinite;
    margin-bottom: 8px;
}

.skeleton-line.short {
    width: 40%;
}

.skeleton-line.medium {
    width: 65%;
}

.skeleton-line.long {
    width: 90%;
}

/* ============================================
   GALLERY FILTERS
   ============================================ */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 32px;
}

.gallery-filter-btn {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 9px 22px;
    border-radius: 50px;
    border: 1.5px solid var(--gold-border);
    color: var(--text-dark-secondary);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
}

.gallery-item.hidden {
    display: none;
}

/* ============================================
   CINEMATIC VIDEO SECTION
   ============================================ */
.cinematic {
    background: var(--bg-dark-2);
}

.video-lite-wrapper {
    max-width: 860px;
    margin: 0 auto 20px;
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid var(--gold-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16/9;
    position: relative;
    background: #000;
}

.video-lite-thumb {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-lite-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0e110c 0%, #1a1d14 50%, #0c0f09 100%);
}

.video-lite-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.video-play-btn {
    position: relative;
    z-index: 2;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 20px rgba(201, 168, 76, 0.5));
}

.video-play-btn:hover {
    transform: scale(1.12);
}

.video-play-label {
    position: relative;
    z-index: 2;
    margin-top: 16px;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cream-soft);
    opacity: 0.75;
}

.video-lite-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-disclaimer {
    text-align: center;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    background: var(--bg-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 36px;
}

.pricing-card {
    background: var(--bg-dark-card);
    border: 1.5px solid var(--gold-border);
    border-radius: 14px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    transition: all var(--transition-medium);
}

.pricing-card:hover {
    border-color: var(--gold-border-strong);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.pricing-card-featured {
    border-color: var(--gold);
    background: linear-gradient(145deg, #1a1d14, #191d15);
    transform: scale(1.03);
}

.pricing-card-featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: var(--bg-dark);
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 50px;
    white-space: nowrap;
}

.pricing-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--cream);
}

.pricing-tagline {
    font-family: var(--font-body);
    font-size: 0.98rem;
    color: var(--text-muted);
    margin-top: -12px;
    font-style: italic;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    flex: 1;
}

.pricing-features li {
    font-family: var(--font-ui);
    font-size: 0.88rem;
    color: var(--text-light-secondary);
    padding-left: 20px;
    position: relative;
}

.pricing-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.6rem;
    top: 3px;
}

.pricing-note {
    text-align: center;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-contact-link {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-color: var(--gold-border);
}

.pricing-contact-link:hover {
    text-decoration-color: var(--gold);
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto 36px;
    }

    .pricing-card-featured {
        transform: none;
        order: -1;
    }

    .pricing-card-featured:hover {
        transform: translateY(-4px);
    }
}

/* ============================================
   CONTACT MAP
   ============================================ */
.contact-map {
    width: 100%;
    height: 186px;
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid var(--gold-border);
    background: var(--bg-cream);
    box-shadow: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-map:hover {
    border-color: var(--gold-border-strong);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 186px;
}

/* ============================================
   FOOTER NEWSLETTER
   ============================================ */
.footer-newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 16px 0;
    border-top: 1px solid var(--gold-border);
    margin-bottom: 18px;
}

.footer-newsletter-text h4 {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--cream);
    margin-bottom: 6px;
}

.footer-newsletter-text p {
    font-family: var(--font-ui);
    font-size: 0.76rem;
    line-height: 1.5;
    color: var(--text-light-secondary);
}

.newsletter-form {
    display: flex;
    gap: 8px;
    width: min(100%, 390px);
    flex-shrink: 0;
}

.newsletter-input {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--gold-border);
    border-radius: 6px;
    color: var(--cream);
    min-width: 0;
    flex: 1;
    transition: border-color var(--transition-fast);
    outline: none;
}

.newsletter-input:focus {
    border-color: var(--gold);
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

.newsletter-btn {
    padding: 10px 16px;
    min-height: 40px;
    font-size: 0.72rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .footer-newsletter {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .newsletter-form {
        width: 100%;
    }

    .newsletter-input {
        width: 100%;
        flex: 1;
    }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    background: rgba(14, 17, 12, 0.97);
    border-top: 1.5px solid var(--gold-border);
    backdrop-filter: blur(12px);
    padding: 18px 24px;
    animation: slideUpIn 0.4s ease;
}

@keyframes slideUpIn {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: var(--text-light-secondary);
    flex: 1;
    min-width: 240px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 9px 22px;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-fast);
    letter-spacing: 0.5px;
}

.cookie-decline {
    background: transparent;
    border: 1.5px solid var(--gold-border);
    color: var(--text-light-secondary);
}

.cookie-decline:hover {
    border-color: var(--gold);
    color: var(--cream);
}

.cookie-accept {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    border: none;
    color: var(--bg-dark);
    font-weight: 600;
}

.cookie-accept:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}

@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================
   FLOATING BOOK NOW BUTTON
   ============================================ */
.floating-booknow {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: var(--bg-dark);
    border: none;
    border-radius: 50px;
    padding: 11px 20px;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(201, 168, 76, 0.35);
    transition: all var(--transition-fast);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

.floating-booknow.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.floating-booknow:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .floating-booknow {
        bottom: 84px;
        right: 18px;
        padding: 10px 16px;
    }

    .floating-booknow span {
        display: none;
    }

    .floating-booknow {
        border-radius: 50%;
        width: 48px;
        height: 48px;
        padding: 0;
        justify-content: center;
    }
}

/* ============================================
   BOOK NOW MODAL
   ============================================ */
.booknow-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
    padding: 24px;
}

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

.booknow-modal {
    background: var(--bg-dark-card);
    border: 1.5px solid var(--gold-border);
    border-radius: 16px;
    padding: 40px 36px;
    width: 100%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 0.35s ease;
}

.booknow-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--transition-fast);
    line-height: 1;
    background: none;
    border: none;
}

.booknow-close:hover {
    color: var(--gold);
}

.booknow-header {
    margin-bottom: 28px;
}

.booknow-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 8px;
}

.booknow-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-light-secondary);
    line-height: 1.6;
}

.booknow-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a89e8a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-select option {
    background: var(--bg-dark-card);
    color: var(--cream);
}

@media (max-width: 480px) {
    .booknow-modal {
        padding: 28px 20px;
    }
}

/* ==================== AUDIT ADDITIONS ==================== */
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-hours {
    margin-top: 8px;
    font-size: 0.85rem;
    opacity: 0.75;
    letter-spacing: 0.02em;
}

.footer-contact {
    margin-top: 10px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.footer-contact a:hover {
    border-bottom-color: currentColor;
}

.pricing-trust {
    margin-top: 14px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
    letter-spacing: 0.04em;
}

.contact-map {
    margin-top: 48px;
}

.gallery-item {
    transition: transform 0.25s ease;
}

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

.btn-primary,
.btn-whatsapp {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary:hover,
.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.floating-whatsapp {
    animation: wa-pulse 8s ease-in-out infinite;
}

@keyframes wa-pulse {
    0%, 90%, 100% { transform: scale(1); }
    94% { transform: scale(1.08); }
    97% { transform: scale(0.98); }
}

@media (prefers-reduced-motion: reduce) {
    .floating-whatsapp { animation: none; }
    .gallery-item,
    .btn-primary,
    .btn-whatsapp { transition: none; }
}

/* ============================================================
   VISUAL UPGRADE PASS — Premium feel for desktop & mobile
   ============================================================ */

/* ---------- Page-wide texture & noise ---------- */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image:
        radial-gradient(circle at 20% 10%, rgba(201,168,76,0.04), transparent 35%),
        radial-gradient(circle at 80% 90%, rgba(201,168,76,0.03), transparent 30%);
    mix-blend-mode: screen;
}

/* ---------- Hero: cinematic corner filigree + ambient glow ---------- */
.hero {
    background:
        radial-gradient(ellipse at 50% 35%, rgba(201, 168, 76, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(180, 140, 50, 0.10) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 20%, rgba(220, 190, 80, 0.07) 0%, transparent 40%),
        linear-gradient(180deg, #1a1610 0%, #0e110c 45%, #0a0d07 100%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 88px;
    height: 88px;
    pointer-events: none;
    border: 1px solid rgba(201, 168, 76, 0.45);
    z-index: 4;
    opacity: 0;
    animation: filigreeIn 1.6s 1.0s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero::before {
    top: 28px;
    left: 28px;
    border-right: none;
    border-bottom: none;
}

.hero::after {
    bottom: 28px;
    right: 28px;
    border-left: none;
    border-top: none;
}

@keyframes filigreeIn {
    from { opacity: 0; transform: scale(0.85); }
    to   { opacity: 0.85; transform: scale(1); }
}

@media (max-width: 640px) {
    .hero::before,
    .hero::after {
        width: 52px;
        height: 52px;
    }
    .hero::before { top: 14px; left: 14px; }
    .hero::after { bottom: 80px; right: 14px; }
}

/* Ambient gold vignette breathing */
.hero-overlay {
    animation: heroBreathe 9s ease-in-out infinite;
}

@keyframes heroBreathe {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

/* Hero brand: refined kerning & glow */
.hero-brand,
.hero-brand-accent {
    background-image: linear-gradient(180deg, var(--cream) 0%, #e3dcc8 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-brand-accent {
    background-image: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 70%, var(--gold-deep) 100%);
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 18px rgba(201, 168, 76, 0.35));
}

/* Tagline gets a thin gold underline */
.hero-tagline {
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
}

.hero-tagline::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: lineGrow 1s 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes lineGrow {
    to { width: 70%; }
}

/* Scroll hint pulse + chevron */
.hero-scroll-hint {
    bottom: 22px;
}

.hero-scroll-hint::before {
    content: "Scroll";
    display: block;
    font-family: var(--font-ui);
    font-size: 0.62rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.55;
    margin-bottom: 6px;
}

/* Trust strip beneath hero CTA */
.hero-trust {
    margin-top: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 22px;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cream-soft);
    opacity: 0;
    animation: fadeInUp 0.8s 1.1s forwards;
    z-index: 2;
    position: relative;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0.78;
}

.hero-trust span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold);
}

@media (max-width: 540px) {
    .hero-trust {
        font-size: 0.62rem;
        letter-spacing: 2px;
        gap: 4px 14px;
        margin-top: 28px;
    }
}

/* ---------- Section dividers — ornamental gold separator ---------- */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 0 0;
    opacity: 0.75;
}

.section-divider span {
    flex: 0 1 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-divider svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
    flex-shrink: 0;
}

/* ---------- Section label diamonds (enhance existing pseudo lines) ---------- */
.section-label {
    font-size: 0.78rem;
    letter-spacing: 5px;
}

/* ---------- Section titles — letter-spacing refinement ---------- */
.section-title {
    letter-spacing: -0.5px;
    font-weight: 500;
}

.section-title .text-accent {
    position: relative;
    display: inline-block;
}

/* ---------- Card glow on hover (services / blog / pricing) ---------- */
.service-card,
.pricing-card,
.story-card,
.blog-card,
.testimonial-card,
.contact-info-card {
    position: relative;
    overflow: hidden;
}

.service-card::after,
.pricing-card::after,
.story-card::after,
.blog-card::after,
.contact-info-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(201,168,76,0.18), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover::after,
.pricing-card:hover::after,
.story-card:hover::after,
.blog-card:hover::after,
.contact-info-card:hover::after {
    opacity: 1;
}

/* ---------- Stat numbers — gold gradient + animated underline ---------- */
.stat {
    position: relative;
    padding-bottom: 8px;
}

.stat::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease, width 0.4s ease;
}

.about-stats .stat:hover::after {
    opacity: 1;
    width: 64px;
}

.stat-number {
    background: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(201, 168, 76, 0.25));
}

/* ---------- Gallery placeholders — turn into intentional art ---------- */
.gallery-placeholder {
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.10), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0,0,0,0.20), transparent 55%),
        linear-gradient(135deg,
            hsl(var(--hue, 35), 28%, 32%),
            hsl(calc(var(--hue, 35) + 15), 24%, 20%));
    position: relative;
    overflow: hidden;
}

.gallery-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg,
            rgba(255,255,255,0.015) 0 2px,
            transparent 2px 6px);
    pointer-events: none;
}

.gallery-placeholder .gph-icon {
    width: 44px;
    height: 44px;
    color: rgba(255, 245, 220, 0.55);
    margin-bottom: 12px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s;
}

.gallery-placeholder .gph-label {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(255, 245, 220, 0.75);
    letter-spacing: 0.5px;
    text-align: center;
    padding: 0 16px;
}

.gallery-placeholder {
    display: flex;
    flex-direction: column;
}

.gallery-item:hover .gph-icon {
    transform: scale(1.15) rotate(-4deg);
    color: var(--gold-light);
}

/* Shimmer sweep across gallery item on hover */
.gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.10) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    pointer-events: none;
}

.gallery-item:hover::before {
    transform: translateX(100%);
}

/* Gallery item refined hover */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}

.gallery-item:hover {
    transform: scale(1.025) translateY(-3px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.45), 0 0 0 1px var(--gold-border);
}

/* ---------- Gallery filter chips — gold pill active ---------- */
.gallery-filter-btn {
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
    position: relative;
}

.gallery-filter-btn:hover {
    transform: translateY(-1px);
}

.gallery-filter-btn.active {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)) !important;
    color: var(--bg-dark) !important;
    box-shadow: 0 6px 18px rgba(201, 168, 76, 0.35);
}

/* ---------- Testimonial cards — luxe quote ---------- */
.testimonial-card {
    position: relative;
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 8px;
    left: 22px;
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.18;
    pointer-events: none;
}

.testimonial-stars {
    letter-spacing: 4px;
    background: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 1px 4px rgba(201, 168, 76, 0.3));
}

.testimonial-avatar {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: var(--bg-dark);
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(201, 168, 76, 0.3);
}

/* ---------- Pricing featured card — gold halo ---------- */
.pricing-card-featured {
    box-shadow: 0 0 0 1px var(--gold), 0 20px 50px rgba(201, 168, 76, 0.18);
    position: relative;
}

.pricing-card-featured::before {
    content: "Most Booked";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: var(--bg-dark);
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    z-index: 2;
    box-shadow: 0 4px 14px rgba(201, 168, 76, 0.4);
}

/* ---------- Navbar — premium glass ---------- */
.navbar {
    transition: background 0.35s ease, backdrop-filter 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.navbar.scrolled {
    background: rgba(14, 17, 12, 0.78) !important;
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), inset 0 -1px 0 var(--gold-border);
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: var(--bg-dark) !important;
    padding: 9px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(201, 168, 76, 0.4);
}

/* ---------- Mobile nav full-screen polish ---------- */
@media (max-width: 900px) {
    .nav-links {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        background: rgba(14, 17, 12, 0.94) !important;
    }
    .nav-links a {
        font-family: var(--font-heading);
        font-size: 1.3rem !important;
        letter-spacing: 0.5px;
    }
}

/* ---------- Floating WhatsApp — golden ring halo ---------- */
.floating-whatsapp {
    box-shadow: 0 8px 26px rgba(37, 211, 102, 0.5), 0 0 0 2px rgba(201, 168, 76, 0.35);
}

/* ---------- Back-to-top — premium pill ---------- */
.back-to-top {
    background: rgba(14, 17, 12, 0.85);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 1px var(--gold-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.5), 0 0 0 1px var(--gold-border-strong);
}

/* ---------- Contact form — soft focus glow ---------- */
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    box-shadow: 0 0 0 3px var(--gold-glow), 0 4px 12px rgba(0,0,0,0.2);
    border-color: var(--gold) !important;
    outline: none;
}

/* ---------- Footer — texture + gold top line ---------- */
.footer {
    position: relative;
    background: linear-gradient(180deg, var(--bg-dark-2) 0%, var(--bg-dark) 100%);
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ---------- About image placeholder — turn into polaroid frame ---------- */
.about-image {
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px var(--gold-border);
}

.about-image-frame {
    pointer-events: none;
    position: absolute;
    inset: -10px;
    border: 1px solid var(--gold-border);
    border-radius: 4px;
    transform: rotate(-1.5deg);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrapper:hover .about-image-frame {
    transform: rotate(0deg);
}

.about-image-placeholder svg {
    color: var(--gold);
    opacity: 0.45;
    width: 84px;
    height: 84px;
}

/* ---------- Cookie banner refinement ---------- */
.cookie-banner {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 -8px 30px rgba(0,0,0,0.4), inset 0 1px 0 var(--gold-border);
}

/* ---------- Mobile fine-tuning ---------- */
@media (max-width: 768px) {
    :root {
        --section-padding: 72px;
    }

    .section {
        padding-top: var(--section-padding);
        padding-bottom: var(--section-padding);
    }

    .hero-title {
        line-height: 1.0;
    }

    .hero-cta-group {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding: 0 24px;
    }

    .hero-wa-btn {
        justify-content: center;
        padding: 18px 28px;
        font-size: 0.95rem;
    }

    .gallery-grid {
        gap: 10px;
    }

    .gallery-item-wide,
    .gallery-item-featured {
        grid-column: span 2;
    }

    .testimonial-card {
        padding: 32px 22px;
    }

    /* Bigger tap targets */
    .nav-cta,
    .gallery-filter-btn,
    .faq-question,
    .btn {
        min-height: 44px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: clamp(1.7rem, 7vw, 2.2rem);
    }
    .section-subtitle {
        font-size: 1rem;
    }
    .container {
        padding: 0 18px;
    }
}

/* ---------- Subtle scroll-driven hero parallax (where supported) ---------- */
@supports (animation-timeline: scroll()) {
    .hero-content {
        animation: heroDrift linear both;
        animation-timeline: scroll();
        animation-range: 0 60vh;
    }
    @keyframes heroDrift {
        to { transform: translateY(-30px); opacity: 0.6; }
    }
    .hero-overlay {
        animation: heroOverlayDim linear both;
        animation-timeline: scroll();
        animation-range: 0 80vh;
    }
    @keyframes heroOverlayDim {
        to { opacity: 1.3; }
    }
}

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

/* ---------- Custom scrollbar ---------- */
@media (pointer: fine) {
    ::-webkit-scrollbar { width: 10px; }
    ::-webkit-scrollbar-track { background: var(--bg-dark); }
    ::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, var(--gold-deep), var(--gold));
        border-radius: 5px;
        border: 2px solid var(--bg-dark);
    }
    ::-webkit-scrollbar-thumb:hover { background: var(--gold-bright); }
}

/* ============================================================
   VISUAL UPGRADE — Round 2: scroll progress, skeletons,
   video frame, lightbox, newsletter, sub-page polish
   ============================================================ */

/* ---------- Top scroll progress bar ---------- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold-light), var(--gold));
    z-index: 9999;
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.6);
    transition: width 0.1s linear;
    pointer-events: none;
}

/* ---------- Skeletons → gold shimmer ---------- */
.skeleton-img,
.skeleton-text {
    background: linear-gradient(90deg,
        rgba(201, 168, 76, 0.06) 0%,
        rgba(201, 168, 76, 0.16) 50%,
        rgba(201, 168, 76, 0.06) 100%);
    background-size: 200% 100%;
    animation: shimmer 2.2s ease-in-out infinite;
    border-radius: 6px;
}

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

.skeleton-card {
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 10px;
    padding: 14px;
    background: rgba(14, 17, 12, 0.4);
}

/* ---------- Loading spinner — gold concentric ---------- */
.loading-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(201, 168, 76, 0.18);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    margin: 60px auto;
}

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

/* ---------- Cinematic video thumb — gold film-strip frame ---------- */
.video-lite-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--gold-border);
}

.video-lite-wrapper::before,
.video-lite-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 18px;
    background-image: repeating-linear-gradient(90deg,
        rgba(201, 168, 76, 0.55) 0 6px,
        transparent 6px 14px);
    z-index: 3;
    pointer-events: none;
}

.video-lite-wrapper::before { top: 0; }
.video-lite-wrapper::after { bottom: 0; }

.video-lite-bg {
    background:
        radial-gradient(ellipse at center, rgba(201,168,76,0.18), transparent 60%),
        linear-gradient(135deg, #1a1610, #0c0f09);
}

.video-play-btn {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-play-btn:hover {
    transform: scale(1.12);
    filter: drop-shadow(0 0 24px rgba(201, 168, 76, 0.6));
}

.video-play-label {
    font-family: var(--font-heading);
    font-style: italic;
    letter-spacing: 1px;
}

/* ---------- Lightbox premium ---------- */
.lightbox {
    backdrop-filter: blur(18px) saturate(120%);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
    background: rgba(8, 10, 6, 0.92) !important;
}

.lightbox-content img {
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 0 1px var(--gold-border);
}

.lightbox-close,
.lightbox-nav {
    background: rgba(14, 17, 12, 0.65);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 0 0 1px var(--gold-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: scale(1.08);
}

.lightbox-counter {
    font-family: var(--font-ui);
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.78rem;
}

/* ---------- Newsletter form — luxe pill ---------- */
.newsletter-form {
    background: rgba(14, 17, 12, 0.55);
    border: 1px solid var(--gold-border);
    border-radius: 999px;
    padding: 6px;
    display: flex;
    gap: 6px;
    max-width: 460px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px var(--gold-glow);
}

.newsletter-input {
    background: transparent !important;
    border: none !important;
    flex: 1;
    padding: 12px 18px !important;
    color: var(--cream) !important;
    font-family: var(--font-ui);
    outline: none;
}

.newsletter-btn {
    border-radius: 999px !important;
    padding: 12px 24px !important;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .newsletter-form {
        flex-direction: column;
        border-radius: 18px;
        padding: 14px;
    }
    .newsletter-btn { border-radius: 10px !important; }
}

/* ---------- Cookie banner — refined glass ---------- */
.cookie-banner {
    background: rgba(14, 17, 12, 0.92) !important;
    border-top: 1px solid var(--gold-border);
}

.cookie-accept {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: var(--bg-dark);
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cookie-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(201, 168, 76, 0.4);
}

/* ---------- FAQ accordion — premium ---------- */
.faq-item {
    border-radius: 12px;
    overflow: hidden;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(201, 168, 76, 0.12);
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
    background: rgba(201, 168, 76, 0.04);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15), inset 0 0 0 1px var(--gold-border);
}

.faq-question {
    transition: color 0.25s ease;
}

.faq-question[aria-expanded="true"] {
    color: var(--gold-deep);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-icon {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Wedding stories cards — gold corner accents ---------- */
.story-card,
.blog-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.story-card:hover,
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0,0,0,0.45), 0 0 0 1px var(--gold-border-strong);
}

.story-card::before {
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 22px;
    height: 22px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

.story-card:hover::before {
    opacity: 1;
    transform: translate(2px, -2px);
}

/* ---------- Floating Book-Now button — gold pill with motion ---------- */
.floating-booknow {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: var(--bg-dark);
    box-shadow: 0 10px 26px rgba(201, 168, 76, 0.45), 0 0 0 2px rgba(255,255,255,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.floating-booknow:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 34px rgba(201, 168, 76, 0.55);
}

/* ---------- Album / Blog detail modals ---------- */
.album-detail-overlay,
.blog-detail-overlay,
.booknow-overlay {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.album-detail-modal,
.blog-detail-modal,
.booknow-modal {
    border: 1px solid var(--gold-border);
    box-shadow: 0 40px 90px rgba(0,0,0,0.6);
}

/* ---------- Maintenance screen — premium ---------- */
.maintenance-screen {
    background:
        radial-gradient(ellipse at center, rgba(201, 168, 76, 0.10), transparent 60%),
        var(--bg-dark) !important;
}

.maintenance-icon {
    color: var(--gold);
    filter: drop-shadow(0 0 24px rgba(201, 168, 76, 0.4));
    animation: maintPulse 3s ease-in-out infinite;
}

@keyframes maintPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.maintenance-title {
    font-family: var(--font-heading) !important;
    background: linear-gradient(180deg, var(--cream), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---------- Map iframe glass-frame ---------- */
.contact-map iframe {
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px var(--gold-border);
}

/* ---------- Stagger reveal for gallery items ---------- */
.gallery-grid .gallery-item {
    opacity: 0;
    transform: translateY(20px);
    animation: galleryReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.gallery-grid.visible .gallery-item:nth-child(1) { animation-delay: 0.05s; }
.gallery-grid.visible .gallery-item:nth-child(2) { animation-delay: 0.10s; }
.gallery-grid.visible .gallery-item:nth-child(3) { animation-delay: 0.15s; }
.gallery-grid.visible .gallery-item:nth-child(4) { animation-delay: 0.20s; }
.gallery-grid.visible .gallery-item:nth-child(5) { animation-delay: 0.25s; }
.gallery-grid.visible .gallery-item:nth-child(6) { animation-delay: 0.30s; }
.gallery-grid.visible .gallery-item:nth-child(7) { animation-delay: 0.35s; }
.gallery-grid.visible .gallery-item:nth-child(8) { animation-delay: 0.40s; }

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

/* ---------- About text rhythm ---------- */
.about-text {
    font-size: 1.05rem;
    line-height: 1.85;
}

.about-text + .about-text {
    margin-top: 14px;
}

/* ---------- Service card icon glow ---------- */
.service-icon {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s;
}

.service-card:hover .service-icon {
    transform: translateY(-4px) scale(1.08);
    filter: drop-shadow(0 8px 22px rgba(201, 168, 76, 0.5));
}

/* ---------- Mobile final tweaks ---------- */
@media (max-width: 600px) {
    .testimonial-card { padding: 32px 24px; }
    .testimonial-text { font-size: 1.05rem; padding: 0; }
    .about-stats { flex-wrap: wrap; gap: 22px; justify-content: center; }
    .footer-grid { gap: 28px; }
    .nav-logo { font-size: 1.2rem; }
    .floating-whatsapp { width: 56px; height: 56px; }
    .floating-booknow { padding: 12px 18px; font-size: 0.82rem; }
}

/* ---------- Print styles ---------- */
@media print {
    .navbar, .floating-whatsapp, .floating-booknow,
    .back-to-top, .cookie-banner, .hero-scroll-hint,
    .scroll-progress { display: none !important; }
    body { background: white; color: black; }
}


/* ==================== AUDIT ADDITIONS ==================== */
.visually-hidden{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}
.contact-hours{margin-top:8px;font-size:.85rem;opacity:.75;letter-spacing:.02em;}
.footer-contact{margin-top:10px;line-height:1.7;font-size:.95rem;}
.footer-contact a{color:inherit;text-decoration:none;border-bottom:1px solid transparent;transition:border-color .2s;}
.footer-contact a:hover{border-bottom-color:currentColor;}
.pricing-trust{margin-top:14px;text-align:center;font-size:.85rem;opacity:.7;letter-spacing:.04em;}
.contact-map{margin-top:48px;}
.gallery-item{transition:transform .25s ease;}
.gallery-item:hover{transform:scale(1.03);}
.btn-primary,.btn-whatsapp{transition:transform .2s ease,box-shadow .2s ease,background .2s ease;}
.btn-primary:hover,.btn-whatsapp:hover{transform:translateY(-2px);box-shadow:0 8px 20px rgba(0,0,0,.25);}
.floating-whatsapp{animation:wa-pulse 8s ease-in-out infinite;}
@keyframes wa-pulse{0