:root {
    --burgundy: #7b3038;
    --burgundy-dark: #63262d;
    --soft-burgundy: #f5edef;
    --light-gray: #f6f6f6;
    --white: #ffffff;
    --text: #2d2d2d;
    --muted: #626567;
    --border: #e0dedb;
    --shadow: 0 18px 50px rgba(70, 30, 35, 0.12);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(224, 222, 219, 0.9);
}

.nav-wrap {
    height: 108px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-logo {
    display: block;
    width: 132px;
    height: auto;
}

nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-weight: 600;
    font-size: .94rem;
}

nav a:hover {
    color: var(--burgundy-dark);
}

.nav-cta {
    padding: 11px 16px;
    border-radius: 10px;
    background: var(--burgundy);
    color: var(--white);
}

nav .nav-cta:hover {
    color: white;
    background: #63262d;
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    font-size: 1.7rem;
}

.hero {
    padding: 105px 0 90px;
    background:
        radial-gradient(circle at 80% 30%, rgba(123,48,56,.08), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #f6f6f6 100%);
}

.hero-grid,
.split,
.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 72px;
    align-items: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: .78rem;
    font-weight: 800;
    color: var(--burgundy-dark);
    margin-bottom: 14px;
}

h1 {
    font-size: clamp(2.8rem, 5.4vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -.045em;
    color: var(--burgundy);
    max-width: 800px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -.04em;
    color: var(--burgundy);
    margin-bottom: 20px;
}

h3 {
    color: var(--burgundy);
    font-size: 1.25rem;
    margin: 18px 0 10px;
}

.hero-text,
.section-heading > p:last-child {
    font-size: 1.12rem;
    color: var(--muted);
    max-width: 660px;
}

.hero-text {
    margin: 26px 0 32px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 11px;
    font-weight: 750;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: .98rem;
}

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

.button.primary:hover {
    background: #63262d;
}

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

.button.full {
    width: 100%;
}

.trust-row {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--muted);
    font-size: .9rem;
    font-weight: 650;
}

.trust-row span::before {
    content: "✓";
    color: var(--burgundy-dark);
    margin-right: 7px;
}

.hero-card {
    background: var(--burgundy);
    color: var(--white);
    padding: 38px;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.hero-card .card-label {
    color: #f0dfe1;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .74rem;
    font-weight: 800;
}

.hero-card h2 {
    color: var(--white);
    font-size: 2rem;
    margin-top: 14px;
}

.hero-card p {
    color: #f2e8ea;
    margin-bottom: 24px;
}

.hero-card a {
    font-weight: 800;
}

.section {
    padding: 95px 0;
}

.section.alt {
    background: var(--light-gray);
}

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

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

.service-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
}

.service-card .icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--soft-burgundy);
    color: var(--burgundy);
    font-size: 1.3rem;
    font-weight: 800;
}

.service-card p,
.split p {
    color: var(--muted);
}

.split p + p {
    margin-top: 16px;
}

.muted {
    font-size: .92rem;
}

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

.contact-section h2,
.contact-section .eyebrow {
    color: var(--white);
}

.contact-section > .container > div:first-child > p {
    color: #f2e8ea;
}

