/* Studio Milagros Photography */

:root {
    --black: #0a0a0a;
    --black2: #111;
    --black3: #181818;
    --black4: #1e1e1e;
    --gold: #c9a84c;
    --gold-light: #d4b95e;
    --gold-dark: #a3822f;
    --pink: #c4a0a0;
    --pink-dim: #a88a8a;
    --white: #f0ebe5;
    --dim: #999;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Montserrat', 'Helvetica Neue', sans-serif;
    --cursive: 'Cormorant Garamond', Georgia, serif;
    --ease: 0.4s cubic-bezier(.25,.46,.45,.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
    background: var(--black);
    color: var(--white);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--gold-light); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 30px; }

/* ===== NAV ===== */
.main-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 18px 0; transition: all var(--ease);
}
.main-nav.scrolled {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(16px);
    padding: 10px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.6);
}
.nav-inner {
    max-width: 1100px; margin: 0 auto; padding: 0 30px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
    font-family: var(--serif);
    font-size: 1.05rem;
    color: var(--gold) !important;
    letter-spacing: 2px;
}
.nav-links { list-style: none; display: flex; gap: 28px; }
.nav-links a {
    color: var(--white); font-size: 0.75rem; font-weight: 400;
    letter-spacing: 2px; text-transform: uppercase;
    position: relative; padding-bottom: 4px;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 5px;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--gold); transition: var(--ease); }

/* ===== HERO ===== */
.hero {
    position: relative;
    width: 100%; height: 100vh; min-height: 600px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center top;
    opacity: 0; transition: opacity 1.5s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(10,10,10,0.5) 0%,
        rgba(10,10,10,0.35) 40%,
        rgba(10,10,10,0.35) 60%,
        rgba(10,10,10,0.7) 100%
    );
}
/* Flowing gold ribbon curves — pure CSS */
.hero-deco {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.deco-wave-left {
    left: 0; bottom: 0;
    width: 40%; height: 60%;
}
.deco-wave-left::before, .deco-wave-left::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}
.deco-wave-left::before {
    width: 500px; height: 500px;
    left: -300px; bottom: -200px;
    border: 1px solid rgba(201,168,76,0.12);
    animation: ribbonDrift 10s ease-in-out infinite alternate;
}
.deco-wave-left::after {
    width: 400px; height: 400px;
    left: -220px; bottom: -150px;
    border: 1px solid rgba(201,168,76,0.08);
    animation: ribbonDrift 10s ease-in-out infinite alternate-reverse;
}
.deco-wave-right {
    right: 0; top: 0;
    width: 40%; height: 60%;
}
.deco-wave-right::before, .deco-wave-right::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}
.deco-wave-right::before {
    width: 500px; height: 500px;
    right: -300px; top: -200px;
    border: 1px solid rgba(201,168,76,0.1);
    animation: ribbonDrift 12s ease-in-out infinite alternate;
}
.deco-wave-right::after {
    width: 350px; height: 350px;
    right: -180px; top: -100px;
    border: 1px solid rgba(201,168,76,0.06);
    animation: ribbonDrift 12s ease-in-out infinite alternate-reverse;
}
@keyframes ribbonDrift {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(8deg) scale(1.05); }
}

