/* ==========================================================================
   Press and Berman — base
   ========================================================================== */

:root {
    --color-primary: #0a50a1;
    --color-heading: #201d2a;
    --color-body: #5a595e;
    --color-bg-tint: #f1f5f9;
    --color-white: #ffffff;
    --font-serif: 'Gelasio', Georgia, serif;
    --font-sans: 'Poppins', Arial, sans-serif;
    --container-max: 1480px;
    --container-padding: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--color-body);
    background-color: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
p {
    margin: 0;
}

h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--color-heading);
    text-transform: uppercase;
    font-size: 48px;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

section {
    position: relative;
}

/* Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.btn:hover {
    opacity: 0.88;
}

.btn--primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn--outline {
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn--outline-white {
    background: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn--lg {
    padding: 16px 28px;
    font-size: 17px;
}

.btn__icon {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 48px;
    background: var(--color-white);
    position: sticky;
    z-index: 50;
    top: 0;
}



.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-nav__links {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.site-nav__links a {
    font-size: 17px;
    color: var(--color-heading);
}

.site-nav__links a.is-accent {
    color: var(--color-primary);
}

.site-nav__links .is-active>a:not(.is-accent) {
    color: var(--color-primary);
    font-weight: 600;
}

.nav-dropdown a.is-active {
    color: var(--color-primary);
    background: var(--color-bg-tint);
    font-weight: 500;
}

/* Dropdown nav
   ========================================================================== */

.site-nav__links .has-dropdown {
    position: relative;
}

.site-nav__links .has-dropdown>a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-chevron {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.has-dropdown:hover .nav-chevron,
.has-dropdown:focus-within .nav-chevron {
    transform: rotate(180deg);
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 210px;
    background: var(--color-white);
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
    padding: 8px 0;
    z-index: 100;
    list-style: none;
    margin: 0;
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--color-white);
}

.nav-dropdown li a {
    display: block;
    padding: 11px 20px;
    font-size: 15px;
    color: var(--color-heading);
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}

.nav-dropdown li a:hover {
    background: var(--color-bg-tint);
    color: var(--color-primary);
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
    display: block;
}

/* Mobile nav group (dropdown children in mobile menu)
   ========================================================================== */

.mobile-nav__group-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.12em;

    color: var(--color-primary);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.mobile-nav__group-chevron {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.mobile-nav__group-label[aria-expanded="true"] .mobile-nav__group-chevron {
    transform: rotate(180deg);
}

.mobile-nav__sub {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav__sub li {
    border-bottom: 1px solid #ececec;
}

.mobile-nav__sub a {
    display: block;
    padding: 14px 24px 14px 36px;
    font-size: 15px;
    color: var(--color-heading);
    font-weight: 500;
}

.site-nav .btn {
    padding: 10px 20px;
    font-size: 14px;
}

.site-header__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

.site-header__toggle span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: var(--color-heading);
}

/* ==========================================================================
   Mobile nav (off-canvas)
   ========================================================================== */

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 150;
}

.mobile-nav-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: var(--color-white);
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 200;
    display: flex;
    flex-direction: column;
}

.mobile-nav.is-open {
    transform: translateX(0);
}

.mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid #ececec;
    flex-shrink: 0;
}

.mobile-nav__logo {
    width: 90px;
    height: auto;
}

.mobile-nav__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f1f1;
    border: none;
    color: #333;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-nav__list {
    flex: 1;
    overflow-y: auto;
}

.mobile-nav__list li {
    border-bottom: 1px solid #ececec;
}

.mobile-nav__list a {
    display: block;
    padding: 18px 24px;
    font-weight: 600;
    font-size: 16px;
    color: var(--color-heading);
}

.mobile-nav__footer {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-top: 1px solid #ececec;
}

.mobile-nav__book {
    width: 100%;
}

.mobile-nav__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 15px;
}

body.nav-open {
    overflow: hidden;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 640px;
    padding: 80px 24px;
    text-align: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(23, 21, 29, 0.55);
}

.hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;
    max-width: 900px;
}

.hero__heading h1 {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 48px;
    line-height: 1.25;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 55px rgba(0, 0, 0, 0.2);
}

.hero__subheading {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 26px;
    letter-spacing: 0.02em;
    margin-top: 16px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

/* ==========================================================================
   Insurance strip
   ========================================================================== */

.insurance {
    background: var(--color-bg-tint);
    padding: 100px 24px;
}

.insurance__row {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.insurance__heading {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--color-heading);
    text-transform: uppercase;
    font-size: 26px;
    letter-spacing: 0.02em;
    max-width: 600px;
    flex: 1 1 320px;
}

.insurance__logos {
    position: relative;
    width: 220px;
    height: 130px;
    flex-shrink: 0;
    top: -18px;
}

.insurance__logo {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--color-white);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.insurance__logo--back {
    left: 0;
    top: 0;
}

.insurance__logo--front {
    left: 100px;
    top: 45px;
}

@media only screen and (max-width: 768px) {
    .insurance__heading {
        flex: unset;
    }

    h2.insurance__heading {
        text-align: center;
    }
}



/* ==========================================================================
   Services
   ========================================================================== */

.services {
    padding: 100px 24px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 922px;
}

.services__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 764px;
    box-shadow: 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.05), 0px 100px 80px rgba(0, 0, 0, 0.07);
}

.services__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services__intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.services__eyebrow {
    font-family: var(--font-serif);
    font-size: 20px;
    text-transform: uppercase;
    color: var(--color-heading);
}

.services__body {
    max-width: var(--container-max);
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.services__photo {
    /* flex: 1 1 320px; */
    max-width: 623px;
    width: 100%;
    height: 554px;
    box-shadow: 0 30px 24px rgba(0, 0, 0, 0.05);
}

.services__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services__details {
    /* flex: 1 1 500px; */
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    width: 100%;
    max-width: fit-content;
}

.services__lead {
    color: var(--color-body);
    font-size: 16px;
    margin-bottom: 24px;
}

.services__columns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
}

