:root {
    --brand-red: #af1012;
    --brand-orange: #e4580a;
    --brand-red-deep: #7e0f10;
    --ink: #1c1f25;
    --ink-soft: #4b5463;
    --surface: #ffffff;
    --surface-muted: #f3f5f8;
    --surface-warm: #fff5ef;
    --line: #dfe4ec;
    --shadow: 0 18px 48px rgba(24, 31, 44, 0.12);
    --radius-lg: 1.2rem;
    --radius-md: 0.85rem;
    --container: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Barlow', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #f0f2f6 0%, #ffffff 120px, #ffffff 100%);
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

p {
    margin: 0 0 1rem;
}

h1,
h2,
h3 {
    margin: 0 0 1rem;
    font-family: 'Teko', 'Arial Narrow', sans-serif;
    line-height: 1.04;
    letter-spacing: 0.02em;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4.3rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.1rem);
}

h3 {
    font-size: clamp(1.35rem, 2.3vw, 1.9rem);
}

section[id] {
    scroll-margin-top: 5.5rem;
}

.container {
    width: min(var(--container), 92vw);
    margin-inline: auto;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(193, 200, 212, 0.75);
    backdrop-filter: blur(8px);
}

.header-wrap {
    min-height: 5.35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    max-width: 230px;
}

.brand img,
.footer-brand img {
    width: 100%;
    height: auto;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.primary-nav a {
    text-decoration: none;
    font-weight: 600;
    color: #2a2e36;
}

.primary-nav .btn {
    color: #ffffff;
}

.primary-nav a:not(.btn):hover,
.primary-nav a:not(.btn):focus-visible {
    color: var(--brand-red);
}

.menu-toggle {
    display: none;
    width: 2.9rem;
    height: 2.9rem;
    border: 0;
    border-radius: 0.65rem;
    background: #f6f7fa;
    cursor: pointer;
    padding: 0.65rem;
}

.menu-line {
    display: block;
    width: 100%;
    height: 3px;
    background: #242933;
    border-radius: 99px;
    margin-bottom: 0.35rem;
}

.menu-line:last-child {
    margin-bottom: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    border: 0;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    border-radius: 0.65rem;
    padding: 0.78rem 1.2rem;
    cursor: pointer;
    background: var(--brand-red);
    box-shadow: 0 12px 28px rgba(175, 16, 18, 0.28);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(175, 16, 18, 0.35);
}

.btn:not(.btn-ghost):hover,
.btn:not(.btn-ghost):focus-visible {
    background: linear-gradient(120deg, var(--brand-red) 20%, var(--brand-orange) 100%);
}

.btn-small {
    padding: 0.62rem 1rem;
    font-size: 0.92rem;
}

.btn-ghost {
    background: #ffffff;
    color: var(--brand-red);
    border: 1px solid #f2b8a0;
    box-shadow: none;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
    border-color: var(--brand-red);
    box-shadow: 0 8px 22px rgba(175, 16, 18, 0.13);
}

.hero,
.location-hero {
    position: relative;
    overflow: hidden;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
}

.hero::before,
.location-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 16%, rgba(255, 255, 255, 0.25), transparent 42%),
        linear-gradient(112deg, rgba(14, 18, 25, 0.85) 0%, rgba(19, 26, 40, 0.68) 44%, rgba(175, 16, 18, 0.63) 100%);
}

.hero-grid,
.location-hero-grid {
    position: relative;
    z-index: 1;
    min-height: 30rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.6rem;
    align-items: center;
    padding-block: 4.4rem;
}

.hero-content,
.location-hero-content {
    color: #ffffff;
    max-width: 43rem;
}

.hero-content p,
.location-hero-content p {
    color: rgba(255, 255, 255, 0.93);
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.6rem;
}

.eyebrow {
    margin: 0 0 0.7rem;
    text-transform: uppercase;
    font-size: 0.84rem;
    letter-spacing: 0.15em;
    color: var(--brand-orange);
    font-weight: 700;
}

