/* ── Base & Typography ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #1e0f21;
    color: #e8ddf0;
}

::selection {
    background-color: rgba(245, 158, 11, 0.3);
    color: #fff;
}

/* ── Navbar ── */
#navbar {
    background: transparent;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

#navbar.scrolled {
    background: rgba(30, 15, 33, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(212, 160, 23, 0.08), 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* ── Hero Stat Cards ── */
.stat-card {
    animation: floatCard 6s ease-in-out infinite;
}

.stat-card:nth-child(2) {
    animation-delay: -2s;
}

.stat-card:nth-child(3) {
    animation-delay: -4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* ── Service Cards ── */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0), transparent);
    transition: background 0.5s ease;
}

.service-card:hover::before {
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.4), transparent);
}

/* ── Reveal Animations ── */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
    }
    
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Gold accent line decorations ── */
.gold-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #f59e0b, transparent);
}

/* ── Custom scrollbar ── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1e0f21;
}

::-webkit-scrollbar-thumb {
    background: #43294b;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #53315c;
}

/* ── Mobile menu animation ── */
#mobile-menu {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Image hover zoom ── */
.rounded-2xl.overflow-hidden img {
    display: block;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Button ripple effect ── */
a[href="tel:17183631914"] {
    position: relative;
    overflow: hidden;
}

/* ── Testimonial card hover ── */
.bg-plum-900\/50.border.border-plum-800\/50.rounded-2xl.p-8 {
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.bg-plum-900\/50.border.border-plum-800\/50.rounded-2xl.p-8:hover {
    transform: translateY(-4px);
}

/* ── Gallery grid responsive ── */
@media (max-width: 768px) {
    .col-span-2 {
        col-span: 2;
        row-span: 1;
    }
}