.services__list {
    flex: 1 1 200px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.services__list li {
    position: relative;
    padding-left: 18px;
    font-size: 16px;
    color: var(--color-body);
}

.services__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
}

@media screen and (max-width: 991px) {
    .ds-split__image {

        box-shadow: 13px 13px 0 #dce3ee !important;
    }

    .ds-split__inner--reverse .ds-split__image {
        box-shadow: -13px 13px 0 #dce3ee !important;
    }


    .page-banner {

        padding: 90px 24px !important;

    }

    .services__bg {
        height: 100%;
    }

    .services__body {
        flex-wrap: wrap;
    }
}

/* ==========================================================================
   Why choose banner (shared pattern)
   ========================================================================== */

.why-choose {
    padding: 100px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.why-choose--tinted {
    background: #F1F5F9;
}

.why-choose__heading {
    max-width: 1192px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-choose__heading h2 {

    max-width: 932px;
    width: 100%;
    margin: auto;
}

.why-choose__heading p {
    font-size: 18px;
    color: var(--color-body);
}

/* ==========================================================================
   Dentist slider
   ========================================================================== */

.dentist-slider {
    padding: 65px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding-left: 6.3%;
    overflow: hidden;
}

.dentist-slider__slide {
    position: relative;
    width: 100%;
    /* max-width: var(--container-max); */
    background: #17151d;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    padding-bottom: 100px;
    justify-content: left;
    padding-left: 94px;
    padding-right: 80px;
}

.dentist-slider__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dentist-slider__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    gap: 60px;
    padding: 0;
}

.dentist-slider__photo {
    max-width: 674px;
    width: 100%;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
    margin-top: -69px;
}

.dentist-slider__content {
    max-width: 758px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 40px;
}

.dentist-slider__content h2 {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
}

.dentist-slider__content p {
    color: var(--color-white);
    font-size: 20px;
    font-weight: 400;
}

.dentist-slider__content a {
    width: 100%;
    max-width: fit-content;
}

.dentist-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 2;
}

.dentist-slider__arrow--prev {
    left: 16px;
}

.dentist-slider__arrow--next {
    right: 16px;
}

.dentist-slider__arrow.slick-disabled {
    opacity: 0;
    pointer-events: none;
}

.dentist_slider_container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Slick calculates slide widths assuming content-box; the site's global
   `* { box-sizing: border-box; }` reset otherwise inflates .slick-track /
   .slick-slide to a huge miscalculated width. */
.dentist_slider_container.slick-slider,
.dentist_slider_container .slick-list,
.dentist_slider_container .slick-track,
.dentist_slider_container .slick-slide {
    box-sizing: content-box;
}

.dentist_slider_container .slick-list {
    overflow: unset !important;
}

.dentist-slider__dots .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.dentist-slider__dots .slick-dots li {
    display: flex;
}

.dentist-slider__dots .slick-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #d5d5d5;
    text-indent: -9999px;
    cursor: pointer;
}

.dentist-slider__dots .slick-dots li.slick-active button {
    background: var(--color-primary);
}

.dentist-slider__dots:has(.slick-dots li:only-child) {
    display: none;
}

@media only screen and (max-width: 480px) {}

