:root {
    --ink: #111f2d;
    --muted: #5b6b78;
    --line: #d8e3eb;
    --paper: #ffffff;
    --soft: #f4f8fb;
    --medical: #1d6f96;
    --medical-dark: #123f5a;
    --red: #d7392f;
    --red-dark: #a82722;
    --ice: #8bc7e8;
    --shadow: 0 20px 48px rgba(14, 31, 47, .14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 500;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--medical-dark);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    color: var(--red-dark);
}

h1,
h2,
h3,
.brand strong,
.btn,
.call-pill,
summary {
    font-weight: 800;
}

.container {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.narrow {
    width: min(860px, calc(100% - 32px));
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -80px;
    z-index: 100;
    padding: 10px 14px;
    background: var(--ink);
    color: #fff;
}

.skip-link:focus {
    top: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(14, 31, 47, .06);
}

.nav {
    min-height: 84px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    text-decoration: none;
    min-width: 300px;
}

.brand-logo {
    display: grid;
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    place-items: center;
}

.brand-logo img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.brand-copy {
    min-width: 0;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 1rem;
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.brand small {
    color: var(--muted);
    font-size: .78rem;
}

.main-nav {
    display: flex;
    flex: 1;
    justify-content: center;
    gap: 18px;
    font-size: .93rem;
    font-weight: 700;
}

.main-nav a {
    color: var(--ink);
    text-decoration: none;
    white-space: nowrap;
    transition: color .18s ease;
}

.main-nav a:hover {
    color: var(--red);
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-weight: 900;
}

.menu-icon {
    display: grid;
    gap: 4px;
    width: 20px;
}

.menu-icon span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.call-pill,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 18px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
}

.call-pill {
    background: linear-gradient(180deg, #e14a40 0%, var(--red) 100%);
    color: #fff;
    box-shadow: 0 12px 26px rgba(215, 57, 47, .26);
}

.call-pill:hover,
.btn-primary:hover {
    background: linear-gradient(180deg, #c9322a 0%, var(--red-dark) 100%);
    color: #fff;
}

.hero {
    background:
        linear-gradient(125deg, rgba(8, 22, 35, .96) 0%, rgba(15, 50, 75, .93) 58%, rgba(148, 38, 35, .86) 100%),
        url("/wp-content/uploads/2022/02/video-gallery-style1-bg.jpg") center/cover;
    color: #fff;
    padding: 64px 0 54px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
    gap: 42px;
    align-items: center;
}

.hero-copy h1 {
    margin: 0;
    max-width: 790px;
    font-size: 4.1rem;
    line-height: 1.02;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--medical);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #b9e6ff;
}

.lead {
    max-width: 760px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .88);
    font-size: 1.13rem;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn-primary {
    background: linear-gradient(180deg, #e14a40 0%, var(--red) 100%);
    color: #fff;
    box-shadow: 0 12px 26px rgba(215, 57, 47, .22);
}

.btn-secondary {
    background: #fff;
    color: var(--ink);
}

.btn-secondary:hover {
    background: #e8f3fa;
    color: var(--medical-dark);
}

.btn-light {
    background: #fff;
    color: var(--red-dark);
}

.signal-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 26px 0 0;
    list-style: none;
}

.signal-list li {
    border: 1px solid rgba(185, 230, 255, .28);
    border-radius: 8px;
    background: rgba(255, 255, 255, .07);
    padding: 8px 10px;
    color: rgba(255, 255, 255, .9);
    font-size: .92rem;
}

.hero-media {
    position: relative;
}

.hero-media img {
    width: 100%;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.media-note {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .95);
    color: var(--ink);
    box-shadow: 0 14px 32px rgba(14, 31, 47, .22);
}

.media-note span {
    color: var(--muted);
    font-size: .9rem;
}

.phone-inline {
    display: inline-block;
    white-space: nowrap;
    text-wrap: nowrap;
    overflow-wrap: normal;
    word-break: keep-all;
    hyphens: none;
}

.btn .phone-inline,
.call-pill .phone-inline,
.footer-call .phone-inline,
.mobile-call .phone-inline {
    margin-left: .28em;
}

.call-band {
    background: linear-gradient(135deg, #9e231f 0%, var(--red) 70%, #e45a51 100%);
    color: #fff;
}

.call-band-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.call-band p {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
}

.section {
    padding: 72px 0;
}

.section-muted {
    background: var(--soft);
}

.section-header {
    max-width: 820px;
    margin-bottom: 28px;
}

.section-header h2 {
    margin: 0;
    font-size: 2.45rem;
    line-height: 1.12;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.section-header p:not(.eyebrow) {
    margin: 12px 0 0;
    color: var(--muted);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(14, 31, 47, .07);
}

.service-card a {
    display: block;
    height: 100%;
    color: var(--ink);
    text-decoration: none;
}

.service-card img {
    width: 100%;
    aspect-ratio: 1.4 / 1;
    object-fit: cover;
}

.card-body {
    display: block;
    padding: 16px;
}

.card-body strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.05rem;
    line-height: 1.25;
}

.card-body small {
    display: -webkit-box;
    overflow: hidden;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.45;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.service-text-card .card-body {
    min-height: 184px;
    padding: 18px;
}

.service-text-card .card-body strong {
    font-size: 1.1rem;
}

.center-link {
    margin-top: 26px;
    text-align: center;
    font-weight: 900;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: start;
}

.info-panel,
.content-panel,
.sticky-box {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(14, 31, 47, .08);
}

.info-panel {
    padding: 26px;
}

.info-panel h3,
.sticky-box h3 {
    margin: 0 0 12px;
    line-height: 1.2;
}

.check-list {
    padding: 0;
    margin: 18px 0 22px;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
}

.check-list li::before {
    position: absolute;
    left: 0;
    content: "✓";
    color: var(--medical);
    font-weight: 900;
}

.link-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.link-cloud a,
.compact-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
}

.link-cloud a:hover,
.compact-link:hover {
    border-color: var(--red);
    color: var(--red-dark);
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.area-card a {
    display: block;
    min-height: 150px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(16, 32, 39, .05);
}

.area-card span {
    display: block;
    color: var(--medical);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.area-card strong {
    display: block;
    margin: 10px 0;
    font-size: 1.08rem;
    line-height: 1.25;
}

.area-card small {
    color: var(--muted);
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 32px;
    align-items: start;
}

.content-panel {
    padding: 34px;
}

.content-panel h2 {
    margin: 0 0 14px;
    font-size: 1.8rem;
    line-height: 1.18;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.content-panel h2:not(:first-of-type) {
    margin-top: 34px;
}

.content-panel p {
    margin: 0 0 16px;
    color: #2c3d4a;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0 4px;
}

.feature {
    display: flex;
    gap: 10px;
    min-height: 78px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
}

.feature span {
    color: var(--medical);
    font-weight: 900;
}

.feature p {
    margin: 0;
}

.steps {
    margin: 16px 0 0;
    padding-left: 22px;
}

.steps li {
    margin-bottom: 14px;
}

.side-cta {
    min-width: 0;
}

.sticky-box {
    position: sticky;
    top: 96px;
    padding: 24px;
}

.sticky-box p {
    color: var(--muted);
}

.sticky-box hr {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 22px 0;
}

.sticky-box a:not(.btn) {
    display: block;
    margin-top: 10px;
    font-weight: 800;
}

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

.home-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
    gap: 34px;
    align-items: center;
}

.story-copy h2 {
    margin: 0;
    max-width: 780px;
    font-size: 2.45rem;
    line-height: 1.12;
    letter-spacing: 0;
}

.story-copy p:not(.eyebrow) {
    margin: 16px 0 0;
    color: #2c3d4a;
}

.story-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.home-story-media {
    display: grid;
    gap: 14px;
}

.story-photo {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(14, 31, 47, .08);
}

.story-photo img {
    width: 100%;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
}

.story-photo figcaption {
    padding: 12px 14px;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.4;
}

.story-photo-offset {
    width: 84%;
    justify-self: end;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.overview-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(14, 31, 47, .07);
}

.overview-card img {
    width: 100%;
    aspect-ratio: 1.55 / 1;
    object-fit: cover;
}

.overview-body {
    padding: 18px;
}

.overview-body h3,
.pathway-panel h3 {
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.25;
}

.overview-body p,
.pathway-panel p {
    margin: 10px 0 0;
    color: var(--muted);
}

.overview-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.overview-links a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
    color: var(--ink);
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.15;
    text-decoration: none;
}

.overview-links a:hover {
    border-color: var(--red);
    color: var(--red-dark);
}

.pathway-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pathway-panel {
    min-width: 0;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(14, 31, 47, .07);
}

.visual-section {
    background: var(--soft);
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.visual-card {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(14, 31, 47, .07);
}

.visual-card img {
    width: 100%;
    aspect-ratio: 1.55 / 1;
    object-fit: cover;
}

.visual-card figcaption {
    padding: 14px 16px;
    color: var(--muted);
    font-weight: 800;
    line-height: 1.35;
}

.faq-section {
    background: #fff;
}

.faq-list {
    display: grid;
    gap: 10px;
}

details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
    padding: 16px 18px;
}

summary {
    cursor: pointer;
    font-weight: 900;
}

details p {
    margin: 10px 0 0;
    color: var(--muted);
}

.site-footer {
    padding: 54px 0 84px;
    background: #0b1724;
    color: #d9e6ee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 28px;
}

.site-footer strong {
    display: block;
    margin-bottom: 12px;
    color: #fff;
}

.site-footer p {
    margin: 0 0 16px;
    color: #b9c9d4;
}

.site-footer a {
    display: block;
    margin: 8px 0;
    color: #d9e6ee;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--ice);
}

.footer-call {
    width: fit-content;
    padding: 10px 12px;
    border-radius: 8px;
    background: linear-gradient(180deg, #e14a40 0%, var(--red) 100%);
    color: #fff !important;
    font-weight: 900;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: #aebfbd;
    font-size: .9rem;
}

.mobile-call {
    display: none;
}

@media (max-width: 1020px) {
    .nav {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto auto;
        min-height: auto;
        padding: 12px 0;
    }

    .brand {
        grid-column: 1;
        min-width: 0;
    }

    .menu-toggle {
        display: inline-flex;
        grid-column: 2;
        justify-self: end;
        align-self: center;
    }

    .main-nav {
        display: none;
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
        padding-bottom: 0;
    }

    .site-header.nav-open .main-nav {
        display: grid;
    }

    .main-nav a {
        display: flex;
        min-height: 44px;
        align-items: center;
        justify-content: flex-start;
        padding: 10px 12px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--soft);
        line-height: 1.15;
        text-align: left;
        white-space: normal;
    }

    .call-pill {
        grid-column: 3;
        margin-left: 0;
    }

    .hero-grid,
    .split,
    .article-layout,
    .home-story {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.1rem;
    }

    .hero-media {
        max-width: 720px;
    }

    .card-grid,
    .area-grid,
    .overview-grid,
    .pathway-grid,
    .visual-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sticky-box {
        position: static;
    }

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

@media (max-width: 640px) {
    body {
        font-size: 15px;
        padding-bottom: 74px;
    }

    .container,
    .narrow {
        width: min(100% - 24px, 1160px);
    }

    .site-header {
        position: sticky;
    }

    .nav {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: auto;
        gap: 10px;
        padding: 10px 0 12px;
    }

    .brand {
        grid-column: 1;
        gap: 10px;
        min-width: 0;
    }

    .brand-logo,
    .brand-logo img {
        width: 50px;
        height: 50px;
    }

    .brand strong {
        font-size: .98rem;
    }

    .brand small {
        display: block;
        font-size: .74rem;
        line-height: 1.2;
    }

    .call-pill {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        grid-column: 2;
        justify-self: end;
        align-self: center;
    }

    .main-nav {
        display: none;
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        gap: 8px;
        font-size: .92rem;
        width: 100%;
        padding-bottom: 0;
    }

    .site-header.nav-open .main-nav {
        display: grid;
    }

    .main-nav a {
        display: flex;
        min-height: 44px;
        align-items: center;
        justify-content: flex-start;
        padding: 10px 12px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--soft);
        line-height: 1.15;
        text-align: left;
        white-space: normal;
    }

    .hero {
        padding: 32px 0 28px;
    }

    .hero-grid {
        gap: 22px;
    }

    .hero-copy h1 {
        font-size: 2.05rem;
        line-height: 1.08;
    }

    .lead {
        margin-top: 16px;
        font-size: 1rem;
        line-height: 1.55;
    }

    .cta-row {
        gap: 10px;
        margin-top: 22px;
    }

    .cta-row .btn {
        width: 100%;
        min-height: 52px;
        padding: 13px 16px;
    }

    .signal-list {
        gap: 8px;
        margin-top: 18px;
    }

    .signal-list li {
        width: 100%;
        padding: 9px 10px;
    }

    .hero-media img {
        aspect-ratio: 1.25 / 1;
    }

    .media-note {
        position: static;
        margin-top: 10px;
        align-items: flex-start;
        flex-direction: column;
        padding: 12px;
    }

    .call-band-inner {
        align-items: stretch;
        flex-direction: column;
        padding: 18px 0;
    }

    .section {
        padding: 42px 0;
    }

    .section-header {
        margin-bottom: 22px;
    }

    .section-header h2 {
        font-size: 1.65rem;
        line-height: 1.18;
    }

    .card-body {
        padding: 14px;
    }

    .card-grid,
    .area-grid,
    .feature-grid,
    .compact-grid,
    .overview-grid,
    .pathway-grid,
    .visual-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .story-copy h2 {
        font-size: 1.65rem;
        line-height: 1.18;
    }

    .story-actions .btn,
    .story-actions .compact-link {
        width: 100%;
    }

    .story-photo-offset {
        width: 100%;
    }

    .overview-body,
    .pathway-panel {
        padding: 16px;
    }

    .overview-links a {
        min-height: 40px;
    }

    .content-panel,
    .info-panel,
    .sticky-box {
        padding: 22px;
    }

    .content-panel h2 {
        font-size: 1.45rem;
    }

    .phone-heading {
        font-size: 1.8rem;
    }

    .feature {
        min-height: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .mobile-call {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 60;
        display: block;
        padding: 10px 12px;
        background: #fff;
        border-top: 1px solid var(--line);
        box-shadow: 0 -10px 24px rgba(14, 31, 47, .12);
    }

    .mobile-call a {
        display: flex;
        min-height: 54px;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: linear-gradient(180deg, #e14a40 0%, var(--red) 100%);
        color: #fff;
        font-weight: 900;
        text-decoration: none;
    }
}
