:root {
    --gold: #B8965A;
    --gold-light: #D4AE72;
    --cream: #FAF7F2;
    --bone: #F5EFE4;
    --beige: #E8DDD0;
    --charcoal: #2C2C2C;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background-color: var(--cream);
    color: var(--charcoal);
    -webkit-font-smoothing: antialiased;
}

/* ─── Ornamental line ─── */
.ornament {
    letter-spacing: .25em;
}

/* ─── Section fade-in ─── */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Hero pattern overlay ─── */
.hero-pattern {
    background-image:
        radial-gradient(circle at 15% 50%, rgba(184, 150, 90, .08) 0%, transparent 50%),
        radial-gradient(circle at 85% 20%, rgba(184, 150, 90, .06) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B8965A' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ─── Gold gradient text ─── */
.gold-text {
    background: linear-gradient(135deg, #B8965A 0%, #D4AE72 50%, #8B6E3A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Divider ornament ─── */
.divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.divider::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}

/* ─── Nav ─── */
#navbar {
    transition: background .4s ease, box-shadow .4s ease;
}

#navbar.scrolled {
    background: rgba(250, 247, 242, .95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 24px rgba(0, 0, 0, .06);
}

/* ─── Service cards ─── */
.service-card {
    transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(184, 150, 90, .14);
}

.service-card .card-icon {
    transition: color .35s ease, transform .35s ease;
}

.service-card:hover .card-icon {
    color: var(--gold);
    transform: scale(1.1);
}

/* ─── FAQ ─── */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease, padding .35s ease;
}

.faq-answer.open {
    max-height: 300px;
}

.faq-icon {
    transition: transform .35s ease;
}

.faq-icon.open {
    transform: rotate(45deg);
}

/* ─── Stat counter ─── */
.stat-num {
    font-family: 'Cormorant Garamond', serif;
}

/* ─── WhatsApp pulse ─── */
@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(184, 150, 90, .5);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(184, 150, 90, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(184, 150, 90, 0);
    }
}

.wa-pulse {
    animation: pulse-gold 2.2s infinite;
}

/* ─── Timeline ─── */
.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
}

@media (max-width: 767px) {
    .timeline-line {
        left: 20px;
        transform: none;
    }
}

/* ─── Testimonial card ─── */
.testi-card {
    position: relative;
    transition: transform .35s ease, box-shadow .35s ease;
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .07);
}

.testi-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    color: var(--gold);
    opacity: .15;
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    line-height: 1;
    pointer-events: none;
}

/* ─── Hover CTA ─── */
.btn-gold {
    background: linear-gradient(135deg, #B8965A 0%, #D4AE72 100%);
    transition: background .35s ease, transform .25s ease, box-shadow .35s ease;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #8B6E3A 0%, #B8965A 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(184, 150, 90, .35);
}

.btn-outline-gold {
    border: 1.5px solid var(--gold);
    color: var(--gold);
    transition: background .3s ease, color .3s ease, transform .25s ease;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}

/* ─── Mobile menu ─── */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

#mobile-menu.open {
    max-height: 400px;
}