/* Floating gold particles */
.hero-particles {
    position: absolute; inset: 0; z-index: 1;
    overflow: hidden; pointer-events: none;
}
.hero-particles span {
    position: absolute;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: sparkle 5s ease-in-out infinite;
}
.hero-particles span:nth-child(1) { width: 4px; height: 4px; left: 8%; top: 15%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { width: 3px; height: 3px; left: 18%; top: 65%; animation-delay: 0.4s; }
.hero-particles span:nth-child(3) { width: 5px; height: 5px; left: 12%; top: 40%; animation-delay: 0.8s; }
.hero-particles span:nth-child(4) { width: 3px; height: 3px; left: 28%; top: 80%; animation-delay: 1.2s; }
.hero-particles span:nth-child(5) { width: 4px; height: 4px; left: 35%; top: 20%; animation-delay: 1.6s; }
.hero-particles span:nth-child(6) { width: 6px; height: 6px; left: 22%; top: 50%; animation-delay: 2s; }
.hero-particles span:nth-child(7) { width: 3px; height: 3px; left: 42%; top: 75%; animation-delay: 2.4s; }
.hero-particles span:nth-child(8) { width: 4px; height: 4px; left: 55%; top: 12%; animation-delay: 0.6s; }
.hero-particles span:nth-child(9) { width: 3px; height: 3px; left: 62%; top: 58%; animation-delay: 1s; }
.hero-particles span:nth-child(10) { width: 5px; height: 5px; left: 72%; top: 30%; animation-delay: 1.4s; }
.hero-particles span:nth-child(11) { width: 3px; height: 3px; left: 78%; top: 70%; animation-delay: 1.8s; }
.hero-particles span:nth-child(12) { width: 4px; height: 4px; left: 85%; top: 18%; animation-delay: 2.2s; }
.hero-particles span:nth-child(13) { width: 6px; height: 6px; left: 90%; top: 50%; animation-delay: 0.2s; }
.hero-particles span:nth-child(14) { width: 3px; height: 3px; left: 95%; top: 85%; animation-delay: 2.6s; }
.hero-particles span:nth-child(15) { width: 4px; height: 4px; left: 5%; top: 88%; animation-delay: 3s; }
.hero-particles span:nth-child(16) { width: 3px; height: 3px; left: 48%; top: 92%; animation-delay: 3.4s; }
.hero-particles span:nth-child(17) { width: 5px; height: 5px; left: 32%; top: 35%; animation-delay: 3.8s; }
.hero-particles span:nth-child(18) { width: 3px; height: 3px; left: 68%; top: 88%; animation-delay: 4.2s; }
.hero-particles span:nth-child(19) { width: 4px; height: 4px; left: 52%; top: 42%; animation-delay: 4.6s; }
.hero-particles span:nth-child(20) { width: 3px; height: 3px; left: 15%; top: 28%; animation-delay: 1.1s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5) translateY(0); }
    50% { opacity: 0.9; transform: scale(1.2) translateY(-20px); }
}

