﻿:root {
    --gold: #c9a84c;
    --gold-light: #e8d08a;
    --gold-dark: #8a6820;
    --crimson: #8b1a1a;
    --cream: #fdf6e3;
    --ink: #1a1209;
    --charcoal: #2c2416;
    --muted: #7a6a50;
}

/* ─── RESET & BASE ───────────────────────────────── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--ink);
    color: var(--cream);
    overflow-x: hidden;
}

/* ─── ORNAMENTAL DIVIDER ─────────────────────────── */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 1.5rem 0;
}

    .ornament::before,
    .ornament::after {
        content: '';
        flex: 1;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--gold));
    }

    .ornament::after {
        background: linear-gradient(to left, transparent, var(--gold));
    }

.ornament-icon {
    color: var(--gold);
    font-size: 1.2rem;
}

/* ─── NAVBAR ─────────────────────────────────────── */
#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

    #mainNav.scrolled {
        background: rgba(18, 10, 4, 0.96);
        padding: 0.6rem 0;
        box-shadow: 0 2px 30px rgba(0,0,0,0.5);
        backdrop-filter: blur(8px);
    }

.navbar-brand {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--gold) !important;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight:bold;
}

.nav-link {
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff !important;
    padding: 0.4rem 1rem !important;
    transition: color 0.25s;
}

    .nav-link:hover {
        color: var(--gold) !important;
    }

.navbar-toggler {
    border-color: var(--gold);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23c9a84c' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ─── HERO SLIDER ─────────────────────────────────── */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Slides container */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: -10%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.4s ease, transform 6s ease;
    will-change: opacity, transform;
}

    .hero-slide::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(10,5,2,0.45) 0%, rgba(10,5,2,0.55) 55%, rgba(10,5,2,0.68) 100%);
    }

    .hero-slide.active {
        opacity: 1;
        transform: scale(1);
    }

    .hero-slide.exit {
        opacity: 0;
        transform: scale(1.04);
    }

/* Slide dots */
.hero-dots {
    position: absolute;
    bottom: 5.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 28px;
    height: 2px;
    background: rgba(253,246,227,0.3);
    cursor: pointer;
    transition: background 0.4s, width 0.4s;
    position: relative;
    overflow: hidden;
}

    .hero-dot.active {
        background: rgba(253,246,227,0.3);
        width: 48px;
    }

        .hero-dot.active::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            width: 0%;
            background: var(--gold);
            animation: dotProgress var(--slide-duration, 5s) linear forwards;
        }

@keyframes dotProgress {
    to {
        width: 100%;
    }
}

/* Slider arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 46px;
    height: 46px;
    border: 0px solid rgba(201,168,76,0.5);
    background: rgba(10,5,2,0.35);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
    border-radius:50px;
}

    .hero-arrow:hover {
        background: rgba(201,168,76,0.2);
        border-color: var(--gold);
    }

    .hero-arrow.prev {
        left: 1.5rem;
    }

    .hero-arrow.next {
        right: 1.5rem;
    }

/* Slide caption bar */
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(201,168,76,0.15);
    background: rgba(10,5,2,0.4);
    backdrop-filter: blur(6px);
}

.slide-caption-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.9rem;
    color: rgba(253,246,227,0.7);
}

.slide-counter {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--gold);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    border: 1px solid var(--gold);
    color: #000;
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1.5rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
    background: var(--gold);
    border-radius:50px;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.8rem, 8vw, 4rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.05;
    letter-spacing: 0.05em;
    opacity: 0;
    animation: fadeUp 0.9s 0.5s forwards;
}

    .hero-title span {
        color: var(--gold);
    }

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    color: var(--gold-light);
    margin-top: 0.75rem;
    opacity: 0;
    animation: fadeUp 0.9s 0.75s forwards;
}

.hero-cta {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s 1s forwards;
}

