:root {
    --gold: #d1a22b;
    --dark: #0d0d0f;
    --gray: #a4a4ad;
}

body {
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    background: radial-gradient(circle at 10% 20%, rgba(209, 162, 43, 0.06), transparent 25%),
                radial-gradient(circle at 90% 10%, rgba(209, 162, 43, 0.05), transparent 25%),
                var(--dark);
    color: #f6f6f8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Manrope', serif;
}

.navbar-brand {
    letter-spacing: 0.08em;
}

.hero-section {
    padding-top: 96px;
    background: linear-gradient(135deg, rgba(209, 162, 43, 0.08), transparent 40%),
                linear-gradient(315deg, rgba(209, 162, 43, 0.05), transparent 50%),
                #0b0b0d;
}

.badge.bg-outline {
    background: rgba(209, 162, 43, 0.08);
}

.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.service-card, .testimonial-card, .pill-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    background: #0f0f12;
}

.price-row {
    background: linear-gradient(135deg, rgba(209, 162, 43, 0.05), transparent 60%),
                #0f0f12;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.price-row:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 18px 40px rgba(209, 162, 43, 0.18);
}

.price-badge {
    min-width: 72px;
    text-align: right;
    letter-spacing: 0.02em;
}

.gallery-card {
    background: #0f0f12;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 18px 40px rgba(209, 162, 43, 0.16);
}

.gallery-image-wrap {
    position: relative;
    overflow: hidden;
    background: #0b0b0d;
}

.gallery-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.03);
}

.service-card:hover, .testimonial-card:hover, .pill-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(209, 162, 43, 0.2);
}

.footer-link {
    color: #f6f6f8;
    text-decoration: none;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.2s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.map-wrapper iframe {
    filter: grayscale(10%) contrast(1.1);
}

.hours-card {
    background: linear-gradient(135deg, rgba(209, 162, 43, 0.05), transparent 60%),
                #0f0f12;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.logo-pill {
    width: 82px;
    height: 82px;
    padding: 12px;
    border-radius: 20px;
    border: 1px solid var(--gold);
    background: radial-gradient(circle at 30% 30%, rgba(209, 162, 43, 0.15), rgba(209, 162, 43, 0.04) 50%, transparent 65%),
                #0f0f12;
    box-shadow: 0 18px 40px rgba(209, 162, 43, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-mark {
    width: 32px;
    height: 32px;
    object-fit: contain;
    padding: 4px;
    border-radius: 10px;
    border: 1px solid rgba(209, 162, 43, 0.5);
    background: rgba(209, 162, 43, 0.06);
}

.btn-warning {
    background-color: var(--gold);
    border-color: var(--gold);
}

.btn-outline-warning {
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline-warning:hover {
    background: var(--gold);
    color: #0b0b0d;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 576px) {
    h1 {
        font-size: 2.1rem;
    }
    .navbar-brand {
        font-size: 1rem;
    }
}
