/* wp-content/themes/fast-custom-theme/assets/css/landing/base.css */
:root {
    --color-ink: #13333f;
    --color-muted: #5e737b;
    --color-teal: rgba(33, 51, 108, 1);
    --color-teal-dark: #17265a;
    --color-teal-soft: #e9edf8;
    --color-sky: #cfecef;
    --color-gold: #d9a441;
    --color-gold-dark: #b78022;
    --color-cream: #fbf7ef;
    --color-white: #ffffff;
    --color-line: #dbe8ea;
    --shadow-soft: 0 20px 50px rgba(14, 75, 87, 0.14);
    --shadow-card: 0 16px 34px rgba(19, 51, 63, 0.1);
    --container: min(100% - 40px, 1180px);
    --radius: 8px;
    --font-main: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: "Playfair Display", Georgia, serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-ink);
    font-family: var(--font-main);
    line-height: 1.6;
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

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

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

:where(a, button, input, textarea, select, [tabindex]):focus-visible {
    outline: 3px solid var(--color-gold);
    outline-offset: 3px;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    color: var(--color-teal);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 34px;
    height: 2px;
    background: var(--color-gold);
    content: "";
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading h2 {
    margin: 0;
    color: var(--color-ink);
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.05;
}

.section-heading p {
    margin: 16px auto 0;
    color: var(--color-muted);
    font-size: 1.05rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--color-white);
    background: var(--color-teal);
    box-shadow: 0 14px 28px rgba(33, 51, 108, 0.24);
}

.btn-primary:hover {
    background: var(--color-teal-dark);
    box-shadow: 0 18px 34px rgba(33, 51, 108, 0.32);
}

.btn-secondary {
    color: var(--color-ink);
    background: var(--color-white);
    border-color: var(--color-line);
}

.btn-secondary:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-card);
}

.reveal {
    animation: reveal 720ms ease both;
    animation-timeline: view();
    animation-range: entry 8% cover 28%;
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
    }
}

@media (max-width: 700px) {
    :root {
        --container: min(100% - 28px, 1180px);
    }

    .section-heading {
        margin-bottom: 30px;
        text-align: left;
    }

    .btn {
        width: 100%;
    }
}

/* wp-content/themes/fast-custom-theme/assets/css/landing/header.css */
.landing-header {
    position: sticky;
    z-index: 20;
    top: 0;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(219, 232, 234, 0.85);
    backdrop-filter: blur(18px);
}

.topbar {
    color: var(--color-white);
    background: var(--color-teal-dark);
    font-size: 0.95rem;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
}

.topbar__links {
    display: flex;
    align-items: center;
    gap: 18px;
    color: rgba(255, 255, 255, 0.88);
}

.topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
}

.topbar__item svg {
    flex: 0 0 auto;
    width: 19px;
    height: 19px;
    color: var(--color-gold);
}

.topbar a {
    transition: color 180ms ease;
}

.topbar a:hover {
    color: var(--color-gold);
}

.topbar__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 16px;
    color: var(--color-ink);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    background: rgb(253, 185, 45);
    border: 1px solid transparent;
    border-radius: 999px;
    box-shadow: 0 14px 28px rgba(253, 185, 45, 0.36);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.topbar__cta:hover,