.hero-panel,
.location-details {
    background: rgba(255, 255, 255, 0.94);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(224, 230, 240, 0.9);
    padding: 1.35rem;
    box-shadow: var(--shadow);
}

.hero-panel h2,
.location-details h2 {
    margin-bottom: 0.55rem;
}

.hero-panel ul,
.location-details ul {
    margin: 0;
    padding-left: 1rem;
    color: var(--ink-soft);
}

.hero-call {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 0.15rem;
}

.hero-call span,
.location-details span {
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7a8391;
    font-weight: 600;
}

.hero-call a,
.location-details a {
    text-decoration: none;
    color: var(--brand-red);
    font-weight: 700;
}

.section {
    padding-block: 4.8rem;
}

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

.section-contrast {
    background: linear-gradient(140deg, #f6e5df 0%, #f2dad1 28%, #f9efeb 100%);
}

.section-head {
    max-width: 44rem;
    margin-bottom: 1.8rem;
}

.card-grid {
    display: grid;
    gap: 1rem;
}

.services-grid,
.reason-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    background: var(--surface);
    border: 1px solid #e4e9f1;
    border-radius: var(--radius-md);
    padding: 1.25rem;
    box-shadow: 0 6px 18px rgba(21, 31, 46, 0.05);
}

.card p {
    color: var(--ink-soft);
}

.service-card svg {
    width: 2.2rem;
    height: 2.2rem;
    margin-bottom: 0.5rem;
    fill: var(--brand-red);
}

.service-card-outline svg {
    width: 2.2rem;
    height: 2.2rem;
    margin-bottom: 0.5rem;
    fill: #00000000;
    stroke: var(--brand-red);
}

.reason-card {
    border-left: 6px solid var(--brand-orange);
}

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

.location-grid.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.location-card {
    border-radius: var(--radius-md);
    border: 1px solid #dee4ee;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(33, 43, 64, 0.08);
}

.location-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.location-card-body {
    padding: 1rem;
}

.location-card-body p {
    color: var(--ink-soft);
    margin-bottom: 0.8rem;
}

.location-chip {
    display: inline-flex;
    background: var(--surface-warm);
    border: 1px solid #ffd6c0;
    color: var(--brand-red);
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 99px;
    padding: 0.22rem 0.65rem;
    margin-bottom: 0.7rem;
}

.text-link {
    color: var(--brand-red);
    font-weight: 700;
    text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
    text-decoration: underline;
}

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

.testimonial {
    margin: 0;
    border-radius: var(--radius-md);
    border: 1px solid #e4e9f2;
    background: #ffffff;
    padding: 1rem;
    display: grid;
    gap: 0.9rem;
    align-content: start;
    box-shadow: 0 7px 16px rgba(29, 37, 54, 0.05);
}

