/* ===== Design Tokens ===== */
:root {
    --blue: #4AA3D9;
    --blue-hover: #3A8FC4;
    --blue-soft: #E8F4FB;
    --text: #333333;
    --text-muted: #666666;
    --white: #ffffff;
    --gray-bg: #F5F5F5;
    --black: #000000;
    --star: #F5A623;
    --footer-bg: #F3F6F8;
    --footer-bar: #4AA3D9;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --font: "Montserrat", sans-serif;
    --container: 1140px;
    --radius: 5px;
    --header-h: 72px;
    --transition: 0.25s ease;
}

/* ===== Reset ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: clip;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: clip;
    min-width: 0;
    width: 100%;
}

body.nav-open {
    overflow: hidden;
    touch-action: none;
}

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

img {
    height: auto;
}

/* Prevent flex/grid children from forcing page overflow */
.container,
.footer__main,
.footer__col,
.sample-layout,
.sample-form,
.locations-intro__inner,
.location-hub__card {
    min-width: 0;
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 90px 0;
}

.section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.section__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section__title--light {
    color: var(--white);
}

.section__subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 400;
}

.section__subtitle--light {
    color: rgba(255, 255, 255, 0.75);
}

.eyebrow {
    display: inline-block;
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn--primary {
    background: var(--blue);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--blue-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition);
}

.header.is-scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    gap: 16px;
}

.nav__logo {
    flex-shrink: 0;
    z-index: 1001;
    max-width: min(220px, 58vw);
}

.nav__logo-img {
    height: 48px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

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

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: color var(--transition);
}

.nav__link:hover {
    color: var(--blue);
}

.nav__cta {
    display: inline-block;
    padding: 12px 20px;
    background: var(--blue);
    color: var(--white) !important;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: background var(--transition);
}

.nav__cta:hover {
    background: var(--blue-hover);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

/* ===== Hero (fixed under content) ===== */
.hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 480px;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 255, 255, 0.58) 50%,
        rgba(255, 255, 255, 0.78) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero__title {
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
    line-height: 1.15;
}

.hero__subtitle {
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.02em;
    margin: 0 0 28px;
    line-height: 1.15;
}

.hero__cta {
    width: auto !important;
    min-width: 220px;
    display: inline-block;
}

/* Diagonal V notch at bottom of hero */
.hero__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--white);
    clip-path: polygon(0 100%, 0 60%, 50% 0, 100% 60%, 100% 100%);
    z-index: 3;
}

/* ===== Page content over hero ===== */
.site-page {
    position: relative;
    z-index: 1;
    margin-top: 100vh;
    margin-top: 100dvh;
    background: var(--white);
}

/* ===== About ===== */
.about {
    background: var(--white);
    padding-top: 100px;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.about__image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 4px;
}

.about__heading {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.about__text p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.about__text .btn {
    margin-top: 12px;
}

/* ===== Testimonials ===== */
.testimonials {
    background: var(--gray-bg);
}

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

.testimonial-card {
    background: var(--white);
    padding: 28px 24px;
    border-radius: 6px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.testimonial-card__stars {
    color: var(--star);
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.testimonial-card__name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.testimonial-card__date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 400;
}

.testimonial-card__text {
    font-size: 0.875rem;
    color: var(--text-muted);
    flex: 1;
    margin-bottom: 16px;
    line-height: 1.65;
}

.testimonial-card__tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blue);
    background: var(--blue-soft);
    padding: 6px 12px;
    border-radius: 999px;
    letter-spacing: 0.02em;
}

.testimonial-card__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue);
    transition: color var(--transition);
}

.testimonial-card__link:hover {
    color: var(--blue-hover);
}

/* ===== Services (black) ===== */
.services {
    background: var(--black);
    padding: 100px 0;
}

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

.service-tile {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.service-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.service-tile:hover img {
    transform: scale(1.05);
}

.service-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 55%, transparent 100%);
}

.service-tile__label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 18px 16px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}

