/* === RESET & BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --black: #1a1a1a;
    --warm-black: #2a2a2a;
    --cream: #fdf8f4;
    --blush: #f4e4e4;
    --rose: #e8c4c4;
    --rose-gold: #c9a07a;
    --gold: #c9a07a;
    --gold-light: #dbb896;
    --white: #ffffff;
    --gray: #888;
    --gray-light: #f5f0ed;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--cream);
    color: #3a3a3a;
    line-height: 1.6;
}

/* === PAGE LOAD ANIMATION === */
body {
    animation: fadeInPage 0.6s ease-out;
}
@keyframes fadeInPage {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === NAV === */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    animation: slideDown 0.5s ease-out;
}
@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; color: var(--black); letter-spacing: 0.02em; }
.logo span { color: var(--rose-gold); }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rose-gold);
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--rose-gold); }
.nav-links a:hover::after { width: 100%; }
.hamburger { display: none; cursor: pointer; font-size: 1.5rem; color: var(--black); transition: transform 0.3s; }
.hamburger:hover { transform: scale(1.1); }

/* === HERO (full-bleed bg image, desktop) === */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(201,160,122,0.72) 0%, rgba(232,196,196,0.55) 50%, rgba(253,248,244,0.82) 100%);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
    padding: 3.5rem;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(16px);
    border-radius: 28px 0 0 28px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.14);
    margin-right: 5vw;
    margin-left: auto;
    margin-bottom: 12vh;
    margin-top: auto;
    animation: slideInRight 0.8s ease-out;
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 0.8rem;
    color: var(--black);
    animation: fadeInUp 0.6s ease-out 0.2s both;
}
.hero-content p {
    font-size: 1rem;
    color: #5a4a3a;
    margin-bottom: 1.2rem;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}
.hero-rating {
    color: var(--rose-gold);
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.cta-primary {
    background: var(--rose-gold);
    color: var(--white);
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(201,160,122,0.35);
}
.cta-primary:hover {
    background: #b8896a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201,160,122,0.45);
}
.cta-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201,160,122,0.35);
}
.cta-outline {
    background: transparent;
    color: var(--black);
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    border: 1.5px solid var(--rose-gold);
    transition: all 0.3s;
}
.cta-outline:hover {
    background: var(--rose-gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201,160,122,0.45);
}

/* === TRUST BAR === */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-top: 1px solid var(--blush);
    border-bottom: 1px solid var(--blush);
}
.trust-item { text-align: center; }
.trust-item .number { display: block; font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--rose-gold); }
.trust-item .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: #888; margin-top: 0.2rem; }

