:root {
    --brand-primary: #1a4f8b; /* Trustworthy deep blue */
    --brand-secondary: #7a5a0c; /* Even darker for safe 4.5+:1 contrast, was #8a670e */
    --brand-accent: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --white: #ffffff;
    --border-color: #e5e7eb;

    --font-display: 'Public Sans', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.5;
    background-color: var(--white);
}

h1, h2, h3, .logo {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--space-s);
}

h1 {
    font-size: var(--step-5);
    max-width: 15ch;
}
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-1); }

p {
    font-size: var(--step-0);
    margin-bottom: var(--space-m);
    color: var(--text-light);
    max-width: var(--measure);
}

.btn {
    display: inline-block;
    padding: var(--space-s) var(--space-m);
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: filter 0.2s ease, transform 0.1s ease;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    filter: brightness(1.1);
}

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

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

.btn-secondary {
    background-color: var(--brand-secondary);
    color: var(--white); /* White text on dark gold */
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
}

/* Header */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: var(--space-s) 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: var(--step-1);
    color: var(--brand-primary);
    margin-bottom: 0;
}

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

.nav-desktop a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-desktop a:hover {
    color: var(--brand-primary);
}

/* Hero */
.hero {
    padding: var(--space-3xl) 0;
    background-color: #f0f4f8;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-lead {
    font-size: var(--step-1);
    margin-bottom: var(--space-l);
}

.hero-actions {
    display: flex;
    gap: var(--space-s);
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Services */
.services {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header p {
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-l);
}

.service-card {
    padding: var(--space-l);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: var(--brand-primary);
}

/* About */
.about {
    padding: var(--space-3xl) 0;
    background-color: var(--brand-accent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

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

.check-list li {
    position: relative;
    padding-left: var(--space-l);
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-secondary);
    font-weight: 900;
}

/* Gallery */
.gallery {
    padding: var(--space-3xl) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-m);
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    margin: 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Reviews */
.reviews {
    padding: var(--space-3xl) 0;
    background-color: var(--brand-primary);
    color: var(--white);
}

.reviews .section-header h2,
.reviews .section-header p {
    color: var(--white);
}

.rating-summary {
    margin-top: var(--space-s);
}

.stars {
    color: #ffd700; /* Brighter gold for contrast on dark blue */
    font-size: var(--step-1);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-l);
    margin-bottom: var(--space-xl);
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-l);
    border-radius: 8px;
    margin: 0;
}

.review-content {
    font-style: italic;
    margin-bottom: var(--space-m);
    font-size: var(--step-0);
}

.review-card cite {
    font-weight: 700;
    font-style: normal;
    display: block;
}

.reviews-footer {
    text-align: center;
}

.reviews .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

/* Contact */
.contact {
    padding: var(--space-3xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-details {
    margin: var(--space-xl) 0;
}

.contact-item {
    margin-bottom: var(--space-m);
}

.contact-item .label {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    font-size: var(--step--1);
    color: var(--brand-secondary);
    margin-bottom: var(--space-3xs);
}

.contact-item .value {
    font-size: var(--step-1);
    font-weight: 600;
    text-decoration: none;
    color: var(--text-dark);
}

.contact-map iframe {
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Footer */
.site-footer {
    padding: var(--space-xl) 0;
    background: #f9fafb;
    border-top: 1px solid var(--border-color);
}

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

.footer-nav {
    display: flex;
    gap: var(--space-m);
}

.footer-nav a {
    text-decoration: none;
    color: var(--text-light);
    font-size: var(--step--1);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-grid, .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
    }

    .nav-desktop {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