/* Services page: light band, labels centered on tiles */
.services--page {
    background: var(--gray-bg);
    padding: 48px 0 80px;
}

.service-tile--centered::after {
    background: rgba(0, 0, 0, 0.42);
}

.service-tile--centered .service-tile__label {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    padding: 0 20px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.service-tile--centered:hover img {
    transform: scale(1.04);
}

/* ===== Process ===== */
.process {
    background: var(--gray-bg);
}

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

.process-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 6px;
    box-shadow: var(--shadow);
    text-align: center;
}

.process-card--center {
    grid-column: 2 / 4;
    max-width: 320px;
    width: 100%;
    justify-self: center;
}

.process-card__num {
    display: block;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.process-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.process-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.process-card p a {
    color: var(--blue);
    font-weight: 600;
}

.process-card p a:hover {
    text-decoration: underline;
}

/* ===== Gallery ===== */
.gallery {
    background: var(--white);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.gallery__item {
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery__item:hover img {
    transform: scale(1.04);
}

/* ===== Footer ===== */
.footer {
    position: relative;
    z-index: 1;
    background: var(--footer-bg);
    padding-top: 72px;
}

.footer__main {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr 1.2fr;
    gap: 36px;
    padding-bottom: 48px;
}

.footer__logo {
    height: 56px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 240px;
}

.footer__heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 18px;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--blue);
}

.footer__contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    min-width: 0;
}

