/* =========================================================
          GLOBAL RESET, VARIABLES, AND UTILITIES
========================================================= */

:root {
    --cream: #f6f3ec;
    --surface: #ffffff;
    --surface-muted: #efeae0;
    --surface-soft: #f0f4ef;
    --navy: #22407c;
    --blue: #2d8198;
    --sky: #b5cfe3;
    --green: #51754a;
    --lime: #79a341;
    --ink: #2a3340;
    --body: #3a4550;
    --muted: #4a5560;
    --light-text: #c9d8ec;
    --border: rgba(34, 64, 124, 0.12);
    --shadow: 0 24px 48px -28px rgba(34, 64, 124, 0.5);
    --font-body: "Mulish", system-ui, sans-serif;
    --font-display: "Newsreader", Georgia, serif;
    --color-navy: #22407c;
    --color-teal: #2d8198;
    --color-green: #79a341;
    --color-green-light: #9ec85f;
    --color-sage: #51754a;
    --color-blue-light: #b5cfe3;
    --color-cream: #f6f3ec;
    --color-cream-dark: #efeae0;
    --color-white: #ffffff;
    --color-text: #2a3340;
    --color-muted: #6b7480;
    --container-width: 1240px;
    --page-padding: 32px;
    --radius-card: 24px;
    --radius-pill: 999px;
}

*,
*::after,
*::before {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    margin: 0;
    background: #F6F3EC;
    color: #2A3340;
    font-family: "Mulish", system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

svg {
    max-width: 100%;
    display: block;
}

a {
    -webkit-tap-highlight-color: transparent;
    color: #2D8198;
    text-decoration: none;
}

a:hover {
    color: #22407C;

}

button {
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    font: inherit;
}

input,
textarea {
    font: inherit;
}

select {
    font: inherit;
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid #2D8198;
    outline-offset: 3px;
    border-radius: 2px;
}

::selection {
    background: #B5CFE3;
    color: #22407C;
}

.page-shell,
.site-shell,
.u-001,
.u-style-001 {
    overflow-x: hidden;
}

.container {
    width: min(100% - (var(--page-padding) * 2), var(--container-width));
    margin-inline: auto;
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
}

.narrow-section {
    width: min(100% - 64px, 820px);
    margin-inline: auto;
}

.lift {
        transition: transform .24s ease, box-shadow .24s ease;
}

.lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -28px rgba(34, 64, 124, .5);
}

.reveal-pending {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-pending.is-revealed,
.reveal-ready [data-reveal].is-visible,
.reveal-visible {
    opacity: 1;
    transform: none;
}

.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

/* =====================================================
 Global Reset, Variables, And Utilities — Responsive
 ===================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::after,
    *::before {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    html {
        scroll-behavior: auto;
    }

    .lift {
        transition: none;
    }

    .lift:hover {
        transform: none;
    }

    .reveal-pending {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* =======================================
          HEADER AND NAVIGATION CSS
========================================== */

.nav-links .is-active {
    color: var(--lime);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-block: 14px;
}

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand img,
.site-logo img {
    width: auto;
    height: 46px;
}

.site-nav__links {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 15px;
    font-weight: 600;
}

.site-nav__links a {
    color: var(--color-navy);
}

.site-nav__links .is-active,
.site-nav__links a:hover {
    color: var(--color-green);
}

.site-header {
    width: 100%;
    position: static;
    top: 0;
    z-index: 50;
    background: rgba(246, 243, 236, .86);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(34, 64, 124, .12);
}

.header-inner {
    padding-block: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.nav-links {
    align-items: center;
    display: flex;
    gap: 26px;
    font-weight: 600;
    font-size: 15px;
}

.nav-links a:hover {
    color: #2D8198;
}

.nav-cta {
    padding: 11px 20px;
    font-size: 15px;
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(34, 64, 124, .25);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    padding: 0 11px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: #22407C;
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}

.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);
}

.mobile-menu[hidden] {
    display: none;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 10px 32px 22px;
    border-bottom: 1px solid rgba(34, 64, 124, .12);
    background: rgba(246, 243, 236, .98);
}

.mobile-menu a {
    color: #22407C;
    font-weight: 700;
    font-size: 17px;
    padding: 12px 0;
}

.mobile-menu .btn {
    margin-top: 8px;
    text-align: center;
}

.brand {
    display: flex;
    align-items: center;
    min-width: 0;
}

.brand-logo {
    height: 46px;
    width: auto;
    max-width: min(260px, calc(100vw - 100px));
}

.u-002,
.u-style-002 {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246, 243, 236, .86);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(34, 64, 124, .12);
}

.u-003,
.u-style-003 {
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.u-004,
.u-style-004 {
    display: flex;
    align-items: center;
}

.u-005,
.u-style-005 {
    height: 46px;
    width: auto;
    display: block;
}

.nav,
.primary-nav,
.site-nav,
.u-006,
.u-style-006 {
    display: flex;
    align-items: center;
    gap: 28px;
}

.u-007,
.u-style-007 {
    display: flex;
    gap: 26px;
    font-weight: 600;
    font-size: 15px;
}

.nav-links a,
.u-008,
.u-style-008 {
    color: #22407C;
}

.u-009,
.u-style-009 {
    color: #79A341;
}

.u-010,
.u-style-010 {
    background: #22407C;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 11px 20px;
    border-radius: 999px;
    white-space: nowrap;
}

/* =====================================
     Header And Navigation — Responsive 
 ====================================== */


/* Hide alternate desktop navigation */
@media (max-width: 940px) {
    .site-nav__links {
        display: none;
    }

    .header-inner {
        padding: 12px 24px;
    }

    .primary-nav {
        gap: 14px;
    }
}

/* =====================================
   TABLET / MEDIUM / SMALL SCREENS
   Logo | CTA | Toggle
===================================== */

@media (max-width: 920px) {
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 12px 24px;
    }

    .brand {
        display: flex;
        align-items: center;
        min-width: 0;
        flex: 1;
    }

    .brand-logo,
    .brand img {
        display: block;
        width: auto;
        height: 42px;
        max-width: 100%;
        object-fit: contain;
    }

    .header-inner .nav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
        flex-shrink: 0;
    }

    /* Hide desktop links */
    .nav-links,
    .site-nav__links {
        display: none;
    }

    /* CTA between logo and toggle */
    .nav-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        min-height: 42px;
        margin: 0;
        padding: 10px 18px;
        font-size: 14px;
        line-height: 1;
        white-space: nowrap;
        text-align: center;
    }

    /* Hamburger toggle */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        padding: 0;
        flex-shrink: 0;
        background: #ffffff;
        border: 1px solid rgba(34, 64, 124, 0.25);
        border-radius: 10px;
        cursor: pointer;
    }

    .nav-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        flex-shrink: 0;
        background: #22407c;
        border-radius: 10px;
        transition:
            transform 0.25s ease,
            opacity 0.2s ease;
    }

    .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);
    }

    .mobile-menu:not([hidden]) {
        display: flex;
    }

    /* Hide duplicate CTA inside mobile drawer */
    .mobile-menu>.btn {
        display: none;
    }

    .site-header {
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
    }

    /* Support alternative header classes */
    .site-header__inner {
        padding: 12px 22px !important;
    }

    .site-nav {
        gap: 12px !important;
    }
}

/* =====================================
   SMALL TABLET SCREENS
===================================== */

@media (max-width: 720px) {
    .site-header__inner {
        gap: 14px;
        padding-block: 12px;
    }

    .site-logo img {
        height: 40px;
    }
}

/* =====================================
   SMALL SCREENS
   Logo | CTA | Toggle
===================================== */

@media (max-width: 640px) {
    .header-inner {
        gap: 8px;
        padding: 10px 16px;
    }

    .brand,
    .brand-link {
        min-width: 0;
    }

    .brand-logo,
    .brand img {
        width: auto;
        height: 36px;
        max-width: 150px;
    }

    .header-inner .nav {
        gap: 8px;
    }

    .primary-nav {
        gap: 8px;
    }

    .nav-cta {
        min-height: 40px;
        padding: 9px 13px;
        font-size: 13px;
    }

    .nav-toggle {
        width: 40px;
        height: 40px;
    }

    .nav-toggle span {
        width: 20px;
    }

    .mobile-menu {
        padding: 10px 16px 20px;
    }

    .site-header__inner {
        padding: 10px 16px !important;
        gap: 12px !important;
    }

    .site-logo img {
        height: 38px !important;
    }

    .site-nav {
        gap: 8px !important;
    }
}

/* =====================================
   MOBILE SCREENS
   Logo | Toggle
   CTA button underneath
===================================== */

@media (max-width: 480px) {
    .header-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "logo toggle"
            "button button";
        align-items: center;
        gap: 10px 12px;
        padding: 10px 16px;
    }

    /*
      Makes the CTA and toggle participate
      directly in the header grid.
    */
    .header-inner .nav {
        display: contents;
    }

    .brand {
        grid-area: logo;
        display: flex;
        align-items: center;
        min-width: 0;
    }

    .brand-logo,
    .brand img {
        display: block;
        width: auto;
        height: 36px;
        max-width: calc(100vw - 90px);
        object-fit: contain;
    }

    .nav-toggle {
        grid-area: toggle;
        justify-self: end;
        width: 40px;
        height: 40px;
    }

    .nav-cta {
        grid-area: button;
        display: flex;
        width: 100%;
        min-height: 42px;
        padding: 10px 16px;
        font-size: 14px;
        justify-content: center;
        text-align: center;
    }
}

/* =====================================
   EXTRA-SMALL MOBILE SCREENS
===================================== */

@media (max-width: 390px) {
    .header-inner {
        gap: 8px 10px;
        padding: 9px 12px;
    }

    .brand-logo,
    .brand img {
        height: 32px;
        max-width: calc(100vw - 78px);
    }

    .nav-toggle {
        width: 38px;
        height: 38px;
    }

    .nav-toggle span {
        width: 18px;
    }

    .nav-cta {
        min-height: 40px;
        padding: 9px 14px;
        font-size: 13px;
    }

    .site-logo img {
        height: 34px !important;
        max-width: 155px;
    }
}

/* ===========================
       SHARED COMPONENTS
============================== */

.button {
    font-size: 16px;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: var(--radius-pill);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
}


.availability-pill {
    justify-content: center;
    margin-top: 26px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    border: 1px solid rgba(158, 200, 95, 0.55);
    border-radius: var(--radius-pill);
    background: rgba(121, 163, 65, 0.24);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
}

.section-heading {
    max-width: 52em;
    /* display: flex; */
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 30px;
}

.eyebrow {
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 13px;
    color: #2D8198;
    margin: 0 0 14px;
}

.eyebrow-light {
    color: #B5CFE3;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(30px, 3.8vw, 46px);
    line-height: 1.1;
    color: #22407C;
    margin: 0;
    letter-spacing: -.01em;
}