@media only screen and (max-width: 575px) {
    .dentist-slider__slide {
        padding: 40px 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .dentist-slider__slide {
        padding: 50px 30px;
    }
}

@media only screen and (max-width: 767px) {
    .dentist-slider {
        padding-left: 0 !important;
    }
}

@media only screen and (min-width: 576px) and (max-width: 991px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .dentist-slider {
        padding-left: 4.3%;
    }

    .dentist-slider__slide {
        padding: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .dentist-slider {
        padding: 0 0 20px !important;
    }

    .dentist-slider__inner {
        flex-wrap: wrap;
    }

    .dentist-slider__content {
        padding-top: 0;
    }

    .dentist-slider__photo {
        margin-top: 0 !important;
        max-width: 450px;
    }

    .dentist-slider__content {
        max-width: 100%;
    }

    .dentist-slider__content p {
        font-size: 16px !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {}

@media only screen and (min-width: 1025px) and (max-width: 1140px) {}

@media only screen and (min-width: 991px) and (max-width: 1280px) {
    .dentist-slider__inner {
        align-items: center !important;
    }

    .dentist-slider__content p {
        font-size: 18px;
    }

    .dentist-slider__slide {
        padding-left: 50px;
        padding-bottom: 60px;
    }

    .dentist-slider__photo {
        margin-top: 0 !important;
    }
}

@media only screen and (min-width: 1281px) and (max-width: 1440px) {
    .dentist-slider__content p {
        font-size: 18px;
    }

    .dentist-slider__slide {
        padding-left: 50px;
        padding-bottom: 60px;
    }
}

@media only screen and (min-width: 1441px) and (max-width: 1550px) {
    .dentist-slider__slide {
        padding-left: 50px;
        padding-bottom: 60px;
    }
}

@media only screen and (min-width: 1141px) {
    .dentist-slider__content h2 {
        font-size: 48px;
    }
}

/* ==========================================================================
   Implant provider
   ========================================================================== */

.implant-provider {
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

.implant-provider__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    max-height: 606px;
    box-shadow: 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.05), 0px 100px 80px rgba(0, 0, 0, 0.07);
}

.implant-provider__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.implant-provider__inner h2 {
    text-align: center;
    max-width: 1170px;
    width: 100%;
    margin: auto;
}

.implant-provider__row {
    display: flex;
    gap: 60px;
}

.implant-provider__text {
    font-size: 18px;
    width: 100%;
    max-width: 710px;
    height: fit-content;
    padding-top: 24px;
}

.implant-provider__photo {
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.04);
    max-width: 710px;
    width: 100%;
}

@media only screen and (max-width: 480px) {}

@media only screen and (max-width: 575px) {}

@media only screen and (min-width: 576px) and (max-width: 767px) {}

@media only screen and (max-width: 767px) {
    .implant-provider__inner {
        gap: 40px !important;
    }
}

@media only screen and (min-width: 576px) and (max-width: 991px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (max-width: 991px) {
    .implant-provider__row {
        flex-direction: column-reverse !important;
    }

    .implant-provider__text {
        max-width: 100%;
    }

    .implant-provider__photo {
        max-width: 100%;
    }

    .implant-provider__text {
        padding-top: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {}

@media only screen and (min-width: 1025px) and (max-width: 1140px) {}

@media only screen and (max-width: 1280px) {
    .implant-provider__bg {
        max-height: 100%;
    }
}

@media only screen and (min-width: 1281px) and (max-width: 1440px) {}

/* ==========================================================================
   Comparison
   ========================================================================== */

.comparison {
    padding: 0 24px 100px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.comparison h2 {
    text-align: center;
}

.comparison__divider {
    width: 140px;
    height: 2px;
    background: rgba(10, 80, 161, 0.5);
}

.comparison__cards {
    display: flex;
    gap: 42px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: var(--container-max);
    width: 100%;
}

.comparison__card {
    flex: 1 1 380px;
    max-width: 480px;
    background: var(--color-white);
    border: 1px solid #fafafa;
    box-shadow: 0px 4px 12px rgba(191, 191, 191, 0.45);
}

.comparison__card-head {
    border-bottom: 2px solid #f3f3f3;
    padding: 24px;
    text-align: center;
}

.comparison__card-head p {
    font-weight: 600;
    font-size: 22px;
}

.comparison__card--pro .comparison__card-head p {
    color: #0068b5;
}

.comparison__card--con .comparison__card-head p {
    color: var(--color-heading);
}

.comparison__list {
    padding: 8px 0;
}

.comparison__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
}

.comparison__list img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.comparison__list span {
    font-size: 15px;
    color: var(--color-body);
}

.comparison a.btn.btn--primary {
    margin-top: 16px;
}

/* ==========================================================================
   Teeth options
   ========================================================================== */

.teeth-options {
    padding: 80px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.teeth-options__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.teeth-options__divider {
    width: 140px;
    height: 2px;
    background: rgba(10, 80, 161, 0.5);
}

.teeth-options__cards {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
    max-width: var(--container-max);
    width: 100%;
}

.teeth-options__card {
    flex: 1 1 300px;
    max-width: 340px;
    background: var(--color-white);
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.teeth-options__card--shaded {
    background: #f1f0f7;
}

.teeth-options__card-head {
    padding: 32px 0 10px;
}

.teeth-options__name {
    font-size: 24px;
    color: var(--color-body);
    margin-bottom: 10px;
}

.teeth-options__type {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #bc8451;
}

.teeth-options__image {
    position: relative;
    width: 100%;
}

.teeth-options__image-label {
    position: absolute;
    left: 50%;
    top: 12%;
    transform: translateX(-50%);
    background: #03070a;
    color: var(--color-white);
    padding: 12px 24px;
    font-size: 20px;
    text-align: center;
    white-space: nowrap;
}

.teeth-options__features {
    width: 100%;
    padding: 20px 0;
}

.teeth-options__features li {
    padding: 12px 0;
    border-bottom: 1px solid #ccc;
    font-size: 15px;
}

.teeth-options__price {
    width: 100%;
    text-align: center;
    margin-top: 8px;
}

.teeth-options__disclaimer {
    padding: 14px 0;
    font-size: 14px;
}

/* ==========================================================================
   Removable options
   ========================================================================== */

.removable-options {
    padding: 100px 24px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.removable-options__top,
.removable-options__bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.removable-options__top h2,
.removable-options__bottom h2 {
    text-align: center;
}

.removable-options__divider {
    width: 140px;
    height: 2px;
    background: rgba(10, 80, 161, 0.5);
}

.removable-options__grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
    width: 100%;
}

.removable-options__item {
    flex: 1 1 340px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.removable-options__item-head {
    text-align: center;
}

.removable-options__implants {
    font-size: 22px;
    color: var(--color-heading);
    font-weight: 500;
}

.removable-options__type {
    color: var(--color-primary);
    font-size: 20px;
    letter-spacing: 0.02em;
}

.removable-options__image {
    width: 100%;
}

.removable-options__caption {
    font-size: 18px;
}

.removable-options__ideal-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 18px 30px;
    width: 100%;
    max-width: 1230px;
    margin: auto;
}

.removable-options__ideal-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
}

.removable-options__ideal-list img {
    width: 7px;
    margin-top: 0;
    height: 7px;
    object-fit: cover;
}

.removable-options__bottom a.btn.btn--primary {
    margin-top: 16px;
}

/* ==========================================================================
   Ready CTA
   ========================================================================== */

.ready-cta {
    padding: 0 24px 100px 24px;
}

.ready-cta__card {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.15);
}

.ready-cta__text {
    position: relative;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 38px;
    overflow: hidden;
    max-width: 840px;
    width: 100%;
}

.ready-cta__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.ready-cta__copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.ready-cta__copy h2 {
    color: var(--color-white);
    font-size: 64px;
}

.ready-cta__copy p {
    color: var(--color-white);
    font-size: 32px;
    max-width: 683px;
    width: 100%;
}

.ready-cta__text>.btn {
    position: relative;
    z-index: 1;
}

.ready-cta__photo {
    background: var(--color-bg-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    max-width: 640px;
    width: 100%;
}

@media only screen and (max-width: 480px) {}

@media only screen and (max-width: 575px) {}

@media only screen and (min-width: 576px) and (max-width: 767px) {}

@media only screen and (max-width: 782px) {}

@media only screen and (min-width: 576px) and (max-width: 991px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .ready-cta__copy h2 {
        font-size: 40px;
    }

    .ready-cta__copy p {
        font-size: 22px;
    }
}

@media only screen and (max-width: 991px) {
    .ready-cta__card {
        flex-wrap: wrap;
    }

    .ready-cta__text,
    .ready-cta__photo {
        max-width: 100% !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1280px) {
    .ready-cta__copy h2 {
        font-size: 40px;
    }

    .ready-cta__copy p {
        font-size: 22px;
    }
}

@media only screen and (min-width: 1281px) and (max-width: 1440px) {
    .ready-cta__copy h2 {
        font-size: 48px;
    }

    .ready-cta__copy p {
        font-size: 26px;
    }
}

@media only screen and (min-width: 1441px) and (max-width: 1680px) {
    .ready-cta__copy h2 {
        font-size: 55px;
    }
}

@media only screen and (min-width: 1681px) and (max-width: 1880px) {}

/* ==========================================================================
   Guide form
   ========================================================================== */

.guide-form {
    background: var(--color-bg-tint);
    padding: 80px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
}

.guide-form__heading {
    max-width: 900px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.guide-form__heading p {
    font-size: 18px;
}

.guide-form__divider {
    width: 140px;
    height: 2px;
    background: rgba(10, 80, 161, 0.5);
}

.guide-form__body {
    max-width: var(--container-max);
    width: 100%;
    display: flex;
    gap: 56px;
    flex-wrap: wrap;
    justify-content: center;
}

.guide-form__form {
    flex: 1 1 480px;
    max-width: 653px;
    background: var(--color-white);
    border: 2px dashed #525252;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.guide-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.guide-form__field label {
    font-weight: 600;
    font-size: 17px;
    color: #232323;
}

.guide-form__field input {
    background: #f5f5f5;
    border: none;
    padding: 14px 10px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--color-heading);
}

.guide-form__field input::placeholder {
    color: #6d6c69;
}

.guide-form__consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #525252;
}

.guide-form__consent input {
    margin-top: 4px;
}

.guide_form__field_consent {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #525252;
    cursor: pointer;
}

.consent-label input {
    margin-top: 4px;
    flex-shrink: 0;
}

.guide_form__field_agree_text {
    margin: 0;
    font-size: 13px;
    color: #525252;
}

.guide_form__field_agree_text a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cf-hint {
    display: none;
    margin-top: 4px;
    font-size: 13px;
    color: #c0392b;
}

.guide-form__submit-btn {
    position: relative;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.guide-form__submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.guide-form__spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: var(--color-white);
    border-radius: 50%;
    animation: guide-form-spin 0.7s linear infinite;
}

@keyframes guide-form-spin {
    to {
        transform: rotate(360deg);
    }
}

.guide-form__side {
    flex: 1 1 380px;
    max-width: 411px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.guide-form__covers {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
}

.guide-form__cover {
    max-width: 65%;
    box-shadow: 3px 5px 12px rgba(0, 0, 0, 0.25);
}

.guide-form__cover--back {
    position: absolute;
    right: 0;
    top: 10%;
}

.guide-form__cover--front {
    position: relative;
    left: -10%;
    transform: rotate(-8deg);
}

.guide-form__points p {
    font-weight: 600;
    font-size: 20px;
    color: #525252;
    margin-bottom: 12px;
}

.guide-form__points ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.guide-form__points li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 17px;
    color: #525252;
}

.guide-form__points img {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    position: relative;
    padding: 40px 24px;
    overflow: hidden;
}

.site-footer__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.site-footer__top {
    max-width: var(--container-max);
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.site-footer__address,
.site-footer__hours {
    color: var(--color-primary);
    font-weight: 300;
    font-size: 17px;
}

.site-footer__hours {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.site-footer__logo img {
    width: 120px;
}

.site-footer__bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 24px;
}

.site-footer__rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-footer__score {
    color: var(--color-primary);
    font-size: 42px;
    font-weight: 300;
}

.site-footer__stars {
    display: flex;
    gap: 4px;
}

.site-footer__stars img {
    width: 14px;
    height: 14px;
}

.site-footer__reviews-count {
    color: var(--color-primary);
    font-size: 13px;
}

.site-footer__review-link {
    display: block;
    margin-top: 8px;
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
}

.site-footer__legal {
    text-align: center;
    color: var(--color-body);
    font-size: 14px;
}

.site-footer__legal p:first-child {
    margin-bottom: 4px;
}

.site-footer__legal a {
    color: var(--color-body);
}

.site-footer__legal span {
    margin: 0 4px;
}

.site-footer__social {
    display: flex;
    align-items: center;
    gap: 17px;
    color: var(--color-primary);
    text-transform: uppercase;
    font-size: 16px;
}

.site-footer__social img {
    width: 14px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Mobile navigation breakpoint — hamburger + off-canvas panel take over */
@media (max-width: 1300px) {
    .site-header {
        padding: 14px 24px;
    }

    .site-nav {
        display: none;
    }

    .site-header__toggle {
        display: flex;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    h2 {
        font-size: 32px;
    }

    .hero {
        min-height: 520px;
        padding: 64px 24px;
    }

    .hero__heading h1 {
        font-size: 40px;
    }

    .hero__subheading {
        font-size: 22px;
    }

    .services,
    .implant-provider,
    .comparison,
    .teeth-options,
    .removable-options,
    .ready-cta,
    .guide-form,
    .why-choose,
    .dentist-slider,
    .insurance {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .services__body,
    .implant-provider__row {
        gap: 32px;
    }

    .comparison__cards,
    .teeth-options__cards {
        gap: 24px;
    }

    .removable-options {
        gap: 64px;
    }

    .removable-options__ideal-list {
        grid-template-columns: 1fr;
    }

    .site-footer__top {
        gap: 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    h2 {
        font-size: 28px;
    }

    .hero {
        min-height: 0;
        padding: 56px 20px;
    }

    .hero__heading h1 {
        font-size: 32px;
    }

    .hero__subheading {
        font-size: 20px;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .btn {
        white-space: normal;
        text-align: center;
    }

    .site-header {
        padding: 12px 20px;
    }

  

    .insurance__row,
    .services__body,
    .implant-provider__row,
    .ready-cta__card {
        flex-direction: column;
    }

    .insurance__logos {
        width: 200px;
        height: 120px;
    }

    .dentist-slider__content h2 {
        font-size: 28px;
    }

    .comparison__cards,
    .teeth-options__cards {
        flex-direction: column;
        align-items: center;
    }

    .comparison__card,
    .teeth-options__card {
        width: 100%;
        max-width: 420px;
    }

    .removable-options__grid {
        gap: 32px;
    }

    .removable-options__item {
        width: 100%;
    }

    .guide-form__cover--back,
    .guide-form__cover--front {
        position: static;
        transform: none;
        max-width: 45%;
    }

    .guide-form__covers {
        gap: 12px;
    }

    .guide-form__form {
        padding: 20px;
    }

    .site-footer__top,
    .site-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .site-footer__hours {
        text-align: center;
    }
}

/* Small mobile */
@media (max-width: 575px) {
    .btn {
        width: 100%;
        padding: 14px 16px;
        font-size: 15px;
        letter-spacing: 0.5px;
    }

    h2 {
        font-size: 24px;
    }

    .hero__heading h1 {
        font-size: 26px;
        letter-spacing: 0.01em;
    }

    .hero__subheading {
        font-size: 17px;
    }



    .services__intro,
    .why-choose__heading,
    .teeth-options__heading,
    .removable-options__top,
    .removable-options__bottom,
    .guide-form__heading {
        gap: 16px;
    }

    .insurance__row {
        text-align: center;
        align-items: center;
    }

    .insurance__heading {
        font-size: 20px;
        text-align: center;
    }

    .dentist-slider__content h2 {
        font-size: 24px;
    }

    .ready-cta__copy h2 {
        font-size: 28px;
    }

    .ready-cta__copy p {
        font-size: 18px;
    }

    .ready-cta__text {
        padding: 32px 24px;
    }

    .ready-cta__photo {
        padding: 24px;
    }

    .site-footer__score {
        font-size: 34px;
    }

    .mobile-nav {
        width: 100%;
        max-width: 100%;
    }

    .dentist_slider_container button.dentist-slider__arrow {
        display: none !important;
    }
}


/*--------------------*/

.map_sec_container {
    line-height: 0;
}

@media only screen and (max-width: 767px) {
    .map_sec_container iframe {
        height: 400px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .map_sec_container iframe {
        height: 500px;
    }
}

/* ==========================================================================
   Thank you page
   ========================================================================== */

.thank-you {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px;
    text-align: center;
}

.thank-you__card {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.thank-you__card h1 {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--color-heading);
    text-transform: uppercase;
    font-size: 40px;
}

.thank-you__card p {
    font-size: 17px;
    color: var(--color-body);
}

/* ==========================================================================
   Page banner (Privacy Policy / Terms & Conditions / other inner pages)
   ========================================================================== */

.page-banner {
    background: var(--color-bg-tint);
    padding: 110px 24px;
    text-align: center;
}

.page-banner__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.page-banner h1 {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--color-heading);
    text-transform: uppercase;
    font-size: 40px;
    letter-spacing: 0.02em;
    margin: 0;
}

.page-banner__breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 15px;
    color: var(--color-body);
}

.page-banner__breadcrumbs a {
    color: var(--color-primary);
}

.page-banner__breadcrumbs a:hover {
    text-decoration: underline;
}

.page-banner__sep {
    color: var(--color-body);
}

/* ==========================================================================
   Legal pages (Privacy Policy / Terms & Conditions)
   ========================================================================== */

.page_content_wrap_blk {
    background: var(--color-white);
}

.legal-section.padd_top {
    padding-top: 80px;
}

.legal-section.padd_bottom {
    padding-bottom: 80px;
}

.legal-content.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.legal-content .section-title,
.legal-content h2.h2 {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--color-heading);
    font-size: 26px;
    line-height: 1.3;
    margin-top: 12px;
}

.legal-content h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--color-heading);
    font-size: 18px;
    margin: 0;
}

.legal-content .section-desc {
    font-size: 16px;
    color: var(--color-body);
    line-height: 1.7;
}

.legal-content .section-desc a {
    color: var(--color-primary);
    text-decoration: underline;
}

.legal-content .common-listing {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 20px;
    list-style: disc;
}

.legal-content .common-listing li {
    font-size: 16px;
    color: var(--color-body);
    line-height: 1.7;
}

@media (max-width: 575px) {
    .page-banner h1 {
        font-size: 28px;
    }

    .legal-section.padd_top {
        padding-top: 48px;
    }

    .legal-section.padd_bottom {
        padding-bottom: 48px;
    }

    .legal-content .section-title,
    .legal-content h2.h2 {
        font-size: 22px;
    }
}

/* ==========================================================================
   Hero — stack image above content below 991px
   (placed last so it wins over the older overlay-era padding/min-height
   rules in the tablet/mobile blocks above, without touching their
   font-size / button-stacking tweaks)
   ========================================================================== */

/* ==========================================================================
   Doctors Intro
   ========================================================================== */

.doctors-intro {
    background: var(--color-white);
    border-top: 4px solid var(--color-primary);
}

.doctors-intro__stats {
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 48px;
    flex-wrap: wrap;
}

.doctors-intro__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 36px 48px;
    flex: 1;
    min-width: 160px;
    text-align: center;
}

.doctors-intro__stat-number {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.doctors-intro__stat-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.doctors-intro__stat-sep {
    width: 1px;
    height: 52px;
    background: rgba(255, 255, 255, 0.22);
    flex-shrink: 0;
}

.doctors-intro__inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 56px 24px;
    text-align: center;
}

.doctors-intro__lead {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-body);
}

/* Doctor bio eyebrow */
.doctor-bio__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.doctor-bio__eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--color-primary);
    flex-shrink: 0;
}

/* ==========================================================================
   Doctor Bio
   ========================================================================== */

.doctor-bio {
    padding: 80px 24px;
    background: var(--color-white);
}

.doctor-bio--alt {
    background: var(--color-bg-tint);
}

.doctor-bio__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 72px;
    align-items: flex-start;
}

.doctor-bio--reverse .doctor-bio__inner {
    grid-template-columns: 1fr 360px;
}

.doctor-bio--reverse .doctor-bio__photo {
    order: 2;
}

.doctor-bio__photo img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
    display: block;
}

.doctor-bio__content h2 {
    font-size: 30px;
    margin-bottom: 28px;
    line-height: 1.2;
}

.doctor-bio__text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.doctor-bio__text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-body);
}