.footer__contact svg {
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer__contact a,
.footer__contact span {
    color: var(--text-muted);
    transition: color var(--transition);
    overflow-wrap: anywhere;
    word-break: break-word;
    min-width: 0;
}

.footer__contact a:hover {
    color: var(--blue);
}

.footer__map {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 200px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.footer__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer__seo {
    padding: 28px 24px 36px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer__seo p {
    font-size: 0.75rem;
    line-height: 1.9;
    text-align: center;
    color: var(--blue);
}

.footer__seo a {
    color: var(--blue);
    font-weight: 500;
}

.footer__seo a:hover {
    text-decoration: underline;
}

.footer__bar {
    background: var(--footer-bar);
    padding: 16px 0;
    text-align: center;
}

.footer__bar p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

/* ===== Scroll reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive — all pages ===== */

/* Tablet landscape / small desktop: collapse crowded nav early */
@media (max-width: 1100px) {
    .nav__menu {
        gap: 14px;
    }

    .nav__link {
        font-size: 0.8rem;
    }

    .nav__cta {
        padding: 9px 12px;
        font-size: 0.75rem;
    }

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

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

    .process-card--center {
        grid-column: 1 / -1;
        max-width: none;
    }

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

    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .service-list-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablet + mobile menu */
@media (max-width: 960px) {
    :root {
        --header-h: 68px;
    }

    .container {
        padding: 0 16px;
    }

    .nav__logo-img {
        height: 42px;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 100vw;
        height: calc(100vh - var(--header-h));
        height: calc(100dvh - var(--header-h));
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 24px 20px 40px;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 999;
    }

    .nav__menu.is-open {
        transform: translateX(0);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
    }

    .nav__menu > li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .nav__link {
        display: block;
        font-size: 1rem;
        padding: 16px 4px;
        white-space: normal;
    }

    .nav__cta {
        display: block;
        text-align: center;
        margin-top: 20px;
        padding: 16px 20px;
        font-size: 0.95rem;
        width: 100%;
        white-space: normal;
    }

    .nav__toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav__toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .header {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 1px 10px rgba(0, 0, 0, 0.06);
    }

    /* Home layouts */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        height: 100vh;
        height: 100dvh;
    }

    .site-page {
        margin-top: 100vh;
        margin-top: 100dvh;
    }

    .hero__content {
        margin-top: var(--header-h);
        padding: 0 16px;
        max-width: 100%;
    }

    .hero__title,
    .hero__subtitle {
        font-size: clamp(1.5rem, 6.5vw, 2.35rem);
        max-width: 100%;
    }

    .hero__cta {
        min-width: 0;
        width: auto;
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero__wave {
        height: 48px;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about__image img {
        min-height: 220px;
        max-height: 320px;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .about {
        padding-top: 56px;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .services,
    .services--page {
        padding: 56px 0;
    }

    .services__grid {
        gap: 10px;
    }

    .service-tile--centered .service-tile__label {
        font-size: clamp(0.85rem, 2.8vw, 1.05rem);
        padding: 0 12px;
        line-height: 1.25;
    }

    /* Inner page banners & sections */
    .page-banner,
    .page-banner--dark {
        min-height: min(42vw, 280px);
        min-height: 220px;
    }

    .page-banner__content {
        padding: 36px 16px;
        width: 100%;
        max-width: 100%;
    }

    .page-banner__title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }

    .page-banner--dark .page-banner__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .service-detail__grid,
    .service-detail__grid--reverse {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .service-detail__grid--reverse .service-detail__image {
        order: 0;
    }

    .service-detail__image img {
        min-height: 200px;
        max-height: 300px;
        width: 100%;
        height: auto;
    }

    .service-list-grid {
        grid-template-columns: 1fr;
    }

    .sample-layout,
    .sample-layout--solo,
    .sample-layout--form-faq {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 100%;
        margin: 0 auto;
    }

    .sample-form__row {
        grid-template-columns: 1fr;
    }

    .sample-form {
        padding: 28px 20px;
        width: 100%;
        max-width: 100%;
    }

    .sample-faq__title {
        font-size: 1.35rem;
        margin-bottom: 16px;
    }

    .locations-intro__inner,
    .location-hub__card,
    .locations-map-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .location-hub__content {
        padding: 22px 18px 26px;
    }

    .location-hub__image img {
        min-height: 200px;
        max-height: 280px;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
        object-fit: cover;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .location-card {
        padding: 18px 16px;
    }

    .locations-intro__aside {
        padding: 22px 18px;
    }

    .locations-atoz {
        justify-content: flex-start;
    }

    .footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer__map {
        max-height: 200px;
        aspect-ratio: 16 / 10;
        width: 100%;
    }

    .footer__tagline {
        max-width: none;
    }

    .section {
        padding: 56px 0;
    }

    .section__header {
        margin-bottom: 28px;
        max-width: 100%;
        padding: 0 4px;
    }

    .section__title {
        font-size: clamp(1.4rem, 5vw, 1.85rem);
    }

    .cta-band {
        padding: 44px 16px;
    }

    .process__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Phones */
@media (max-width: 600px) {
    :root {
        --header-h: 64px;
    }

    body {
        font-size: 15px;
    }

    .container {
        padding: 0 14px;
    }

    .section {
        padding: 48px 0;
    }

    .section__header {
        margin-bottom: 24px;
    }

    .nav__logo {
        max-width: 48vw;
    }

    .nav__logo-img {
        height: 36px;
    }

    .btn {
        padding: 13px 20px;
        font-size: 0.875rem;
        max-width: 100%;
    }

    .hero__content .btn,
    .about__text .btn,
    .location-hub__content .btn,
    .locations-intro__actions .btn,
    .sample-form .btn,
    .cta-band .btn {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        text-align: center;
    }

    .hero {
        min-height: 100svh;
        height: 100svh;
    }

    .site-page {
        margin-top: 100svh;
    }

    .hero__title,
    .hero__subtitle {
        font-size: clamp(1.35rem, 7.5vw, 1.65rem);
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .hero__subtitle {
        margin-bottom: 22px;
    }

    .hero__wave {
        height: 36px;
    }

    .about {
        padding-top: 44px;
    }

    .about__heading {
        font-size: 1.35rem;
    }

    .about__text p {
        font-size: 0.9rem;
    }

    .testimonials__grid,
    .process__grid,
    .services__grid,
    .location-grid,
    .service-list-grid,
    .footer__main,
    .sample-layout--form-faq {
        grid-template-columns: 1fr;
    }

    .process-card--center {
        grid-column: auto;
        max-width: none;
    }

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .gallery-page .gallery__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery-page .gallery__item {
        aspect-ratio: 4 / 3;
    }

    .gallery__item {
        aspect-ratio: 1;
    }

    .service-tile {
        aspect-ratio: 16 / 10;
    }

    .service-tile__label {
        font-size: 0.8rem;
        padding: 12px 10px;
    }

    .service-tile--centered .service-tile__label {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .services--page {
        padding: 28px 0 48px;
    }

    .testimonial-card {
        min-height: 0;
        padding: 20px 16px;
    }

    .process-card {
        padding: 20px 16px;
    }

    .page-banner,
    .page-banner--dark {
        min-height: 180px;
        margin-top: var(--header-h);
    }

    .page-banner--dark .page-banner__title {
        font-size: clamp(1.85rem, 10vw, 2.5rem);
    }

    .page-banner__title {
        font-size: 1.4rem;
    }

    .page-banner__subtitle {
        font-size: 0.9rem;
    }

    .sample-form {
        padding: 20px 14px;
        border-radius: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* prevent iOS zoom */
        max-width: 100%;
    }

    .sample-faq .faq-item {
        padding: 0 14px;
    }

    .faq-item summary {
        font-size: 0.88rem;
        padding: 14px 0;
        line-height: 1.4;
        padding-right: 28px;
    }

    .faq-item p {
        font-size: 0.85rem;
        overflow-wrap: anywhere;
    }

    .gallery-filters {
        gap: 8px;
        margin-bottom: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .gallery-filter {
        padding: 10px 14px;
        font-size: 0.8rem;
        min-height: 40px;
    }

    .locations-intro__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .locations-intro__actions .btn,
    .btn--outline-blue {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }

    .locations-atoz {
        gap: 6px;
    }

    .locations-atoz a {
        font-size: 0.72rem;
        padding: 8px 10px;
        min-height: 36px;
        display: inline-flex;
        align-items: center;
    }

    .locations-map iframe {
        height: 240px;
        width: 100%;
    }

    .footer {
        padding-top: 40px;
    }

    .footer__main {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 28px;
    }

    .footer__col--map {
        max-width: 100%;
    }

    .footer__map {
        max-height: none;
        aspect-ratio: 16 / 10;
        max-width: 100%;
    }

    .footer__seo {
        padding: 18px 10px 24px;
    }

    .footer__seo p {
        font-size: 0.68rem;
        line-height: 1.9;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .footer__bar {
        padding: 14px 10px;
    }

    .footer__bar p {
        font-size: 0.7rem;
        line-height: 1.5;
        padding: 0 4px;
    }

    .location-card h3 {
        font-size: 0.95rem;
    }

    .location-card p {
        font-size: 0.85rem;
    }

    .location-hub__content h2 {
        font-size: 1.25rem;
    }

    .service-detail__text h2 {
        font-size: 1.25rem;
    }

    .cta-band h2 {
        font-size: 1.25rem;
    }

    .cta-band p {
        font-size: 0.875rem;
        padding: 0 4px;
    }
}

/* Very small phones */
@media (max-width: 380px) {
    .hero__title,
    .hero__subtitle {
        font-size: 1.28rem;
    }

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

    .nav__logo {
        max-width: 50vw;
    }

    .service-tile--centered .service-tile__label {
        font-size: 0.8rem;
    }

    .page-banner--dark .page-banner__title {
        font-size: 1.7rem;
    }
}

/* Short landscape phones */
@media (max-height: 480px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        height: 100vh;
    }

    .site-page {
        margin-top: 100vh;
    }

    .hero__title,
    .hero__subtitle {
        font-size: 1.25rem;
        margin-bottom: 6px;
    }

    .hero__subtitle {
        margin-bottom: 12px;
    }

    .hero__wave {
        height: 28px;
    }

    .page-banner,
    .page-banner--dark {
        min-height: 140px;
    }

    .nav__menu {
        padding-top: 12px;
    }
}

/* Prefer reduced hover lift on coarse pointers */
@media (hover: none) {
    .btn--primary:hover {
        transform: none;
    }

    .service-tile:hover img,
    .gallery__item:hover img {
        transform: none;
    }
}

/* Safe areas (notched phones) */
@supports (padding: max(0px)) {
    .header .nav.container {
        padding-left: max(14px, env(safe-area-inset-left));
        padding-right: max(14px, env(safe-area-inset-right));
    }

    .container {
        padding-left: max(14px, env(safe-area-inset-left));
        padding-right: max(14px, env(safe-area-inset-right));
    }

    .nav__menu {
        padding-bottom: max(40px, env(safe-area-inset-bottom));
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }

    .footer__bar {
        padding-bottom: max(14px, env(safe-area-inset-bottom));
    }

    .footer__main {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
}

/* Touch targets for interactive controls */
@media (max-width: 960px) {
    .gallery-filter,
    .nav__link,
    .faq-item summary,
    .location-card__link {
        -webkit-tap-highlight-color: rgba(74, 163, 217, 0.15);
    }

    .faq-item summary {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .faq-item summary::after {
        float: none;
        flex-shrink: 0;
    }
}

/* ===== Inner pages (Services, Gallery, Sample Request) ===== */
body.page-inner {
    background: var(--white);
}

body.page-inner .header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}

.page-banner {
    position: relative;
    margin-top: var(--header-h);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-banner__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(74, 163, 217, 0.35) 100%
    );
}

.page-banner__content {
    position: relative;
    z-index: 1;
    padding: 48px 24px;
    max-width: 720px;
}

.page-banner__title {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.page-banner__subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Dark page banner (Services-style: photo hero + white title only) */
.page-banner--dark {
    min-height: 320px;
}

.page-banner--dark .page-banner__overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.page-banner--dark .page-banner__title {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 0;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.nav__link.is-active {
    color: var(--blue);
    font-weight: 600;
}

/* Service detail cards on services page */
.service-detail {
    background: var(--white);
}

.service-detail--alt {
    background: var(--gray-bg);
}

.service-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.service-detail__grid--reverse .service-detail__image {
    order: 2;
}

.service-detail__image {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-detail__image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.service-detail__text h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
}

.service-detail__text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.service-detail__list {
    margin: 18px 0 24px;
}

.service-detail__list li {
    position: relative;
    padding: 8px 0 8px 22px;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-detail__list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
}

.service-list-block {
    background: var(--black);
    color: var(--white);
}

.service-list-block .section__title {
    color: var(--white);
}

.service-list-block .section__subtitle {
    color: rgba(255, 255, 255, 0.75);
}

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

.service-list-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 28px 24px;
}

.service-list-card h3 {
    color: var(--blue);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-list-card li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 16px;
    position: relative;
}

.service-list-card li::before {
    content: "·";
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
}

/* Full gallery page */
.gallery-page .gallery__grid {
    gap: 8px;
}

.gallery-page .gallery__item {
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
}

.gallery-filter {
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--white);
    color: var(--text-muted);
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filter:hover,
.gallery-filter.is-active {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

/* Sample request form */
.sample-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: start;
}

.sample-layout--solo {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
}

.sample-layout--form-faq {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.sample-faq__title {
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.sample-faq .faq-list {
    max-width: none;
    margin: 0;
}

.sample-faq .faq-item {
    background: var(--white);
}

.form-group .req {
    color: var(--blue);
}

.sample-intro h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
}

.sample-intro p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.sample-intro__points {
    margin: 24px 0;
}

.sample-intro__points li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.sample-intro__points li span {
    color: var(--blue);
    font-weight: 700;
    flex-shrink: 0;
}

.sample-form {
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    padding: 36px 32px;
    border-top: 4px solid var(--blue);
}

.sample-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    font-family: var(--font);
    font-size: 16px;
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--radius);
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(74, 163, 217, 0.15);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.form-check input {
    margin-top: 3px;
    accent-color: var(--blue);
    flex-shrink: 0;
}

.sample-form .btn {
    width: 100%;
    text-align: center;
    margin-top: 8px;
}

.sample-form__error {
    color: #b42318;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0 0 12px;
}

.sample-form__success {
    display: none;
    text-align: center;
    padding: 24px;
    color: var(--blue);
    font-weight: 600;
}

.sample-form__success.is-visible {
    display: block;
}

.sample-form.is-submitted .sample-form__fields {
    display: none;
}

.cta-band {
    background: var(--blue);
    text-align: center;
    padding: 64px 24px;
}

.cta-band h2 {
    color: var(--white);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-band .btn {
    background: var(--white);
    color: var(--blue);
}

.cta-band .btn:hover {
    background: var(--blue-soft);
    color: var(--blue-hover);
}

/* ===== Locations (SEO) page ===== */
.btn--outline-blue {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
    margin-left: 10px;
}

.btn--outline-blue:hover {
    background: var(--blue);
    color: var(--white);
}

.locations-intro {
    background: var(--white);
}

.locations-intro__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start;
}

.locations-intro__text p {
    color: var(--text-muted);
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.locations-intro__actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.locations-intro__actions .btn--outline-blue {
    margin-left: 0;
}

.locations-intro__aside {
    background: var(--gray-bg);
    border-radius: 8px;
    padding: 28px 24px;
    border-top: 4px solid var(--blue);
}

.locations-intro__aside-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text);
}

.locations-jump li {
    margin-bottom: 10px;
}

.locations-jump a {
    color: var(--blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.locations-jump a:hover {
    text-decoration: underline;
}

.loc-landing__intro .locations-jump li {
    position: relative;
    padding-left: 18px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.loc-landing__intro .locations-jump li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
}

.location-card h3 a {
    color: inherit;
    text-decoration: none;
}

.location-card h3 a:hover {
    color: var(--blue);
}

.locations-hq {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.locations-hq strong {
    display: block;
    color: var(--text);
    margin-bottom: 8px;
}

.location-hub {
    background: var(--gray-bg);
}

.location-hub__card {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.location-hub__image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.location-hub__content {
    padding: 36px 36px 36px 8px;
    min-width: 0;
}

@media (max-width: 960px) {
    .location-hub__content {
        padding: 22px 18px 26px;
    }
}

.location-hub__content h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
}

.location-hub__content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.location-hub__list {
    margin: 18px 0 24px;
}

.location-hub__list li {
    position: relative;
    padding: 6px 0 6px 22px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.location-hub__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
}

.location-region {
    background: var(--white);
}

.location-region--alt {
    background: var(--gray-bg);
}

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

.location-card {
    background: var(--white);
    padding: 26px 22px;
    border-radius: 6px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    scroll-margin-top: 100px;
}

.location-region--alt .location-card {
    background: var(--white);
}

.location-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.35;
}

.location-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    flex: 1;
    margin-bottom: 16px;
    line-height: 1.65;
}

.location-card__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue);
}

.location-card__link:hover {
    color: var(--blue-hover);
    text-decoration: underline;
}

.locations-atoz {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.locations-atoz a {
    display: inline-block;
    padding: 8px 14px;
    background: var(--gray-bg);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
}

.locations-atoz a:hover {
    background: var(--blue);
    color: var(--white);
}

.locations-map-section {
    background: var(--gray-bg);
}

.locations-map-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.locations-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 320px;
    background: var(--white);
}

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

.location-faq {
    background: var(--white);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gray-bg);
    border-radius: 6px;
    margin-bottom: 12px;
    padding: 0 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    padding: 18px 0;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    float: right;
    color: var(--blue);
    font-weight: 700;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-bottom: 18px;
    line-height: 1.7;
}

.faq-item a {
    color: var(--blue);
    font-weight: 600;
}

#wilmington {
    scroll-margin-top: 90px;
}

#brunswick,
#onslow,
#all-areas,
#faq {
    scroll-margin-top: 90px;
}

/* =========================================================
   MOBILE OVERRIDES (must stay last — base page styles above
   were overriding earlier media queries on cascade).
   ========================================================= */

@media (max-width: 960px) {
    /* Sample Request: stack form + FAQ */
    .sample-layout,
    .sample-layout--form-faq,
    .sample-layout--solo {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 28px;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .sample-form__row {
        grid-template-columns: 1fr !important;
    }

    .sample-form {
        padding: 24px 18px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .sample-form .btn {
        width: 100%;
    }

    .sample-faq {
        width: 100%;
        min-width: 0;
    }

    .sample-faq__title {
        font-size: 1.3rem;
        margin-bottom: 14px;
    }

    .sample-request-section {
        padding-left: 0;
        padding-right: 0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        font-size: 16px;
        box-sizing: border-box;
    }

    .form-group label {
        line-height: 1.35;
    }

    /* Locations: stack all multi-column sections */
    .locations-intro__inner {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 28px;
    }

    .locations-intro__text .section__title {
        text-align: left;
        font-size: clamp(1.35rem, 5.5vw, 1.75rem);
    }

    .locations-intro__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .locations-intro__actions .btn,
    .locations-intro__actions .btn--outline-blue {
        width: 100%;
        margin-left: 0;
        text-align: center;
        box-sizing: border-box;
    }

    .locations-intro__aside {
        padding: 20px 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .locations-hq a {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .location-hub__card {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 0;
    }

    .location-hub__image img {
        min-height: 200px;
        max-height: 260px;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
        object-fit: cover;
    }

    .location-hub__content {
        padding: 22px 16px 26px !important;
    }

    .location-hub__content h2 {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .location-hub__content .btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .location-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    .location-card {
        padding: 18px 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .location-card h3 {
        font-size: 1rem;
        line-height: 1.3;
    }

    .locations-map-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    .locations-map {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .locations-map iframe {
        width: 100%;
        height: 260px;
        max-width: 100%;
    }

    .locations-atoz {
        justify-content: flex-start;
        gap: 8px;
    }

    .locations-atoz a {
        font-size: 0.78rem;
        padding: 8px 12px;
    }

    .faq-list {
        max-width: 100%;
        width: 100%;
    }

    .faq-item {
        padding: 0 14px;
        box-sizing: border-box;
    }

    .faq-item summary {
        font-size: 0.9rem;
        line-height: 1.4;
        min-height: 48px;
        padding-right: 8px;
    }

    .faq-item p {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    /* Banner on both pages */
    .page-banner,
    .page-banner--dark {
        min-height: 200px;
    }

    .page-banner--dark .page-banner__title {
        font-size: clamp(1.85rem, 9vw, 2.75rem);
        padding: 0 12px;
        word-break: break-word;
    }
}

@media (max-width: 600px) {
    .sample-request-section.section,
    .locations-intro.section,
    .location-hub.section,
    .location-region.section,
    .locations-map-section.section,
    .location-faq.section {
        padding: 40px 0;
    }

    .sample-form {
        padding: 18px 14px;
        box-shadow: var(--shadow);
    }

    .sample-form__row {
        gap: 0;
    }

    .form-group {
        margin-bottom: 14px;
    }

    .form-group label {
        font-size: 0.78rem;
    }

    .sample-faq__title {
        font-size: 1.2rem;
    }

    .location-hub__image img {
        min-height: 180px;
        max-height: 220px;
    }

    .location-hub__content h2 {
        font-size: 1.2rem;
    }

    .location-hub__content p,
    .locations-intro__text p {
        font-size: 0.9rem;
    }

    .locations-map iframe {
        height: 220px;
    }

    .locations-atoz a {
        font-size: 0.72rem;
        padding: 7px 10px;
    }

    .page-banner,
    .page-banner--dark {
        min-height: 160px;
    }

    .page-banner--dark .page-banner__title {
        font-size: clamp(1.65rem, 10vw, 2.2rem);
    }

    #wilmington,
    #brunswick,
    #onslow,
    #all-areas,
    #faq,
    #form {
        scroll-margin-top: 72px;
    }
}