.topbar__cta:focus-visible {
    color: var(--color-ink) !important;
    background: #e3a41f;
    box-shadow: 0 18px 34px rgba(253, 185, 45, 0.46);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    min-height: 86px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand img {
    width: min(250px, 48vw);
    max-height: 86px;
    height: auto;
    object-fit: contain;
}

.nav-toggle-label {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    place-items: center;
    background: transparent;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-ink);
    border-radius: 20px;
    content: "";
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-label span::before {
    transform: translateY(-7px);
}

.nav-toggle-label span::after {
    transform: translateY(5px);
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.primary-nav ul {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-nav li {
    position: relative;
}

.primary-nav a:not(.btn) {
    color: var(--color-ink);
    font-size: 0.9rem;
    font-weight: 750;
    transition: color 180ms ease;
}

.primary-nav a:not(.btn):hover {
    color: var(--color-teal);
}

.primary-nav .menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.primary-nav .menu-item-has-children > a::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    content: "";
    transform: translateY(-2px) rotate(45deg);
    transition: transform 180ms ease;
}

.primary-nav .sub-menu {
    position: absolute;
    z-index: 40;
    top: calc(100% + 18px);
    left: -18px;
    display: grid;
    min-width: 240px;
    gap: 0;
    padding: 12px;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.primary-nav .sub-menu::before {
    position: absolute;
    top: -18px;
    right: 0;
    left: 0;
    height: 18px;
    content: "";
}

.primary-nav .sub-menu a:not(.btn) {
    display: block;
    padding: 11px 12px;
    font-size: 0.92rem;
    line-height: 1.25;
    border-radius: calc(var(--radius) - 4px);
}

.primary-nav .sub-menu a:not(.btn):hover,
.primary-nav .sub-menu a:not(.btn):focus-visible {
    color: var(--color-teal);
    background: var(--color-teal-soft);
}

.primary-nav .menu-item-has-children:hover > .sub-menu,
.primary-nav .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.primary-nav .menu-item-has-children:hover > a::after,
.primary-nav .menu-item-has-children:focus-within > a::after {
    transform: translateY(2px) rotate(225deg);
}

.primary-nav .sub-menu .sub-menu {
    top: -12px;
    left: calc(100% + 12px);
}

.primary-nav .sub-menu .menu-item-has-children > a {
    justify-content: space-between;
}

.primary-nav .sub-menu .menu-item-has-children > a::after {
    transform: rotate(-45deg);
}

.submenu-toggle {
    display: none;
}

@media (max-width: 960px) {
    .topbar__inner {
        justify-content: center;
    }

    .topbar__links {
        display: none;
    }

    .nav {
        min-height: 76px;
    }

    .brand {
        position: relative;
        z-index: 31;
    }

    .nav-toggle-label {
        display: grid;
        position: relative;
        z-index: 31;
    }

    .primary-nav {
        position: fixed;
        z-index: 30;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
        width: auto;
        max-width: none;
        height: 100dvh;
        padding: 112px 32px 32px;
        overflow-y: auto;
        background: var(--color-white);
        border: 0;
        border-radius: 0;
        box-shadow: -18px 0 42px rgba(23, 38, 90, 0.2);
        clip-path: inset(0 0 0 100%);
        opacity: 0;
        pointer-events: none;
        transition: clip-path 300ms ease, opacity 220ms ease;
    }

    .primary-nav ul {
        display: grid;
        gap: 4px;
    }

    .primary-nav li {
        position: relative;
    }

    .primary-nav a:not(.btn) {
        display: block;
        width: 100%;
        padding: 13px 0;
        font-size: 1.1rem;
    }

    .primary-nav .menu-item-has-children > a {
        display: block;
        padding-right: 52px;
    }

    .primary-nav .menu-item-has-children > a::after {
        display: none;
    }

    .submenu-toggle {
        position: absolute;
        top: 2px;
        right: 0;
        display: grid;
        width: 44px;
        height: 44px;
        padding: 0;
        place-items: center;
        color: var(--color-ink);
        background: transparent;
        border: 0;
        cursor: pointer;
    }

    .submenu-toggle::before {
        display: block;
        width: 8px;
        height: 8px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        content: "";
        transform: translateY(-2px) rotate(45deg);
        transition: transform 180ms ease;
    }

    .primary-nav .sub-menu,
    .primary-nav .sub-menu .sub-menu {
        position: static;
        display: grid;
        max-height: 0;
        min-width: 0;
        margin: 0;
        padding: 0 0 0 18px;
        overflow: hidden;
        background: transparent;
        border: 0;
        border-left: 1px solid var(--color-line);
        border-radius: 0;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        transform: none;
        pointer-events: none;
        transition: max-height 240ms ease, opacity 180ms ease, visibility 180ms ease, margin 180ms ease;
    }

    .primary-nav .menu-item-has-children:hover > .sub-menu,
    .primary-nav .menu-item-has-children:focus-within > .sub-menu {
        max-height: 0;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .primary-nav .menu-item-has-children:hover > a::after,
    .primary-nav .menu-item-has-children:focus-within > a::after {
        display: none;
    }

    .primary-nav .menu-item-has-children.is-submenu-open > .sub-menu {
        max-height: 1200px;
        margin: 2px 0 10px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .primary-nav .menu-item-has-children.is-submenu-open > .submenu-toggle::before {
        transform: translateY(2px) rotate(225deg);
    }

    .primary-nav .sub-menu::before {
        display: none;
    }

    .primary-nav .sub-menu a:not(.btn) {
        padding: 10px 0;
        color: var(--color-muted);
        font-size: 0.98rem;
        border-radius: 0;
    }

    .primary-nav .sub-menu a:not(.btn):hover,
    .primary-nav .sub-menu a:not(.btn):focus-visible {
        background: transparent;
    }

    .primary-nav > .btn {
        display: none;
    }



    .nav-toggle-label.is-nav-open span {
        transform: rotate(45deg);
    }

    .nav-toggle-label.is-nav-open span::before {
        transform: rotate(90deg);
    }

    .nav-toggle-label.is-nav-open span::after {
        opacity: 0;
    }

    .primary-nav.is-nav-open {
        opacity: 1;
        pointer-events: auto;
        clip-path: inset(0);
    }
}

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

    .brand img {
        width: 205px;
    }
}

/* wp-content/themes/fast-custom-theme/assets/css/landing/content.css */
.hero {
    position: relative;
    min-height: calc(100vh - 125px);
    padding: 88px 0 58px;
    overflow: hidden;
}

.hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 130px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--color-white));
    content: "";
}

.hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 680px) minmax(260px, 360px);
    gap: 58px;
    align-items: end;
}