.doctor-bio__credentials h3 {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 600;
    color: var(--color-heading);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
}

.doctor-bio__credentials ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.doctor-bio__credentials li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--color-body);
    line-height: 1.5;
}

.doctor-bio__credentials li img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==========================================================================
   Team section
   ========================================================================== */

.team-section {
    padding: 80px 24px;
    background: var(--color-white);
}

.team-section__inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.team-section__header {
    text-align: center;
    margin-bottom: 56px;
}

.team-section__header h2 {
    margin-bottom: 14px;
}

.team-section__header p {
    font-size: 17px;
    color: var(--color-body);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.team-card {
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.09);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
}

.team-card__avatar {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 60px;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.02em;
    overflow: hidden;
}

.team-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-card__info {
    padding: 22px 24px 26px;
}

.team-card__name {
    font-family: var(--font-serif);
    font-size: 21px;
    font-weight: 600;
    color: var(--color-heading);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 5px;
}

.team-card__role {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--color-primary);
}

/* ==========================================================================
   Office Tour
   ========================================================================== */

.office-intro {
    padding: 64px 24px;
    background: var(--color-bg-tint);
    text-align: center;
}

.office-intro__inner {
    max-width: 860px;
    margin: 0 auto;
}

.office-intro__inner h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.office-intro__inner p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-body);
}