/* === INFO BAR === */
.info-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 2rem;
    background: var(--blush);
    border-top: 1px solid rgba(201,160,122,0.2);
    border-bottom: 1px solid rgba(201,160,122,0.2);
    flex-wrap: wrap;
}
.info-item { font-family: var(--font-body); font-size: 0.88rem; color: #5a3a2a; }

/* === SECTIONS === */
section { padding: 5rem 2rem; }
section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--black);
}
.section-subtitle { text-align: center; color: #888; margin-bottom: 3rem; font-size: 0.95rem; }

/* === SCROLL ANIMATIONS === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === GALLERY === */
.gallery { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* === SERVICES === */
.services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.service-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.12);
}
.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-item:hover img { transform: scale(1.08); }
.service-item-content { padding: 1.3rem; }
.service-item h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--black); margin-bottom: 0.4rem; }
.service-item p { font-size: 0.85rem; color: #888; line-height: 1.6; margin-bottom: 0.6rem; }
.service-item .price { color: var(--rose-gold); font-weight: 700; font-size: 1.1rem; }
.service-item .duration { color: #aaa; font-size: 0.78rem; margin-left: 0.5rem; }
.service-item .cta-btn {
    display: block;
    background: var(--rose-gold);
    color: var(--white);
    text-align: center;
    padding: 0.7rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 0.8rem;
    transition: all 0.3s;
}
.service-item .cta-btn:hover {
    background: #b8896a;
    transform: scale(1.03);
}

/* === REVIEWS === */
.reviews { background: var(--blush); }
.reviews h2 { color: var(--black); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.review-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.review-card .stars { color: var(--rose-gold); font-size: 1.1rem; margin-bottom: 0.5rem; display: block; }
.review-card p { color: #555; font-size: 0.92rem; line-height: 1.7; font-style: italic; margin-bottom: 0.8rem; }
.review-card .author { color: var(--rose-gold); font-size: 0.82rem; font-weight: 600; }
.review-card .source { color: #aaa; font-size: 0.75rem; margin-left: 0.5rem; }

/* === CTA SECTION === */
.cta-section {
    background: #c4a484;
    color: var(--white);
    text-align: center;
    padding: 5rem 2rem;
}
.cta-section h2 { font-family: var(--font-heading); font-size: 2.8rem; margin-bottom: 1rem; color: var(--white); }
.cta-section p { opacity: 0.9; margin-bottom: 1.5rem; font-size: 1.05rem; }
.cta-section .phone-link { color: var(--white); font-size: 1.6rem; font-weight: 700; text-decoration: none; display: block; margin-bottom: 1.5rem; }
.cta-white {
    display: inline-block;
    background: var(--white);
    color: #c4a484;
    padding: 1rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

/* === FOOTER === */
footer { background: #2d2d2d; color: #e0e0e0; padding: 4rem 2rem 2rem; text-align: center; }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 2rem; margin-bottom: 2rem; }
.footer-info { text-align: center; }
.footer-info h3 { font-family: var(--font-heading); color: #c4a484; margin-bottom: 1rem; font-size: 1.6rem; font-weight: 400; letter-spacing: 0.05em; }
.footer-info p { font-size: 0.95rem; line-height: 1.8; margin-bottom: 0.3rem; }
.footer-links { text-align: center; }
.footer-links a { 
    color: rgba(255,255,255,0.7); 
    text-decoration: none; 
    font-size: 0.95rem; 
    line-height: 1.8;
    display: inline-block;
    margin: 0 1rem; 
    transition: all 0.3s;
}
.footer-links a:hover { color: #c4a484; }
.copyright { text-align: center; font-size: 0.85rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }

/* === STICKY CTA === */
.sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    display: flex;
    gap: 0.75rem;
}
.sticky-cta a {
    display: block;
    background: #c4a484;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(196,164,132,0.5);
    transition: all 0.3s;
    white-space: nowrap;
}
.sticky-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(196,164,132,0.6);
}
.sticky-cta a:hover {
    background: #b8896a;
    transform: scale(1.08);
    animation: none;
}
.sticky-cta a:active {
    transform: scale(1.02);
}

/* === LIGHTBOX === */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 300;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    animation: zoomIn 0.3s ease;
}
@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* === LIGHTBOX CSS FIX === */
.lightbox img, .lightbox-img {
    max-width: 95vw !important;
    max-height: 95vh !important;
    object-fit: contain;
}
.lightbox-close {
    z-index: 1000000 !important;
    color: white !important;
    opacity: 1 !important;
}
.page-hero {
    background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 100%);
    padding: 4rem 2rem 2rem;
    text-align: center;
    animation: fadeInPage 0.6s ease-out;
}
.page-hero h1 { font-family: var(--font-heading); font-size: 2.8rem; color: var(--black); margin-bottom: 0.4rem; }
.page-hero p { color: var(--rose-gold); font-size: 0.95rem; }

/* === LOADING BAR === */
.loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rose-gold), var(--gold-light));
    z-index: 9999;
    animation: loading 1s ease-in-out;
}
@keyframes loading {
    from { width: 0%; }
    to { width: 100%; }
}

/* ============================================
   RESPONSIVE - MOBILE FIRST
   ============================================ */

/* === TABLET === */
@media (max-width: 1024px) {
    .hero-content { max-width: 480px; padding: 2.5rem; }
    .hero-content h1 { font-size: 2.8rem; }
    section { padding: 4rem 1.5rem; }
}

/* === MOBILE (< 768px) === */
@media (max-width: 768px) {
    /* Nav */
    .hamburger { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.2rem;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }
    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

    /* Hero - image top, content below */
    .hero {
        min-height: auto !important;
        flex-direction: column;
        justify-content: flex-start;
        background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 100%);
        background-image: none !important;
    }
    .hero-bg {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        z-index: 0;
        aspect-ratio: 16/9;
        object-fit: cover;
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    .hero-bg.loaded { opacity: 1; }
    .hero-content {
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        padding: 2rem 1.5rem;
        border-radius: 24px 24px 0 0;
        margin-top: -1.5rem;
        box-shadow: 0 -4px 30px rgba(0,0,0,0.1);
    }
    .hero-content h1 { font-size: 2.4rem; }
    .hero-content p { font-size: 0.95rem; }
    .hero-cta {
        justify-content: center;
        gap: 0.75rem;
    }
    .cta-primary, .cta-outline {
        padding: 0.8rem 1.5rem;
        font-size: 0.88rem;
    }

    /* Trust bar */
    .trust-bar { gap: 1.5rem; padding: 1.5rem 1rem; flex-wrap: wrap; }
    .trust-item .number { font-size: 1.6rem; }

    /* Info bar */
    .info-bar { gap: 0.75rem; padding: 0.85rem 1rem; }
    .info-item { font-size: 0.8rem; }

    /* Sections */
    section { padding: 3.5rem 1rem; }
    section h2 { font-size: 2rem; }

    /* Gallery */
    .gallery-grid { gap: 0.75rem; }
    .gallery-grid img { height: 220px; }

    /* Services */
    .services-grid { gap: 1rem; }
    .service-item img { height: 170px; }

    /* Reviews */
    .reviews-grid { gap: 1rem; }

    /* Footer */
    .footer-content { flex-direction: column; gap: 1.5rem; }

    /* Sticky CTA - smaller on mobile */
    .sticky-cta { bottom: 0.5rem; right: 0.5rem; }
    .sticky-cta a { padding: 0.7rem 1.1rem; font-size: 0.8rem; }
}

/* === SMALL MOBILE (< 480px) === */
@media (max-width: 480px) {
    nav { padding: 0.8rem 1rem; }
    .logo { font-size: 1.3rem; }

    .hero-content { padding: 1.5rem 1rem; }
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 0.9rem; }
    .hero-cta { flex-direction: column; align-items: stretch; gap: 0.6rem; }
    .cta-primary, .cta-outline { text-align: center; padding: 0.75rem 1.2rem; }

    .trust-bar { gap: 1rem; }
    .trust-item .number { font-size: 1.4rem; }
    .trust-item .label { font-size: 0.7rem; }

    .info-bar { flex-direction: column; gap: 0.4rem; text-align: center; padding: 0.75rem 1rem; }
    .info-item { font-size: 0.78rem; }

    section { padding: 3rem 0.75rem; }
    section h2 { font-size: 1.75rem; }
    .section-subtitle { font-size: 0.85rem; margin-bottom: 2rem; }

    .gallery-grid img { height: 180px; border-radius: 8px; }
}

/* Lightbox: constrain image + visible close button */
.lightbox img, .lightbox-img {
    max-width: 95vw !important;
    max-height: 95vh !important;
    object-fit: contain;
}
.lightbox-close {
    z-index: 1000000 !important;
    color: white !important;
    opacity: 1 !important;
}