/* Subtle gold radial glow behind logo */
.hero-glow {
    position: absolute;
    left: 50%; top: 45%;
    transform: translate(-50%, -50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

/* Pink flowing ribbons */
.hero-ribbons {
    position: absolute; inset: 0; z-index: 1;
    pointer-events: none; overflow: hidden;
}
.pink-ribbon {
    position: absolute;
    width: 300px; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(196,160,160,0.15), rgba(196,160,160,0.25), rgba(196,160,160,0.15), transparent);
    animation: ribbonDrift 12s ease-in-out infinite;
}
.pink-ribbon::before {
    content: '';
    position: absolute;
    width: 100%; height: 1px;
    top: 4px;
    background: linear-gradient(90deg, transparent, rgba(196,160,160,0.08), rgba(196,160,160,0.12), rgba(196,160,160,0.08), transparent);
}
.pink-ribbon::after {
    content: '';
    position: absolute;
    width: 80%; height: 1px;
    top: -3px; left: 10%;
    background: linear-gradient(90deg, transparent, rgba(196,160,160,0.06), rgba(196,160,160,0.1), rgba(196,160,160,0.06), transparent);
}

.pink-ribbon:nth-child(1) {
    width: 400px; top: 18%; left: -5%;
    transform: rotate(-8deg);
    animation-duration: 14s;
}
.pink-ribbon:nth-child(2) {
    width: 350px; top: 22%; left: 5%;
    transform: rotate(-5deg);
    opacity: 0.6;
    animation-duration: 16s; animation-delay: -3s;
}
.pink-ribbon:nth-child(3) {
    width: 450px; bottom: 30%; right: -5%;
    transform: rotate(6deg);
    animation-duration: 18s; animation-delay: -6s;
}
.pink-ribbon:nth-child(4) {
    width: 320px; bottom: 25%; right: 5%;
    transform: rotate(10deg);
    opacity: 0.7;
    animation-duration: 13s; animation-delay: -2s;
}
.pink-ribbon:nth-child(5) {
    width: 500px; top: 55%; left: 15%;
    transform: rotate(-3deg);
    opacity: 0.4;
    animation-duration: 20s; animation-delay: -8s;
}
.pink-ribbon:nth-child(6) {
    width: 280px; top: 70%; right: 15%;
    transform: rotate(12deg);
    opacity: 0.5;
    animation-duration: 15s; animation-delay: -4s;
}

@keyframes ribbonDrift {
    0%, 100% { transform: rotate(var(--r, -8deg)) translateY(0) scaleX(1); opacity: 0.5; }
    30% { transform: rotate(var(--r, -8deg)) translateY(-12px) scaleX(1.1); opacity: 1; }
    60% { transform: rotate(var(--r, -8deg)) translateY(-6px) scaleX(0.95); opacity: 0.7; }
    80% { transform: rotate(var(--r, -8deg)) translateY(-18px) scaleX(1.05); opacity: 0.9; }
}

/* Gold line at hero bottom */
.hero::after {
    content: '';
    position: absolute; bottom: 0; left: 10%; right: 10%;
    height: 1px; z-index: 3;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.hero-content {
    position: relative; z-index: 2;
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
    padding: 0 20px;
}
.hero-logo {
    width: min(450px, 70vw); height: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 30px rgba(0,0,0,0.4));
}
.hero-slogan {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 36px;
    background: linear-gradient(
        90deg,
        var(--gold-dark) 0%,
        var(--gold-light) 25%,
        var(--pink) 50%,
        var(--gold-light) 75%,
        var(--gold-dark) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 4s linear infinite;
}

@keyframes shimmerText {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
.hero-cta {
    font-family: var(--sans);
    font-size: 0.72rem; font-weight: 500;
    letter-spacing: 3px; text-transform: uppercase;
    padding: 14px 40px;
    border: 1px solid var(--gold);
    color: var(--gold);
    transition: all var(--ease);
}
.hero-cta:hover { background: var(--gold); color: var(--black); }

/* ===== SCROLLING STRIP ===== */
.scroll-strip {
    background: var(--black);
    padding: 4px 0;
    overflow: hidden;
    position: relative;
}
.scroll-row {
    display: flex; gap: 6px;
    width: max-content;
}
.scroll-right { animation: scrollR 60s linear infinite; }
.scroll-item {
    flex-shrink: 0; height: 200px;
    overflow: hidden; border-radius: 3px;
    cursor: pointer;
}
.scroll-item img {
    height: 100%; width: auto; display: block;
    object-fit: cover;
    filter: brightness(0.85);
    transition: filter 0.4s, transform 0.4s;
}
.scroll-item:hover img { filter: brightness(1); transform: scale(1.04); }
@keyframes scrollR { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===== PORTFOLIO ===== */
.section-portfolio {
    padding: 80px 0 100px;
    background: var(--black);
    position: relative; overflow: hidden;
}
.portfolio-filters {
    display: flex; justify-content: center;
    gap: 10px; margin: 30px 0 35px; flex-wrap: wrap;
}
.pf-btn {
    background: none; border: 1px solid rgba(201,168,76,0.15);
    color: var(--dim); font-family: var(--sans);
    font-size: 0.72rem; font-weight: 400;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 8px 20px; cursor: pointer;
    border-radius: 2px; transition: all 0.3s;
}
.pf-btn:hover, .pf-btn.active {
    border-color: var(--gold); color: var(--gold);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 10px;
}
.portfolio-item {
    position: relative; overflow: hidden;
    border-radius: 3px; cursor: pointer;
    aspect-ratio: 4/3;
}
.portfolio-item img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.5s;
}
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-overlay {
    position: absolute; inset: 0;
    background: rgba(10,10,10,0.5);
    display: flex; align-items: flex-end;
    padding: 15px; opacity: 0;
    transition: opacity 0.3s;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay span {
    font-size: 0.72rem; letter-spacing: 2px;
    text-transform: uppercase; color: var(--gold);
}

@media (max-width: 600px) {
    .scroll-item { height: 140px; }
    .portfolio-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}

/* Site Lightbox */
.site-lightbox {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.95);
    align-items: center; justify-content: center;
}
.site-lightbox.open { display: flex; }
.lb-img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lb-close {
    position: absolute; top: 20px; right: 25px;
    background: none; border: none; color: rgba(255,255,255,0.7);
    font-size: 2.2rem; cursor: pointer;
    transition: color 0.3s;
}
.lb-close:hover { color: #fff; }
.lb-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: none; border: none; color: rgba(255,255,255,0.5);
    font-size: 3rem; cursor: pointer; padding: 20px;
    transition: color 0.3s;
}
.lb-nav:hover { color: #fff; }
.lb-prev { left: 10px; }
.lb-next { right: 10px; }

@media (max-width: 900px) {
    .gallery-grid-wrap { columns: 3; }
}
@media (max-width: 600px) {
    .gallery-grid-wrap { columns: 2; column-gap: 6px; padding: 20px 15px 0; }
    .gallery-thumb { margin-bottom: 6px; }
}

/* ===== ABOUT ===== */
.section-about {
    padding: 100px 0;
    background: var(--black);
}
.about-layout {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.about-text h2 {
    font-family: var(--cursive);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 300; font-style: italic;
    color: var(--pink);
    line-height: 1.8;
    margin-bottom: 20px;
}
.gold-line {
    width: 60px; height: 1px;
    background: var(--gold);
    margin: 25px auto;
    opacity: 0.5;
}
.about-text p {
    color: var(--dim);
    font-size: 0.92rem;
    margin-bottom: 16px;
    line-height: 1.9;
}

/* ===== SERVICES ===== */
.section-services {
    padding: 100px 0;
    background: var(--black2);
}
.services-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}
.service-card {
    text-align: center;
    padding: 30px 20px;
}
.service-icon {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 18px;
    opacity: 0.7;
}
.service-card h3 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.service-card p {
    color: var(--dim);
    font-size: 0.88rem;
    line-height: 1.8;
}

/* ===== SHARED ===== */
.sec-heading {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400; text-align: center;
    color: var(--gold); letter-spacing: 2px;
    margin-bottom: 8px;
}
.sec-sub {
    text-align: center; color: var(--dim);
    font-weight: 300; font-size: 0.9rem;
    margin-bottom: 50px; letter-spacing: 1px;
}

/* ===== PRICING ===== */
.section-pricing {
    padding: 100px 0;
    background: var(--black);
}
.pricing-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.price-card {
    background: var(--black3);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 4px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: border-color var(--ease), transform var(--ease);
}
.price-card:hover {
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-4px);
}
.price-card.featured {
    border-color: var(--gold);
    box-shadow: 0 0 40px rgba(201,168,76,0.06);
}
.card-badge {
    position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: var(--black); font-size: 0.6rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 5px 16px; border-radius: 0 0 4px 4px;
}
.price-card h3 {
    font-family: var(--serif); font-size: 1.3rem;
    font-weight: 400; color: var(--white);
    margin: 8px 0 4px;
}
.card-tagline { color: var(--pink-dim); font-size: 0.8rem; font-style: italic; margin-bottom: 20px; }
.card-price { margin-bottom: 22px; }
.price-label {
    display: block; font-size: 0.68rem; color: var(--dim);
    letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px;
}
.price-num {
    font-family: var(--serif); font-size: 2.4rem;
    font-weight: 700; color: var(--gold);
}
.card-features { list-style: none; margin-bottom: 24px; text-align: left; }
.card-features li {
    padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.85rem; color: var(--dim);
    padding-left: 18px; position: relative;
}
.card-features li::before {
    content: ''; position: absolute; left: 0; top: 50%;
    width: 6px; height: 6px; border: 1px solid var(--gold);
    transform: translateY(-50%) rotate(45deg);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block; font-family: var(--sans);
    font-size: 0.72rem; font-weight: 500;
    letter-spacing: 2.5px; text-transform: uppercase;
    padding: 12px 32px; border: 1px solid var(--gold);
    background: transparent; color: var(--gold);
    cursor: pointer; border-radius: 2px;
    transition: all var(--ease);
}
.btn:hover { background: var(--gold); color: var(--black); }

/* ===== PROMOS ===== */
.section-promos { padding: 100px 0; background: var(--black2); }
.promos-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}
.promo-card {
    background: var(--black3); border: 1px solid rgba(201,168,76,0.08);
    border-radius: 4px; overflow: hidden;
    transition: border-color var(--ease), transform var(--ease);
}
.promo-card:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-3px); }
.promo-img img { width: 100%; height: 200px; object-fit: cover; display: block; }
.promo-body { padding: 24px; }
.promo-body h3 { font-family: var(--serif); font-size: 1.1rem; color: var(--white); margin-bottom: 8px; }
.promo-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: var(--black); font-size: 0.65rem; font-weight: 600;
    letter-spacing: 1px; padding: 3px 10px; border-radius: 2px;
    margin-bottom: 10px; text-transform: uppercase;
}
.promo-body p { color: var(--dim); font-size: 0.85rem; }
.promo-code { margin-top: 10px; color: var(--gold); font-size: 0.82rem; }
.promo-exp { margin-top: 5px; font-size: 0.75rem; color: var(--pink-dim); font-style: italic; }
.empty-state { text-align: center; padding: 40px 0; }
.empty-state p { font-family: var(--cursive); font-size: 1.1rem; font-style: italic; color: var(--pink-dim); }