.office-features {
    padding: 80px 24px;
}

.office-features__inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.office-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.office-feature-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.office-feature-card:hover {
    transform: translateY(-4px);
}

.office-feature-card__image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.office-feature-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.office-feature-card:hover .office-feature-card__image img {
    transform: scale(1.05);
}

.office-feature-card__content {
    padding: 20px 24px 24px;
}

.office-feature-card__title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-heading);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.office-feature-card__desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--color-body);
}

.office-highlights {
    padding: 80px 24px;
    background: var(--color-bg-tint);
}

.office-highlights__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.office-highlights__heading {
    font-size: 34px;
    margin-bottom: 20px;
}

.office-highlights__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-body);
    margin-bottom: 28px;
}

.office-highlights__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.office-highlights__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--color-body);
    line-height: 1.5;
}

.office-highlights__list li img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.office-highlights__photo img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.13);
    display: block;
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery-section {
    padding: 80px 24px;
}

.gallery-section--tinted {
    background: var(--color-bg-tint);
}

.gallery-section__inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.gallery-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.gallery-section__header h2 {
    margin-bottom: 12px;
}

.gallery-section__header p {
    font-size: 17px;
    color: var(--color-body);
    max-width: 600px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-grid--4col {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    aspect-ratio: 4 / 3;
    cursor: pointer;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-item__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.68));
    color: #fff;
    padding: 28px 16px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.90);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox__img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 4px;
    display: block;
}