.hero__copy {
    color: var(--color-white);
    animation: heroIn 760ms ease both;
}

.hero .eyebrow {
    color: var(--color-sky);
}

.hero h1 {
    margin: 0;
    max-width: 720px;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 6.7rem);
    line-height: 0.94;
}

.hero__lead {
    max-width: 660px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero__actions .btn-secondary {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.34);
}

.hero .btn-primary,
.cta .btn-primary {
    color: var(--color-ink);
    background: rgb(253, 185, 45);
    box-shadow: 0 14px 28px rgba(253, 185, 45, 0.36);
}

.hero .btn-primary:hover,
.cta .btn-primary:hover {
    background: #e3a41f;
    box-shadow: 0 18px 34px rgba(253, 185, 45, 0.46);
}

.page-hero {
    padding: 112px 0;
    background:
        linear-gradient(90deg, rgba(23, 38, 90, 0.92), rgba(23, 38, 90, 0.7), rgba(23, 38, 90, 0.28)) center / cover;
}

.page-hero--financing {
    background:
        linear-gradient(90deg, rgba(23, 38, 90, 0.92), rgba(23, 38, 90, 0.7), rgba(23, 38, 90, 0.28)),
        url("/wp-content/uploads/2026/07/dental-patient-pay.webp") center / cover;
}

.page-hero__grid {
    display: block;
}

.page-hero__content {
    max-width: 760px;
}

.page-hero h1 {
    margin: 0;
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 5.4rem);
    line-height: 0.98;
}

.page-hero .eyebrow {
    color: var(--color-sky);
}

.page-hero p:not(.eyebrow) {
    max-width: 620px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.page-hero__actions .btn-primary {
    color: var(--color-ink);
    background: rgb(253, 185, 45);
    box-shadow: 0 14px 28px rgba(253, 185, 45, 0.36);
}

.page-hero__actions .btn-primary:hover {
    background: #e3a41f;
    box-shadow: 0 18px 34px rgba(253, 185, 45, 0.46);
}

.page-hero__actions .btn-secondary {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.34);
}

.hero__panel {
    position: relative;
    z-index: 1;
    padding: 28px;
    color: var(--color-ink);
    background: rgba(255, 255, 255, 0.93);
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    animation: heroIn 820ms 120ms ease both;
}

.hero__panel strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.18rem;
}

.hero__panel p {
    margin: 0 0 18px;
    color: var(--color-muted);
}

.hero__facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 46px;
}

