:root {
    --blue: #235f8f;
    --blue-dark: #17486d;
    --teal: #2d8fac;
    --red: #b11c2c;
    --red-soft: #d97880;
    --gold: #ffc400;
    --ink: #26384a;
    --muted: #6f7c88;
    --line: #e3e8ed;
    --panel: #ffffff;
    --page: #f5f5f6;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: Lato, Arial, Helvetica, sans-serif;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    color: var(--blue);
    text-decoration: none;
}

img,
iframe {
    max-width: 100%;
}

.container-xl {
    max-width: 1140px;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid #d7e0e8;
}

.header-inner {
    max-width: 1380px;
    min-height: 60px;
    margin: 0 auto;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 7px;
    color: var(--blue-dark);
    font-size: 30px;
    font-weight: 800;
}

.brand img {
    /* width: 45px; */
    height: 45px;
    object-fit: contain;
}

.brand span {
    white-space: nowrap;
}

.header-search {
    flex: 1;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(220px, 0.98fr) 45px;
    gap: 7px;
    max-width: 820px;
    margin-left: auto;
}

.header-search input {
    height: 42px;
    border: 1px solid #ccd8e3;
    border-radius: 24px;
    padding: 0 22px;
    font-size: 15px;
}

.header-search button,
.menu-button {
    width: 45px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--red);
    font-size: 17px;
}

.header-search button span {
    display: none;
}

.menu-button {
    background: transparent;
    color: var(--blue);
    font-size: 35px;
    flex: 0 0 auto;
}

.menu-button.is-open {
    color: var(--blue-dark);
}

.site-menu {
    display: none;
    min-height: 70px;
    align-items: stretch;
    justify-content: center;
    border-top: 1px solid #d7d7d7;
    border-bottom: 3px solid var(--blue-dark);
    background: #f7f7f8;
}

.site-header.menu-open .site-menu {
    display: flex;
    animation: menuSlideDown 0.45s ease both;
}

@keyframes menuSlideDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-menu a {
    min-width: 112px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-left: 1px solid #d7d7d7;
    color: #101010;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 400;
}

.site-menu a:last-child {
    border-right: 1px solid #d7d7d7;
}

.site-menu a strong {
    margin-right: 4px;
    font-weight: 900;
}

.site-menu .account-link {
    color: var(--blue);
    font-weight: 900;
}

.site-menu .account-link i {
    margin-right: 7px;
}

.site-menu .login-link {
    color: var(--red);
}

.breadcrumb-strip {
    min-height: 37px;
    color: #fff;
    background: var(--blue-dark);
    font-size: 12px;
    line-height: 37px;
}

.breadcrumb-strip .container-xl {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.breadcrumb-strip a,
.breadcrumb-strip strong,
.breadcrumb-strip span {
    color: #fff;
    margin-right: 5px;
}

.profile-zone {
    padding: 130px 0 92px;
    background: #fff;
}

.page-grid {
    display: grid;
    grid-template-columns: minmax(0, 752px) 365px;
    gap: 24px;
    align-items: start;
}

.left-stack,
.right-stack {
    display: grid;
    gap: 24px;
}

.right-stack {
    padding-top: 0;
}

.panel {
    background: var(--panel);
    border: 1px solid #edf0f3;
    border-radius: 4px;
    box-shadow: 0 11px 28px rgba(18, 43, 66, 0.12);
}

.business-card {
    min-height: 326px;
    padding: 22px 24px 24px;
}

.business-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.business-heading h1 {
    margin: 0;
    color: var(--blue);
    font-size: 27px;
    font-weight: 800;
}

.mini-rating {
    text-align: right;
    font-size: 13px;
    color: var(--muted);
    min-width: 170px;
}

.mini-rating strong,
.mini-rating span {
    display: block;
    color: #000;
    font-weight: 800;
}

.mini-rating strong {
    display: none;
}

.business-body {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    margin-top: 18px;
}

.business-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 210px;
}