.gallery-lightbox__close {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 40px;
    line-height: 1;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.15s;
}

.gallery-lightbox__close:hover {
    opacity: 1;
}

/* ==========================================================================
   Office Tour page
   ========================================================================== */

.office-exterior {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    display: block;
}

.office-exterior img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.office-video-section {
    padding: 64px 24px;
    background: var(--color-white);
}

.office-video-section__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.coming-soon-block {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.coming-soon-block__thumb {
    width: 100%;
    height: 100%;
}

.coming-soon-block__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.45);
}

.coming-soon-block__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.coming-soon-block__play {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-block__title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0;
}

.coming-soon-block__badge {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 40px;
}

/* ==========================================================================
   Gallery page (new 2-col layout)
   ========================================================================== */

.gallery-page-section {
    padding: 64px 24px;
    background: var(--color-white);
}

.gallery-page-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-page-card {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    cursor: pointer;
}

.gallery-page-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.gallery-page-card__thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    background: #1a1a2e;
}

.gallery-page-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.gallery-page-card:hover .gallery-page-card__thumb img {
    transform: scale(1.05);
}

.gallery-page-card__footer {
    background: var(--color-white);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid #efefef;
}

.gallery-page-card__title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-heading);
}

/* Coming soon card variant */
.gallery-page-card--soon {
    cursor: default;
}

.gallery-page-card--soon:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
}

.gallery-page-card--soon .gallery-page-card__thumb {
    background: #1b2a48;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-page-card--soon:hover .gallery-page-card__thumb img {
    transform: none;
}

