/* ===================== LOCAL SERVICE CITY — TEMPLATE STYLES ===================== */
:root {
    --burgundy: #572237;
    --burgundy-bright: #79334E;
    --burgundy-dark: #240A12;
    --burgundy-body: #401221;
    --burgundy-bg: #2F121B;
    --burgundy-light: #462D34;
    --burgundy-muted: #E3DEDE;
    --white: #F9F7F6;
    --white-90: rgba(255, 255, 255, .9);
    --white-60: rgba(255, 255, 255, .6);
    --white-50: rgba(255, 255, 255, .5);
    --white-40: rgba(255, 255, 255, .4);
    --white-25: rgba(255, 255, 255, .25);
    --white-20: rgba(255, 255, 255, .20);
    --transition: all .3s ease-in-out;
}

.hero--branch {
    margin-inline: 0 !important;
}

.post-type-archive-region .hero {
    height: auto;
    min-height: min(30vw, 480px);
}

@media (max-width: 768px) {
    .post-type-archive-region .hero,
    .single-region .hero {
        min-height: initial !important;
        max-height: initial !important;
        height: auto !important;
    }
}

.hero--video iframe {
    height: auto;
    aspect-ratio: 16/9;
}

/*
 * Hero image / overlay / sizing — top-level selectors.
 * Autoptimize's CSS minify drops these when nested inside :has(...),
 * which leaves published pages with a blank burgundy hero (preview still works).
 */
body.post-type-archive-region .hero,
body.single-region .hero {
    min-height: min(30vw, 480px) !important;
    max-height: none !important;
    height: auto !important;
}

body.post-type-archive-region .hero__img,
body.single-region .hero__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

body.post-type-archive-region .hero__overlay,
body.single-region .hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(36, 10, 18, .28) 0%, rgba(47, 18, 27, .55) 100%);
}

body.post-type-archive-region .hero__video + .hero__overlay,
body.single-region .hero__video + .hero__overlay {
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, .55) 0%,
        rgba(0, 0, 0, .45) 50%,
        rgba(0, 0, 0, .25) 100%
    );
}

