:root {
    --brand: #c82127;
    --brand-dark: #8f1519;
    --brand-soft: #fff1f1;
    --ink: #1f2428;
    --muted: #5f6b73;
    --line: #e4e8eb;
    --surface: #ffffff;
    --surface-muted: #f6f7f8;
    --shadow: 0 18px 50px rgba(31, 36, 40, 0.08);
    --radius: 18px;
    --container: 1120px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--ink);
    background: var(--surface);
    line-height: 1.6;
}

.brand img {
    width: 150px !important;
    max-width: none !important;
    height: auto !important;
    display: block;
}

a {
    color: var(--brand-dark);
}

h1,
h2,
h3 {
    font-family: "Libre Baskerville", serif;
    line-height: 1.2;
    margin: 0 0 0.75rem;
}

p {
    margin: 0 0 1rem;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin-inline: auto;
}

.sr-only,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1000;
    width: auto;
    height: auto;
    padding: 0.75rem 1rem;
    clip: auto;
    background: var(--ink);
    color: #fff;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 88px;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.brand img {
    width: min(220px, 42vw);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.site-nav a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 500;
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 0.5rem;
}

.nav-toggle__bar {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    border: 0;
    background: var(--brand);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
}

.btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
}

.btn--small {
    padding: 0.65rem 1rem;
}

.btn--full {
    width: 100%;
}

.hero {
    position: relative;
    min-height: 78vh;
    display: grid;
    align-items: center;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(31, 36, 40, 0.82), rgba(143, 21, 25, 0.72)),
        radial-gradient(circle at top right, rgba(200, 33, 39, 0.45), transparent 40%),
        linear-gradient(160deg, #2a2f34 0%, #111417 100%);
}

.hero__content {
    position: relative;
    padding: 5rem 0;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: 700;
    color: #ffd7d8;
    margin-bottom: 0.75rem;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    max-width: 12ch;
}

.lead {
    font-size: 1.125rem;
    max-width: 52ch;
    color: rgba(255, 255, 255, 0.9);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.highlights {
    margin-top: -3rem;
    position: relative;
    z-index: 2;
}

.highlights__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.highlight-card,
.feature-card,
.info-panel,
.form-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.highlight-card,
.feature-card {
    padding: 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section--muted {
    background: var(--surface-muted);
}

.section-heading {
    max-width: 44rem;
    margin-bottom: 2rem;
}

.section-intro {
    color: var(--muted);
}

.split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: start;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.info-panel {
    padding: 1.75rem;
}

.info-panel--accent {
    background: linear-gradient(180deg, #fff, var(--brand-soft));
}

.hours-list,
.check-list,
.steps-list,
.contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hours-list li,
.check-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--line);
}

.check-list li::before {
    content: "✓";
    color: var(--brand);
    font-weight: 700;
    margin-right: 0.75rem;
}

.check-list li {
    display: flex;
    justify-content: flex-start;
    text-align: left;
}

.steps-list {
    counter-reset: step;
}

.steps-list li {
    counter-increment: step;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
}

.steps-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.note,
.muted {
    color: var(--muted);
    font-size: 0.95rem;
}

.faq-list {
    display: grid;
    gap: 0.75rem;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem 1.25rem;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    align-items: start;
}

.form-card {
    padding: 1.75rem;
}

.field {
    margin-bottom: 1rem;
}

.field label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.field input,
.field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    font: inherit;
}

.field--honeypot {
    position: absolute;
    left: -9999px;
}

.alert {
    padding: 0.9rem 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.alert--success {
    background: #e8f7ee;
    color: #17663a;
}

.alert--error {
    background: #fdecec;
    color: #8f1519;
}

.site-footer {
    background: #15181b;
    color: #d7dde2;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-grid h2 {
    font-size: 1rem;
    font-family: "DM Sans", sans-serif;
}

.footer-grid a {
    color: #fff;
}

.footer-logo {
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.9rem;
    color: #9aa6af;
}

@media (max-width: 900px) {
    .highlights__grid,
    .split,
    .card-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        right: 1rem;
        left: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 1rem;
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }
}

.map-image-wrapper {
    margin-top: 0.75rem;
}

.contact-map-img {
    width: 100%;
    max-width: 360px;
    height: auto;
    display: block;
    border-radius: var(--radius, 12px);
    border: 1px solid var(--line, #e4e8eb);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}