.gallery-page-card__soon-icon {
    opacity: 0.6;
}

.gallery-page-card__badge {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 40px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ==========================================================================
   Subpage responsive overrides
   ========================================================================== */

@media (max-width: 767px) {
    .doctors-intro__stats {
        padding: 0 24px;
    }

    .doctors-intro__stat {
        padding: 28px 20px;
        min-width: 130px;
    }

    .doctors-intro__stat-number {
        font-size: 36px;
    }

    .doctors-intro__stat-sep {
        display: none;
    }
}

@media (max-width: 991px) {

    .doctor-bio__inner,
    .doctor-bio--reverse .doctor-bio__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .doctor-bio--reverse .doctor-bio__photo {
        order: 0;
    }

    .doctor-bio__photo img {
        max-width: 420px;
        margin: 0 auto;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .office-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .office-highlights__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid--4col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {


    .doctor-bio__content h2 {
        font-size: 24px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .office-features__grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid,
    .gallery-grid--4col {
        grid-template-columns: 1fr;
    }

    .gallery-page-grid {
        grid-template-columns: 1fr;
    }

    .office-exterior img {
        height: 240px;
    }
}

@media (max-width: 991px) {
    .hero {
        display: block;
        padding: 0;
        min-height: 0;
        overflow: visible;
    }

    .doctor-bio,
    .team-section {
        padding: 50px 24px;
    }

    .hero__bg {
        position: relative;
        height: 280px;
    }

    .hero__overlay {
        display: none;
    }

    .hero__content {
        position: static;
        max-width: 100%;
        padding: 40px 24px;
    }

    .hero__heading h1 {
        color: var(--color-heading);
        text-shadow: none;
    }

    .hero__subheading {
        color: var(--color-heading);
    }

    .hero__actions .btn--outline-white {
        border-color: var(--color-primary);
        color: var(--color-primary);
    }
}

/* ══════════════════════════════════════════
   Dental Sealants service page (ds-*)
   ══════════════════════════════════════════ */

/* Intro */
.ds-intro {
    background: #fff;
    padding: 100px 24px;
    text-align: center;
}

.ds-intro__inner {
    max-width: 780px;
    margin: 0 auto;
}

.ds-intro__lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-heading);
    line-height: 1.75;
    margin: 0 0 16px;
}

.ds-intro p {
    color: var(--color-text);
    line-height: 1.8;
    margin: 0 0 28px;
}

.ds-intro .btn {
    display: inline-block;
}

/* Split sections */
.ds-split {
    background: #fff;
    padding: 100px 40px;
}

.ds-split--tint {
    background: var(--color-bg-tint);
}

.ds-split__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 47% 1fr;
    gap: 72px;
    align-items: center;
}

.ds-split__inner--reverse {
    grid-template-columns: 1fr 52%;
}

.ds-split__image {
    background: #c8d8ec;
    box-shadow: 28px 28px 0 #dce3ee;
}


.ds-split__inner--reverse .ds-split__image {
    background: #c8d8ec;
    box-shadow: -28px 28px 0 #dce3ee;
}

.ds-split__image img {
    width: 100%;
    height: auto;
    display: block;
    color: transparent;
    font-size: 0;
    text-decoration: none;
}

.ds-split__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ds-split__eyebrow {
    font-family: var(--font-sans);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0 0 10px;
}

.ds-split__eyebrow--light {
    color: rgba(255, 255, 255, .75);
}

.ds-split__text h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--color-heading);
    margin: 0 0 20px;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.ds-split__text p {
    color: var(--color-text);
    line-height: 1.8;
    margin: 0 0 14px;
}

.ds-split__text p:last-of-type {
    margin-bottom: 0;
}

.ds-split__text ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 4px 0 14px;
    padding: 0;
}

.ds-split__text ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--color-text);
    line-height: 1.7;
}

.ds-split__text ul li::before {
    content: '';
    display: inline-block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border-radius: 50%;
    background-color: var(--color-primary);
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2.5 2.5L8 2' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.ds-split__text .btn {
    margin-top: 28px;
    align-self: flex-start;
}

section.ds-cta.light_bg {
    background-color: #f1f5f9;
}

.ds-steps.light_bg {
    background: #FFF;
}

.ds-factors.light_bg {
    background: #FFF;
}

.ds-factors.light_bg .ds-factor-card {
    background: #f1f5f9;
}

.ds-steps.light_bg .ds-step {
    background: #f1f5f9;
    border-radius: 12px;
    padding: 40px 20px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
    text-align: left;
}

/* Procedure steps */
.ds-steps {
    background: var(--color-bg-tint);
    padding: 100px 24px;
    text-align: center;
}

.ds-steps__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.ds-steps__eyebrow {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0 0 10px;
}

.ds-steps h2 {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    color: var(--color-heading);
    margin: 0 0 12px;
}

.ds-steps__sub {
    color: var(--color-text);
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.ds-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 36px;
}

.ds-step {
    background: #fff;
    border-radius: 12px;
    padding: 36px 28px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
    text-align: left;
}

.ds-step__number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    opacity: .25;
    line-height: 1;
    margin-bottom: 12px;
}

.ds-step h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--color-heading);
    margin: 0 0 10px;
}

.ds-step p {
    color: var(--color-text);
    line-height: 1.7;
    margin: 0;
    font-size: .95rem;
}

.ds-steps__note {
    font-style: italic;
    color: var(--color-text);
    font-size: .95rem;
    margin: 0;
}

/* How Sealants Prevent Cavities — blue bg */
.ds-prevent {
    background: var(--color-primary);
    color: #fff;
    padding: 100px 24px;
}

.ds-prevent__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.ds-prevent__text h2 {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.25;
}

