:root {
    --brand-gold: #8c6d31; /* Darkened for light backgrounds (4.59:1) */
    --brand-gold-footer: #d4af37; /* Lighter gold for dark backgrounds (footer) */
    --brand-gold-light: #c5a059;
    --brand-dark: #121212;
    --brand-light: #f9f9f9;
    --font-display: 'Bebas Neue', sans-serif;
    --font-text: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-text);
    background-color: var(--brand-light);
    color: var(--brand-dark);
    line-height: 1.6;
}

h1, h2, h3, .logo {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

h1 { font-size: var(--step-6); line-height: 1.1; }
h2 { font-size: var(--step-4); margin-bottom: var(--space-m); }
h3 { font-size: var(--step-2); }

.site-header {
    padding: var(--space-s) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: var(--step-2);
    color: var(--brand-dark);
    text-decoration: none;
}

.site-nav {
    display: flex;
    gap: var(--space-m);
    align-items: center;
}

.site-nav a {
    text-decoration: none;
    color: var(--brand-dark);
    font-weight: 600;
    font-size: var(--step--1);
    text-transform: uppercase;
}

.nav-cta {
    background: var(--brand-dark);
    color: white !important;
    padding: var(--space-2xs) var(--space-s);
    border-radius: 4px;
}

/* Hero Section */
.hero {
    padding: var(--space-3xl) 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('photos/photo-1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.eyebrow {
    display: block;
    text-transform: uppercase;
    color: var(--brand-gold);
    font-weight: 700;
    margin-bottom: var(--space-xs);
    letter-spacing: 0.1em;
}

.hero p {
    font-size: var(--step-1);
    margin: var(--space-m) 0 var(--space-xl);
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: var(--space-m);
    justify-content: center;
}

.button {
    display: inline-block;
    padding: var(--space-s) var(--space-xl);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: transform 0.2s, background 0.2s;
}

.button:active { transform: scale(0.98); }

.button.primary {
    background: var(--brand-gold);
    color: white;
}

.button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

/* General Layout */
section {
    padding: var(--space-3xl) 0;
}

.grid {
    display: grid;
    gap: var(--space-l);
}

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: 1fr 1fr; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
    .header-content {
        flex-direction: column;
        gap: var(--space-xs);
    }

    .site-nav {
        gap: var(--space-s);
    }

    .hero {
        padding: var(--space-2xl) 0;
        min-height: 60vh;
    }

    .hero h1 {
        font-size: var(--step-5);
    }

    .hero-actions {
        flex-direction: column;
    }
}

/* Footer */
.site-footer {
    padding: var(--space-xl) 0;
    background: var(--brand-dark);
    color: white;
    border-top: 4px solid var(--brand-gold);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-l);
}

.footer-info a {
    color: var(--brand-gold-footer);
    text-decoration: none;
    font-weight: 600;
}

/* Sections & Utilities */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

.items-center { align-items: center; }

/* Service Cards */
.service-card {
    background: white;
    padding: var(--space-l);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.service-card h3 {
    margin-bottom: var(--space-xs);
    color: var(--brand-dark);
}

/* About Section */
.about { background: white; }
.about-image img {
    border-radius: 8px;
    box-shadow: 20px 20px 0 var(--brand-gold);
    width: 100%;
    height: auto;
}

.badges {
    display: flex;
    gap: var(--space-m);
    margin-top: var(--space-l);
}

.badge {
    background: var(--brand-light);
    padding: var(--space-s) var(--space-m);
    border-radius: 4px;
    text-align: center;
    flex: 1;
}

.badge-title {
    display: block;
    font-family: var(--font-display);
    font-size: var(--step-1);
    color: var(--brand-gold);
}

.badge-sub {
    font-size: var(--step--2);
    text-transform: uppercase;
    font-weight: 600;
}

/* Gallery */
.gallery { background: var(--brand-dark); color: white; }
.gallery h2 { color: white; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-s);
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(20%);
    transition: filter 0.3s;
}

.gallery-grid img:hover { filter: grayscale(0); }

/* Reviews */
.review-card {
    background: var(--brand-light);
    padding: var(--space-l);
    border-radius: 8px;
    font-style: italic;
}

.stars {
    color: var(--brand-gold);
    margin-bottom: var(--space-xs);
    font-size: var(--step-1);
}

cite {
    display: block;
    margin-top: var(--space-m);
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    font-size: var(--step--1);
}

/* Contact */
.contact { background: white; }
.contact-details {
    margin: var(--space-l) 0;
}

.contact-item { margin-bottom: var(--space-m); }
.contact-item strong {
    display: block;
    text-transform: uppercase;
    font-family: var(--font-display);
    font-size: var(--step-0);
    margin-bottom: var(--space-3xs);
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    max-width: 300px;
    padding: 2px 0;
}

.contact-map iframe {
    border-radius: 8px;
    filter: grayscale(0.2);
}
