:root {
    color-scheme: dark;
    --bg: #060b10;
    --bg-alt: #0a121b;
    --panel: rgba(10, 18, 27, 0.8);
    --panel-strong: #0f1824;
    --line: rgba(164, 182, 201, 0.16);
    --line-strong: rgba(164, 182, 201, 0.28);
    --text: #f4f7fb;
    --muted: #9faec0;
    --accent: #7af0ff;
    --accent-2: #4da7ff;
    --accent-3: #a6ffcb;
    --shadow: 0 32px 90px rgba(0, 0, 0, 0.36);
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1220px;
}

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

@media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
}

body {
    margin: 0;
    min-width: 320px;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background:
        radial-gradient(circle at top left, rgba(77, 167, 255, 0.16), transparent 26%),
        radial-gradient(circle at 88% 12%, rgba(122, 240, 255, 0.14), transparent 22%),
        linear-gradient(180deg, #050b10 0%, #081018 46%, #060b10 100%);
}

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

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}

.header-phone {
    font-weight: 700;
    color: var(--accent);
    font-size: 0.9rem;
    white-space: nowrap;
}

.footer-tagline {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    top: -48px;
    left: 16px;
    z-index: 300;
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    color: #000;
}

.skip-link:focus {
    top: 16px;
}

.site-main {
    overflow: clip;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 120;
    padding: 18px 0;
    backdrop-filter: blur(16px);
}

.header-bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(10, 18, 27, 0.88), rgba(6, 11, 16, 0.72));
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.header-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
    pointer-events: none;
}

.header-bar::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -40px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(122, 240, 255, 0.14), transparent 72%);
    pointer-events: none;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    position: relative;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(122, 240, 255, 0.18), rgba(77, 167, 255, 0.74));
    color: #041018;
    font-weight: 800;
    letter-spacing: 0.12em;
    box-shadow: 0 14px 28px rgba(77, 167, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.brand-mark::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 48%);
    pointer-events: none;
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong {
    font-size: 1rem;
}

.brand-copy small {
    color: var(--muted);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    flex: 1;
}

.site-nav a,
.site-nav span {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.94rem;
    letter-spacing: 0.08em;
    display: inline-flex;
    transition: 0.22s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.site-nav span.is-active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.site-nav .is-disabled {
    opacity: 0.4;
    cursor: default;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-toggle {
    display: none;
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    overflow: hidden;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
    cursor: pointer;
}

.button::after {
    content: '';
    position: absolute;
    left: 1px;
    right: 1px;
    top: 1px;
    height: 52%;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
    opacity: 0.62;
    pointer-events: none;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button-primary {
    color: #031018;
    background: linear-gradient(135deg, var(--accent), var(--accent-3));
    box-shadow: 0 18px 38px rgba(122, 240, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.button-secondary {
    color: var(--text);
    border-color: var(--line-strong);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.button-ghost {
    color: var(--muted);
    border-color: var(--line);
    background: transparent;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--accent);
    font-weight: 700;
}

.text-link::after {
    content: '→';
}

.hero {
    padding: 44px 0 28px;
}

.hero-grid,
.split-layout,
.service-split,
.footer-grid {
    display: grid;
    gap: 24px;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    align-items: stretch;
}

.hero-stack {
    display: grid;
    grid-template-rows: minmax(250px, 1fr) minmax(0, auto);
    gap: 24px;
    height: 100%;
}

.hero-copy,
.hero-visual,
.hero-side-card,
.status-panel,
.contact-panel,
.side-panel,
.branch-card,
.page-hero-shell {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(12, 20, 30, 0.88), rgba(8, 14, 22, 0.78));
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
}

.hero-copy,
.hero-side-card,
.status-panel,
.contact-panel,
.side-panel,
.page-hero-shell {
    padding: 32px;
    border-radius: var(--radius-xl);
}

.hero-copy {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-copy::before,
.hero-side-card::before,
.status-panel::before,
.page-hero-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(77, 167, 255, 0.09), transparent 44%, rgba(122, 240, 255, 0.08));
    pointer-events: none;
}

.hero-copy h1,
.page-hero-copy h1 {
    position: relative;
    margin: 0;
    font-size: clamp(2.7rem, 6vw, 5.3rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.hero-subtitle {
    position: relative;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-side-card {
    position: relative;
    overflow: hidden;
}

.hero-copy::after,
.hero-side-card::after {
    content: '';
    position: absolute;
    inset: 1px 1px auto 1px;
    height: 96px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.hero-lead,
.hero-marketing {
    position: relative;
    margin: 18px 0 0;
}

.hero-lead {
    max-width: 58ch;
    font-size: 1.05rem;
    color: #dfe8f3;
}

.hero-marketing {
    color: var(--muted);
}

.hero-explainer-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.hero-explainer-card {
    position: relative;
    overflow: hidden;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-explainer-card::before,
.overview-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 42%);
    pointer-events: none;
}

.hero-explainer-card strong {
    display: block;
    font-size: 1rem;
    line-height: 1.55;
}

.hero-highlights {
    position: relative;
    display: grid;
    gap: 10px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.hero-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #dfe8f3;
}

.hero-highlights li::before {
    content: '';
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-3));
    box-shadow: 0 0 0 5px rgba(122, 240, 255, 0.12);
}

.hero-actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.hero-copy .overview-grid {
    margin-top: auto;
    padding-top: 28px;
}

.hero-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 100%;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.16), transparent 24%, transparent 58%, rgba(122, 240, 255, 0.14));
    z-index: 1;
    pointer-events: none;
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 8, 14, 0.04), rgba(2, 8, 14, 0.18));
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}