/* ===== BOOKING ===== */
.section-booking { padding: 100px 0; background: var(--black2); }
.booking-wrap { max-width: 700px; margin: 0 auto; }
.booking-form { display: flex; flex-direction: column; gap: 16px; }
.bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bf-field { display: flex; flex-direction: column; gap: 5px; }
.bf-field label {
    font-size: 0.7rem; color: var(--dim);
    letter-spacing: 1.5px; text-transform: uppercase;
}
.booking-form input,
.booking-form textarea,
.booking-form select {
    width: 100%; padding: 12px 16px;
    background: var(--black3); border: 1px solid rgba(201,168,76,0.1);
    border-radius: 2px; color: var(--white);
    font-family: var(--sans); font-size: 0.85rem; font-weight: 300;
    outline: none; transition: border-color var(--ease);
    -webkit-appearance: none;
}
.booking-form select { color: var(--dim); }
.booking-form select option { background: var(--black3); color: var(--white); }
.booking-form input:focus, .booking-form textarea:focus, .booking-form select:focus { border-color: var(--gold); }
.booking-form input::placeholder, .booking-form textarea::placeholder { color: #555; }
.booking-form textarea { resize: vertical; min-height: 80px; }
.booking-form .btn { align-self: flex-start; margin-top: 8px; }

@media (max-width: 768px) {
    .bf-row { grid-template-columns: 1fr; }
}

/* ===== GALLERY ACCESS ===== */
.section-gallery-access { padding: 80px 0; background: var(--black); position: relative; overflow: hidden; }
.gallery-access-form {
    display: flex; gap: 12px;
    max-width: 420px; margin: 0 auto;
    justify-content: center; align-items: center;
}
.gallery-access-form input {
    flex: 1; padding: 13px 18px;
    background: var(--black3); border: 1px solid rgba(201,168,76,0.12);
    border-radius: 2px; color: var(--white);
    font-family: var(--sans); font-size: 0.9rem;
    letter-spacing: 3px; text-align: center; text-transform: uppercase;
    outline: none; transition: border-color var(--ease);
}
.gallery-access-form input:focus { border-color: var(--gold); }
.gallery-access-form input::placeholder { color: #555; letter-spacing: 1px; text-transform: none; font-size: 0.82rem; }

@media (max-width: 480px) {
    .gallery-access-form { flex-direction: column; }
    .gallery-access-form input { width: 100%; }
}

/* ===== CONTACT ===== */
.section-contact { padding: 100px 0; background: var(--black); }
.contact-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: start;
}
.contact-info h3 {
    font-family: var(--serif); font-size: 1.3rem;
    color: var(--gold); margin-bottom: 16px;
}
.contact-links { display: flex; flex-direction: column; gap: 10px; color: var(--dim); font-size: 0.88rem; }
.contact-links a { color: var(--pink); }
.contact-links a:hover { color: var(--gold); }
.social-icons { display: flex; gap: 16px; margin-top: 15px; }
.social-icons a {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1rem;
    transition: all var(--ease);
}
.social-icons a:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}
.contact-cta { margin-top: 30px; }
.contact-cta p { color: var(--dim); font-size: 0.85rem; margin-bottom: 12px; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%; padding: 12px 16px;
    background: var(--black3); border: 1px solid rgba(201,168,76,0.1);
    border-radius: 2px; color: var(--white);
    font-family: var(--sans); font-size: 0.85rem; font-weight: 300;
    outline: none; transition: border-color var(--ease);
    -webkit-appearance: none;
}
.contact-form select { color: var(--dim); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--gold); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #555; }
.contact-form textarea { resize: vertical; min-height: 100px; }
.form-msg { font-size: 0.82rem; min-height: 16px; }
.form-msg.success { color: var(--gold); }
.form-msg.error { color: var(--pink); }