.btn-royal {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.85rem 2.2rem;
    background: var(--gold);
    color: #000;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    font-weight: bold;
}

    .btn-royal::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,0.12);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .btn-royal:hover {
        background: var(--gold-light);
        color: #000;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(201,168,76,0.4);
    }

        .btn-royal:hover::after {
            opacity: 1;
        }

.btn-outline-royal {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.85rem 2.2rem;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    transition: all 0.3s;
}

    .btn-outline-royal:hover {
        background: rgba(201,168,76,0.1);
        color: var(--gold-light);
        border-color: var(--gold-light);
        transform: translateY(-2px);
    }

.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(253,246,227,0.5);
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeIn 1.5s 1.8s both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
}

/* ─── SECTION SHARED ──────────────────────────────── */
section {
    padding: 100px 0;
}

.section-label {
    font-family: 'Cinzel', serif;
    font-size: 0.88rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--cream);
    line-height: 1.2;
}

.section-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: rgba(253,246,227,0.75);
    line-height: 1.8;
}

/* ─── ABOUT ───────────────────────────────────────── */
#about {
    background: var(--charcoal);
}

.about-img-wrap {
    position: relative;
}

    .about-img-wrap img {
        width: 100%;
        height: 460px;
        object-fit: cover;
        display: block;
    }

    .about-img-wrap::before {
        content: '';
        position: absolute;
        inset: -12px 12px 12px -12px;
        border: 1px solid var(--gold);
        z-index: 0;
    }

    .about-img-wrap img {
        position: relative;
        z-index: 1;
    }

.stat-box {
    border-left: 2px solid var(--gold);
    padding: 0.5rem 1.2rem;
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-transform: uppercase;
}

/* ─── ROOMS / FEATURES ────────────────────────────── */
#rooms {
    background: var(--ink);
}

.room-card {
    position: relative;
    overflow: hidden;
    height: 380px;
    cursor: pointer;
}

    .room-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .room-card:hover img {
        transform: scale(1.08);
    }

.room-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,5,2,0.92) 0%, rgba(10,5,2,0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: all 0.4s;
}

.room-tag {
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.room-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--cream);
}

.room-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.98rem;
    color: rgba(253,246,227,0.7);
    margin-top: 0.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s;
    opacity: 0;
}

.room-card:hover .room-desc {
    max-height: 80px;
    opacity: 1;
}

/* ─── PARALLAX BANNER ─────────────────────────────── */
.parallax-banner {
    position: relative;
    height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.parallax-bg {
    position: absolute;
    inset: -25%;
    background: linear-gradient(rgba(10,5,2,0.6), rgba(10,5,2,0.6)), url('../images/quote-bg.jpg') center/cover no-repeat;
    will-change: transform;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.4rem, 4vw, 2.4rem);
    color: var(--cream);
    max-width: 700px;
    line-height: 1.5;
}

.banner-attr {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-top: 1.2rem;
}

/* ─── DINING / MENU ───────────────────────────────── */
#dining {
    background: var(--charcoal);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    transition: all 0.25s;
}

    .menu-item:hover {
        padding-left: 8px;
        border-color: var(--gold);
    }

.menu-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--cream);
}

.menu-item-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(201,168,76,0.3);
    margin: 0 0.8rem;
    position: relative;
    top: -4px;
}

.menu-item-price {
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    color: var(--gold);
}

/* ─── GALLERY ─────────────────────────────────────── */
#gallery {
    background: var(--ink);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px 220px;
    gap: 6px;
}

    .gallery-grid .g-item:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .gallery-grid .g-item:nth-child(4) {
        grid-column: 3 / 5;
        grid-row: 2 / 3;
    }

.g-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

    .g-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease, filter 0.5s;
        filter: brightness(0.85);
    }

    .g-item:hover img {
        transform: scale(1.1);
        filter: brightness(1);
    }

    .g-item::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(201,168,76,0);
        transition: background 0.3s;
    }

    .g-item:hover::after {
        background: rgba(201,168,76,0.08);
    }