.hero {
    text-align: center;
    padding-top: 64px;
    padding-bottom: 40px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
}

.hero-title {
    font-family: var(--font-display);
    letter-spacing: -0.01em;
    font-size: clamp(40px, 5.4vw, 68px);
    line-height: 1.04;
    color: #22407C;
    text-align: center;
    font-weight: 500;
}

.hero-title em {
    font-style: italic;
    color: #51754A;
}

.grid {
    display: grid;
    gap: 20px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border-radius: 14px;
    padding: 8px 24px;
    border: 1px solid rgba(34, 64, 124, .12);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-block: 16px;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    color: #22407C;
    padding: 16px 0;
    list-style: none;
    position: relative;
    padding-right: 30px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    flex: 0 0 auto;
    line-height: 1;
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 400;
    color: #79A341;
    transition: transform .2s ease;
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-item p {
    margin: 0 0 18px;
    color: #4A5560;
    font-size: 16px;
}

/* Shared Components — Responsive */

@media (max-width: 920px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =======================
     ABOUT PAGE CSS
========================= */

.section-pad {
    padding-block: 64px 40px;
    text-align: center;
}

.content-section {
    padding-block: 80px 40px;
}

.content-section-no-top-gap {
    padding-top: 80px;
}

.section-intro {
    margin: 14px 0 0;
    color: var(--body);
    font-size: 18px;
}

.prose p {
    color: var(--body);
}

.prose p:first-child {
    margin-top: 0;
}

.prose p:last-child {
    margin-bottom: 0;
}

.prose-large p {
    margin: 0 0 18px;
    font-size: 18px;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compact-grid {
    gap: 16px;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.button-row-center {
    justify-content: center;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    padding: 15px 28px;
    background: var(--navy);
    color: #fff;
}

.button-primary:hover {
    color: #fff;
    background: #172f63;
}

.button-small {
    padding: 11px 20px;
    font-size: 15px;
}

.button-outline {
    padding: 13px 26px;
    border: 2px solid var(--navy);
    color: var(--navy);
}

.button-outline:hover {
    background: var(--navy);
    color: #fff;
}

.button-green {
    padding: 16px 32px;
    background: var(--green);
    color: #fff;
    font-size: 17px;
}

.button-green:hover {
    color: #fff;
    background: #3d5f37;
}

.button-glass {
    padding: 14px 30px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 17px;
}

.button-glass:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.22);
}

.hero-inner {
    width: min(100% - 64px, 1000px);
    margin-inline: auto;
}

.hero-logo {
    width: 72px;
    height: auto;
    margin: 0 auto 24px;
}

.hero-copy {
    max-width: 38em;
    margin: 0 auto 30px;
    color: var(--body);
    font-size: 20px;
}

.availability-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--lime);
    margin-top: 3px;
}

.stats-section {
    padding-block: 16px 40px;
}

.stat-card {
    padding: 30px;
    border: 1px solid rgba(34, 64, 124, 0.1);
    border-radius: 20px;
    background: var(--surface);
}

.stat-card p {
    margin: 10px 0 0;
    color: var(--body);
    font-size: 15px;
    font-weight: 600;
}

.stat-card-dark {
    border-color: transparent;
    background: var(--navy);
    color: #fff;
}

.stat-card-dark p {
    color: #fff;
}

.stat-value {
    color: var(--sky);
    font-family: var(--font-display);
    font-size: 44px;
    line-height: 1;
}

.stat-value-green {
    color: var(--lime);
}

.stat-value-blue {
    color: var(--blue);
}

.support-band {
    margin-top: 24px;
    background: var(--navy);
    color: #fff;
}

.support-band-inner {
    width: min(100% - 64px, 960px);
    margin-inline: auto;
    padding-block: 80px;
    text-align: center;
}

.support-quote {
    margin: 0 0 18px;
    font-family: var(--font-display);
    font-size: clamp(24px, 3.2vw, 38px);
    font-weight: 400;
    line-height: 1.24;
}

.support-quote em {
    color: var(--sky);
    font-style: italic;
}

.support-copy {
    max-width: 44em;
    margin: 0 auto;
    color: var(--light-text);
    font-size: 18px;
}

.info-card {
    border: 1px solid rgba(34, 64, 124, 0.1);
    background: var(--surface);
    padding: 28px;
    border-radius: 20px;
}

.info-card h3 {
    font-family: var(--font-display);
    color: var(--navy);
    font-weight: 500;
    margin: 0 0 8px;
    font-size: 22px;
}

.info-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.credential-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.step-number {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
}

.step-number-navy {
    background: var(--navy);
}

.step-number-blue {
    background: var(--blue);
}

.step-number-green {
    background: var(--lime);
}

.editorial-section {
    display: flex;
    flex-direction: column;
    gap: 72px;
    padding-block: 32px 24px;
}

.editorial-row {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 52px;
    align-items: center;
}

.editorial-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 5 / 4;
    background: var(--sky);
    box-shadow: 0 30px 70px -34px rgba(34, 64, 124, 0.4);
}

.editorial-image-left {
    border-radius: 28px 28px 28px 90px;
}

.editorial-image-right {
    border-radius: 28px 28px 90px 28px;
}

.editorial-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-title {
    font-family: var(--font-display);
    color: var(--navy);
    font-weight: 500;
    margin: 0 0 16px;
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.08;
}

.editorial-copy>p:last-child {
    margin: 0;
    color: var(--body);
    font-size: 18px;
}

.surface-section {
    background: var(--surface-muted);
}

.surface-section-spaced {
    margin-top: 24px;
}

.service-card {
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid;
    background: var(--surface);
}

.service-card h3 {
    font-family: var(--font-display);
    color: var(--navy);
    font-weight: 500;
    margin: 0 0 8px;
    font-size: 23px;
}

.service-card-navy {
    border-left-color: var(--navy);
}

.service-card-blue {
    border-left-color: var(--blue);
}

.service-card-lime {
    border-left-color: var(--lime);
}

.service-card-green {
    border-left-color: var(--green);
}

.credential-card {
    padding: 26px;
    border-top: 3px solid;
    border-radius: 18px;
    background: var(--surface);
}

.credential-card h3 {
    font-family: var(--font-display);
    color: var(--navy);
    font-weight: 500;
    margin: 0 0 8px;
    font-size: 21px;
}

.credential-card-navy {
    border-top-color: var(--navy);
}

.credential-card-blue {
    border-top-color: var(--blue);
}

.credential-card-lime {
    border-top-color: var(--lime);
}

.credential-card-green {
    border-top-color: var(--green);
}

.approach-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
    align-items: center;
    padding-block: 80px 40px;
}

.mini-card {
    border: 1px solid rgba(34, 64, 124, 0.1);
    background: var(--surface);
    padding: 24px;
    border-radius: 18px;
}

.mini-card h3 {
    font-family: var(--font-display);
    color: var(--navy);
    font-weight: 500;
    margin: 0 0 6px;
    font-size: 20px;
}

.mini-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.wide-media-section {
    width: min(100% - 64px, 1400px);
    margin: 16px auto 0;
}

.wide-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 21 / 9;
    border-radius: 32px;
    background: var(--sky);
    box-shadow: 0 34px 80px -40px rgba(34, 64, 124, 0.5);
}

.wide-media>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wide-media-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 55%;
    background: linear-gradient(transparent, rgba(20, 34, 68, 0.72));
}

