/* ============================================
   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: 'Cormorant Garamond', 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;
}

.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-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;
}

/* ============================================
   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: 55px;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 16px 18px;
    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: 18px;
    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: 18px;
    transform: none;
}

.form-input:focus~.form-label,
.form-input:not(:placeholder-shown)~.form-label {
    top: -9px;
    left: 14px;
    font-size: 0.7rem;
    color: var(--gold);
    background: #ffffff;
    padding: 0 5px;
    transform: none;
}

.form-textarea {
    resize: vertical;
    min-height: 110px;
}

.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: 20px;
}

.contact-info-card {
    background: var(--bg-cream);
    border: 1.5px solid var(--gold-border);
    border-radius: 10px;
    padding: 28px;
    text-align: center;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.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: 40px;
    height: 40px;
    margin: 0 auto 12px;
    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: 6px;
}

.contact-info-card p {
    font-size: 0.92rem;
    color: var(--text-dark-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

/* ============================================
   FOOTER — Dark with gold accents
   ============================================ */
.footer {
    background: var(--bg-dark);
    border-top: 2px solid var(--gold-border);
    padding: 65px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 55px;
    margin-bottom: 45px;
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-light-secondary);
    margin-top: 10px;
}

.footer-location {
    font-family: var(--font-ui);
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-family: var(--font-ui);
    font-size: 0.82rem;
    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: 24px;
    border-top: 1px solid var(--gold-border);
}

.footer-bottom p {
    font-family: var(--font-ui);
    font-size: 0.76rem;
    color: var(--text-muted);
}

/* ============================================
   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;
}

.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);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    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: 28px;
    right: 28px;
    font-size: 2.5rem;
    color: var(--cream);
    z-index: 2001;
    transition: color var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-content {
    max-width: 80vw;
    max-height: 80vh;
}

.lightbox-placeholder {
    width: 60vw;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark-card);
    border: 2px solid var(--gold-border-strong);
    border-radius: 12px;
}

.lightbox-placeholder span {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold);
    font-style: italic;
}

/* ============================================
   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;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    /* Floating WA */
    .floating-whatsapp {
        bottom: 18px;
        right: 18px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .lightbox-placeholder {
        width: 90vw;
        height: 50vh;
    }
}

@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;
    }
}