.g-item-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 2;
    width: 48px;
    height: 48px;
    border: 0px solid var(--gold);
    background: rgba(10,5,2,0.6);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: transform 0.3s ease, opacity 0.3s;
    opacity: 0;
    backdrop-filter: blur(4px);
    border-radius:50px;
}

.g-item:hover .g-item-zoom {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* ─── LIGHTBOX ────────────────────────────────────── */
#lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(8,4,1,0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

    #lightbox.open {
        opacity: 1;
        pointer-events: all;
    }

.lb-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-img-wrap {
    max-width: 90vw;
    max-height: 82vh;
    position: relative;
}

#lbImg {
    display: block;
    max-width: 90vw;
    max-height: 82vh;
    object-fit: contain;
    box-shadow: 0 0 80px rgba(0,0,0,0.8);
    border: 1px solid rgba(201,168,76,0.2);
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

    #lbImg.loaded {
        opacity: 1;
        transform: scale(1);
    }

.lb-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 36px;
    height: 36px;
    border: 2px solid rgba(201,168,76,0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%,-50%) rotate(360deg);
    }
}

/* lightbox controls */
.lb-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201,168,76,0.4);
    background: transparent;
    color: var(--gold);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
}

    .lb-close:hover {
        background: rgba(201,168,76,0.15);
        border-color: var(--gold);
    }

.lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 1px solid rgba(201,168,76,0.35);
    background: rgba(10,5,2,0.5);
    color: var(--gold);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
    backdrop-filter: blur(4px);
}

    .lb-arrow:hover {
        background: rgba(201,168,76,0.2);
        border-color: var(--gold);
    }

    .lb-arrow.prev {
        left: 1.5rem;
    }

    .lb-arrow.next {
        right: 1.5rem;
    }

@media (max-width: 576px) {
    .lb-arrow.prev {
        left: 0.5rem;
    }

    .lb-arrow.next {
        right: 0.5rem;
    }
}

.lb-caption-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    background: rgba(10,5,2,0.7);
    border-top: 1px solid rgba(201,168,76,0.12);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lb-caption {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: rgba(253,246,227,0.8);
}

.lb-count {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--gold);
}
/* thumbnail strip */
.lb-thumbs {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    padding: 6px;
}

.lb-thumb {
    width: 52px;
    height: 38px;
    object-fit: cover;
    opacity: 0.45;
    border: 1px solid transparent;
    cursor: pointer;
    transition: opacity 0.3s, border-color 0.3s;
}

    .lb-thumb.active,
    .lb-thumb:hover {
        opacity: 1;
        border-color: var(--gold);
    }

/* ─── TESTIMONIALS ────────────────────────────────── */
#testimonials {
    background: var(--charcoal);
}

.testi-card {
    background: rgba(253,246,227,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 2.5rem;
    height: 100%;
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
}

    .testi-card:hover {
        border-color: var(--gold);
        transform: translateY(-4px);
    }

    .testi-card::before {
        content: '\201C';
        position: absolute;
        top: -0.5rem;
        left: 1.5rem;
        font-family: 'Cormorant Garamond', serif;
        font-size: 5rem;
        color: var(--gold);
        line-height: 1;
        opacity: 0.4;
    }

.testi-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(253,246,227,0.8);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.testi-author {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: var(--gold);
}

.testi-stars {
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

/* ─── CONTACT / MAP ───────────────────────────────── */
#contact {
    background: var(--ink);
}

.contact-block {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-label {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.2rem;
    font-weight: bold;
}

.contact-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--cream);
}

.map-container {
    width: 100%;
    height: 400px;
    border: 1px solid rgba(201,168,76,0.25);
    overflow: hidden;
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
        filter: grayscale(30%) sepia(10%);
    }

/* ─── FOOTER ──────────────────────────────────────── */
footer {
    background: #0c0802;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    font-weight:bold;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--muted);
    font-size: 0.95rem;
}