.wide-media p {
    position: absolute;
    right: 40px;
    bottom: 34px;
    left: 40px;
    margin: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(20px, 2.6vw, 32px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.quote-section {
    width: min(100% - 64px, 900px);
    margin-inline: auto;
    padding-block: 56px 40px;
}

.quote-card {
    position: relative;
    margin: 0;
    padding: 48px 44px;
    border: 1px solid rgba(81, 117, 74, 0.2);
    border-radius: 28px;
    background: var(--surface-soft);
    text-align: center;
}

.quote-card>img {
    width: 52px;
    height: auto;
    margin: 0 auto 20px;
    opacity: 0.9;
}

.quote-card blockquote {
    margin: 0 0 18px;
}

.quote-card blockquote p {
    margin: 0;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: clamp(22px, 2.8vw, 30px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.34;
}

.quote-card figcaption {
    color: var(--green);
    font-size: 15px;
    font-weight: 700;
}

.faq-section {
    width: min(100% - 64px, 900px);
    margin-inline: auto;
    padding-block: 40px;
}

.faq-title {
    margin-bottom: 32px;
    text-align: center;
}

.cta-section {
    padding-block: 48px 80px;
}

.cta-card {
    position: relative;
    overflow: hidden;
    padding: 64px 48px;
    border-radius: 32px;
    background: var(--navy);
    text-align: center;
}

.cta-decoration {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 220px;
    opacity: 0.16;
}

.cta-card p {
    position: relative;
}

.cta-card .button-row {
    position: relative;
}

.cta-card h2 {
    position: relative;
    margin: 0 0 16px;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(28px, 3.6vw, 46px);
    font-weight: 500;
    line-height: 1.1;
}

.cta-card>p {
    max-width: 36em;
    margin: 0 auto 30px;
    color: var(--light-text);
    font-size: 19px;
}


/* ============================
  About Page — Responsive
============================== */

@media (max-width: 920px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .approach-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .editorial-row {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .editorial-image {
        order: -1;
    }

    .editorial-section {
        gap: 56px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 36px, 1240px);
    }

    .narrow-section {
        width: min(100% - 36px, 1240px);
    }

    .hero-inner {
        width: min(100% - 36px, 1240px);
    }

    .wide-media-section {
        width: min(100% - 36px, 1240px);
    }

    .quote-section {
        width: min(100% - 36px, 1240px);
    }

    .faq-section {
        width: min(100% - 36px, 1240px);
    }

    .section-pad {
        padding-block: 48px 32px;
    }

    .content-section {
        padding-block: 56px 32px;
    }

    .content-section-no-top-gap {
        padding-block: 56px 32px;
    }

    .approach-section {
        padding-block: 56px 32px;
    }

    .button-small {
        padding: 10px 15px;
        font-size: 13px;
    }

    .hero {
        padding-top: 52px;
    }

    .hero-title {
        font-size: clamp(25px, 12vw, 28px);
        line-height: 40px;
    }

    .hero-copy {
        font-size: 14px;
    }

    .button-row-center .button {
        width: 100%;
    }

    .availability-pill {
        align-items: flex-start;
        border-radius: 18px;
        text-align: left;
        font-size: 10px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .support-band-inner {
        width: min(100% - 36px, 1240px);
        padding-block: 56px;
    }

    .support-copy {
        font-size: 16px;
    }

    .prose-large p {
        font-size: 16px;
    }

    .section-intro {
        font-size: 16px;
    }

    .editorial-copy>p:last-child {
        font-size: 16px;
    }

    .stat-card {
        padding: 24px;
    }

    .info-card {
        padding: 24px;
    }

    .service-card {
        padding: 24px;
    }

    .credential-card {
        padding: 24px;
    }

    .editorial-section {
        padding-top: 24px;
    }

    .editorial-image-left {
        border-radius: 24px 24px 24px 56px;
    }

    .editorial-image-right {
        border-radius: 24px 24px 24px 56px;
    }

    .wide-media {
        min-height: 340px;
        aspect-ratio: auto;
        border-radius: 24px;
    }

    .wide-media p {
        right: 22px;
        bottom: 24px;
        left: 22px;
    }

    .quote-card {
        padding: 36px 24px;
    }

    .faq-item {
        padding-inline: 18px;
    }

    .faq-item summary {
        font-size: 16px;
    }

    .cta-section {
        padding-block: 36px 56px;
    }

    .cta-card {
        padding: 48px 22px;
        border-radius: 24px;
    }

    .text-center {
        text-align: center;
    }

    .text-center p {
        margin-top: 16px;
        font-size: 12px;
    }

    .new-cta-button {
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .button {
        transition: none;
    }

    .button:hover {
        transform: none;
    }
}

/* =========================
      CONTACT PAGE CSS
 ========================= */

.eyebrow--light {
    color: var(--color-blue-light);
}

.eyebrow--hero {
    display: inline-block;
    margin-bottom: 24px;
    padding: 7px 16px;
    border-radius: var(--radius-pill);
    background: var(--color-blue-light);
    color: var(--color-navy);
    letter-spacing: 0.16em;
}

.button--primary {
    background: var(--color-navy);
    color: var(--color-white);
}

.button--primary:hover {
    color: var(--color-white);
    background: #1b356a;
}

.button--small {
    padding: 11px 20px;
    font-size: 15px;
}

.button--submit {
    padding: 15px 30px;
    font-size: 16px;
}

.button--green {
    padding: 15px 26px;
    background: var(--color-green);
    color: var(--color-white);
    font-size: 16px;
}

.button--green:hover {
    background: #678e36;
    color: var(--color-white);
}

.button--outline-light {
    padding: 13px 24px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.14);
    color: var(--color-white);
    font-size: 16px;
}

.button--outline-light:hover {
    background: rgba(255, 255, 255, 0.22);
    color: var(--color-white);
}

.contact-hero {
    position: relative;
    overflow: hidden;
    background: var(--color-navy);
}

.contact-hero__media {
    position: absolute;
    inset: 0;
}

.contact-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(18, 30, 60, 0.94) 0%,
            rgba(18, 30, 60, 0.8) 42%,
            rgba(18, 30, 60, 0.32) 100%);
    pointer-events: none;
}

.contact-hero__inner {
    position: relative;
    padding-block: 100px 108px;
    pointer-events: none;
}

.contact-hero__content {
    max-width: 36em;
}

.contact-hero__icon {
    width: 60px;
    height: auto;
    margin-bottom: 22px;
    filter: brightness(0) invert(1);
}

.contact-hero__title {
    margin: 0 0 22px;
    color: var(--color-white);
    font-family: "Newsreader", serif;
    font-size: clamp(40px, 5.6vw, 72px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.01em;
}

.contact-hero__title em {
    color: var(--color-green-light);
    font-style: italic;
}

.contact-hero__description {
    max-width: 32em;
    margin: 0 0 26px;
    color: #e4eaf3;
    font-size: 19px;
}

.availability-pill__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--color-green-light);
    flex-shrink: 0;
}

.contact-section {
    padding-block: 40px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 44px;
    align-items: start;
}

.form-card {
    overflow: hidden;
    border: 1px solid rgba(34, 64, 124, 0.1);
    border-radius: var(--radius-card);
    background: var(--color-white);
    box-shadow: 0 30px 70px -34px rgba(34, 64, 124, 0.4);
}

.form-card__header {
    padding: 26px 36px;
    background: linear-gradient(120deg, var(--color-navy), var(--color-teal));
}

.form-card__header .eyebrow {
    margin-bottom: 6px;
}

.form-card__header h2 {
    margin: 0;
    color: var(--color-white);
    font-family: "Newsreader", serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 500;
    line-height: 1.1;
}

.form-card__body {
    padding: 34px 36px 32px;
}

.form-grid {
    display: grid;
    gap: 18px;
}

.form-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-group {
    min-width: 0;
    margin: 0 0 18px;
}

.form-fieldset {
    min-width: 0;
    margin: 0 0 18px;
    padding: 0;
    border: 0;
}

.form-group--message {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin: 0 0 7px;
    color: var(--color-sage);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.form-field {
    width: 100%;
    padding: 13px 15px;
    border: 1.5px solid rgba(34, 64, 124, 0.2);
    border-radius: 12px;
    background: var(--color-cream);
    color: var(--color-navy);
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-field::placeholder {
    color: #9aa4af;
}

.form-field:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 0 3px rgba(45, 129, 152, 0.16);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-chip {
    cursor: pointer;
}

.contact-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.contact-chip span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border: 1.5px solid rgba(34, 64, 124, 0.2);
    border-radius: var(--radius-pill);
    color: var(--color-navy);
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.contact-chip input:checked+span {
    border-color: var(--color-navy);
    background: var(--color-navy);
    color: var(--color-white);
}

.contact-chip input:focus-visible+span {
    outline: 3px solid var(--color-teal);
    outline-offset: 2px;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.form-note {
    max-width: 260px;
    color: var(--color-muted);
    font-size: 13px;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    border-radius: var(--radius-card);
    padding: 30px;
}

.sidebar-card--direct {
    position: relative;
    overflow: hidden;
    background: var(--color-navy);
    color: var(--color-white);
}

.sidebar-card__watermark {
    position: absolute;
    right: -24px;
    bottom: -24px;
    width: 120px;
    opacity: 0.16;
}

.sidebar-card--direct .eyebrow {
    position: relative;
}

.direct-link {
    position: relative;
    display: block;
    margin-bottom: 6px;
    color: var(--color-white);
    font-family: "Newsreader", serif;
    font-size: 23px;
    line-height: 1.3;
    word-break: break-word;
}

.direct-link:hover {
    color: var(--color-green-light);
}

.direct-link--secondary {
    margin-bottom: 0;
    color: var(--color-blue-light);
}

.sidebar-card--white {
    border: 1px solid rgba(34, 64, 124, 0.1);
    background: var(--color-white);
}

.sidebar-card--white .eyebrow {
    margin-bottom: 18px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.next-steps li {
    display: flex;
    gap: 14px;
    color: #3a4550;
    font-size: 15px;
}

.next-steps strong {
    color: var(--color-navy);
}

.next-steps__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 50%;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 800;
}

.next-steps__number--one {
    background: var(--color-navy);
}

.next-steps__number--two {
    background: var(--color-teal);
}

.next-steps__number--three {
    background: var(--color-green);
}

.sidebar-card--travel {
    overflow: hidden;
    background: var(--color-cream-dark);
}

.travel-route {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 14px;
}

.service-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-areas span {
    padding: 6px 12px;
    border: 1px solid rgba(34, 64, 124, 0.15);
    border-radius: 8px;
    background: var(--color-white);
    color: var(--color-navy);
    font-size: 13px;
    font-weight: 700;
}

.service-areas .service-areas__teletherapy {
    color: var(--color-sage);
}

.moments-section {
    padding-block: 56px 8px;
}

.section-heading h2 {
    margin: 0;
    color: var(--color-navy);
    font-family: "Newsreader", serif;
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 500;
    line-height: 1.08;
}

.section-heading__description {
    max-width: 22em;
    margin: 0;
    color: var(--color-muted);
    font-size: 15px;
}

.moments-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.moment-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    margin: 0;
    background: var(--color-blue-light);
}

.moment-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.moment-card--left {
    border-radius: 28px 28px 28px 90px;
}

.moment-card--middle {
    margin-top: 40px;
    border-radius: 28px;
}

.moment-card--right {
    border-radius: 28px 28px 90px 28px;
}

.banner-section {
    width: min(100% - (var(--page-padding) * 2), 1400px);
    margin: 32px auto 0;
}

.banner-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 21 / 9;
    border-radius: 32px;
    background: var(--color-blue-light);
    box-shadow: 0 34px 80px -40px rgba(34, 64, 124, 0.5);
}

.banner-card>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-card__overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 55%;
    background: linear-gradient(transparent, rgba(20, 34, 68, 0.72));
    pointer-events: none;
}

.banner-card p {
    position: absolute;
    right: 40px;
    bottom: 34px;
    left: 40px;
    margin: 0;
    color: var(--color-white);
    font-family: "Newsreader", serif;
    font-size: clamp(20px, 2.6vw, 32px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.reassurance-section {
    margin-top: 40px;
    background: var(--color-navy);
    color: var(--color-white);
}

.reassurance-section__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    width: min(100% - (var(--page-padding) * 2), 1100px);
    margin-inline: auto;
    padding-block: 64px;
}

.reassurance-section__content {
    max-width: 30em;
}

.reassurance-section h2 {
    margin: 0 0 10px;
    font-family: "Newsreader", serif;
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 500;
    line-height: 1.1;
}

.reassurance-section p {
    margin: 0;
    color: #c9d8ec;
    font-size: 17px;
}

.reassurance-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* =============================
  Contact Page — Responsive
=================================   */

@media (max-width: 940px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-sidebar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sidebar-card--travel {
        grid-column: 1 / -1;
    }

    .moments-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .moment-card--middle {
        margin-top: 0;
    }

    .moment-card--right {
        grid-column: 1 / -1;
        width: calc(50% - 9px);
        justify-self: center;
    }

    .reassurance-section__inner {
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    :root {
        --page-padding: 22px;
    }

    .button--small {
        padding: 10px 16px;
        font-size: 14px;
    }

    .contact-hero__inner {
        padding-block: 76px 82px;
    }

    .contact-hero__description {
        font-size: 17px;
    }

    .form-card__header {
        padding: 24px 26px;
    }

    .form-card__body {
        padding: 28px 26px 26px;
    }

    .contact-sidebar {
        grid-template-columns: 1fr;
    }

    .sidebar-card--travel {
        grid-column: auto;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .banner-card {
        min-height: 300px;
        aspect-ratio: auto;
    }

    .banner-card p {
        right: 24px;
        bottom: 24px;
        left: 24px;
    }

    .reassurance-section__inner {
        flex-direction: column;
    }

    .reassurance-section__actions {
        width: 100%;
    }
}

@media (max-width: 560px) {
    :root {
        --page-padding: 16px;
    }

    .button--small {
        padding: 9px 13px;
        font-size: 13px;
    }

    .contact-hero__inner {
        padding-block: 62px 68px;
    }

    .contact-hero__icon {
        width: 50px;
        margin-bottom: 18px;
    }

    .contact-hero__title {
        font-size: clamp(38px, 12vw, 54px);
    }

    .availability-pill {
        align-items: flex-start;
        padding: 9px 14px;
    }

    .form-grid--two {
        grid-template-columns: 1fr;
    }

    .moments-grid {
        grid-template-columns: 1fr;
    }

    .form-card__header {
        padding: 22px 20px;
    }

    .form-card__body {
        padding: 24px 20px;
    }

    .sidebar-card {
        padding: 24px 20px;
    }

    .form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button--submit {
        width: 100%;
    }

    .reassurance-section__actions .button {
        width: 100%;
    }

    .form-note {
        max-width: none;
        text-align: center;
    }

    .moment-card {
        width: 100%;
        grid-column: auto;
    }

    .moment-card--right {
        width: 100%;
        grid-column: auto;
        border-radius: 28px;
    }

    .moment-card--left {
        border-radius: 28px;
    }

    .banner-card {
        min-height: 260px;
        border-radius: 24px;
    }

    .reassurance-section__inner {
        padding-block: 50px;
    }
}

@media (max-width: 380px) {
    .button--small {
        padding-inline: 11px;
    }

    .direct-link {
        font-size: 20px;
    }

    .text-center {
        text-align: center;
    }

    .section-heading h2 {
        font-size: 20px;
        line-height: 25px;
    }
}

/* ===========================
        HOME PAGE (INDEX6)
=============================== */

.display {
    font-family: "Newsreader", Georgia, serif;
}

.section {
    padding-top: 88px;
    padding-bottom: 40px;
}

.section-inner {
    padding: 88px 0;
}

.mb {
    margin-bottom: 20px;
}

.section-head {
    max-width: 52em;
    margin-bottom: 44px;
}

.section-head.wide {
    max-width: 56em;
}

.section-head.split {
    max-width: none;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

.section-head.split.baseline {
    align-items: baseline;
    margin-bottom: 40px;
}

.section-title.center {
    text-align: center;
    margin-bottom: 36px;
}

.section-sub {
    font-size: 18px;
    color: #3A4550;
    margin: 14px 0 0;
}

.section-sub.narrow {
    max-width: 26em;
    font-size: 15px;
    color: #4A5560;
    margin: 0;
}

.btn-pill {
    border-radius: 999px;
}

.btn-primary {
    background: #22407C;
    color: #fff;
    padding: 15px 28px;
    border: 2px solid #22407C;
}

.btn-primary:hover {
    color: #fff;
    background: #1a3466;
}

.btn-outline {
    border: 2px solid #22407C;
    color: #22407C;
    padding: 13px 26px;
    background: transparent;
}

.btn-outline:hover {
    background: #22407C;
    color: #fff;
}

.btn-green {
    background: #51754A;
    color: #fff;
    padding: 16px 32px;
    font-size: 17px;
}

.btn-green:hover {
    color: #fff;
    background: #45633f;
}

.btn-ghost {
    background: rgba(255, 255, 255, .14);
    border: 2px solid rgba(255, 255, 255, .5);
    color: #fff;
    padding: 14px 30px;
    font-size: 17px;
}

.btn-ghost:hover {
    color: #fff;
    background: rgba(255, 255, 255, .24);
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.btn-row.center {
    justify-content: center;
}

.lead {
    font-size: 19px;
    max-width: 30em;
    margin: 0 0 32px;
    color: #3A4550;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    background: rgba(121, 163, 65, .14);
    border: 1px solid rgba(81, 117, 74, .3);
    padding: 9px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    color: #51754A;
}

.badge-pill .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #79A341;
    box-shadow: 0 0 0 3px rgba(121, 163, 65, .25);
}

.hero-media {
    position: relative;
}

.hero-photo {
    border-radius: 28px 28px 28px 90px;
    box-shadow: 0 30px 70px -30px rgba(34, 64, 124, .4);
    aspect-ratio: 4/5;
    background: #B5CFE3;
}

.hero-badge-icon {
    position: absolute;
    bottom: -26px;
    left: -26px;
    width: 118px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(34, 64, 124, .25));
}

.hero-card {
    position: absolute;
    top: 24px;
    right: -18px;
    background: #fff;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 16px 40px -16px rgba(34, 64, 124, .45);
    max-width: 200px;
}

.hero-card-title {
    margin: 0;
    font-family: "Newsreader", Georgia, serif;
    font-style: italic;
    font-size: 17px;
    color: #22407C;
    line-height: 1.3;
}

.hero-card-sub {
    margin: 4px 0 0;
    font-size: 13px;
    font-weight: 700;
    color: #79A341;
}

.photo-fill {
    position: relative;
    overflow: hidden;
}

.photo-fill img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.band {
    margin-top: 64px;
}

.band-navy {
    background: #22407C;
    color: #fff;
}

.band-sand {
    background: #EFEAE0;
}

.band-mint {
    background: #F0F4EF;
}

.band-inner {
    max-width: 1000px;
    padding: 84px 0;
    text-align: center;
    margin: 0 auto;
}

.statement-icon {
    width: 64px;
    height: auto;
    margin: 0 auto 28px;
    opacity: .9;
}

.statement {
    font-weight: 400;
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.22;
    margin: 0 0 20px;
    letter-spacing: -.01em;
}

.statement em {
    color: #B5CFE3;
    font-style: italic;
}

.statement-body {
    font-size: 18px;
    max-width: 44em;
    margin: 0 auto;
    color: #C9D8EC;
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(34, 64, 124, .1);
}

.card-title {
    font-family: "Newsreader", Georgia, serif;
    font-size: 22px;
    color: #22407C;
    margin: 0 0 8px;
    font-weight: 500;
}

.card-title.green {
    color: #51754A;
    font-size: 20px;
}

.card-text {
    margin: 0;
    font-size: 15px;
    color: #4A5560;
}

.band-mint .card {
    border-radius: 18px;
    padding: 26px;
}

.topline {
    padding-top: 20px;
}

.topline-green {
    border-top: 3px solid #79A341;
}

.topline-teal {
    border-top: 3px solid #2D8198;
}

.topline-dkgreen {
    border-top: 3px solid #51754A;
}

.topline-navy {
    border-top: 3px solid #22407C;
}

.topline .card-title {
    font-size: 22px;
}

.settings-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 40px;
    align-items: stretch;
}

.settings-rail {
    position: relative;
}

.rail-line {
    position: absolute;
    left: 23px;
    top: 20px;
    bottom: 20px;
    width: 3px;
    background: linear-gradient(#2D8198, #79A341);
}

.tablist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.tab {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    border: 1px solid rgba(34, 64, 124, .16);
    background: #fff;
    color: #22407C;
    padding: 16px 18px;
    border-radius: 16px;
    font-family: inherit;
    transition: all .2s;
}

.tab.is-active {
    background: #22407C;
    color: #fff;
    border-color: #22407C;
}

.tab-dot {
    flex: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    background: rgba(34, 64, 124, .1);
    color: #22407C;
}

.tab.is-active .tab-dot {
    background: #79A341;
    color: #fff;
}

.tab-label {
    display: flex;
    flex-direction: column;
}

.tab-title {
    font-weight: 800;
    font-size: 17px;
}

.tab-tag {
    font-size: 13px;
    opacity: .8;
    font-weight: 600;
}

.setting-panel {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px -30px rgba(34, 64, 124, .4);
    display: flex;
    flex-direction: column;
}

.setting-photo {
    aspect-ratio: 16/10;
    background: #B5CFE3;
}

.setting-body {
    padding: 32px 34px 36px;
}

.setting-title {
    font-weight: 500;
    font-size: 30px;
    color: #22407C;
    margin: 0 0 12px;
}

.setting-text {
    font-size: 17px;
    color: #3A4550;
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(34, 64, 124, .15);
}

.service {
    padding: 28px 0;
    border-bottom: 1px solid rgba(34, 64, 124, .15);
    display: flex;
    gap: 20px;
}

.service:nth-child(odd) {
    padding-right: 32px;
}

.service:nth-child(even) {
    padding-left: 32px;
    border-left: 1px solid rgba(34, 64, 124, .15);
}

.service-num {
    font-family: "Newsreader", Georgia, serif;
    font-size: 20px;
    color: #79A341;
    font-weight: 600;
    min-width: 34px;
}

.service-title {
    font-family: "Newsreader", Georgia, serif;
    font-size: 23px;
    color: #22407C;
    margin: 0 0 6px;
    font-weight: 500;
}

.service-7 {
    grid-column: 1 / 2;
    border-left: none;
    padding-left: 0;
    padding-right: 32px;
    max-width: calc(100% - 0px);
}

.about-grid {
    padding: 88px 0;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 56px;
    align-items: center;
}

.about-photo {
    border-radius: 24px 24px 90px 24px;
    aspect-ratio: 4/5;
    box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .5);
    background: #B5CFE3;
}

.about-title {
    font-weight: 500;
    font-size: clamp(28px, 3.6vw, 42px);
    line-height: 1.12;
    margin: 0 0 20px;
    color: #fff;
}

.about-text {
    font-size: 18px;
    color: #D3DFF0;
    margin: 0 0 18px;
}

.about-text:last-of-type {
    margin-bottom: 26px;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(181, 207, 227, .4);
    padding: 8px 15px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
}

.gallery {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 16px;
}

.gallery>div {
    border-radius: 24px;
    background: #B5CFE3;
}

.gallery-tall {
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

.steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.step {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(34, 64, 124, .1);
}

.step-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 14px;
}

.step-navy {
    background: #22407C;
}

.step-teal {
    background: #2D8198;
}

.step-dkgreen {
    background: #51754A;
}

.step-green {
    background: #79A341;
}

.step-title {
    font-family: "Newsreader", Georgia, serif;
    font-size: 19px;
    color: #22407C;
    margin: 0 0 6px;
    font-weight: 500;
}

.area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-tag {
    background: #fff;
    border: 1px solid rgba(34, 64, 124, .15);
    padding: 9px 16px;
    border-radius: 10px;
    font-weight: 700;
    color: #22407C;
}

.area-map {
    position: relative;
    background: #EFEAE0;
    border-radius: 24px;
    padding: 36px;
    overflow: hidden;
}

.area-map svg {
    width: 100%;
    height: auto;
}

.area-note {
    margin: 14px 0 0;
    font-size: 13px;
    color: #4A5560;
    text-align: center;
    font-weight: 600;
}

.tag-note {
    background: #B5CFE3;
    color: #22407C;
    font-weight: 700;
    font-size: 13px;
    padding: 7px 14px;
    border-radius: 999px;
}

.quote {
    margin: 0;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(34, 64, 124, .1);
}

.quote-text {
    font-family: "Newsreader", Georgia, serif;
    font-style: italic;
    font-size: 20px;
    color: #22407C;
    line-height: 1.35;
    margin: 0 0 18px;
}

.quote-by {
    font-size: 14px;
    font-weight: 700;
    color: #51754A;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.resource {
    background: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    font-weight: 700;
    color: #22407C;
    border: 1px solid rgba(34, 64, 124, .12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.resource span {
    color: #79A341;
}

.resource:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px -22px rgba(34, 64, 124, .5);
    color: #22407C;
}

.faq {
    max-width: 900px;
}

.cta-wrap {
    margin-top: 64px;
}

.cta {
    background: #22407C;
    border-radius: 32px;
    padding: 72px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-icon {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 220px;
    opacity: .16;
}

.cta-title {
    font-weight: 500;
    font-size: clamp(30px, 4vw, 52px);
    color: #fff;
    margin: 0 0 18px;
    line-height: 1.08;
    position: relative;
}

.cta-sub {
    font-size: 19px;
    color: #C9D8EC;
    max-width: 38em;
    margin: 0 auto 32px;
    position: relative;
}

.cta .btn-row {
    position: relative;
}

.reveal-init {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-in {
    opacity: 1 !important;
    transform: none !important;
}

.btn {
    display: inline-block;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    overflow-wrap: anywhere;
}

/* ==================================
 Home Page (Index6) — Responsive
 ================================= */

@media (max-width: 920px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .area-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .settings-grid {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service:nth-child(odd) {
        border-left: none;
        padding-left: 0;
        padding-right: 0;
    }

    .service:nth-child(even) {
        border-left: none;
        padding-left: 0;
        padding-right: 0;
    }

    .service-7 {
        max-width: none;
    }

    .gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery>div {
        grid-row: auto;
        grid-column: auto;
        min-height: 200px;
    }

    .resource-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-card {
        right: 0;
    }
}

@media (max-width: 600px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section {
        padding-top: 56px;
    }

    .section-inner {
        padding: 56px 0;
    }

    .about-grid {
        padding: 56px 0;
    }

    .band-inner {
        padding: 56px 0;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .resource-grid {
        grid-template-columns: 1fr;
    }

    .cta {
        padding: 48px 24px;
    }

    .hero-badge-icon {
        width: 84px;
        left: -14px;
        bottom: -18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal-init {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 40px;
        gap: 30px;
    }

    .hero-title {
        font-size: clamp(10px, 12vw, 30px);
    }

    .lead {
        font-size: 16px;
    }

    .section-sub {
        font-size: 16px;
    }

    .statement-body {
        font-size: 16px;
    }

    .about-text {
        font-size: 16px;
    }

    .setting-text {
        font-size: 16px;
    }

    .cta-sub {
        font-size: 16px;
    }

    .btn-row {
        align-items: stretch;
    }

    .btn-row .btn {
        width: 100%;
        text-align: center;
    }

    .hero-card {
        top: 12px;
        right: 8px;
        max-width: 170px;
        padding: 12px 14px;
    }

    .hero-card-title {
        font-size: 15px;
    }

    .badge-pill {
        align-items: flex-start;
        border-radius: 18px;
    }

    .setting-body {
        padding: 26px 22px 30px;
    }

    .tab {
        gap: 12px;
        padding: 14px;
    }

    .service {
        gap: 14px;
    }

    .card {
        padding: 22px;
    }

    .quote {
        padding: 22px;
    }

    .step {
        padding: 22px;
    }

    .area-map {
        padding: 24px;
    }
}

/* ======================================
            RESOURCES PAGE CSS
==================================== */

.rlink {
    transition: background .18s, border-color .18s;
}

.rlink:hover {
    background: #22407C;
    border-color: #22407C;
}

.rlink:hover .rlink-t {
    color: #fff;
}

.rlink:hover .rlink-d {
    color: #C9D8EC;
}

.rlink:hover .rlink-a {
    color: #9EC85F;
}

.rlink-dk:hover {
    background: #fff;
    border-color: #fff;
}

.rlink-dk:hover .rlink-t {
    color: #22407C;
}

.rlink-dk:hover .rlink-d {
    color: #4A5560;
}

.rlink-dk:hover .rlink-a {
    color: #79A341;
}

.u-style-011 {
    max-width: 1240px;
    margin: 0 auto;
    padding: 64px 32px 40px;
}

.u-style-012 {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 52px;
    align-items: center;
}

.u-style-013 {
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 13px;
    color: #2D8198;
    margin: 0 0 20px;
}

.u-style-014 {
    font-family: "Newsreader";
    font-weight: 500;
    font-size: clamp(38px, 5.2vw, 64px);
    line-height: 1.03;
    color: #22407C;
    margin: 0 0 22px;
    letter-spacing: -.01em;
}

.u-style-015 {
    font-style: italic;
    color: #51754A;
}

.u-style-016 {
    font-size: 19px;
    max-width: 32em;
    margin: 0 0 22px;
    color: #3A4550;
}

.u-style-017 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.u-style-018 {
    background: #fff;
    border: 1px solid rgba(34, 64, 124, .15);
    color: #22407C;
    font-weight: 700;
    font-size: 14px;
    padding: 9px 15px;
    border-radius: 999px;
}

.u-style-019 {
    position: relative;
}

.u-style-020 {
    position: relative;
    overflow: hidden;
    border-radius: 28px 28px 28px 90px;
    aspect-ratio: 4 / 5;
}

.u-style-021 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.u-style-022 {
    position: absolute;
    bottom: -24px;
    left: -24px;
    width: 110px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(34, 64, 124, .25));
}

.u-style-023 {
    max-width: 1240px;
    margin: 0 auto;
    padding: 20px 32px 40px;
}

.u-style-024 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.u-style-025 {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(34, 64, 124, .1);
}

.u-style-026 {
    position: relative;
    aspect-ratio: 16/10;
    background: #B5CFE3;
}

.u-style-027 {
    padding: 26px;
    border-top: 3px solid #22407C;
}

.u-style-028 {
    font-family: "Newsreader";
    font-size: 22px;
    color: #22407C;
    margin: 0 0 8px;
}

.u-style-029 {
    margin: 0;
    font-size: 15px;
    color: #4A5560;
}

.u-style-030 {
    padding: 26px;
    border-top: 3px solid #2D8198;
}

.u-style-031 {
    padding: 26px;
    border-top: 3px solid #79A341;
}

.u-style-032 {
    max-width: 1240px;
    margin: 0 auto;
    padding: 48px 32px 20px;
}

.u-style-033 {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
}

.u-style-034 {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #22407C;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Newsreader";
    font-size: 22px;
}

.u-style-035 {
    font-family: "Newsreader";
    font-weight: 500;
    font-size: clamp(26px, 3.2vw, 38px);
    line-height: 1.05;
    color: #22407C;
    margin: 0;
}

.u-style-036 {
    margin: 2px 0 0;
    font-size: 15px;
    color: #6B7480;
}

.u-style-037 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.u-style-038 {
    background: #fff;
    border: 1px solid rgba(34, 64, 124, .12);
    border-radius: 16px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.u-style-039 {
    font-family: "Newsreader";
    font-size: 21px;
    color: #22407C;
    font-weight: 500;
}

.u-style-040 {
    font-size: 14px;
    color: #4A5560;
}

.u-style-041 {
    font-weight: 700;
    font-size: 13px;
    color: #79A341;
    margin-top: 4px;
}

.u-style-042 {
    background: #EFEAE0;
    border: 1px dashed rgba(34, 64, 124, .3);
    border-radius: 16px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.u-style-043 {
    background: #22407C;
    margin-top: 32px;
}

.u-style-044 {
    max-width: 1240px;
    margin: 0 auto;
    padding: 64px 32px 48px;
}

.u-style-045 {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #2D8198;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Newsreader";
    font-size: 22px;
}

.u-style-046 {
    font-family: "Newsreader";
    font-weight: 500;
    font-size: clamp(26px, 3.2vw, 38px);
    line-height: 1.05;
    color: #fff;
    margin: 0;
}

.u-style-047 {
    margin: 2px 0 0;
    font-size: 15px;
    color: #B5CFE3;
}

.u-style-048 {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(181, 207, 227, .28);
    border-radius: 16px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.u-style-049 {
    font-family: "Newsreader";
    font-size: 21px;
    color: #fff;
    font-weight: 500;
}

.u-style-050 {
    font-size: 14px;
    color: #C9D8EC;
}

.u-style-051 {
    font-weight: 700;
    font-size: 13px;
    color: #9EC85F;
    margin-top: 4px;
}

.u-style-052 {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #79A341;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Newsreader";
    font-size: 22px;
}

.u-style-053 {
    background: #1B3A32;
    margin-top: 32px;
}

.u-style-054 {
    max-width: 1240px;
    margin: 0 auto;
    padding: 64px 32px 56px;
}

.u-style-055 {
    margin: 2px 0 0;
    font-size: 15px;
    color: #BFD3B4;
}

.u-style-056 {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(191, 211, 180, .3);
    border-radius: 16px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.u-style-057 {
    font-size: 14px;
    color: #D3E3CB;
}

.u-style-058 {
    background: rgba(255, 255, 255, .12);
    border: 1px dashed rgba(191, 211, 180, .5);
    border-radius: 16px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.u-style-059 {
    font-size: 13px;
    color: #9FB595;
    margin: 20px 0 0;
    max-width: 52em;
}

.u-style-060 {
    max-width: 1400px;
    margin: 16px auto 0;
    padding: 0 32px;
}

.u-style-061 {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: #B5CFE3;
    aspect-ratio: 21/9;
    box-shadow: 0 34px 80px -40px rgba(34, 64, 124, .5);
}

.u-style-062 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;
    background: linear-gradient(transparent, rgba(20, 34, 68, .72));
    pointer-events: none;
}

.u-style-063 {
    position: absolute;
    left: 40px;
    bottom: 34px;
    right: 40px;
    margin: 0;
    font-family: "Newsreader";
    font-style: italic;
    font-weight: 400;
    color: #fff;
    font-size: clamp(20px, 2.6vw, 32px);
    line-height: 1.2;
    pointer-events: none;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}

.u-style-064 {
    background: #22407C;
    border-radius: 32px;
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.u-style-065 {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 200px;
    opacity: .16;
}

.u-style-066 {
    font-family: "Newsreader";
    font-weight: 500;
    font-size: clamp(28px, 4vw, 48px);
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.08;
    position: relative;
}

.u-style-067 {
    font-size: 19px;
    color: #C9D8EC;
    max-width: 36em;
    margin: 0 auto 30px;
    position: relative;
}

.u-style-068 {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    position: relative;
}

.u-style-069 {
    background: #79A341;
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    padding: 16px 32px;
    border-radius: 999px;
}

.u-style-070 {
    background: rgba(255, 255, 255, .14);
    border: 2px solid rgba(255, 255, 255, .5);
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    padding: 14px 30px;
    border-radius: 999px;
}

.u-style-071 {
    max-width: 1240px;
    margin: 24px auto 0;
    padding: 0 32px 72px;
}


/* =================================
    Resources Page — Responsive
================================ */

@media (max-width: 560px) {
    .rs-links {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 940px) {
    .rs-navlinks {
        display: none !important;
    }

    .rs-hero {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .rs-cat {
        grid-template-columns: 1fr !important;
    }

    .rs-links {
        grid-template-columns: 1fr 1fr !important;
    }

    .header-logo {
        height: 42px;
    }

    .hero-section {
        padding: 48px 24px 34px;
    }

    .hero-media {
        width: min(100%, 620px);
        margin: 0 auto;
    }

    .use-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .resource-section {
        padding: 44px 24px 18px;
    }

    .dark-resource-inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    .banner-section {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 640px) {
    .header-logo {
        width: min(160px, 45vw);
        height: auto;
    }

    .header-cta {
        padding: 9px 13px;
        font-size: 13px;
    }

    .hero-section {
        padding: 36px 18px 26px;
    }

    .rs-hero {
        gap: 28px !important;
    }

    .hero-content h1 {
        font-size: 35px !important;
        line-height: 1.06;
    }

    .hero-content>p:not(:first-child) {
        font-size: 17px;
    }

    .hero-chips {
        gap: 8px;
    }

    .hero-chips a {
        padding: 8px 12px;
        font-size: 13px;
    }

    .hero-card {
        border-radius: 22px 22px 22px 58px;
    }

    .hero-badge {
        width: 82px;
        left: -4px;
        bottom: -18px;
    }

    .use-section {
        padding: 18px 18px 30px;
    }

    .rs-cat {
        gap: 16px !important;
    }

    .rs-cat>.lift>div:last-child {
        padding: 21px;
    }

    .resource-section {
        padding: 38px 18px 14px;
    }

    .resource-section>div:first-child {
        align-items: flex-start;
        gap: 12px;
    }

    .dark-resource-inner>div:first-child {
        align-items: flex-start;
        gap: 12px;
    }

    .resource-section>div:first-child>span {
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
    }

    .dark-resource-inner>div:first-child>span {
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
    }

    .resource-section h2 {
        font-size: 29px !important;
    }

    .dark-resource-inner h2 {
        font-size: 29px !important;
    }

    .rs-links {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .rs-links>a {
        padding: 18px;
    }

    .dark-resource-inner {
        padding: 46px 18px 36px;
    }

    .banner-section {
        padding: 0 18px;
        margin-top: 14px;
    }

    .banner-card {
        min-height: 300px;
        aspect-ratio: auto;
        border-radius: 22px;
    }

    .banner-text {
        left: 20px;
        right: 20px;
        bottom: 20px;
        font-size: 23px !important;
    }

    .closing-cta {
        padding: 48px 20px;
        border-radius: 24px;
    }

    .closing-cta-copy {
        font-size: 17px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions a {
        width: min(100%, 360px);
        padding-left: 18px;
        padding-right: 18px;
        font-size: 15px;
    }
}

@media (max-width: 400px) {
    .header-logo {
        width: 138px;
    }

    .header-cta {
        padding: 8px 11px;
        font-size: 12px;
    }

    .hero-content h1 {
        font-size: 32px !important;
    }

}

/* ===================
        END
=============== */

/* =========================
      SERVICES PAGE CSS
======================== */

.u-011 {
    position: relative;
    overflow: hidden;
    background: #22407C;
    color: #fff;
}

.u-012 {
    position: absolute;
    top: -30px;
    right: 2%;
    font-family: "Newsreader";
    font-style: italic;
    font-weight: 400;
    font-size: clamp(140px, 26vw, 360px);
    line-height: .8;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(181, 207, 227, .22);
    pointer-events: none;
    user-select: none;
}

.u-013 {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: auto;
    opacity: .5;
}

.u-014 {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: auto;
    opacity: .45;
}

.u-015 {
    max-width: 1240px;
    margin: 0 auto;
    padding: 80px 32px 96px;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 56px;
    align-items: center;
    position: relative;
}

.u-016 {
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-size: 13px;
    color: #B5CFE3;
    margin: 0 0 22px;
}

.u-017 {
    font-family: "Newsreader";
    font-weight: 500;
    font-size: clamp(42px, 5.6vw, 72px);
    line-height: 1.0;
    color: #fff;
    margin: 0 0 24px;
    letter-spacing: -.01em;
}

.u-018 {
    font-style: italic;
    color: #79A341;
}

.u-019 {
    font-size: 19px;
    max-width: 32em;
    margin: 0 0 30px;
    color: #D3DFF0;
}

.u-020 {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.u-021 {
    background: #79A341;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 15px 28px;
    border-radius: 999px;
}

.u-022 {
    border: 2px solid rgba(255, 255, 255, .5);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 13px 26px;
    border-radius: 999px;
}
.u-022:hover{
    background: #fff;
    color: #22407C;
}

.u-023 {
    position: relative;
}

.u-024 {
    position: relative;
    border-radius: 28px 28px 28px 90px;
    overflow: hidden;
    box-shadow: 0 34px 80px -30px rgba(0, 0, 0, .55);
    aspect-ratio: 4/5;
    background: #B5CFE3;
}

.u-025 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.u-026 {
    position: absolute;
    bottom: -24px;
    left: -24px;
    width: 110px;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 8px 18px rgba(0, 0, 0, .4));
}

.u-027 {
    position: absolute;
    top: 24px;
    right: -16px;
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 16px 40px -16px rgba(0, 0, 0, .5);
    max-width: 180px;
}

.u-028 {
    margin: 0;
    font-family: "Newsreader";
    font-style: italic;
    font-size: 16px;
    color: #22407C;
    line-height: 1.25;
}

.u-029 {
    margin: 3px 0 0;
    font-size: 12px;
    font-weight: 700;
    color: #79A341;
}

.u-030 {
    max-width: 1240px;
    margin: 0 auto;
    padding: 80px 32px 48px;
}

.u-031 {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 44px;
}

.u-032 {
    max-width: 34em;
}

.u-033 {
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 13px;
    color: #2D8198;
    margin: 0 0 14px;
}

.u-034 {
    font-family: "Newsreader";
    font-weight: 500;
    font-size: clamp(30px, 3.8vw, 46px);
    line-height: 1.1;
    color: #22407C;
    margin: 0;
}

.u-035 {
    font-size: 15px;
    color: #6B7480;
    max-width: 22em;
    margin: 0;
}

.u-036 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.u-037 {
    border-bottom: 1px solid rgba(34, 64, 124, .16);

}

.u-038 {
    position: sticky;
    top: 96px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 26px 60px -34px rgba(34, 64, 124, .5);
    border: 1px solid rgba(34, 64, 124, .08);

}

.u-039 {
    position: relative;
    aspect-ratio: 16/10;
    background: #B5CFE3;
}

.u-040 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;

}

.u-041 {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: "Newsreader";
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    background: rgba(34, 64, 124, .72);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.u-042 {
    padding: 32px 34px 36px;

}

.u-043 {
    font-family: "Newsreader";
    font-weight: 500;
    font-size: clamp(24px, 2.6vw, 32px);
    color: #22407C;
    margin: 0 0 14px;
    line-height: 1.1;
}

.u-044 {
    font-size: 17px;
    color: #3A4550;
    margin: 0 0 22px;
}

.u-045 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;

}

.u-046 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 15px;
    color: #51754A;
}

.u-047 {
    background: #E4F0F2;
    margin-top: 40px;
}

.u-048 {
    max-width: 1080px;
    margin: 0 auto;
    padding: 84px 32px;
    text-align: center;
}

.u-049 {
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 13px;
    color: #2D8198;
    margin: 0 0 18px;
}

.u-050 {
    font-family: "Newsreader";
    font-weight: 400;
    font-size: clamp(26px, 3.6vw, 42px);
    line-height: 1.22;
    color: #22407C;
    margin: 0 0 14px;
}

.u-051 {
    font-style: italic;
    color: #51754A;
}

.u-052 {
    font-size: 18px;
    color: #3A4550;
    max-width: 44em;
    margin: 0 auto 40px;
}

.u-053 {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.u-054 {
    background: #fff;
    border-radius: 16px;
    padding: 22px 30px;
    min-width: 150px;
}

.u-055 {
    font-family: "Newsreader";
    font-size: 38px;
    line-height: 1;
    color: #2D8198;
}

.u-056 {
    margin: 8px 0 0;
    font-size: 14px;
    font-weight: 600;
    color: #4A5560;
}

.u-057 {
    font-family: "Newsreader";
    font-size: 38px;
    line-height: 1;
    color: #79A341;
}

.u-058 {
    font-family: "Newsreader";
    font-size: 38px;
    line-height: 1;
    color: #51754A;
}

.u-059 {
    background: #22407C;
    color: #fff;
    margin-top: 40px;
}

.u-060 {
    max-width: 1240px;
    margin: 0 auto;
    padding: 84px 32px;
}

.u-061 {
    max-width: 52em;
    margin-bottom: 40px;
}

.u-062 {
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 13px;
    color: #B5CFE3;
    margin: 0 0 14px;
}

.u-063 {
    font-family: "Newsreader";
    font-weight: 500;
    font-size: clamp(30px, 3.8vw, 46px);
    line-height: 1.1;
    color: #fff;
    margin: 0;
}

.u-064 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.u-065 {
    background: rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 26px;
    border: 1px solid rgba(181, 207, 227, .35);
}

.u-066 {
    font-family: "Newsreader";
    font-size: 21px;
    color: #fff;
    margin: 0 0 8px;
}

.u-067 {
    margin: 0;
    font-size: 15px;
    color: #C9D8EC;
}

.u-068 {
    max-width: 1240px;
    margin: 0 auto;
    padding: 80px 32px 40px;
}

.u-069 {
    max-width: 52em;
    margin-bottom: 44px;
}

.u-070 {
    background: #fff;
    border-radius: 18px;
    padding: 26px;
    border: 1px solid rgba(34, 64, 124, .1);
}

.u-071 {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #22407C;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 14px;
}

.u-072 {
    font-family: "Newsreader";
    font-size: 20px;
    color: #22407C;
    margin: 0 0 6px;
}

.u-073 {
    margin: 0;
    font-size: 14px;
    color: #4A5560;
}

.u-074 {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #2D8198;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 14px;
}

.u-075 {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #51754A;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 14px;
}

.u-076 {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #79A341;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 14px;
}

.u-077 {
    max-width: 1240px;
    margin: 0 auto;
    padding: 40px 32px 40px;
}

.u-078 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.u-079 {
    background: #EFEAE0;
    border-radius: 24px;
    padding: 34px;
}

.u-080 {
    font-family: "Newsreader";
    font-size: 24px;
    color: #6B7480;
    margin: 0 0 20px;
}

.u-081 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.u-082 {
    display: flex;
    gap: 12px;
    font-size: 16px;
    color: #6B7480;
}

.u-083 {
    color: #B0483C;
    font-weight: 800;
}

.u-084 {
    background: #22407C;
    color: #fff;
    border-radius: 24px;
    padding: 34px;
    position: relative;
    overflow: hidden;
}

.u-085 {
    position: absolute;
    right: -24px;
    bottom: -24px;
    width: 130px;
    opacity: .14;
}

.u-086 {
    font-family: "Newsreader";
    font-size: 24px;
    color: #fff;
    margin: 0 0 20px;
    position: relative;
}

.u-087 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
}

.u-088 {
    display: flex;
    gap: 12px;
    font-size: 16px;
    color: #EAF1F8;
}

.u-089 {
    color: #79A341;
    font-weight: 800;
}

.u-090 {
    max-width: 1240px;
    margin: 0 auto;
    padding: 40px 32px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.u-091 {
    border-radius: 28px 28px 28px 90px;
    overflow: hidden;
    background: #B5CFE3;
    aspect-ratio: 4/3;
    box-shadow: 0 30px 70px -34px rgba(34, 64, 124, .4);
}

.u-092 {
    font-family: "Newsreader";
    font-weight: 500;
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.08;
    color: #22407C;
    margin: 0 0 20px;
}

.u-093 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.u-094 {
    display: flex;
    gap: 10px;
    font-size: 16px;
    color: #3A4550;
}

.u-095 {
    background: #EFEAE0;
    margin-top: 40px;
}

.u-096 {
    max-width: 1240px;
    margin: 0 auto;
    padding: 80px 32px;
}

.u-097 {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.u-098 {
    background: #B5CFE3;
    color: #22407C;
    font-weight: 700;
    font-size: 13px;
    padding: 7px 14px;
    border-radius: 999px;
}

.u-099 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.u-100 {
    margin: 0;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(34, 64, 124, .1);
}

.u-101 {
    font-family: "Newsreader";
    font-style: italic;
    font-size: 20px;
    color: #22407C;
    line-height: 1.35;
    margin: 0 0 18px;
}

.u-102 {
    font-size: 14px;
    font-weight: 700;
    color: #51754A;
}

.u-103 {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 32px 40px;
}

.u-104 {
    font-family: "Newsreader";
    font-weight: 500;
    font-size: clamp(30px, 3.8vw, 46px);
    line-height: 1.1;
    color: #22407C;
    margin: 0 0 36px;
    text-align: center;
}

.u-105 {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.u-106 {
    background: #fff;
    border-radius: 14px;
    padding: 8px 24px;
    border: 1px solid rgba(34, 64, 124, .12);
}

.u-107 {
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    color: #22407C;
    padding: 16px 0;
    list-style: none;
}

.u-108 {
    margin: 0 0 18px;
    color: #4A5560;
    font-size: 16px;
}

.u-109 {
    max-width: 1240px;
    margin: 48px auto 0;
    padding: 0 32px 80px;
}

.u-110 {
    background: #22407C;
    border-radius: 32px;
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.u-111 {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 220px;
    opacity: .16;
}

.u-112 {
    font-family: "Newsreader";
    font-weight: 500;
    font-size: clamp(28px, 3.6vw, 46px);
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.1;
    position: relative;
}

.u-113 {
    font-size: 19px;
    color: #C9D8EC;
    max-width: 36em;
    margin: 0 auto 30px;
    position: relative;
}

.u-114 {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    position: relative;
}

.u-115 {
    background: #51754A;
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    padding: 16px 32px;
    border-radius: 999px;
}

.u-116 {
    background: rgba(255, 255, 255, .14);
    border: 2px solid rgba(255, 255, 255, .5);
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    padding: 14px 30px;
    border-radius: 999px;
}

.sv-rowimg {
    position: relative;
}

summary::-webkit-details-marker {
    display: none;
}

.sv-service-image {
    display: block;
}

.sv-service-image[hidden] {
    display: none !important;
}

.sv-tab {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    border: 0;
    border-top: 1px solid rgba(34, 64, 124, .16);
    background: transparent;
    color: #22407C;
    padding: 20px 22px;
    border-radius: 0;
    font-family: inherit;
    transition: all .22s ease;
}

.sv-tab.is-active {
    background: #22407C;
    color: #fff;
    border-radius: 14px;
}

.sv-tab__number {
    font-family: "Newsreader";
    font-size: 26px;
    font-weight: 500;
    min-width: 44px;
    color: #B5CFE3;
}

.sv-tab.is-active .sv-tab__number {
    color: #79A341;
}

.sv-tab__name {
    font-family: "Newsreader";
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 500;
    flex: 1;
}

.sv-tab__arrow {
    font-size: 20px;
    opacity: .3;
    color: #22407C;
}

.sv-tab.is-active .sv-tab__arrow {
    opacity: 1;
    color: #79A341;
}

.sv-tag {
    background: #EFEAE0;
    border: 1px solid rgba(34, 64, 124, .14);
    color: #22407C;
    font-weight: 600;
    font-size: 13px;
    padding: 7px 13px;
    border-radius: 999px;
}

/* ===============================
    Services Page — Responsive 
================================= */

@media (max-width: 920px) {
    .sv-navlinks {
        display: none !important;
    }

    .sv-row {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .sv-grid3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .sv-grid4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .sv-row .sv-rowimg {
        order: -1;
    }

    .sv-explorer {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .sv-detail {
        position: static !important;
    }

    .header-cta {
        padding: 10px 16px !important;
        font-size: 14px !important;
    }

    .sv-hero {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        padding: 64px 24px 80px !important;
    }

    .hero-visual {
        width: min(100%, 560px);
        margin: 0 auto;
    }

    .services-explorer-section {
        padding: 64px 24px 42px !important;
    }

    .aac-spotlight>div {
        padding: 68px 24px !important;
    }

    .delivery-section>div {
        padding: 68px 24px !important;
    }

    .testimonials-section>div {
        padding: 68px 24px !important;
    }

    .process-section {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .comparison-section {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .insurance-section {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .faq-section {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .closing-section {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}

@media (max-width: 390px) {
    .header-cta {
        padding: 8px 11px !important;
        font-size: 12px !important;
    }

    .sv-hero h1 {
        font-size: 34px !important;
    }

    .hero-note {
        position: static !important;
        max-width: none !important;
        margin-top: 12px;
    }

    .closing-section>div {
        padding: 38px 16px !important;
    }

}

@media (max-width: 600px) {
    .sv-grid3 {
        grid-template-columns: 1fr !important;
    }

    .sv-grid4 {
        grid-template-columns: 1fr !important;
    }

    .header-cta {
        padding: 9px 13px !important;
        font-size: 13px !important;
    }

    .sv-hero {
        padding: 48px 18px 66px !important;
        gap: 28px !important;
    }

    .sv-hero h1 {
        font-size: 38px !important;
        line-height: 1.03 !important;
    }

    .sv-hero h1 br {
        display: none;
    }

    .sv-hero p {
        font-size: 17px !important;
    }

    .hero-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100%;
    }

    .hero-actions a {
        width: 100%;
        text-align: center;
    }

    .hero-note {
        top: 12px !important;
        right: 10px !important;
        max-width: 155px !important;
        padding: 10px 12px !important;
    }

    .services-explorer-section {
        padding: 52px 18px 34px !important;
    }

    .sv-explorer {
        gap: 24px !important;
    }

    .sv-detail>div:last-child {
        padding: 25px 20px 28px !important;
    }

    .aac-spotlight>div {
        padding: 54px 18px !important;
    }

    .delivery-section>div {
        padding: 54px 18px !important;
    }

    .testimonials-section>div {
        padding: 54px 18px !important;
    }

    .process-section {
        padding-left: 18px !important;
        padding-right: 18px !important;
        padding-top: 58px !important;
    }

    .comparison-section {
        padding-left: 18px !important;
        padding-right: 18px !important;
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .insurance-section {
        padding-left: 18px !important;
        padding-right: 18px !important;
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .faq-section {
        padding-left: 18px !important;
        padding-right: 18px !important;
        padding-top: 58px !important;
    }

    .closing-section {
        margin-top: 30px !important;
        padding: 0 18px 56px !important;
    }

    .closing-section>div {
        padding: 44px 20px !important;
        border-radius: 24px !important;
    }

    .closing-section a {
        width: 100%;
        overflow-wrap: anywhere;
    }

    .sv-tab {
        gap: 12px;
        padding: 17px 14px;
    }

    .sv-tab__number {
        font-size: 22px;
        min-width: 36px;
    }

    .sv-tab__name {
        font-size: 12px;
    }

    .u-115 {
        font-size: 12px;
    }

    .u-098 {
        font-size: 10px;
    }

    .service-title {
        font-size: 14px;
    }

}

/* ===============================
     SHARED FOOTER For All pages
================================= */

.footer-brand p {
    max-width: 26em;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.footer-links h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.copyright-wrap {
    border-top: 1px solid var(--border);
}

.footer-brand img,
.site-footer__brand img {
    width: auto;
    height: 48px;
    margin-bottom: 16px;
}

.site-footer__brand p {
    max-width: 26em;
    margin: 0;
    color: #4a5560;
    font-size: 14px;
}

.footer-links,
.site-footer__groups {
    display: flex;
    flex-wrap: wrap;
    gap: 56px;
}

.site-footer__group h3 {
    margin: 0 0 12px;
    color: var(--color-navy);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-footer__group p:last-child {
    margin-bottom: 0;
}

.copyright-bar {
    border-top: 1px solid rgba(34, 64, 124, 0.12);
}

.copyright-bar p {
    padding-block: 20px;
    margin-block: 0;
    color: var(--color-muted);
    font-size: 13px;
}

.site-footer {
    padding-block: 40px 64px;
    padding-top: 56px;
    padding-bottom: 64px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-line {
    font-size: 14px;
    color: #4A5560;
}

.copyright {
    padding-block: 20px;
    color: #6b7480;
    font-size: 13px;
    border-top: 1px solid rgba(34, 64, 124, .12);
}

.copyright p {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 13px;
    color: #6B7480;
    margin: 0;
}

.footer-cols a {
    font-weight: 600;
    overflow-wrap: anywhere;
}

.u-117,
.u-style-072 {
    max-width: 1240px;
    margin: 0 auto;
    padding: 40px 32px 64px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo,
.u-118,
.u-style-073 {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
}

.footer-blurb,
.u-119,
.u-style-074 {
    margin: 0;
    color: #4A5560;
    font-size: 14px;
    max-width: 26em;
}

.footer-cols,
.u-120,
.u-style-075 {
    display: flex;
    gap: 56px;
    flex-wrap: wrap;
}

.footer-h,
.u-121,
.u-style-076 {
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #22407C;
    margin: 0 0 12px;
}

.footer-cols p,
.footer-links p,
.site-footer__group p,
.u-122,
.u-style-077 {
    margin: 0 0 6px;
}

.footer-links a,
.site-footer__group a,
.u-123,
.u-style-078 {
    font-weight: 600;
}

.u-124,
.u-style-079 {
    margin: 0;
}

.u-125,
.u-style-080 {
    border-top: 1px solid rgba(34, 64, 124, .12);
}

.u-126,
.u-style-081 {
    max-width: 1240px;
    margin: 0 auto;
    padding: 20px 32px;
    font-size: 13px;
    color: #6B7480;
}

/* ===========================
    Shared Footer — Responsive
============================== */

@media (max-width: 720px) {
    .site-footer {
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .site-footer__groups {
        gap: 34px;
    }
}

@media (max-width: 380px) {
    .site-footer {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .site-footer {
        gap: 28px;
    }

    .footer-cols {
        gap: 28px;
        flex-direction: column;
    }
}

@media (max-width: 940px) {
    .site-footer {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 36px 18px 44px;
        flex-direction: column;
    }

    .footer-brand img {
        max-width: min(240px, 78vw);
        height: auto;
    }

    .footer-links {
        width: 100%;
        gap: 32px;
        justify-content: space-between;
    }

    .copyright-text {
        padding: 18px;
    }

}

@media (max-width: 400px) {
    .footer-links {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 920px) {

    .copyright-bar p,
    .site-footer {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding: 34px 18px 46px !important;
    }

    .site-footer>div:last-child {
        gap: 30px !important;
        width: 100%;
    }

    .copyright-bar p {
        padding: 18px !important;
    }
}


/* ==========================================================================
   Rocky Mountain Speech Therapy — Gravity Forms styling
   Targets GF's Orbital theme. Hooks onto .rmst-form_wrapper, which GF
   generates from the form's "rmst-form" CSS class setting.
   Orbital injects its variables inline on #gform_wrapper_N, so the variable
   overrides below need !important to win the cascade.
   ========================================================================== */

/* --- 1. Override Orbital's design tokens --------------------------------- */

.rmst-form_wrapper.gform-theme {
  /* Brand */
  --gf-color-primary: #22407c !important;
  --gf-color-primary-rgb: 34, 64, 124 !important;
  --gf-color-primary-contrast: #ffffff !important;
  --gf-color-primary-darker: #1b3364 !important;
  --gf-color-primary-lighter: #2d8198 !important;

  /* Field surfaces */
  --gf-color-in-ctrl: #f2ede4 !important;
  --gf-color-in-ctrl-rgb: 242, 237, 228 !important;
  --gf-color-in-ctrl-contrast: #22407c !important;
  --gf-color-in-ctrl-primary: #22407c !important;
  --gf-color-in-ctrl-primary-contrast: #ffffff !important;
  --gf-ctrl-border-color: #e5ddd0 !important;

  /* Labels */
  --gf-ctrl-label-color-primary: #51754a !important;
  --gf-ctrl-label-color-secondary: #51754a !important;

  /* Shape and rhythm */
  --gf-radius: 12px !important;
  --gf-form-gap-y: 20px !important;
  --gf-form-gap-x: 26px !important;

  /* Navy chevron instead of Orbital's grey one */
  --gf-icon-ctrl-select: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%2322407C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;

  font-family: inherit;
}

/* --- 2. Layout ----------------------------------------------------------- */

.rmst-form_wrapper .gform_fields {
  row-gap: 20px !important;
  column-gap: 26px !important;
}

.rmst-form_wrapper .gfield {
  padding: 0 !important;
}

/* Honeypot must never be visible */
.rmst-form_wrapper .gform_validation_container {
  display: none !important;
  position: absolute !important;
  left: -9999px !important;
}

/* --- 3. Labels ----------------------------------------------------------- */

.rmst-form_wrapper .gfield_label,
.rmst-form_wrapper legend.gfield_label {
  display: block !important;
  margin: 0 0 8px !important;
  padding: 0 !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  color: #51754a !important;
}

.rmst-form_wrapper .gform-field-label__text {
  font-weight: 700 !important;
}

/* The approved design has no "(Required)" text. Validation still enforces it. */
.rmst-form_wrapper .gfield_required {
  display: none !important;
}

/* --- 4. Inputs, select, textarea ----------------------------------------- */

.rmst-form_wrapper input[type="text"],
.rmst-form_wrapper input[type="email"],
.rmst-form_wrapper input[type="tel"],
.rmst-form_wrapper input[type="url"],
.rmst-form_wrapper input[type="number"],
.rmst-form_wrapper select,
.rmst-form_wrapper textarea {
  width: 100% !important;
  height: auto !important;
  padding: 15px 18px !important;
  background-color: #f2ede4 !important;
  border: 1px solid #e5ddd0 !important;
  border-radius: 12px !important;
  font-family: inherit !important;
  font-size: 1rem !important;
  line-height: 1.4 !important;
  color: #22407c !important;
  box-shadow: none !important;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  -webkit-appearance: none;
  appearance: none;
}

.rmst-form_wrapper textarea {
  min-height: 140px !important;
  resize: vertical;
}

.rmst-form_wrapper input:focus,
.rmst-form_wrapper select:focus,
.rmst-form_wrapper textarea:focus {
  outline: none !important;
  background-color: #ffffff !important;
  border-color: #22407c !important;
  box-shadow: 0 0 0 3px rgba(34, 64, 124, 0.13) !important;
}

/* --- 5. Placeholder colour ----------------------------------------------- */

.rmst-form_wrapper input::placeholder,
.rmst-form_wrapper textarea::placeholder {
  color: #a9a293 !important;
  opacity: 1 !important;
  font-weight: 400 !important;
}

.rmst-form_wrapper input::-webkit-input-placeholder,
.rmst-form_wrapper textarea::-webkit-input-placeholder {
  color: #a9a293 !important;
}

.rmst-form_wrapper input::-moz-placeholder,
.rmst-form_wrapper textarea::-moz-placeholder {
  color: #a9a293 !important;
  opacity: 1 !important;
}

.rmst-form_wrapper input:-ms-input-placeholder,
.rmst-form_wrapper textarea:-ms-input-placeholder {
  color: #a9a293 !important;
}

/* Select chevron */
.rmst-form_wrapper select {
  padding-right: 46px !important;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%2322407C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 18px center !important;
  background-size: 14px 9px !important;
}

.rmst-form_wrapper select::-ms-expand {
  display: none !important;
}

/* --- 6. Radio buttons → inline pills -------------------------------------- */

.rmst-form_wrapper .gfield--type-radio .ginput_container_radio {
  margin: 0 !important;
}

.rmst-form_wrapper .gfield_radio {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.rmst-form_wrapper .gfield_radio .gchoice {
  display: block !important;
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
}

/* Hide Orbital's custom radio circle but keep the input keyboard-reachable */
.rmst-form_wrapper .gfield_radio input[type="radio"],
.rmst-form_wrapper .gfield_radio .gfield-choice-input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  border: none !important;
  background: none !important;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none;
}

.rmst-form_wrapper .gfield_radio input[type="radio"]::before,
.rmst-form_wrapper .gfield_radio input[type="radio"]::after {
  display: none !important;
  content: none !important;
}

.rmst-form_wrapper .gfield_radio label,
.rmst-form_wrapper .gfield_radio .gform-field-label--type-inline {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 10px 22px !important;
  max-width: none !important;
  border: 1.5px solid #22407c !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #22407c !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  cursor: pointer;
  user-select: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.rmst-form_wrapper .gfield_radio label:hover {
  transform: translateY(-1px);
  background: rgba(34, 64, 124, 0.06) !important;
}

.rmst-form_wrapper .gfield_radio input[type="radio"]:checked + label {
  background: #22407c !important;
  color: #ffffff !important;
  border-color: #22407c !important;
}

.rmst-form_wrapper .gfield_radio input[type="radio"]:focus-visible + label {
  box-shadow: 0 0 0 3px rgba(34, 64, 124, 0.28) !important;
}

/* --- 7. Footer and submit button ------------------------------------------ */

.rmst-form_wrapper .gform_footer,
.rmst-form_wrapper .gform-footer {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px !important;
  margin: 30px 0 0 !important;
  padding: 0 !important;
}

.rmst-form_wrapper .gform_button,
.rmst-form_wrapper button[type="submit"] {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 15px 34px !important;
  background: #22407c !important;
  border: none !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  font-family: inherit !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(34, 64, 124, 0.22) !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.rmst-form_wrapper .gform_button:hover,
.rmst-form_wrapper button[type="submit"]:hover {
  transform: translateY(-2px);
  background: #1b3364 !important;
  box-shadow: 0 10px 22px rgba(34, 64, 124, 0.28) !important;
}

.rmst-form_wrapper .gform_button:active,
.rmst-form_wrapper button[type="submit"]:active {
  transform: translateY(0);
}

/* Reassurance note beside the button (added by the gform_submit_button filter) */
.rmst-form_wrapper .gform_footer .form-note {
  flex: 1 1 200px;
  max-width: 24rem;
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(34, 64, 124, 0.65);
}

/* --- 8. Validation --------------------------------------------------------- */

.rmst-form_wrapper .gform_validation_errors {
  margin: 0 0 26px !important;
  padding: 16px 20px !important;
  background: #fdf3f2 !important;
  border: 1px solid #e6b7b2 !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}

.rmst-form_wrapper .gform_validation_errors > h2,
.rmst-form_wrapper .gform_validation_errors .gform_submission_error {
  margin: 0 !important;
  color: #9b3b32 !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
}

.rmst-form_wrapper .gfield_error input,
.rmst-form_wrapper .gfield_error select,
.rmst-form_wrapper .gfield_error textarea {
  border-color: #c86b60 !important;
  background-color: #fdf7f6 !important;
}

.rmst-form_wrapper .gfield_error .gfield_label {
  color: #51754a !important;
}

.rmst-form_wrapper .gfield_validation_message,
.rmst-form_wrapper .validation_message {
  margin: 6px 0 0 !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  color: #9b3b32 !important;
  font-size: 0.84rem !important;
}

/* --- 9. Confirmation ------------------------------------------------------- */

.gform_confirmation_message {
  padding: 28px 30px;
  background: #f2ede4;
  border-radius: 12px;
  color: #22407c;
  font-size: 1.02rem;
  line-height: 1.6;
}

/* --- 10. Mobile ------------------------------------------------------------ */

@media (max-width: 640px) {
  .rmst-form_wrapper .gform_fields {
    row-gap: 18px !important;
  }

  .rmst-form_wrapper .gfield_radio label {
    padding: 9px 18px !important;
    font-size: 0.88rem !important;
  }

  .rmst-form_wrapper .gform_footer {
    flex-direction: column;
    align-items: stretch;
  }

  .rmst-form_wrapper .gform_button,
  .rmst-form_wrapper button[type="submit"] {
    width: 100% !important;
  }

  .rmst-form_wrapper .gform_footer .form-note {
    max-width: none;
  }
}