.business-logo img {
    width: 285px;
    max-height: 210px;
    object-fit: contain;
}

.business-facts p {
    margin: 0 0 22px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.45;
}

.business-facts i {
    width: 25px;
    color: var(--red);
    font-size: 20px;
}

.claim-button,
.incorrect-button,
.load-more,
.review-form button[type="submit"] {
    display: block;
    width: 100%;
    border: 0;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 800;
    line-height: 52px;
    border-radius: 4px;
    background: var(--red);
    box-shadow: 0 4px 9px rgba(177, 28, 44, 0.25);
}

.incorrect-button {
    margin-top: 12px;
    background: var(--red-soft);
}

.quick-actions {
    min-height: 90px;
    display: grid;
    grid-template-columns: repeat(3, max-content);
    align-items: center;
    justify-content: center;
    gap: 72px;
}

.quick-actions a {
    display: grid;
    justify-items: center;
    gap: 4px;
    color: var(--blue);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 800;
}

.quick-actions span {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--blue);
    background: #eef3f7;
    font-size: 21px;
}

.rating-card {
    padding: 22px 28px 0;
}

.rating-title {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 16px;
}

.rating-title h2 {
    margin: 0;
    color: #555;
    font-size: 28px;
    font-weight: 400;
    padding-left: 72px;
}

.rating-title > div {
    min-width: 235px;
    text-align: center;
    color: #000;
    font-size: 18px;
}

.rating-layout {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 70px;
    padding: 12px 0 36px;
}

.stars {
    white-space: nowrap;
}

.stars i {
    margin-right: 1px;
    color: var(--gold);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
}

.stars .star-empty {
    color: #cfd4d9;
}

.stars.tone-3 .star-filled {
    color: #f26f32;
}

.stars.tone-2 .star-filled,
.stars.tone-1 .star-filled {
    color: #bd3341;
}

.large-stars {
    font-size: 23px;
}

.rating-row {
    display: grid;
    grid-template-columns: 140px 1fr 24px;
    gap: 14px;
    align-items: center;
    margin-bottom: 5px;
    font-size: 21px;
}

.rating-track {
    height: 8px;
    background: #e6edf2;
    border-radius: 999px;
    overflow: hidden;
}

.rating-track span {
    display: block;
    height: 100%;
    background: #0a8dff;
}

.rating-row strong {
    font-size: 12px;
}

.sample-review {
    display: grid;
    gap: 13px;
    align-content: start;
    font-size: 16px;
}

.sample-review strong {
    color: var(--blue);
}

.read-all {
    display: block;
    margin: 0 -28px;
    border-top: 1px solid var(--line);
    line-height: 60px;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
}

.about-card,
.contact-card,
.faq-card {
    padding: 24px 24px;
}

.about-card h2,
.contact-card h2,
.contact-person h2,
.hours-card h2,
.related-card h2,
.faq-card h2 {
    margin: 0 0 4px;
    color: var(--blue);
    text-align: center;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 800;
}

.about-card h2::after,
.contact-card h2::after,
.contact-person h2::after,
.hours-card h2::after,
.related-card h2::after,
.faq-card h2::after,
.reviews-heading::after {
    content: "";
    display: block;
    height: 26px;
    margin-top: 8px;
    background:
        url("../images/logo-emblem.png") center / 34px 24px no-repeat,
        /* linear-gradient(#fff, #fff) center / 50px 26px no-repeat, */
        linear-gradient(#cfd7df, #cfd7df) center / 100% 1px no-repeat;
}

.about-card h3 {
    margin: 0 0 26px;
    color: var(--blue);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
}

.about-card p,
.contact-card p {
    margin: 0;
    color: #3f4750;
    font-size: 16px;
    line-height: 1.55;
}

.contact-card {
    width: 365px;
    max-width: 100%;
    min-height: 165px;
}

.contact-card h2 {
    text-align: center;
}

.contact-card p {
    margin-top: 25px;
    color: var(--ink);
    font-weight: 700;
}

.contact-card i {
    margin-right: 8px;
    color: var(--red);
}

.faq-card h2 {
    margin-bottom: 18px;
}

.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 0 0 18px;
    margin-bottom: 18px;
}