.footer-link {
    color: rgba(253,246,227,0.5);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    transition: color 0.25s;
    display: block;
    margin-bottom: 0.5rem;
}
    .footer-link i {
        font-size:12px;
    }
    .footer-link:hover {
        color: var(--gold);
    }

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201,168,76,0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.9rem;
    transition: all 0.3s;
    text-decoration: none;
}

    .social-btn:hover {
        border-color: var(--gold);
        color: var(--gold);
        background: rgba(201,168,76,0.08);
    }

.copyright {
    font-size: 0.72rem;
    color: rgba(253,246,227,0.3);
    letter-spacing: 0.08em;
    margin-top: 2rem;
    border-top: 1px solid rgba(201,168,76,0.08);
    padding-top: 1.5rem;
}

/* ─── ANIMATIONS ──────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}
/* ─── SERVICES ───────────────────────────────────── */
#services {
    background: var(--ink);
}

.service-card {
    background: rgba(253,246,227,0.03);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 2rem 1.8rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: border-color 0.35s, transform 0.35s, background 0.35s;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 0;
        background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
        transition: height 0.4s ease;
    }

    .service-card:hover {
        border-color: rgba(201,168,76,0.45);
        background: rgba(201,168,76,0.05);
        transform: translateY(-5px);
    }

        .service-card:hover::before {
            height: 100%;
        }

.service-emoji {
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
}

.service-title {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    color: var(--cream);
    margin-bottom: 0.6rem;
}

.service-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: rgba(253,246,227,0.6);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .service-list li {
        font-family: 'Cormorant Garamond', serif;
        font-size: 0.98rem;
        color: rgba(253,246,227,0.72);
        padding: 0.28rem 0;
        padding-left: 1.1rem;
        position: relative;
        line-height: 1.45;
    }

        .service-list li::before {
            content: '—';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-size: 0.75rem;
            top: 0.38rem;
        }
/* ─── WHATSAPP FLOAT ─────────────────────────────── */
#whatsappBtn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 999;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: waPulse 2.5s infinite;
}

    #whatsappBtn:hover {
        transform: scale(1.12);
        box-shadow: 0 6px 28px rgba(37,211,102,0.65);
        animation: none;
        color: #fff;
    }
    /* tooltip */
    #whatsappBtn::after {
        content: 'Chat with us';
        position: absolute;
        left: 62px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(10,5,2,0.88);
        color: var(--cream);
        font-family: 'Cinzel', serif;
        font-size: 0.62rem;
        letter-spacing: 0.12em;
        white-space: nowrap;
        padding: 0.4rem 0.9rem;
        border: 1px solid rgba(37,211,102,0.3);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s;
        backdrop-filter: blur(4px);
    }

    #whatsappBtn:hover::after {
        opacity: 1;
    }

@keyframes waPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    }

    50% {
        box-shadow: 0 4px 32px rgba(37,211,102,0.75), 0 0 0 8px rgba(37,211,102,0.1);
    }
}
/* ─── SCROLL TO TOP ──────────────────────────────── */
#scrollTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 46px;
    height: 46px;
    background: rgba(10,5,2,0.7);
    border: 1px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.35s, transform 0.35s, background 0.25s;
    backdrop-filter: blur(6px);
    pointer-events: none;
}

    #scrollTop.visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }

    #scrollTop:hover {
        background: rgba(201,168,76,0.18);
        color: var(--gold-light);
    }

    #scrollTop::before {
        content: '';
        position: absolute;
        inset: 0;
        border: 1px solid transparent;
        transition: border-color 0.25s;
    }

    #scrollTop:hover::before {
        border-color: var(--gold-light);
    }

/* ─── MOBILE TWEAKS ───────────────────────────────── */
@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }

    .about-img-wrap::before {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 180px);
    }

        .gallery-grid .g-item:nth-child(1),
        .gallery-grid .g-item:nth-child(4) {
            grid-column: auto;
            grid-row: auto;
        }
}