:has(.region-template-default, .post-type-archive-region) {

    body {
        background: var(--white);
        color: var(--burgundy-dark);
        font-family: plantin, Georgia, Times, 'Times New Roman', serif;
        font-weight: 300;
        font-size: 17px;
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
    }

    /* ---- Section base ---- */
    .section {
        position: relative;
    }

    .uk-section {
        padding: 70px 0;
    }

    @media (max-width: 768px) {
        .uk-section {
            padding: 40px 0;
        }
    }

    .section--burgundy {
        background-color: var(--burgundy-bg);
        color: var(--white);
    }

    .section--burgundy h1,
    .section--burgundy h2,
    .section--burgundy h3,
    .section--burgundy h4,
    .section--burgundy h5,
    .section--burgundy h6,
    .section--burgundy .title {
        color: var(--white);
    }

    .section--burgundy p,
    .section--burgundy li {
        color: var(--white-90);
    }

    .section--warm {
        background: var(--white);
    }
    
    /* ---- Hero ---- */
    /* Sizing, .hero__img, and .hero__overlay live at top-level above — Autoptimize
       drops nested body.* / .hero__img rules inside :has() and blanks published heroes. */
    .hero {
        position: relative;
        width: 100%;
        overflow: hidden;
        background: var(--burgundy-dark);
        color: var(--white);
        min-height: min(30vw, 480px);
    }

    .hero__inner {
        position: relative;
        z-index: 2;
        height: 100%;
        min-height: inherit;
        display: flex;
        align-items: center;
        padding: 60px 0 70px;
    }

    .hero--city .hero__inner {
        align-items: flex-end;
    }

    .hero__inner .wrapper {
        width: 100%;
        margin: 0 auto;
    }

    @media (max-width: 640px) {
        .hero__inner {
            padding: 40px 0 50px;
        }

        .page-city .hero .title--xl {
            font-size: 40px;
        }
    }

    .hero__video {
        position: absolute;
        inset: 0;
        overflow: hidden;
    }

    .hero__video iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 56.25vw;
        min-width: 100%;
        min-height: 100%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        border: 0;
        pointer-events: none;
    }

    @media (max-width:991.98px) {
        .hero__video {
            position: relative;
            inset: inherit;
            aspect-ratio: 16/9;
        }

        .hero__video iframe {
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            min-width: 100%;
            min-height: 100%;
            -webkit-transform: none;
            transform: none;
        }
    }

    .hero-content { width: 100%; }
    .hero-meta {
        display: flex; gap: 60px; margin-top: 34px;
        padding-top: 24px; border-top: 1px solid var(--white-25);
        color: var(--white-90); max-width: 800px;
    }
    .hero-meta > span { display: flex; flex-direction: column; gap: 6px; font-size: 15px; }
    .hero-meta .title--meta { margin-bottom: 0; }
    @media (max-width: 640px) {
        .hero-meta { flex-direction: column; gap: 18px; }
        .hero--branch .title--xxl { font-size: 44px; }
    }

    /* ---- Title system ---- */
    .title {
        font-family: roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 700;
        line-height: 1.2;
        color: var(--burgundy-dark);
        display: block;
        margin: 0;
    }

    .title--meta {
        font-family: roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 500;
        font-size: 11px;
        line-height: 1;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        margin-bottom: 21px;
        color: var(--burgundy-dark);
    }

    .title--meta.title--white {
        color: var(--white);
        opacity: .8;
    }

    .title--meta.title--burgundyBright {
        color: var(--burgundy-bright);
    }

    .title--xl {
        font-size: 70px;
        /* line-height: .8928; */
    }

    .title--l {
        font-size: 60px;
    }

    .title--ml {
        font-size: 50px;
    }

    .title--xs {
        font-size: 30px;
        line-height: 1.2;
    }

    .title--xxs {
        font-size: 23.5px;
        line-height: 1.28;
    }

    .title--serif {
        font-family: plantin, Georgia, serif;
        font-weight: 400;
        font-style: normal;
    }

    .title--italic {
        font-family: plantin, Georgia, serif;
        font-weight: 400;
        font-style: italic;
    }

    .title--thin {
        font-family: roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 300;
        line-height: 1.875;
    }

    .title--normal {
        font-family: roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 400;
        line-height: 1.5;
    }

    .title--white {
        color: var(--white);
    }

    .title--burgundy {
        color: var(--burgundy);
        background-image: none !important;
    }

    .title--burgundyBright {
        color: var(--burgundy-bright);
        background-image: none !important;
    }

    @media (max-width: 960px) {
        .title--xl {
            font-size: 50px;
        }

        .title--l {
            font-size: 42px;
        }

        .title--ml {
            font-size: 35px;
        }

        .title--xs {
            font-size: 21px;
        }
    }

    @media (max-width: 480px) {
        .title--xl {
            font-size: 44px;
        }

        .title--l {
            font-size: 37px;
        }

        .title--ml {
            font-size: 31px;
        }
    }

    /* Inline link gradient underline — signature detail */
    .content-area a,
    .link--gradient {
        background-image: linear-gradient(to top,
                rgba(36, 10, 18, 0) 0%,
                rgba(36, 10, 18, .2) 0%,
                rgba(36, 10, 18, .2) 2px,
                rgba(36, 10, 18, 0) 2px);
        transition: var(--transition);
        padding-bottom: 2px;
    }

    .content-area a:hover,
    .link--gradient:hover {
        background-image: linear-gradient(to top,
                rgba(36, 10, 18, 0) 0%,
                rgba(36, 10, 18, 1) 0%,
                rgba(36, 10, 18, 1) 2px,
                rgba(36, 10, 18, 0) 2px);
    }

    .section--burgundy a.button {
        background-image: linear-gradient(to top,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, .25) 0%,
                rgba(255, 255, 255, .25) 2px,
                rgba(255, 255, 255, 0) 2px);
    }

    .section--burgundy a.button:hover {
        background-image: linear-gradient(to top,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 1) 0%,
                rgba(255, 255, 255, 1) 2px,
                rgba(255, 255, 255, 0) 2px);
    }

    /* ---- Eyebrow ---- */
    .eyebrow-rule {
        display: inline-flex;
        align-items: center;
        gap: 14px;
    }

    .eyebrow-rule::before {
        content: '';
        display: block;
        width: 40px;
        height: 1px;
        background: currentColor;
        opacity: .5;
    }

    /* ===================== BUTTONS ===================== */
    .button {
        font-family: roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 500;
        font-size: 11px;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        line-height: 1;
        padding: 17px 30px 16px;
        display: inline-block;
        text-align: center;
        border-radius: 0;
        cursor: pointer;
        transition: var(--transition);
        border: 3px solid transparent;
        background: transparent;
        color: var(--burgundy-dark);
    }

    .button--outline {
        background-color: transparent;
    }

    .button--large {
        padding: 24px 42px 23px;
    }

    .button--small {
        padding: 11px 30px 10px;
    }

    .button--burgundy {
        color: var(--burgundy-dark);
    }

    .button--burgundy.button--outline {
        border-color: var(--burgundy-muted);
    }

    .button--burgundy.button--outline:hover {
        background-color: var(--burgundy-muted);
    }

    .button--burgundy.button--filled {
        color: #fff;
        border-color: var(--burgundy-bright);
        background-color: var(--burgundy-bright);
    }

    .button--burgundy.button--filled:hover {
        border-color: var(--burgundy);
        background-color: var(--burgundy);
    }

    .button--burgundy.button--filled.button--dark {
        border-color: var(--burgundy-dark);
        background-color: var(--burgundy-dark);
    }

    .button--burgundy.button--filled.button--dark:hover {
        border-color: var(--burgundy);
        background-color: var(--burgundy);
    }

    .button--white {
        color: var(--white);
    }

    .button--white.button--outline {
        -color: rgba(255, 255, 255, 0.5);
    }

    .button--white.button--outline:hover {
        background-color: var(--burgundy-light);
    }

    .section--burgundy .button--white.button--outline {
        border-color: var(--burgundy-light);
    }

    .button--white.button--filled {
        color: var(--burgundy-dark);
        border-color: #fff;
        background-color: #fff;
    }

    .button--white.button--filled:hover {
        border-color: #918488;
        background-color: #918488;
    }

    /* ---- Divider ---- */
    /* .divider { height: 1px; background: var(--burgundy-muted); width: 100%; } */


    /* ---- Intro ---- */
    .intro-grid {
        display: grid;
        grid-template-columns: 1.3fr 1fr;
        gap: 80px;
        align-items: flex-start;
    }

    .intro-media {
        position: relative;
    }

    .ph--img {
        background-size: cover;
        background-position: center;
    }

    .intro-media__caption {
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin-top: 14px;
        font-size: 13px;
        letter-spacing: .02em;
        color: var(--burgundy-body);
    }

    .intro-media__caption .title--meta {
        color: var(--burgundy-bright);
        margin-bottom: 0;
    }

    @media (max-width: 900px) {
        .intro-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }
    }

    /* ---- Services ---- */
    .services-head {
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 60px;
        align-items: flex-end;
        margin-bottom: 60px;
        /* border-bottom: 1px solid var(--burgundy-muted); */
        /* padding-bottom: 40px; */
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        border-top: 1px solid var(--burgundy-muted);
    }

    .services-grid .svc {
        padding: 36px 36px 40px;
        border-bottom: 1px solid var(--burgundy-muted);
        border-right: 1px solid var(--burgundy-muted);
    }

    .services-grid .svc:nth-child(3n) {
        border-right: 0;
    }

    .svc__no {
        font-family: roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 500;
        font-size: 11px;
        letter-spacing: .25em;
        text-transform: uppercase;
        color: var(--burgundy-bright);
        display: block;
        margin-bottom: 16px;
    }

    .svc h4 {
        margin-bottom: 10px;
    }

    .svc p {
        font-size: 16px;
        color: var(--burgundy-body);
        margin: 0;
    }

    @media (max-width: 900px) {
        .services-head {
            grid-template-columns: 1fr;
            gap: 24px;
        }

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

        .services-grid .svc {
            border-right: 0;
        }
    }

    /* ---- Above-fold info band ---- */
    .branch-grid {
        display: grid;
        grid-template-columns: 1.25fr 1fr .85fr;
        gap: 80px;
        align-items: flex-start;
    }

    @media (max-width: 960px) {
        .branch-grid {
            grid-template-columns: 1fr;
            gap: 50px;
        }

        .branch-manager {
            position: static !important;
        }
    }

    .branch-services .svc-list {
        border-top: 1px solid var(--burgundy-muted);
    }

    .branch-services .svc-list li {
        border-bottom: 1px solid var(--burgundy-muted);
        padding: 14px 0;
        font-family: roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 400;
        font-size: 22px;
        line-height: 1.3;
        color: var(--burgundy-dark);
    }

    .branch-services .svc-list li a {
        color: inherit;
        display: block;
        transition: color .2s, transform .2s;
        background-image: none;
        padding: 0;
    }

    .branch-services .svc-list li a:hover {
        color: var(--burgundy-bright);
        transform: translateX(4px);
    }

    .branch-manager {
        position: sticky;
        top: 40px;
    }

    .branch-manager .mgr-photo {
        border: 1px solid var(--burgundy-muted);
        background-size: cover;
        background-position: center top;
    }

    .branch-manager h4 {
        margin: 0;
    }

    .branch-manager p {
        max-width: 32ch;
    }

    .branch-addresses .addr {
        padding: 18px 0;
        border-bottom: 1px solid var(--burgundy-muted);
    }

    .branch-addresses .addr:first-of-type {
        border-top: 1px solid var(--burgundy-muted);
    }

    .branch-addresses .addr h4 {
        margin-bottom: 6px;
    }

    .branch-addresses .addr p {
        margin: 0 0 4px;
        font-size: 15px;
        color: var(--burgundy-body);
        line-height: 1.5;
    }

    /* ---- Partnership Executives ---- */
    .execs-head {
        max-width: 60ch;
        margin-bottom: 56px;
        /* padding-bottom: 32px; */
        /* border-bottom: 1px solid var(--white-25); */
    }

    .execs-head>h2 {
        margin-bottom: 0;
    }

    .execs-grid {
        display: grid;
        gap: 40px;
        grid-template-columns: repeat(3, 1fr); /* default: 4+ falls back to 3-col */
    }

    /* 1 — wide stacked: photo left, content right */
    .execs-grid[data-count="1"] {
        grid-template-columns: 1fr;
    }

    .execs-grid[data-count="1"] .exec {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 50px;
        align-items: flex-start;
        max-width: 1060px;
    }

    /* 2–3 — horizontal portrait cards */
    .execs-grid[data-count="2"] {
        grid-template-columns: repeat(2, 1fr);
    }

    .execs-grid[data-count="3"] {
        grid-template-columns: repeat(3, 1fr);
    }

    .exec {
        display: flex;
        flex-direction: column;
        padding-top: 30px;
        border-top: 1px solid var(--white-25);
    }

    .exec-photo {
        background-color: #463037;
        /* border: 1px solid var(--white-20); */
        margin-bottom: 22px;
        background-size: cover;
        background-position: center;
        aspect-ratio: 4/5;
    }

    .execs-grid[data-count="2"] {
        grid-template-columns: repeat(2, 1fr);
    }

    .exec h3 {
        margin-bottom: 6px;
    }

    .exec h4 {
        margin-bottom: 14px;
    }

    .exec p {
        color: var(--white-90);
        font-size: 16px;
        max-width: 46ch;
    }

    .exec-body {
        display: flex;
        flex-direction: column;
    }

    .exec-contact {
        margin-top: 16px;
    }

    @media (max-width: 960px) {
        .execs-grid[data-count="3"] {
            grid-template-columns: 1fr;
        }

        .execs-grid[data-count="1"] .exec {
            grid-template-columns: 1fr;
        }
    }

    /* ---- Reviews ---- */
    .reviews-head {
        max-width: 60ch;
        margin-bottom: 48px;
        padding-bottom: 32px;
        border-bottom: 1px solid var(--burgundy-muted);
    }

    .reviews-head>h2 {
        margin-bottom: 0;
    }

    .reviews-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        border-top: 1px solid var(--burgundy-muted);
    }

    .rv {
        margin: 0;
        padding: 40px 36px 36px;
        border-right: 1px solid var(--burgundy-muted);
        border-bottom: 1px solid var(--burgundy-muted);
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .rv:nth-child(3n) {
        border-right: 0;
    }

    .rv blockquote {
        margin: 0;
        font-style: italic;
        font-size: 21px;
        line-height: 1.5;
        color: var(--burgundy-dark);
    }

    .rv figcaption {
        margin-top: auto;
        padding-top: 20px;
        border-top: 1px solid var(--burgundy-muted);
        display: flex;
        flex-direction: column;
        gap: 4px;
        font-size: 14px;
        color: var(--burgundy-body);
    }

    @media (max-width: 960px) {
        .reviews-grid {
            grid-template-columns: 1fr;
        }

        .rv {
            border-right: 0;
        }
    }

    /* ---- Map ---- */
    .map-head {
        max-width: 60ch;
        margin-bottom: 48px;
        /* padding-bottom: 32px; */
        /* border-bottom: 1px solid var(--burgundy-muted); */
    }

    .map-head h2 {
        margin-bottom: 16px;
    }

    .map-frame {
        margin: 0;
        position: relative;
        overflow: hidden;
    }

    .map-frame__img {
        border: 1px solid var(--burgundy-muted);
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .map-frame__pin {
        position: absolute;
        left: 42%;
        top: 38%;
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    .map-frame__pin .pin {
        width: 14px;
        height: 14px;
        display: block;
        background: var(--burgundy-bright);
        outline: 3px solid #fff;
        outline-offset: -3px;
        box-shadow: 0 0 0 1px var(--burgundy-dark);
    }

    .pin-card {
        background: #fff;
        padding: 14px 16px;
        border: 1px solid var(--burgundy-dark);
        min-width: 240px;
        display: flex;
        flex-direction: column;
    }

    .pin-card .title--meta {
        margin-bottom: 6px;
    }

    @media (max-width: 900px) {
        .map-frame__pin {
            position: static;
            margin-top: 20px;
        }
    }


    /* ---- Testimonials ---- */
    .t-head {
        margin-bottom: 48px;
        padding-bottom: 32px;
        position: relative;
    }

    .t-head::after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 1px;
        background: var(--white-25);
    }

    .t-head>h2 {
        margin-bottom: 0;
    }

    .t-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .t-card {
        border: 1px solid var(--white-25);
        padding: 36px 32px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        background: rgba(255, 255, 255, .02);
    }

    .t-card blockquote {
        margin: 0;
        font-style: italic;
        font-size: 20px;
        line-height: 1.5;
        color: var(--white);
    }

    .t-meta {
        margin-top: auto;
        padding-top: 20px;
        border-top: 1px solid var(--white-20);
        display: flex;
        flex-direction: column;
        gap: 4px;
        font-size: 13px;
        color: var(--white-60);
        letter-spacing: .02em;
    }

    .t-name {
        font-family: roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 500;
        font-size: 11px;
        letter-spacing: .25em;
        text-transform: uppercase;
        color: #fff;
    }

    @media (max-width: 900px) {
        .t-grid {
            grid-template-columns: 1fr;
        }
    }

    /* ---- FAQ ---- */
    .faq-layout {
        display: grid;
        grid-template-columns: 1fr 1.6fr;
        gap: 80px;
        align-items: flex-start;
    }

    .faq-list {
        border-top: 1px solid var(--burgundy-muted);
    }

    .faq-item {
        border-bottom: 1px solid var(--burgundy-muted);
    }

    .faq-q {
        width: 100%;
        text-align: left;
        background: none;
        border: 0;
        padding: 26px 0;
        font-family: roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 400;
        font-size: 22px;
        line-height: 1.3;
        letter-spacing: -.005em;
        color: var(--burgundy-dark);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
        transition: color .2s;
    }

    .faq-q:hover {
        color: var(--burgundy-bright);
    }

    .faq-num {
        font-family: roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 500;
        font-size: 11px;
        letter-spacing: .25em;
        text-transform: uppercase;
        color: var(--burgundy-bright);
        min-width: 40px;
    }

    .faq-q-text {
        flex: 1;
    }

    .faq-toggle {
        flex: 0 0 auto;
        width: 18px;
        height: 18px;
        position: relative;
    }

    .faq-toggle::before,
    .faq-toggle::after {
        content: '';
        position: absolute;
        background: var(--burgundy-dark);
        transition: transform .3s;
    }

    .faq-toggle::before {
        top: 8px;
        left: 0;
        right: 0;
        height: 2px;
    }

    .faq-toggle::after {
        top: 0;
        bottom: 0;
        left: 8px;
        width: 2px;
    }

    .faq-item.open .faq-toggle::after {
        transform: scaleY(0);
    }

    .faq-a {
        overflow: hidden;
        max-height: 0;
        transition: max-height .35s ease;
        font-size: 18px;
        line-height: 1.6;
        color: var(--burgundy-body);
    }

    .faq-item.open .faq-a {
        max-height: 400px;
    }

    .faq-a>div {
        padding: 0 0 30px;
        max-width: 72ch;
    }

    @media (max-width: 900px) {
        .faq-layout {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .faq-q {
            font-size: 19px;
        }
    }

}

/* FOOTER DIVIDER HIDE */
:has(.region-template-default) {
    
    footer.footer {
        background: var(--burgundy-dark);
    }
    
    footer.footer .wrapper:has(.divider) {
        display: none;
    }
}

/* Region: archive */
:has(.post-type-archive-region) {

    /* ---- Map section ---- */
    .rg-map-head {
        display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
        align-items: flex-end; margin-bottom: 40px;
    }
    .rg-map-head > div > h2 { margin-bottom: 0; }
    .rg-map-head > p { font-size: 18px; color: var(--burgundy-body); margin: 0; }

    .rg-map-wrap  { display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: flex-start; }
    .rg-map-stage { width: 100%; aspect-ratio: 2 / 1; border: 1px solid var(--burgundy-muted); }

    .rg-map-legend h5 { margin-bottom: 14px; }
    .rg-legend-list { display: flex; flex-direction: column; gap: 10px; margin: 0; }
    .rg-legend-list li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--burgundy-body); }
    .rg-dot {
        width: 14px; height: 14px; display: block; flex: 0 0 auto;
        background: var(--burgundy-bright);
        outline: 3px solid #fff; outline-offset: -3px;
        box-shadow: 0 0 0 1px var(--burgundy-dark);
    }

    .rg-branch-card {
        position: relative; margin-top: 24px;
        padding: 18px 20px 20px;
        background: #fff; border: 1px solid var(--burgundy-dark);
    }
    .rg-branch-card .title--meta { margin-bottom: 6px; }
    .rg-branch-card h4 { margin-bottom: 8px; }
    .rg-branch-card p { margin: 4px 0; font-size: 14px; line-height: 1.5; color: var(--burgundy-body); }
    .rg-branch-card .button { margin-top: 12px; }
    .rg-branch-card__close {
        position: absolute; top: 8px; right: 10px;
        background: none; border: 0; cursor: pointer;
        font-size: 22px; line-height: 1; color: var(--burgundy-dark); padding: 0;
    }

    @media (max-width: 960px) {
        .rg-map-head { grid-template-columns: 1fr; }
        .rg-map-wrap { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
        .hero--regions .title--xl { font-size: 40px; }
        .hero__inner { padding: 40px 0 50px; }
    }
}

/* ============ Signature Client (WashU) — intentionally NOT a region card ============ */
.signature-head{
  max-width: 68ch;
  margin: 20px 0 40px;
  padding-top: 60px;
  padding-bottom: 30px;
  border-top: 2px solid var(--burgundy-muted);
  position: relative;
}
.signature-head::before{
  content:'';
  position: absolute; top: -2px; left: 0;
  width: 120px; height: 2px;
  background: var(--burgundy-bright);
}
.signature-head h3{ margin-bottom: 12px; }
.signature-head h2{ margin-bottom: 0; }

.signature-card{
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: start;
  padding: 30px;
  background: rgba(227,222,222,.35);
  border: 1px dashed var(--burgundy-muted);
}
.signature-card__img{
  aspect-ratio: 4/3;
  border: 1px solid var(--burgundy-muted);
  /* desaturate slightly to signal "not a branch" */
  filter: saturate(.85);
}
.signature-card__body{ padding-top: 4px; }
.signature-card__tag{
  display: inline-block;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--burgundy-muted);
}
.signature-card__tag .title--meta{ margin-bottom: 0; }

@media (max-width: 960px){
  .signature-card{ grid-template-columns: 1fr; gap: 28px; padding: 22px; }
}