.hero__fact {
    padding-top: 18px;
    color: rgba(255, 255, 255, 0.82);
    border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.hero__fact b {
    display: block;
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1;
}

@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.check-list {
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    align-items: start;
}

.check-list svg {
    margin-top: 2px;
    color: var(--color-teal);
}


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

.service-card {
    min-height: 100%;
    padding: 30px;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: 0 8px 20px rgba(19, 51, 63, 0.05);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(33, 51, 108, 0.35);
    box-shadow: var(--shadow-card);
}

.service-card__icon {
    display: grid;
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    place-items: center;
    color: var(--color-teal);
    background: var(--color-teal-soft);
    border-radius: 999px;
    padding: 12px;
}

.service-card h3 {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: 1.55rem;
    line-height: 1.1;
}

.service-card p {
    margin: 0;
    color: var(--color-muted);
}


.gallery {
    padding: 88px 0;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.gallery__grid img {
    width: 100%;
    height: clamp(280px, 24vw, 360px);
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform 220ms ease, filter 220ms ease;
}

.gallery__grid img:nth-child(2) {
    margin-top: 0;
}

.gallery__grid img:hover {
    transform: translateY(-6px);
    filter: saturate(1.08);
}

.cta {
    padding: 82px 0;
    color: var(--color-white);
    background:
        linear-gradient(90deg, rgba(23, 38, 90, 0.92), rgba(23, 38, 90, 0.74)),
        url("https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?auto=format&fit=crop&w=1600&q=85") center / cover;
}

.cta__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

.cta h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
}

.cta h2,
.cta p {
    color: var(--color-white);
}

.cta p {
    max-width: 680px;
    margin-bottom: 0;
    opacity: 0.88;
}

@media (max-width: 980px) {
    .hero {
        min-height: auto;
        padding: 70px 0 46px;
    }

    .hero__content,
    .cta__inner {
        grid-template-columns: 1fr;
    }

    .hero__panel {
        max-width: 520px;
    }

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

@media (max-width: 700px) {
    .hero {
        padding: 58px 0 40px;
    }

    .page-hero {
        padding: 64px 0;
    }

    .hero__facts,
    .service-grid,
    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .hero__actions {
        display: grid;
    }

    .hero__panel {
        padding: 22px;
    }

    .gallery {
        padding: 64px 0;
    }

    .gallery__grid img,
    .gallery__grid img:nth-child(2) {
        height: 280px;
        margin-top: 0;
    }
}

/* wp-content/themes/fast-custom-theme/assets/css/landing/footer.css */
.location {
    padding: 88px 0;
    color: var(--color-ink);
    background: var(--color-teal-soft);
}

.location__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 58px;
    align-items: center;
}

.location h2 {
    margin: 0;
    color: var(--color-ink);
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
}

.location__links {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.location__links a {
    display: inline-grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    align-items: center;
    width: fit-content;
    color: #536972;
    font-weight: 650;
    transition: color 180ms ease, transform 180ms ease;
}

.location__links a:hover {
    color: var(--color-teal-dark);
    transform: translateX(3px);
}

.location__links svg {
    width: 38px;
    height: 38px;
    padding: 9px;
    color: var(--color-teal);
    background: var(--color-white);
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(19, 51, 63, 0.08);
}

.location__hours {
    margin-top: 32px;
    padding-top: 26px;
    border-top: 1px solid rgba(33, 51, 108, 0.2);
}

.location__hours h3 {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: 1.4rem;
}

.location__hours dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.location__hours dl div {
    display: grid;
    grid-template-columns: minmax(150px, 1fr) auto;
    gap: 20px;
}

.location__hours dt {
    font-weight: 750;
}

.location__hours dd {
    margin: 0;
    color: #536972;
}

.location__map {
    min-height: 460px;
    overflow: hidden;
    border: 8px solid var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.location__map iframe {
    display: block;
    width: 100%;
    height: 460px;
    border: 0;
}

.landing-footer {
    color: rgba(255, 255, 255, 0.82);
    background: var(--color-teal-dark);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
    gap: 34px;
    padding: 62px 0 42px;
}

.footer__brand img {
    width: 230px;
    padding: 12px;
    background: var(--color-white);
    border-radius: var(--radius);
}

.footer__brand p {
    margin: 20px 0 0;
}

.footer__grid h2,
.footer__grid h3 {
    margin: 0 0 18px;
    color: var(--color-white);
    font-size: 1rem;
}

.footer__grid ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer__grid a {
    transition: color 180ms ease;
}

.footer__grid a:hover {
    color: var(--color-gold);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.88rem;
}

.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.mobile-bottom-bar {
    display: none;
}

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

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

@media (max-width: 700px) {
    .location {
        padding: 64px 0;
    }

    .location__hours dl div {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .location__map,
    .location__map iframe {
        min-height: 360px;
        height: 360px;
    }
}

@media (max-width: 620px) {
    .footer__grid,
    .footer__bottom {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        display: grid;
        gap: 28px;
    }

    .footer__bottom {
        display: grid;
        justify-items: start;
    }

    body {
        padding-bottom: 64px;
    }

    nav.mobile-bottom-bar {
        position: fixed;
        z-index: 25;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 64px;
        width: 100%;
        height: 64px;
        min-height: 0;
        max-height: 64px;
        overflow: hidden;
        color: var(--color-white);
        background: var(--color-teal);
        box-shadow: 0 -8px 24px rgba(23, 38, 90, 0.2);
        opacity: 0;
        pointer-events: none;
        transform: translateY(100%);
        transition: transform 220ms ease, opacity 180ms ease;
    }

    .mobile-bottom-bar.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    nav.mobile-bottom-bar > .mobile-bottom-bar__link {
        display: inline-flex;
        box-sizing: border-box;
        grid-row: 1;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        height: 64px;
        min-width: 0;
        min-height: 0;
        max-width: none;
        padding: 10px 8px;
        color: var(--color-white);
        font-size: 1.2rem;
        font-weight: 750;
        text-align: center;
        white-space: nowrap;
    }

    nav.mobile-bottom-bar > .mobile-bottom-bar__link:first-child {
        grid-column: 1;
    }

    nav.mobile-bottom-bar > .mobile-bottom-bar__link:last-child {
        grid-column: 2;
    }

    .mobile-bottom-bar__link + .mobile-bottom-bar__link {
        border-left: 1px solid rgba(255, 255, 255, 0.22);
    }

    .mobile-bottom-bar__link:hover {
        color: var(--color-white);
        background: rgba(255, 255, 255, 0.1);
    }

    .mobile-bottom-bar__link svg {
        flex: 0 0 auto;
        width: 28px;
        height: 28px;
    }
}