.ds-prevent__text p {
    color: rgba(255, 255, 255, .88);
    line-height: 1.8;
    margin: 0 0 16px;
}

.ds-prevent__text p:last-child {
    margin: 0;
}

.ds-prevent__points {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ds-prevent__point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-radius: 10px;
    padding: 16px 20px;
}

.ds-prevent__point svg {
    flex-shrink: 0;
    margin-top: 1px;
}

.ds-prevent__point span {
    color: #fff;
    font-size: .95rem;
    font-weight: 500;
    line-height: 1.5;
}

/* Closing CTA */
.ds-cta {
    background: #fff;
    padding: 100px 24px;
    text-align: center;
    border-top: 1px solid #e8edf4;
}

.ds-cta__inner {
    max-width: 780px;
    margin: 0 auto;
}

.ds-cta h2 {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    color: var(--color-heading);
    margin: 0 0 16px;
}

.ds-cta p {
    color: var(--color-text);
    line-height: 1.8;
    margin: 0 0 32px;
}

.ds-cta .btn {
    display: inline-block;
}

/* ── Factor cards (2×2 grid for listing key factors) ── */
.ds-factors {
    padding: 100px 24px;
    background: var(--color-bg-tint);
}

.ds-factors--white {
    background: #fff;
}

.ds-factors__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.ds-factors__inner>h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--color-heading);
    text-transform: uppercase;
    letter-spacing: .02em;
    margin: 0 0 40px;
    text-align: center;
}

.ds-factors__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.ds-factor-card {
    background: #fff;
    border-radius: 8px;
    padding: 36px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
}

.ds-factor-card__icon {
    width: 52px;
    height: 52px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ds-factor-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-heading);
    text-transform: uppercase;
    letter-spacing: .03em;
    margin: 0 0 16px;
}

.ds-factor-card p {
    color: var(--color-text);
    line-height: 1.8;
    margin: 0 0 10px;
}

.ds-factor-card p:last-child {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .ds-factors__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ds-factor-card {
        padding: 24px 20px;
    }

    .ds-factor-card__icon {
        width: 44px;
        height: 44px;
        margin-bottom: 14px;
    }

    .ds-factor-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
}

/* ── FAQ section ── */
.faq-section {
    background: #fff;
    padding: 100px 24px;
}

.faq-section--tint {
    background: var(--color-bg-tint);
}

.faq-section__inner {
    max-width: 820px;
    margin: 0 auto;
}

.faq-section__heading {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    color: var(--color-heading);
    margin: 0 0 40px;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 1px solid #dde3ed;
    border-radius: 10px;
    overflow: hidden;
}

.faq-item__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 28px;
    background: #fff;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-heading);
    transition: background .2s, color .2s;
}

.faq-item__question:hover,
.faq-item__question[aria-expanded="true"] {
    background: var(--color-primary);
    color: #fff;
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform .25s;
}

.faq-item__question[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
}

.faq-item__answer {
    padding: 0 28px 24px;
    background: #f5f8fd;
    border-top: 1px solid #dde3ed;
}

.faq-item__answer p {
    margin: 20px 0 0;
    color: var(--color-text);
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 991px) {

    .faq-section,
    .ds-steps,
    .ds-factors {
        padding: 50px 24px;
    }

    .ds-split,
    .ds-intro {
        padding: 50px 24px;
    }


    .ds-split__inner,
    .ds-split__inner--reverse {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ds-split__inner--reverse .ds-split__image {
        order: -1;
    }

    .ds-steps__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ds-step {
        padding: 24px 20px;
    }

    .ds-step__number {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .ds-factors__grid {
        gap: 16px;
    }

    .ds-factor-card {
        padding: 24px 20px;
    }

    .ds-factor-card__icon {
        width: 44px;
        height: 44px;
        margin-bottom: 14px;
    }

    .ds-factor-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .ds-prevent {
        padding: 50px 24px;
    }

    .ds-prevent__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 575px) {


    .ds-split__text h2,
    .ds-steps h2,
    .ds-prevent__text h2,
    .ds-cta h2 {
        font-size: 1.4rem;
    }



    .ds-step {
        padding: 20px 16px;
    }

    .ds-factor-card {
        padding: 20px 16px;
    }



    .faq-item__question {
        padding: 18px 20px;
        font-size: .95rem;
    }

    .faq-item__answer {
        padding: 0 20px 20px;
    }
}


section.ds-prevent {
    background: url(/assets/images/dentist-slide-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

/* ── Sitemap page ── */
.sitemap-section {
    padding: 80px 24px;
    background: #fff;
}

.sitemap-section__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 40px;
}

.sitemap-group__heading {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--color-primary);
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary);
}

.sitemap-group__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sitemap-group__list a {
    color: var(--color-text);
    font-size: .95rem;
    text-decoration: none;
    transition: color .2s;
}

.sitemap-group__list a:hover {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .sitemap-section__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 24px;
    }
}

@media (max-width: 480px) {
    .sitemap-section__inner {
        grid-template-columns: 1fr;
    }
}

/* ── 404 page ── */
.error404 {
    background: var(--color-primary);
    padding: 100px 24px 120px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error404__inner {
    max-width: 620px;
    margin: 0 auto;
}

.error404__icon {
    width: 70px;
    height: 84px;
    margin: 0 auto 24px;
    display: block;
}

.error404__code {
    font-family: var(--font-serif);
    font-size: clamp(5rem, 20vw, 9rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin: 0 0 20px;
}

.error404__heading {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #fff;
    margin: 0 0 20px;
}

.error404__message {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 40px;
}

.error404__btn {
    display: inline-block;
    background: #fff;
    color: var(--color-primary) !important;
    border: none;
    border-radius: 50px;
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.error404__btn:hover {
    opacity: 0.88;
}

.site-header__logo img {
    height: 80px;
}