/* ===== FOOTER ===== */
.site-footer {
    padding: 50px 0 20px;
    background: var(--black2);
    border-top: 1px solid rgba(201,168,76,0.06);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 30px;
}
.footer-brand {
    font-family: var(--serif); font-size: 1rem;
    color: var(--gold); letter-spacing: 2px;
}
.footer-tagline {
    font-family: var(--cursive); font-style: italic;
    color: var(--pink-dim); font-size: 0.85rem; margin-top: 6px;
}
.footer-nav {
    display: flex; gap: 24px;
    font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
}
.footer-nav a { color: var(--dim); }
.footer-nav a:hover { color: var(--gold); }
.footer-contact {
    text-align: right;
    color: var(--dim); font-size: 0.82rem;
    display: flex; flex-direction: column; gap: 4px;
}
.footer-line {
    width: 100%; height: 1px;
    background: rgba(201,168,76,0.08);
    margin-bottom: 20px;
}
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 0.68rem; color: #444; letter-spacing: 1px; }
.admin-link { font-size: 0.72rem; color: var(--dim) !important; letter-spacing: 1px; }
.admin-link:hover { color: var(--gold) !important; }

/* ===== CHAT ===== */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 900; }
.chat-btn {
    width: 50px; height: 50px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(201,168,76,0.25);
    transition: transform var(--ease), box-shadow var(--ease);
}
.chat-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(201,168,76,0.35); }
.chat-btn svg { width: 20px; height: 20px; color: var(--black); }
.chat-panel {
    position: absolute; bottom: 64px; right: 0;
    width: 320px; max-height: 420px;
    background: var(--black3); border: 1px solid rgba(201,168,76,0.15);
    border-radius: 8px; overflow: hidden;
    display: none; flex-direction: column;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.chat-panel.open { display: flex; }
.chat-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 16px;
    background: rgba(201,168,76,0.05);
    border-bottom: 1px solid rgba(201,168,76,0.1);
}
.chat-head span { font-family: var(--serif); font-size: 0.9rem; color: var(--gold); }
.chat-head button {
    background: none; border: none; color: var(--dim);
    font-size: 1.3rem; cursor: pointer; line-height: 1;
}
.chat-head button:hover { color: var(--white); }
.chat-body {
    flex: 1; overflow-y: auto; padding: 14px;
    display: flex; flex-direction: column; gap: 10px;
    max-height: 240px;
}
.msg p {
    padding: 8px 12px; border-radius: 10px;
    font-size: 0.8rem; line-height: 1.5; max-width: 85%;
}
.msg.bot p { background: var(--black4); color: var(--dim); border-bottom-left-radius: 3px; }
.msg.user p { background: rgba(201,168,76,0.08); color: var(--white); border-bottom-right-radius: 3px; margin-left: auto; }
.chat-foot { padding: 10px; border-top: 1px solid rgba(255,255,255,0.03); }
.chat-intro { display: flex; flex-direction: column; gap: 5px; margin-bottom: 8px; }
.chat-intro input {
    width: 100%; padding: 7px 10px;
    background: var(--black4); border: 1px solid rgba(201,168,76,0.08);
    border-radius: 4px; color: var(--white);
    font-family: var(--sans); font-size: 0.75rem; outline: none;
}
.chat-intro input:focus { border-color: var(--gold); }
.chat-intro input::placeholder { color: #555; }
.chat-intro.hidden { display: none; }
.chat-send { display: flex; gap: 6px; }
.chat-send input {
    flex: 1; padding: 8px 12px;
    background: var(--black4); border: 1px solid rgba(201,168,76,0.08);
    border-radius: 16px; color: var(--white);
    font-family: var(--sans); font-size: 0.8rem; outline: none;
}
.chat-send input:focus { border-color: var(--gold); }
.chat-send input::placeholder { color: #555; }
.chat-send button {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--gold); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.chat-send button:hover { background: var(--gold-light); }
.chat-send button svg { width: 14px; height: 14px; color: var(--black); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%;
        width: 240px; height: 100vh;
        background: rgba(10,10,10,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column; padding: 70px 30px; gap: 20px;
        transition: right var(--ease);
    }
    .nav-links.open { right: 0; }
    .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
    .services-row { grid-template-columns: 1fr; gap: 20px; }
    .pricing-row { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
    .contact-row { grid-template-columns: 1fr; gap: 30px; }
    .footer-grid { grid-template-columns: 1fr; gap: 20px; text-align: center; }
    .footer-nav { justify-content: center; }
    .footer-contact { text-align: center; }
    .footer-bottom { flex-direction: column; gap: 8px; }
    .gallery-item { width: 250px; height: 180px; }
    .chat-panel { width: calc(100vw - 48px); right: -12px; }
}
@media (max-width: 480px) {
    .hero-logo { width: 260px; }
    .gallery-item { width: 200px; height: 150px; }
}

/* ===== GLOBAL GOLD DECORATIONS ===== */

/* Gold dust particles on dark sections */
.section-about::before,
.section-pricing::before,
.section-promos::before,
.section-booking::before,
.section-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(1px 1px at 5% 15%, rgba(201,168,76,0.5) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 12% 70%, rgba(201,168,76,0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 20% 40%, rgba(201,168,76,0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 30% 85%, rgba(201,168,76,0.25) 0%, transparent 100%),
        radial-gradient(1px 1px at 45% 20%, rgba(201,168,76,0.5) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 55% 65%, rgba(201,168,76,0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 65% 10%, rgba(201,168,76,0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 75% 50%, rgba(201,168,76,0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 85% 30%, rgba(201,168,76,0.45) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 92% 75%, rgba(201,168,76,0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 38% 55%, rgba(201,168,76,0.35) 0%, transparent 100%),
        radial-gradient(1px 1px at 58% 90%, rgba(201,168,76,0.25) 0%, transparent 100%);
    opacity: 0.6;
}

.section-about,
.section-pricing,
.section-promos,
.section-booking,
.section-contact,
.section-services { position: relative; overflow: hidden; }

/* Flowing ribbon arcs between sections */
.section-about::after,
.section-services::after,
.section-pricing::after,
.section-promos::after,
.section-booking::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -10%;
    width: 120%;
    height: 160px;
    border-top: 1px solid rgba(201,168,76,0.08);
    border-radius: 50%;
    pointer-events: none;
}

/* Alternating ribbon positions */
.section-services::after,
.section-promos::after {
    bottom: auto;
    top: -80px;
    border-top: none;
    border-bottom: 1px solid rgba(201,168,76,0.08);
}

/* Gold corner flourishes */
.section-about .container::before,
.section-pricing .container::before,
.section-contact .container::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100px; height: 100px;
    border-top: 1px solid rgba(201,168,76,0.1);
    border-left: 1px solid rgba(201,168,76,0.1);
    border-top-left-radius: 8px;
    pointer-events: none;
}

.section-about .container::after,
.section-pricing .container::after,
.section-contact .container::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 100px; height: 100px;
    border-bottom: 1px solid rgba(201,168,76,0.1);
    border-right: 1px solid rgba(201,168,76,0.1);
    border-bottom-right-radius: 8px;
    pointer-events: none;
}

.section-about .container,
.section-pricing .container,
.section-contact .container { position: relative; }

/* Gold wave swooshes on alternating sides */
.section-services::before {
    content: '';
    position: absolute;
    right: -100px; top: 50%;
    transform: translateY(-50%);
    width: 300px; height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.06);
    pointer-events: none;
}

.section-booking::after {
    content: '';
    position: absolute;
    left: -150px; top: 30%;
    width: 350px; height: 700px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.05);
    pointer-events: none;
}

/* Shimmer line dividers between sections */
.gallery-strip::after,
.section-about::after {
    content: '';
    position: absolute;
    bottom: 0; left: 15%; right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
    pointer-events: none;
}

.gallery-strip { position: relative; }

/* Extra floating particles in hero */
.hero-particles span:nth-child(odd) {
    box-shadow: 0 0 6px 1px rgba(201,168,76,0.3);
}

/* Gold gradient glow on section headings */
.sec-heading {
    text-shadow: 0 0 40px rgba(201,168,76,0.15);
}

/* Subtle gold texture on dark backgrounds */
.section-services {
    background:
        radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.02) 0%, transparent 50%),
        var(--black2);
}

.section-booking {
    background:
        radial-gradient(ellipse at 70% 70%, rgba(201,168,76,0.03) 0%, transparent 40%),
        radial-gradient(ellipse at 30% 30%, rgba(196,160,160,0.02) 0%, transparent 40%),
        var(--black2);
}

/* Footer gold dust */
.site-footer {
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(201,168,76,0.15) 50%, transparent 90%);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(201,168,76,0.35); }
