:root {
    --blue-950: #002760;
    --blue-900: #003087;
    --blue-700: #0073cf;
    --blue-050: #e7eef8;
    --blue-025: #f6f9fd;
    --text-900: #1f2d3d;
    --text-700: #5e6d7f;
    --line: #d7e3ef;
    --white: #ffffff;
    --shadow-soft: 0 16px 36px rgba(0, 48, 135, 0.08);
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --container: 1140px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Source Sans 3", sans-serif;
    color: var(--text-900);
    background: var(--white);
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.utility-bar {
    background: var(--blue-950);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
}

.utility-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
    padding: 0.7rem 0;
}

.utility-row a {
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 5.4rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
    text-decoration: none;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
    background: var(--blue-900);
    color: var(--white);
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.brand-copy {
    display: grid;
    gap: 0.12rem;
}

.brand-name,
.footer-title {
    font-family: "Montserrat", sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--blue-950);
}

.brand-subtitle {
    color: var(--text-700);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.site-nav a {
    font-family: "Montserrat", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-700);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-link-strong {
    color: var(--blue-900);
}

.site-nav-static {
    display: flex !important;
    position: static;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-phone,
.mobile-nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.95rem;
    padding: 0.8rem 1.15rem;
    border-radius: 999px;
    font-family: "Montserrat", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.header-phone {
    display: none;
    background: var(--blue-900);
    color: var(--white);
}

.mobile-nav-actions {
    display: none;
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 0.7rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--blue-900);
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
}

.menu-toggle-icon {
    position: relative;
    width: 1rem;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 1rem;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

.menu-toggle-icon::before {
    top: -0.35rem;
}

.menu-toggle-icon::after {
    top: 0.35rem;
}

.menu-toggle.is-open .menu-toggle-icon {
    background: transparent;
}

.menu-toggle.is-open .menu-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.is-open .menu-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0 3rem;
    background:
        radial-gradient(circle at top left, rgba(0, 115, 207, 0.14), transparent 28rem),
        linear-gradient(180deg, #f4f8fd 0%, var(--white) 72%);
}

.hero-layout,
.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 2.75rem;
    align-items: stretch;
}

.contact-layout {
    display: grid;
    gap: 2rem;
    justify-items: center;
    text-align: center;
}

.hero-copy,
.hero-card,
.hero-media,
.trust-card,
.highlight-card,
.statement-card,
.coverage-card,
.process-card,
.contact-card,
.service-center-card,
.hours-panel,
.policy-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    text-align: center;
}

.hero-card,
.hero-media,
.statement-card,
.hours-panel,
.policy-card {
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.eyebrow,
.card-kicker,
.statement-kicker,
.contact-card span {
    display: inline-block;
    margin-bottom: 0.9rem;
    color: var(--blue-700);
    font-family: "Montserrat", sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    color: var(--blue-950);
    line-height: 1.15;
}

h1 {
    max-width: 13ch;
    font-size: clamp(2.9rem, 5.4vw, 4.6rem);
    letter-spacing: -0.04em;
    margin-inline: auto;
}

h2 {
    max-width: 14ch;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.03em;
}

h3 {
    font-size: 1.3rem;
}

.lead,
.section-heading p,
.section-copy p,
.trust-card p,
.coverage-card p,
.process-card p,
.contact-card p,
.footer-text,
.footer-bottom p,
.office-callout,
.policy-copy p,
.policy-copy li {
    margin: 0;
    color: var(--text-700);
    font-size: 1.03rem;
    line-height: 1.75;
}

.lead {
    margin-top: 1.2rem;
    max-width: 34rem;
    margin-inline: auto;
}

.hero-actions,
.hours-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
    justify-content: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.15rem;
    padding: 0.85rem 1.3rem;
    border-radius: 999px;
    font-family: "Montserrat", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

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

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--blue-950);
}

.button-secondary {
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--blue-900);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: var(--blue-700);
}

.coverage-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 2rem;
    justify-content: center;
}

.coverage-pills span {
    padding: 0.45rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--blue-900);
    font-family: "Montserrat", sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(0, 48, 135, 0.05);
}

.hero-card h2 {
    max-width: 10ch;
}

.hero-media {
    display: grid;
    grid-template-rows: minmax(23rem, 28rem) auto;
    align-self: stretch;
    padding: 0;
    overflow: hidden;
}