.faq-item p {
    margin: 0 0 13px;
    color: #4d5d6d;
    font-size: 15px;
    line-height: 1.5;
}

.faq-item span {
    display: inline-grid;
    place-items: center;
    width: 16px;
    height: 16px;
    margin-right: 14px;
    border-radius: 50%;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    background: var(--red);
}

.faq-item p + p span {
    background: var(--blue);
}

.contact-person,
.hours-card,
.related-card {
    padding: 20px 22px 24px;
}

.contact-person {
    margin-bottom: 260px;
}

.contact-person h2,
.hours-card h2,
.related-card h2 {
    margin-bottom: 18px;
}

.person-row {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 20px;
    align-items: center;
    padding-top: 5px;
    border-bottom: 1px solid #cfd7df;
    padding-bottom: 18px;
}

.person-avatar,
.review-avatar {
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #c6cbd0;
    background: #eef0f2;
}

.person-avatar {
    width: 96px;
    height: 96px;
    border-radius: 0;
    font-size: 58px;
}

.person-row strong,
.person-row span,
.person-row small {
    display: block;
    font-size: 16px;
}

.person-row span {
    color: var(--muted);
}

.person-row small i {
    width: 16px;
    color: var(--ink);
}

.hours-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 8px;
    margin-top: 14px;
    font-size: 16px;
}

.hours-row span {
    color: var(--muted);
}

.map-card {
    overflow: hidden;
}

.map-card iframe {
    width: 100%;
    height: 365px;
    border: 0;
    display: block;
}

.related-card a {
    display: block;
    padding: 6px 0;
    color: #586b79;
    border-bottom: 1px solid #eef1f4;
    font-size: 16px;
}

.related-card a i {
    margin-right: 7px;
    color: #778;
}

.reviews-zone {
    padding: 46px 0 74px;
    background: #f1eeee;
}

.reviews-panel {
    background: #fff;
    box-shadow: 0 4px 18px rgba(18, 43, 66, 0.12);
    border-radius: 4px;
    padding: 24px 24px 30px;
}

.reviews-heading {
    text-align: center;
    padding-bottom: 24px;
}

.reviews-heading h2 {
    margin: 0;
    color: var(--blue);
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 800;
}

.reviews-heading p {
    margin: 4px 0 0;
    color: var(--blue);
    font-size: 22px;
}

.reviews-heading img {
    display: none;
    width: 28px;
    height: 20px;
    object-fit: contain;
}

.reviews-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 405px;
    gap: 34px;
}

.reviews-list {
    border-right: 1px solid var(--line);
    padding: 28px 34px 0 34px;
}

.review-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 22px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.review-avatar {
    width: 70px;
    height: 70px;
    color: #888;
    background: #f4f4f4;
    box-shadow: 0 8px 20px rgba(18, 43, 66, 0.12);
    font-size: 38px;
}