.eyebrow,
.meta-label,
.overview-title {
    margin: 0 0 12px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.overview-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.overview-card {
    position: relative;
    overflow: hidden;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.overview-card strong {
    display: block;
    font-size: 1.22rem;
}

.section {
    padding: 30px 0;
}

.service-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.status-panel {
    position: relative;
    overflow: hidden;
}

.status-panel h2 {
    position: relative;
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.6rem);
    letter-spacing: -0.04em;
}

.status-panel p:last-of-type {
    position: relative;
    color: var(--muted);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 24px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.section-heading p:last-child {
    color: var(--muted);
}

.branch-grid {
    display: grid;
    gap: 22px;
}

.branch-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.branch-media {
    position: relative;
    min-height: 100%;
}

.branch-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.branch-overlay {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    background: rgba(6, 11, 16, 0.78);
}

.branch-overlay strong {
    font-size: 1.1rem;
}

.branch-content {
    padding: 28px;
    background: linear-gradient(180deg, rgba(12, 18, 27, 0.96), rgba(7, 12, 18, 0.96));
}

.branch-heading h3 {
    margin: 0;
    font-size: 1.6rem;
}

.branch-heading p {
    margin: 8px 0 0;
    color: var(--muted);
}

.branch-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.branch-meta-grid section,
.hours-panel,
.quick-list article {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
}

.branch-meta-grid strong,
.branch-meta-grid a,
.branch-meta-grid span {
    display: block;
}

.branch-meta-grid a,
.quick-list a {
    color: var(--accent);
}

.hours-panel {
    margin-top: 16px;
}

.hours-panel ul,
.alert ul {
    margin: 0;
    padding-left: 18px;
}

.branch-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.page-hero-shell {
    position: relative;
    overflow: hidden;
}

.compact-page-hero {
    max-width: 780px;
}

.page-hero-copy {
    position: relative;
}

.split-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form label span {
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(122, 240, 255, 0.52);
    box-shadow: 0 0 0 4px rgba(122, 240, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.contact-form textarea {
    resize: vertical;
    min-height: 180px;
}

.form-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.alert {
    margin-bottom: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid var(--line);
}

.alert-success {
    background: rgba(166, 255, 203, 0.11);
    border-color: rgba(166, 255, 203, 0.24);
}

.alert-error {
    background: rgba(255, 125, 145, 0.1);
    border-color: rgba(255, 125, 145, 0.28);
}

.alert p,
.quick-list,
.quick-list article {
    margin: 0;
}

.quick-list {
    display: grid;
    gap: 14px;
}

.quick-list article {
    display: grid;
    gap: 8px;
}

.site-footer {
    padding: 34px 0 26px;
}

.footer-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    padding: 24px 0;
    border-top: 1px solid var(--line);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.footer-nav a,
.footer-nav span {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: var(--muted);
    display: inline-flex;
}

.footer-nav .is-disabled {
    opacity: 0.4;
    cursor: default;
}

.footer-bottom {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--muted);
}

/* ===== TABLET — 1080px ===== */
@media (max-width: 1080px) {
    .hero-grid,
    .split-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-stack {
        grid-template-rows: auto auto;
        height: auto;
    }

    .service-split,
    .branch-meta-grid,
    .overview-grid,
    .hero-explainer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-image {
        height: auto;
        min-height: 0;
    }

    .hero-visual {
        max-height: 420px;
    }

    .branch-card {
        grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    }
}

/* ===== MOBILE NAV — 900px ===== */
@media (max-width: 900px) {
    .header-bar {
        flex-wrap: wrap;
        border-radius: 22px;
        padding: 12px 16px;
        gap: 12px;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: rgba(6, 11, 16, 0.96);
        box-shadow: var(--shadow);
        z-index: 100;
    }

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

    .site-nav a,
    .site-nav span {
        width: 100%;
        padding: 12px 16px;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 8px 16px;
        border: 1px solid var(--line);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.04);
        color: var(--text);
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        cursor: pointer;
    }

    .branch-card {
        grid-template-columns: 1fr;
    }

    .branch-media {
        max-height: 280px;
        overflow: hidden;
    }

    .branch-image {
        height: 280px;
    }
}

/* ===== MOBILE — 720px ===== */
@media (max-width: 720px) {
    .container {
        width: min(var(--container), calc(100% - 24px));
    }

    .site-header {
        padding: 10px 0;
    }

    .hero {
        padding: 20px 0 16px;
    }

    .section {
        padding: 20px 0;
    }

    .hero-copy,
    .hero-side-card,
    .status-panel,
    .contact-panel,
    .side-panel,
    .page-hero-shell {
        padding: 20px;
    }

    .branch-content {
        padding: 20px;
    }

    .hero-copy h1,
    .page-hero-copy h1 {
        font-size: clamp(2rem, 8vw, 2.7rem);
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-lead {
        font-size: 0.95rem;
    }

    .status-panel h2 {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
    }

    .section-heading h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .overview-card {
        padding: 16px;
    }

    .overview-card strong {
        font-size: 1.05rem;
    }

    .service-split {
        grid-template-columns: 1fr;
    }

    .hero-explainer-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .branch-meta-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .branch-meta-grid section,
    .hours-panel {
        padding: 14px;
    }

    .branch-heading h3 {
        font-size: 1.3rem;
    }

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

    .branch-actions .button {
        width: 100%;
        text-align: center;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px 14px;
    }

    .hero-visual {
        max-height: 300px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .hero-actions .button {
        width: 100%;
        text-align: center;
    }

    .hero-copy .overview-grid {
        padding-top: 20px;
    }

    .header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .header-cta {
        flex: 1;
        text-align: center;
    }

    .footer-grid {
        gap: 20px;
        padding: 20px 0;
    }

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

    .footer-tagline {
        font-size: 1.2rem;
    }

    .footer-nav {
        justify-content: center;
        gap: 8px;
    }

    .footer-nav a,
    .footer-nav span {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .footer-bottom {
        text-align: center;
        font-size: 0.85rem;
    }

    .quick-list article {
        padding: 14px;
    }

    .split-layout {
        gap: 20px;
    }
}

/* ===== SMALL PHONE — 480px ===== */
@media (max-width: 480px) {
    .container {
        width: min(var(--container), calc(100% - 16px));
    }

    .site-header {
        padding: 8px 0;
    }

    .header-bar {
        padding: 10px 12px;
        gap: 10px;
        border-radius: 18px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        border-radius: 14px;
        font-size: 0.85rem;
    }

    .brand {
        gap: 10px;
    }

    .brand-copy strong {
        font-size: 0.88rem;
    }

    .brand-copy small {
        font-size: 0.72rem;
    }

    .header-phone {
        font-size: 0.8rem;
    }

    .header-cta {
        padding: 10px 14px;
        min-height: 42px;
        font-size: 0.82rem;
    }

    .nav-toggle {
        min-height: 42px;
        padding: 8px 12px;
        font-size: 0.82rem;
    }

    .hero-copy,
    .hero-side-card,
    .status-panel,
    .contact-panel,
    .side-panel,
    .page-hero-shell {
        padding: 16px;
        border-radius: var(--radius-lg);
    }

    .branch-content {
        padding: 16px;
    }

    .branch-card {
        border-radius: var(--radius-lg);
    }

    .hero-copy h1,
    .page-hero-copy h1 {
        font-size: clamp(1.7rem, 8vw, 2.2rem);
        letter-spacing: -0.03em;
    }

    .hero-subtitle {
        margin-top: 10px;
        font-size: 0.88rem;
    }

    .hero-lead {
        font-size: 0.88rem;
        margin-top: 12px;
    }

    .hero-marketing {
        font-size: 0.88rem;
    }

    .hero-highlights li {
        font-size: 0.9rem;
    }

    .hero-visual {
        max-height: 220px;
        border-radius: var(--radius-lg);
    }

    .branch-media {
        max-height: 200px;
    }

    .branch-image {
        height: 200px;
    }

    .branch-overlay {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 12px 14px;
        border-radius: 16px;
    }

    .branch-overlay .eyebrow {
        margin-bottom: 4px;
        font-size: 0.72rem;
    }

    .branch-overlay strong {
        font-size: 0.95rem;
    }

    .branch-heading h3 {
        font-size: 1.15rem;
    }

    .branch-meta-grid section,
    .hours-panel {
        padding: 12px;
        border-radius: 14px;
    }

    .button {
        min-height: 44px;
        padding: 10px 16px;
        font-size: 0.88rem;
    }

    .section-heading h2 {
        font-size: clamp(1.3rem, 5vw, 1.7rem);
    }

    .section-heading {
        margin-bottom: 16px;
    }

    .eyebrow,
    .meta-label,
    .overview-title {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }

    .hero-explainer-card {
        padding: 14px;
    }

    .hero-explainer-card strong {
        font-size: 0.9rem;
    }

    .alert {
        padding: 14px;
        font-size: 0.9rem;
    }

    .contact-form label span {
        font-size: 0.9rem;
    }

    .footer-tagline {
        font-size: 1rem;
    }

    .hero,
    .section {
        padding: 16px 0;
    }

    .branch-grid {
        gap: 16px;
    }

    .hero-grid,
    .hero-stack {
        gap: 16px;
    }

    .status-panel h2 {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
    }

    .compact-page-hero {
        max-width: none;
    }
}