.contact-note {
    margin-top: 28px;
    padding: 18px 20px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-note span {
    color: #f0dfe1;
    font-size: .92rem;
}

.contact-form {
    background: var(--white);
    color: var(--text);
    padding: 30px;
    border-radius: 22px;
}

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

.field {
    margin-bottom: 16px;
}

label {
    display: block;
    font-size: .86rem;
    font-weight: 750;
    margin-bottom: 7px;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #858585;
    border-radius: 10px;
    padding: 13px 14px;
    font: inherit;
    background: var(--white);
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(123,48,56,.22);
    border-color: var(--burgundy-dark);
}

textarea {
    resize: vertical;
}

.error {
    color: #b42318;
    display: block;
    margin-top: 5px;
}

.success-message {
    background: #e8f7ed;
    color: #216e39;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 18px;
    font-weight: 650;
}

footer {
    background: #f6f6f6;
    color: #2d2d2d;
    padding: 36px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

footer p {
    color: #626567;
    font-size: .86rem;
    margin-top: 5px;
}

@media (max-width: 820px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 108px;
        left: 0;
        right: 0;
        background: white;
        border-bottom: 1px solid var(--border);
        padding: 18px 20px 24px;
        flex-direction: column;
        align-items: stretch;
        display: none;
    }

    nav.open {
        display: flex;
    }

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

    .hero {
        padding: 72px 0;
    }

    .section {
        padding: 72px 0;
    }

    .service-grid,
    .hero-grid,
    .split,
    .contact-grid {
        gap: 30px;
    }
}

@media (max-width: 560px) {
    .brand-text small {
        display: none;
    }

    .form-row,
    .coverage-card {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-card,
    .contact-form {
        padding: 24px;
    }
}


section[id], main[id] { scroll-margin-top: 128px; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--burgundy); outline-offset: 5px; }
button, input, select, textarea { font: inherit; }
a, button { transition: background-color .18s, color .18s; }
.button.secondary:hover { background: var(--soft-burgundy); border-color: var(--burgundy); }
.contact-note a { overflow-wrap: anywhere; text-decoration: underline; text-underline-offset: 3px; }
.contact-note address { font-style: normal; margin-top: 14px; }
.form-notice { margin-bottom: 20px; font-size: .9rem; color: var(--muted); }
.footer-brand .brand-logo { width: 180px; }
.menu-toggle { cursor: pointer; color: var(--burgundy); padding: 8px; }
@media (max-width: 560px) {
    .nav-wrap { height: 96px; }
    nav { top: 96px; }
    .brand-logo { width: 120px; }
    h1 { font-size: clamp(2.4rem, 11vw, 3.5rem); }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    a, button { transition: none; }
}

/* Personal profile: replace the monogram with a real headshot when available. */
.profile-section { border-bottom: 1px solid var(--border); }
.profile-grid {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 64px;
    align-items: start;
}
.profile-grid > *, .contact-grid > *, .split > * { min-width: 0; }
.profile-photo {
    padding: 18px;
    background: var(--light-gray);
    border: 1px solid var(--border);
    border-radius: 20px;
}
.photo-placeholder, .profile-headshot {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 12px;
}
.photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 24px;
    text-align: center;
    background: linear-gradient(145deg, #eee9e7, #e1deda);
}
.profile-headshot { display: block; height: auto; aspect-ratio: auto; }
.profile-monogram {
    font-family: Georgia, serif;
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    letter-spacing: .06em;
    color: var(--burgundy);
    border-bottom: 2px solid #bfa7a8;
    padding-bottom: 18px;
}
.photo-label { font-size: .8rem; color: #555759; }
.profile-photo figcaption { padding: 18px 6px 2px; font-weight: 650; }
.profile-photo figcaption span { display: block; color: var(--muted); font-size: .85rem; font-weight: 400; }
.profile-information h2 { font-size: clamp(2rem, 3.8vw, 3rem); margin-bottom: 16px; overflow-wrap: anywhere; }
.profile-information h2 span { display: block; }
.profile-role { font-weight: 650; font-size: 1.12rem; }
.profile-company { color: var(--muted); margin-top: 4px; }
.profile-details { margin: 26px 0; display: grid; grid-template-columns: 1fr; gap: 12px; }
.profile-details dt, .license-list dt { color: var(--muted); font-size: .8rem; }
.profile-details a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--burgundy);
    text-decoration: underline;
    text-underline-offset: 4px;
    overflow-wrap: anywhere;
    max-width: 100%;
}
.profile-details address { font-style: normal; margin-top: 5px; }
.credentials-card { background: var(--light-gray); border-left: 3px solid var(--burgundy); padding: 20px 24px; margin-bottom: 26px; border-radius: 0 12px 12px 0; }
.credentials-card h3 { margin: 0 0 6px; font-size: 1rem; }
.credentials-card > p { font-size: .9rem; }
.license-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 16px; }
.license-list dd { font-weight: 650; margin-top: 4px; overflow-wrap: anywhere; }
.about-elizabeth { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; border-top: 1px solid var(--border); padding-top: 32px; margin-top: 44px; }
.about-elizabeth h3 { margin: 0; }
.about-elizabeth p { color: var(--muted); max-width: 68ch; }
.coverage-card { display: grid; gap: 18px; }
.area-card { padding: 26px; border: 1px solid var(--border); border-radius: 18px; background: var(--white); }
.state-label { display: inline-block; color: var(--burgundy); background: var(--soft-burgundy); font-size: .8rem; font-weight: 800; padding: 5px 10px; border-radius: 6px; }
.area-card h3 { margin: 12px 0 16px; }
.area-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.area-list li { font-size: .85rem; padding: 6px 10px; background: var(--light-gray); border: 1px solid var(--border); border-radius: 6px; }
.area-list .partial-area { background: var(--soft-burgundy); border-color: #dfc7ca; color: var(--burgundy-dark); }
.contact-note h3 { color: var(--white); margin: 0; font-size: 1.3rem; }
.contact-note p { color: #f0dfe1; font-size: .9rem; margin-bottom: 10px; }
.contact-note a { display: flex; align-items: center; min-height: 44px; }
@media (max-width: 1000px) {
    .profile-grid, .about-elizabeth { gap: 32px; }
}
@media (max-width: 820px) {
    .profile-grid, .about-elizabeth { grid-template-columns: minmax(0, 1fr); }
    .profile-photo { width: min(100%, 380px); justify-self: center; }
    .profile-information h2 { font-size: clamp(2rem, 6vw, 3rem); }
    .about-elizabeth { gap: 16px; }
}
@media (max-width: 560px) {
    .license-list { grid-template-columns: 1fr; }
    .profile-information > .button { width: 100%; }
    .credentials-card, .area-card { padding: 20px; }
}

/* Refinements from the desktop, tablet, and mobile browser review. */
.skip-link { position: fixed; top: 10px; left: 20px; z-index: 200; transform: translateY(-160%); padding: 12px 18px; background: var(--white); color: var(--burgundy); border: 2px solid var(--burgundy); border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }
.contact-grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: start; gap: 56px; }
.contact-section a:focus-visible, .hero-card a:focus-visible { outline-color: white; }
.contact-form a:focus-visible { outline-color: var(--burgundy); }
.contact-form .form-title { margin: 0 0 16px; font-size: 1.35rem; }
.form-notice { background: var(--light-gray); border-left: 3px solid var(--burgundy); padding: 14px 16px; line-height: 1.55; }
.form-notice strong { display: block; color: var(--text); margin-bottom: 4px; }
.form-notice a { color: var(--burgundy); text-decoration: underline; text-underline-offset: 3px; }
input::placeholder, textarea::placeholder { color: #626567; opacity: 1; }
.hero-card { box-shadow: 0 12px 32px rgba(70, 30, 35, .09); }
.hero-card a { display: inline-flex; min-height: 44px; align-items: center; }
.trust-row { gap: 8px 18px; font-size: .85rem; }
@media (min-width: 700px) and (max-width: 1000px) {
    .profile-grid { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 32px; }
    .profile-information h2 { font-size: 2rem; }
    .profile-photo { padding: 12px; }
    .license-list { grid-template-columns: 1fr; }
    .coverage-card { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
    .contact-grid { grid-template-columns: minmax(0, 1fr); gap: 30px; }
    nav { gap: 6px; max-height: calc(100dvh - 108px); overflow-y: auto; }
    nav a { min-height: 44px; display: flex; align-items: center; padding: 8px 12px; }
    .menu-toggle { min-width: 44px; min-height: 44px; }
    .service-card { display: grid; grid-template-columns: 48px minmax(0, 1fr); column-gap: 20px; }
    .service-card .icon { grid-row: 1 / 3; }
    .service-card h3 { margin: 0 0 10px; }
    .service-card p { grid-column: 2; }
}
@media (max-width: 699px) {
    .photo-placeholder { aspect-ratio: 16 / 9; gap: 12px; padding: 18px; }
    .profile-monogram { font-size: 3rem; padding-bottom: 8px; }
    .profile-photo { padding: 12px; }
    .profile-photo figcaption { padding-top: 12px; }
}
@media (max-width: 560px) {
    .hero, .section { padding: 52px 0; }
    .hero-actions { display: grid; grid-template-columns: 1fr; }
    .hero-card h2 { font-size: 1.65rem; line-height: 1.2; }
    .section-heading { margin-bottom: 28px; }
    .service-card { padding: 22px; }
    .about-elizabeth { margin-top: 32px; padding-top: 24px; }
    nav { max-height: calc(100dvh - 96px); }
    section[id], main[id] { scroll-margin-top: 116px; }
}

/* Shared composition grid: centered boundaries, readable left-aligned content. */
:root {
    --content-width: 1120px;
    --page-gutter: clamp(20px, 4vw, 48px);
    --section-space: clamp(56px, 7vw, 96px);
    --column-gap: clamp(32px, 4vw, 64px);
    --component-gap: 24px;
}
.container { width: min(var(--content-width), calc(100% - var(--page-gutter) * 2)); margin-inline: auto; }
.hero, .section { padding-block: var(--section-space); }
.hero-grid, .profile-grid, .contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--column-gap);
    align-items: center;
}
.hero-grid > *, .profile-grid > *, .contact-grid > * { min-width: 0; }
h1 { font-size: clamp(2.6rem, 4.7vw, 4.25rem); }
h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); line-height: 1.15; margin-bottom: 16px; }
.eyebrow { margin-bottom: 12px; }
.hero-text { margin-block: 24px; max-width: 54ch; }
.hero-card { width: 100%; padding: clamp(28px, 3vw, 40px); }
.hero-actions { gap: 12px; }
.section-heading { margin-bottom: 40px; }
.composition-heading { max-width: 680px; margin-inline: auto; }
.composition-heading > h2, .composition-heading > .eyebrow { text-align: center; }
.composition-heading > p:not(.eyebrow) { max-width: 62ch; margin-inline: auto; }
.composition-heading > p + p { margin-top: 12px; }
.profile-grid {
    padding: clamp(24px, 3vw, 40px);
    border: 1px solid var(--border);
    border-radius: 24px;
    align-items: start;
}
.profile-photo { width: 100%; padding: 0; border: 0; background: transparent; border-radius: 12px; }
.profile-photo figcaption { padding: 16px 0 0; }
.profile-story { display: grid; gap: 24px; }
.profile-information { display: flex; flex-direction: column; align-items: stretch; }
.profile-information #profile-name { margin: 0 0 12px; font-size: clamp(1.8rem, 3vw, 2.65rem); line-height: 1.12; letter-spacing: -.035em; overflow-wrap: anywhere; }
#profile-name span { display: block; }
.profile-role { font-size: 1rem; }
.profile-details { margin-block: 24px; gap: 12px; }
.profile-details a { min-height: 40px; }
.credentials-card { margin: 0 0 24px; padding: 20px; }
.credentials-card h4 { font-size: 1rem; color: var(--burgundy); margin-bottom: 8px; }
.license-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.profile-information > .button { width: 100%; }
.about-elizabeth { display: block; margin: 0; padding: 24px 0 0; border-top: 1px solid var(--border); }
.about-elizabeth h3 { font-size: 1.15rem; margin: 0 0 12px; }
.about-elizabeth p { max-width: 55ch; font-size: .95rem; }
.service-grid { gap: var(--component-gap); }
.service-card { padding: 28px; }
.coverage-card { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--component-gap); }
.area-card { padding: 28px; }
.area-list { gap: 10px; }
.contact-grid { align-items: center; }
.contact-note { margin: 0; padding: 32px; }
.contact-section .composition-heading > p { color: #f2e8ea; }
.contact-form { padding: 28px; }
@media (max-width: 1100px) and (min-width: 821px) {
    .profile-grid { gap: 32px; padding: 28px; }
    .license-list { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 820px) {
    .hero-grid, .profile-grid, .contact-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
    .profile-story { max-width: none; }
    .profile-photo { max-width: 380px; margin-inline: auto; }
    .profile-information { max-width: 560px; width: 100%; margin-inline: auto; }
    .profile-story .about-elizabeth { max-width: 560px; margin-inline: auto; }
    .hero-card { padding: 28px; }
}
@media (max-width: 560px) {
    .section-heading { margin-bottom: 28px; }
    .composition-heading > h2 { font-size: 2rem; }
    .profile-grid { padding: 20px; gap: 28px; }
    .profile-information #profile-name { font-size: 1.8rem; }
    .license-list, .coverage-card { grid-template-columns: 1fr; }
    .contact-note, .contact-form, .area-card, .service-card { padding: 22px; }
    .hero-card h2 { font-size: 1.65rem; }
}

/* Second inspection: align supporting copy and remove the floating contact column. */
.composition-heading > p:not(.eyebrow) { width: 100%; max-width: none; }
.contact-grid { width: min(100%, 760px); margin-inline: auto; grid-template-columns: minmax(0, 1fr); gap: 24px; }
.contact-note { display: grid; grid-template-columns: 1.2fr .8fr; column-gap: 32px; row-gap: 4px; }
.contact-note h3, .contact-note > p, .contact-note > a { grid-column: 1; }
.contact-note address { grid-column: 2; grid-row: 1 / 5; margin: 0; align-self: center; }
.contact-form .form-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 820px) {
    .profile-story { display: contents; }
    .profile-photo { order: 0; }
    .profile-information { order: 1; }
    .profile-story .about-elizabeth { order: 2; width: 100%; max-width: 560px; }
    .about-elizabeth p { max-width: none; }
}
@media (max-width: 560px) {
    .contact-note { grid-template-columns: minmax(0, 1fr); }
    .contact-note address { grid-column: 1; grid-row: auto; margin-top: 16px; }
    .contact-form .form-row { grid-template-columns: minmax(0, 1fr); gap: 0; }
}

/* Email submission status uses the existing form layout. */
.delivery-error, .validation-summary { background: #f9eeee; color: #7b3038; border-left: 3px solid #7b3038; border-radius: 8px; padding: 14px 16px; margin-bottom: 18px; }
.validation-summary ul { padding-left: 20px; margin-top: 8px; }
.form-honeypot { display: none; }
.button:disabled { opacity: .65; cursor: not-allowed; }

/* Coverage: shared card headings, readable county lists, and one availability note. */
#coverage .composition-heading { max-width: 720px; }
#coverage .composition-heading h2 { font-size: clamp(2rem, 3vw, 2.6rem); text-wrap: balance; }
#coverage .composition-heading > p:not(.eyebrow) { max-width: 60ch; }
#coverage .area-card { display: flex; flex-direction: column; padding: clamp(22px, 3vw, 32px); }
.area-heading { display: flex; align-items: center; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.area-heading .state-label { display: grid; place-items: center; width: 44px; height: 44px; flex-shrink: 0; }
.area-heading h3 { margin: 0; font-size: 1.35rem; }
#coverage .area-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 20px; padding-top: 22px; flex: 1; align-content: start; }
#coverage .area-list li { padding: 0; border: 0; border-radius: 0; background: transparent; font-size: .95rem; }
#coverage .area-list .partial-area { grid-column: 1 / -1; margin-top: 6px; padding: 12px 14px; border-radius: 8px; background: var(--soft-burgundy); color: var(--burgundy-dark); }
.coverage-note { max-width: 760px; margin: 24px auto 0; padding-left: 18px; border-left: 3px solid var(--burgundy); color: var(--muted); font-size: .95rem; }
.coverage-note a { color: var(--burgundy); text-decoration: underline; text-underline-offset: 3px; }
@media (min-width: 821px) {
    #coverage .area-list { grid-template-rows: auto 1fr auto; align-content: stretch; }
    #coverage .area-list .partial-area { grid-row: 3; align-self: end; }
}
@media (max-width: 820px) {
    #coverage .area-list { grid-template-columns: minmax(0, 1fr); }
}