.hero-media-image {
    background:
        linear-gradient(180deg, rgba(0, 39, 96, 0.12), rgba(0, 39, 96, 0.32)),
        url('https://www.publicdomainpictures.net/pictures/120000/velka/tulsa-oklahoma-downtown-1425480245xHe.jpg');
    background-position: center;
    background-size: cover;
    min-height: 24rem;
}

.hero-media-card {
    padding: 1.7rem 1.75rem 1.9rem;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    border-top: 1px solid var(--line);
}

.office-detail-list {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.2rem;
}

.office-detail {
    display: grid;
    gap: 0.35rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.office-detail:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.office-detail span {
    color: var(--text-700);
    font-family: "Montserrat", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.office-detail a {
    color: var(--blue-900);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.6;
    text-decoration: none;
}

.office-callout {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

.service-highlights {
    padding-bottom: 1.75rem;
}

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

.highlight-card {
    padding: 1.6rem;
    border-top: 4px solid var(--blue-700);
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.highlight-card h3 {
    margin-bottom: 0.65rem;
}

.highlight-card p,
.service-center-card p {
    margin: 0;
    color: var(--text-700);
    font-size: 1rem;
    line-height: 1.7;
}

.trust-section {
    margin-top: 0;
    padding-bottom: 4rem;
}

.trust-grid,
.coverage-grid,
.process-grid {
    display: grid;
    gap: 1rem;
}

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

.trust-card,
.process-card {
    padding: 1.75rem;
}

.trust-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-top: 4px solid rgba(0, 115, 207, 0.2);
    box-shadow: var(--shadow-soft);
}

.trust-card h3,
.process-card h3 {
    margin-bottom: 0.7rem;
}

.section {
    padding: 4.5rem 0;
}

.section-soft {
    background: var(--blue-025);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-heading {
    max-width: 46rem;
    margin-bottom: 2rem;
}

.section-heading p,
.section-copy p {
    margin-top: 1rem;
}

.statement-card {
    background: var(--blue-900);
    color: var(--white);
}

.statement-card .statement-kicker {
    color: rgba(255, 255, 255, 0.78);
}

.statement-item {
    display: grid;
    gap: 0.25rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.statement-item:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.statement-item strong {
    font-family: "Montserrat", sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
}

.statement-item span {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}

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

.coverage-card {
    padding: 1.6rem;
    border-top: 4px solid var(--blue-700);
}

.coverage-card h3 {
    margin-bottom: 0.7rem;
}

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

.service-center-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.service-center-card {
    padding: 1.5rem;
    background: var(--blue-025);
}

.service-center-card h3 {
    margin-bottom: 0.65rem;
}

.process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: var(--blue-050);
    color: var(--blue-900);
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
}

.contact-copy {
    max-width: 46rem;
}

.contact-copy h2 {
    max-width: none;
}

.contact-copy p {
    color: var(--text-700);
    font-size: 1.03rem;
    line-height: 1.75;
    margin-top: 1rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
}

.contact-card {
    display: grid;
    gap: 0.3rem;
    padding: 1.4rem;
    text-decoration: none;
    justify-items: center;
    text-align: center;
}

.contact-card strong {
    color: var(--blue-950);
    font-family: "Montserrat", sans-serif;
    font-size: 1.05rem;
}

.hours-panel {
    width: min(100%, 44rem);
    padding: 2.25rem;
    text-align: center;
}

.hours-panel h3 {
    font-size: 1.55rem;
}

.hours-list {
    margin-top: 1.35rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    font-size: 1.02rem;
}

.hours-row span:first-child {
    font-weight: 700;
    color: var(--blue-950);
}

.hours-row:last-child {
    border-bottom: 0;
}

.hours-row.is-today {
    background: var(--blue-050);
    color: var(--blue-950);
    font-weight: 700;
}

.site-footer {
    padding: 2rem 0 2.5rem;
    border-top: 1px solid var(--line);
}

.footer-row,
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-align: center;
    flex-direction: column;
}

.footer-text,
.footer-bottom p {
    margin-top: 0.25rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.footer-links a {
    color: var(--blue-900);
    font-family: "Montserrat", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
}

.policy-page {
    background: var(--blue-025);
}

.policy-shell {
    padding: 3rem 0 4rem;
}

.policy-title {
    max-width: none;
}

.policy-copy {
    margin-top: 1.5rem;
}

.policy-copy h2 {
    margin: 2rem 0 0.7rem;
    font-family: "Montserrat", sans-serif;
    color: var(--blue-950);
    font-size: 1.2rem;
}

.policy-copy ul {
    margin: 0 0 1rem;
    padding-left: 1.2rem;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 420ms ease, transform 420ms ease;
}

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

@media (max-width: 1024px) {
    .hero-layout,
    .split-layout,
    .trust-grid,
    .highlight-grid,
    .coverage-grid,
    .process-grid,
    .service-center-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-layout,
    .split-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero-layout {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .utility-bar {
        display: none;
    }

    .site-header {
        background: rgba(255, 255, 255, 0.99);
    }

    .header-row {
        min-height: auto;
        padding: 0.9rem 0;
        gap: 0.85rem;
    }

    .brand {
        gap: 0.75rem;
        min-width: 0;
    }

    .brand-badge {
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 10px;
        font-size: 0.84rem;
    }

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

    .brand-name {
        font-size: 0.96rem;
    }

    .brand-subtitle {
        display: none;
    }

    .header-actions {
        margin-left: auto;
        gap: 0.55rem;
    }

    .header-phone {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.4rem);
        right: 1rem;
        left: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.7rem;
        padding: 1rem;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-soft);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav-static {
        display: flex !important;
        position: static;
        flex-direction: row;
        align-items: center;
        padding: 0;
        border: 0;
        box-shadow: none;
    }

    .site-nav:not(.site-nav-static) a {
        width: 100%;
        padding: 0.95rem 1rem;
        border-radius: 14px;
        background: var(--blue-025);
        font-size: 0.86rem;
    }

    .site-nav-static a {
        width: auto;
        padding: 0;
        background: transparent;
    }

    .mobile-nav-actions {
        display: grid;
        gap: 0.7rem;
        width: 100%;
        padding-top: 0.7rem;
        border-top: 1px solid var(--line);
    }

    .mobile-nav-button {
        width: 100%;
        border: 1px solid var(--line);
        background: var(--white);
        color: var(--blue-900);
    }

    .mobile-nav-button-primary {
        border-color: var(--blue-900);
        background: var(--blue-900);
        color: var(--white);
    }

    .menu-toggle {
        display: inline-flex;
        min-height: 2.95rem;
        padding-inline: 0.95rem;
    }

    .hero-copy,
    .hero-card,
    .hero-media-card,
    .trust-card,
    .highlight-card,
    .statement-card,
    .coverage-card,
    .process-card,
    .contact-card,
    .service-center-card,
    .hours-panel,
    .policy-card {
        padding: 1.5rem;
    }

    .hero {
        padding: 2rem 0 2.25rem;
    }

    .trust-grid,
    .highlight-grid,
    .coverage-grid,
    .process-grid,
    .service-center-grid,
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding: 0;
        text-align: center;
    }

    h1 {
        max-width: 12ch;
        margin-inline: auto;
        font-size: clamp(2.2rem, 11vw, 3rem);
    }

    .lead {
        margin-inline: auto;
        max-width: none;
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .hero-actions .button {
        width: 100%;
    }

    .coverage-pills {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: stretch;
    }

    .coverage-pills span {
        text-align: center;
    }

    .hero-media {
        grid-template-rows: minmax(18rem, 20rem) auto;
    }

    .hero-media-image {
        min-height: 20rem;
    }

    .hero-media-card {
        padding: 1.5rem;
    }

    .footer-row,
    .footer-bottom {
        flex-direction: column;
        align-items: center;
    }

    .highlight-card,
    .trust-card {
        text-align: left;
    }

    .highlight-card p,
    .trust-card p,
    .contact-card p {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .section {
        padding: 3rem 0;
    }

    #contact.section {
        margin-top: 0.75rem;
        padding-top: 2.4rem;
        border-top: 4px solid var(--blue-900);
        background: linear-gradient(180deg, rgba(231, 238, 248, 0.48) 0%, var(--white) 22%);
    }

    .contact-card {
        justify-items: start;
        text-align: left;
    }

    .hours-panel {
        padding: 1.5rem 1.2rem;
    }

    .hours-row {
        font-size: 0.98rem;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(var(--container), calc(100% - 1.25rem));
    }

    .site-nav {
        right: 0.625rem;
        left: 0.625rem;
    }

    .header-phone,
    .menu-toggle {
        padding-inline: 0.85rem;
    }

    .coverage-pills {
        grid-template-columns: 1fr 1fr;
        gap: 0.55rem;
    }

    .hours-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal,
    .button {
        transition: none;
        transform: none;
        opacity: 1;
    }
}