.review-topline {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.review-topline strong {
    color: var(--blue);
    text-transform: uppercase;
    font-size: 16px;
}

.review-topline small {
    color: var(--red);
    font-size: 10px;
    font-weight: 800;
}

.review-topline time {
    color: #46515c;
    font-weight: 800;
    font-size: 16px;
    white-space: nowrap;
}

.review-copy h4 {
    display: none;
}

.review-copy p {
    position: relative;
    margin: 34px 0 0;
    color: #4b5d6a;
    font-size: 16px;
    line-height: 1.65;
}

.review-copy p::before,
.review-copy p::after {
    color: #e6e8eb;
    font-size: 30px;
    font-weight: 800;
}

.review-copy p::before {
    content: "\201C";
    margin-right: 8px;
}

.review-copy p::after {
    content: "\201D";
    margin-left: 8px;
}

.load-more {
    width: 174px;
    margin: 28px auto 0;
    line-height: 34px;
    font-size: 14px;
}

.write-review {
    padding: 36px 20px 0 10px;
}

.overall-card h3,
.review-form h3 {
    margin: 0 0 8px;
    color: var(--blue);
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 800;
}

.overall-card h3 {
    text-transform: none;
    font-size: 29px;
    font-weight: 400;
}

.overall-number {
    display: none;
    color: var(--blue);
    font-size: 18px;
    font-weight: 800;
}

.overall-card p {
    margin: 6px 0 10px;
    font-size: 13px;
    font-weight: 700;
}

.review-form {
    margin-top: 62px;
    text-align: center;
}

.rate-label {
    display: inline-block;
    color: #666;
    text-transform: uppercase;
    font-size: 14px;
}

.rate-picker {
    display: inline-flex;
    vertical-align: middle;
    margin-left: 4px;
}

.rate-picker button {
    border: 0;
    padding: 0 1px;
    color: #a8b1ba;
    background: transparent;
    font-size: 24px;
}

.rate-picker button .fa-solid {
    color: var(--gold);
}

.review-form input,
.review-form textarea {
    width: 100%;
    margin-top: 16px;
    border: 1px solid #dce3e9;
    border-radius: 4px;
    padding: 15px 14px;
    font-size: 16px;
    text-align: left;
}

.review-form button[type="submit"] {
    width: 156px;
    margin: 28px auto 0;
    line-height: 46px;
    font-size: 14px;
}

.review-message {
    margin-top: 12px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
}

.review-message.success {
    color: #198754;
}

.review-message.error {
    color: var(--red);
}

.nearby-zone {
    padding: 35px 0 35px;
    background: #f1eeee;
}

.nearby-zone .container-xl {
    max-width: 1750px;
}

.nearby-zone h2 {
    margin: 0 0 22px;
    color: var(--blue);
    text-align: center;
    font-size: 32px;
    font-weight: 800;
}

.nearby-card {
    width: 420px;
    max-width: 100%;
    min-height: 170px;
    padding: 28px;
    background: #fff;
    border: 1px solid #dce3e9;
    text-align: center;
}

.nearby-card h3 {
    margin: 0 0 5px;
    color: var(--blue);
    font-size: 24px;
    font-weight: 800;
}

.nearby-card p {
    margin: 0 0 5px;
    color: #557083;
    font-size: 16px;
    line-height: 1.45;
}

.site-footer {
    background: #fff;
}

.footer-cta {
    position: relative;
    min-height: 230px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    color: #fff;
    background: var(--red);
    overflow: hidden;
    padding-top: 60px;
}

.footer-cta::before {
    content: "";
    position: absolute;
    left: -5%;
    right: -5%;
    top: -120px;
    height: 190px;
    border-radius: 0 0 50% 50%;
    background: #f1eeee;
}

.footer-cta strong,
.footer-cta a {
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 800;
}

.footer-cta a {
    display: inline-block;
    padding: 18px 30px;
    color: var(--red);
    background: #fff;
    font-size: 14px;
}

.footer-main {
    max-width: 1010px;
    margin: 0 auto;
    padding: 95px 16px 72px;
    display: grid;
    grid-template-columns: 245px 1fr 245px;
    gap: 70px;
}

.footer-brand {
    text-align: center;
    color: var(--blue);
    text-transform: uppercase;
}

.footer-brand img {
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-brand span {
    display: block;
    margin-top: 16px;
    color: var(--red);
    font-weight: 800;
}

.footer-main h3 {
    color: var(--blue);
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 800;
}

.footer-links {
    display: grid;
    gap: 5px;
}

.footer-links.two-col {
    grid-template-columns: 1fr 1fr;
}

.footer-links a {
    color: #536879;
    font-size: 16px;
}

.footer-bottom {
    padding: 24px 0;
    color: #8a96a2;
    background: #f4f4f4;
    text-align: center;
    font-size: 16px;
}

.login-body,
.admin-body {
    background: #f4f6f8;
}

.login-card {
    width: min(410px, calc(100% - 32px));
    margin: 8vh auto;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(18, 43, 66, 0.12);
}

.login-card h1 {
    color: var(--blue);
    font-size: 26px;
    font-weight: 800;
}

.login-card label {
    margin: 12px 0 5px;
    font-weight: 700;
}

.login-card button {
    margin-top: 18px;
    background: var(--blue);
    border-color: var(--blue);
}

.admin-navbar {
    background: var(--blue-dark);
}

.admin-navbar .navbar-brand,
.admin-navbar .nav-link {
    color: #fff;
}

.admin-navbar .nav-link.active {
    font-weight: 800;
    text-decoration: underline;
}

.admin-main {
    max-width: 1180px;
    padding: 28px 18px 60px;
}

.admin-title {
    margin-bottom: 20px;
}

.admin-title h1 {
    margin: 0;
    color: var(--blue);
    font-size: 28px;
    font-weight: 800;
}

.admin-title p {
    margin: 4px 0 0;
    color: var(--muted);
}

.admin-card,
.admin-stat {
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 4px 14px rgba(18, 43, 66, 0.07);
}

.admin-stat span {
    display: block;
    color: var(--muted);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 800;
}

.admin-stat strong {
    color: var(--blue);
    font-size: 30px;
}

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

.quick-admin-actions a {
    padding: 11px 14px;
    color: var(--blue);
    border: 1px solid var(--line);
    font-weight: 800;
}

.admin-side-box {
    padding: 16px;
    margin-bottom: 18px;
    border: 1px solid var(--line);
    background: #f9fbfc;
}

.admin-side-box h2,
.admin-card h2 {
    color: var(--blue);
    font-size: 18px;
    font-weight: 800;
}

.logo-preview {
    display: block;
    width: 180px;
    max-width: 100%;
    max-height: 120px;
    margin-bottom: 12px;
    object-fit: contain;
    background: #fff;
    border: 1px solid var(--line);
}

.faq-admin-row {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.admin-filter {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.admin-filter a {
    padding: 8px 12px;
    border: 1px solid var(--line);
    font-weight: 800;
}

.admin-filter a.active {
    color: #fff;
    background: var(--blue);
}

.review-admin-table td strong,
.review-admin-table td small,
.review-admin-table td span {
    display: block;
}

.status-pill {
    display: inline-block;
    width: fit-content;
    padding: 4px 8px;
    border-radius: 999px;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 800;
    background: #e9ecef;
}

.status-pill.approved {
    color: #0f5132;
    background: #d1e7dd;
}

.status-pill.pending {
    color: #664d03;
    background: #fff3cd;
}

.table-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

@media (max-width: 820px) {
    .container-xl {
        max-width: 100%;
    }

    .header-inner {
        flex-wrap: wrap;
        gap: 12px;
    }

    .brand img {
        max-width: min(260px, 68vw);
    }

    .header-search {
        order: 3;
        flex-basis: 100%;
        grid-template-columns: 1fr 1fr 36px;
        max-width: none;
        margin-left: 0;
    }

    .menu-button {
        margin-left: auto;
    }

    .site-menu {
        flex-wrap: wrap;
        min-height: auto;
    }

    .site-menu a {
        flex: 1 1 50%;
        min-height: 54px;
        min-width: 0;
        padding: 0 14px;
        font-size: 14px;
    }

    .page-grid,
    .reviews-layout,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .right-stack {
        padding-top: 0;
    }

    .profile-zone {
        padding: 48px 0 56px;
    }

    .contact-person {
        margin-bottom: 0;
    }

    .reviews-list {
        border-right: 0;
        padding: 12px 0 0;
    }

    .reviews-panel {
        padding: 22px 18px 28px;
    }

    .write-review {
        padding: 24px 0 0;
    }

    .nearby-zone {
        /* padding-bottom: 80px; */
    }

    .nearby-card {
        margin: 0 auto;
    }

    .footer-main {
        max-width: 420px;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .profile-zone {
        padding-top: 32px;
    }

    .business-heading,
    .rating-title,
    .review-topline,
    .footer-cta {
        display: grid;
        justify-items: start;
    }

    .business-body,
    .rating-layout,
    .review-item {
        grid-template-columns: 1fr;
    }

    .business-card,
    .rating-card,
    .about-card,
    .contact-card,
    .faq-card,
    .contact-person,
    .hours-card,
    .related-card {
        padding: 18px;
    }

    .business-heading h1 {
        font-size: 23px;
        line-height: 1.25;
    }

    .business-body {
        gap: 14px;
    }

    .business-logo {
        min-height: 90px;
    }

    .business-logo img {
        width: min(245px, 100%);
    }

    .quick-actions {
        min-height: auto;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        padding: 16px 8px;
    }

    .quick-actions a {
        min-width: 0;
        font-size: 12px;
    }

    .quick-actions span {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .mini-rating {
        text-align: left;
    }

    .rating-title {
        gap: 10px;
    }

    .rating-title h2 {
        padding-left: 0;
        font-size: 24px;
    }

    .rating-title > div {
        min-width: 0;
        text-align: left;
    }

    .rating-layout {
        gap: 18px;
        padding-bottom: 24px;
    }

    .rating-row {
        grid-template-columns: 110px minmax(0, 1fr) 24px;
        gap: 10px;
        font-size: 17px;
    }

    .large-stars {
        font-size: 20px;
    }

    .read-all {
        margin: 0 -18px;
        line-height: 48px;
        font-size: 16px;
    }

    .person-row {
        grid-template-columns: 72px 1fr;
        gap: 14px;
    }

    .person-avatar {
        width: 72px;
        height: 72px;
        font-size: 40px;
    }

    .hours-row {
        grid-template-columns: 95px 1fr;
        font-size: 14px;
    }

    .map-card iframe {
        height: 260px;
    }

    .reviews-heading h2 {
        font-size: 25px;
    }

    .reviews-heading p {
        font-size: 17px;
    }

    .review-item {
        gap: 12px;
        padding: 18px 0;
    }

    .review-avatar {
        width: 56px;
        height: 56px;
        font-size: 30px;
    }

    .review-copy p {
        margin-top: 20px;
    }

    .review-form {
        margin-top: 34px;
    }

    .nearby-zone h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .nearby-card {
        padding: 22px 16px;
    }

    .footer-cta {
        justify-content: center;
        justify-items: center;
        text-align: center;
        padding-top: 60px;
        gap: 0px;
    }

    .brand span {
        font-size: 13px;
    }

    .header-search {
        grid-template-columns: 1fr;
    }

    .header-search button {
        width: 100%;
        border-radius: 24px;
        font-weight: 800;
        text-transform: uppercase;
    }

    .header-search button i {
        margin-right: 7px;
    }

    .header-search button span {
        display: inline;
    }

    .contact-card {
        width: 100%;
    }

    .site-menu a {
        flex-basis: 100%;
        justify-content: flex-start;
        padding: 0 22px;
    }

    .footer-main {
        padding-top: 56px;
        padding-bottom: 48px;
        gap: 30px;
    }

    .footer-links.two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .header-inner {
        padding: 8px 12px;
    }

    .brand img {
        max-width: min(230px, 62vw);
    }

    .menu-button {
        width: 40px;
        font-size: 30px;
    }

    .rating-row {
        grid-template-columns: 96px minmax(0, 1fr) 20px;
        font-size: 15px;
    }

    .stars i {
        margin-right: 0;
    }

    .footer-cta strong {
        font-size: 20px;
    }

    .footer-cta a {
        padding: 14px 20px;
    }
}