.testimonial img {
    width: 78px;
    height: 78px;
    margin: 5px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial blockquote {
    margin: 0;
    color: var(--ink-soft);
    font-style: italic;
}

.testimonial figcaption {
    display: grid;
}

.testimonial figcaption span {
    color: #7b8392;
    font-size: 0.92rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-info,
.contact-form-wrap {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f1;
    padding: 1.2rem;
    box-shadow: 0 8px 26px rgba(23, 30, 43, 0.07);
}

.contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.contact-list li {
    display: grid;
    gap: 0.25rem;
    border-bottom: 1px solid #edf1f6;
    padding-bottom: 0.75rem;
}

.contact-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.contact-list span {
    color: #7a8392;
    font-size: 0.82rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.contact-list a {
    color: var(--brand-red);
    text-decoration: none;
    font-weight: 700;
}

.contact-map-card {
    margin-top: 1.1rem;
    border-radius: 0.8rem;
    overflow: hidden;
    border: 1px solid #e0e7ef;
}

.contact-map-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.contact-map-card .btn {
    width: 100%;
    border-radius: 0;
}

.contact-form {
    display: grid;
    gap: 0.68rem;
}

.contact-form label {
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #ced8e6;
    border-radius: 0.6rem;
    padding: 0.7rem 0.75rem;
    font: inherit;
    color: var(--ink);
    background: #fcfdff;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
    max-height: 500px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(228, 88, 10, 0.25);
    border-color: var(--brand-orange);
}

.contact-form .btn {
    margin-top: 0.45rem;
}

.input-error {
    border-color: var(--brand-red) !important;
    background: #fff2f2 !important;
}

.form-feedback {
    min-height: 1.4rem;
    margin: 0.25rem 0 0;
    font-weight: 600;
}

.form-feedback.is-success {
    color: #087857;
}

.form-feedback.is-error {
    color: var(--brand-red);
}

.lead-text {
    font-size: 1.05rem;
    color: var(--ink-soft);
    max-width: 50rem;
}

.location-details li {
    margin-bottom: 0.65rem;
}

.location-details li:last-child {
    margin-bottom: 0;
}

.location-details strong {
    display: block;
    font-size: 1.03rem;
    margin-top: 0.2rem;
}

.back-home {
    margin-top: 2rem;
}

.utility-page {
    background:
        radial-gradient(circle at 80% -20%, rgba(228, 88, 10, 0.16), transparent 45%),
        radial-gradient(circle at 0% 100%, rgba(175, 16, 18, 0.12), transparent 32%),
        #f7f9fc;
}

.utility-wrap {
    min-height: calc(100vh - 13rem);
    display: grid;
    place-items: center;
    padding: 2rem 0 3rem;
}

.utility-box {
    max-width: 42rem;
    background: #ffffff;
    border: 1px solid #e2e9f2;
    border-radius: 1rem;
    text-align: center;
    padding: 2.4rem 1.5rem;
    box-shadow: var(--shadow);
}

.utility-code {
    margin: 0;
    font-size: 4.4rem;
    line-height: 1;
    color: var(--brand-red);
    font-family: 'Teko', 'Arial Narrow', sans-serif;
}

.utility-actions {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.site-footer {
    margin-top: 2rem;
    background: var(--brand-red);
    color: #fff7f3;
}

.footer-wrap {
    min-height: 6.3rem;
    display: flex;
    gap: 1.2rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-block: 1.1rem;
}

.footer-brand {
    width: 170px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 0.7rem;
    padding: 0.45rem 0.65rem;
    box-shadow: 0 10px 24px rgba(17, 20, 30, 0.2);
}

.footer-meta {
    text-align: right;
}

.footer-meta p {
    margin: 0.1rem 0;
    font-size: 0.92rem;
}

.footer-meta a {
    color: #ffecdf;
    text-decoration: none;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
    text-decoration: underline;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.56s ease, transform 0.56s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .menu-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
    }

    .primary-nav {
        position: absolute;
        top: calc(100% + 0.2rem);
        right: 1.1rem;
        background: #ffffff;
        border: 1px solid #dfe5ef;
        border-radius: 0.8rem;
        box-shadow: 0 22px 48px rgba(28, 35, 50, 0.18);
        padding: 0.9rem;
        min-width: 220px;
        display: grid;
        gap: 0.5rem;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-6px);
        transition: opacity 0.18s ease, transform 0.18s ease;
    }

    body.menu-open .primary-nav {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    .hero-grid,
    .location-hero-grid,
    .contact-grid,
    .services-grid,
    .reason-grid,
    .location-grid,
    .location-grid.compact,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid,
    .location-hero-grid {
        min-height: 0;
        padding-block: 3rem;
    }

    .hero-panel,
    .location-details {
        max-width: 40rem;
    }
}

@media (max-width: 720px) {
    .header-wrap {
        min-height: 4.75rem;
    }

    .brand {
        max-width: 175px;
    }

    .section {
        padding-block: 3.5rem;
    }

    .hero-content p,
    .location-hero-content p {
        font-size: 1rem;
    }

    .footer-meta {
        text-align: left;
    }
}
