:root {
    --ink: #17212b;
    --muted: #5d6974;
    --line: #dce7ea;
    --paper: #f6fafb;
    --panel: #fff;
    --teal: #176c75;
    --teal-2: #0d4f5b;
    --copper: #c67c36;
    --amber: #e0a04d;
    --blue: #266486;
    --danger: #a33b32;
    --shadow: 0 18px 55px rgba(22, 42, 54, .12);
    --ease: cubic-bezier(.2, .7, .2, 1)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    padding-bottom: 0;
    color: var(--ink);
    background: var(--paper);
    font: 16px/1.6 Arial, Helvetica, sans-serif;
    overflow-x: hidden
}

a {
    color: var(--teal-2);
    text-decoration: none
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    z-index: 9999;
    background: #000;
    color: #fff;
    padding: 8px
}

.skip-link:focus {
    left: 12px
}

.navbar {
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(23, 108, 117, .16);
    box-shadow: 0 10px 32px rgba(20, 39, 48, .08);
    backdrop-filter: blur(14px)
}

.navbar-brand {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--ink);
    font-weight: 900
}

.navbar-brand:hover {
    color: var(--ink);
    text-decoration: none
}

.navbar-brand span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 9px;
    color: #fff;
    background: var(--teal)
}

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

.nav-link {
    color: var(--ink);
    font-size: .92rem;
    font-weight: 800
}

.nav-link:hover, .nav-link.active {
    color: var(--teal)
}

.dropdown-menu {
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 9px
}

.dropdown-item {
    border-radius: 8px;
    font-weight: 700;
    padding: 9px 12px
}

.dropdown-item:hover {
    background: #eef7f8;
    color: var(--teal)
}

.nav-actions, .cta-row {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    align-items: center
}

.nav-actions {
    margin-left: 14px
}

.btn {
    border-radius: 8px;
    font-weight: 900
}

.btn-primary {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff
}

.btn-primary:hover {
    background: var(--teal-2);
    border-color: var(--teal-2);
    color: #fff;
    text-decoration: none
}

.btn-aog {
    background: #fff3ec;
    border-color: #e0b691;
    color: #8a3d18
}

.btn-aog:hover {
    background: var(--copper);
    border-color: var(--copper);
    color: #fff;
    text-decoration: none
}

.btn-soft, .btn-outline {
    background: #fff;
    border: 1px solid rgba(23, 108, 117, .34);
    color: var(--teal-2)
}

.btn-soft:hover, .btn-outline:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
    text-decoration: none
}

.btn-sm {
    padding: .42rem .72rem;
    font-size: .84rem
}

.hero {
    position: relative;
    padding: 118px 0 56px;
    background: #f7fbfc;
    overflow: hidden
}

.hero:before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: var(--line)
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns:minmax(0, 1fr) minmax(360px, 48%);
    gap: 34px;
    align-items: center
}

.hero-copy {
    position: relative;
    z-index: 2;
    padding: 30px;
    border: 1px solid rgba(23, 108, 117, .18);
    border-left: 6px solid var(--copper);
    border-radius: 18px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow)
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--copper);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase
}

.eyebrow:before {
    content: "";
    width: 32px;
    height: 2px;
    background: currentColor
}

.hero h1 {
    margin: 0 0 14px;
    font: 700 2.85rem/1.06 Georgia, serif;
    letter-spacing: 0;
    color: var(--ink)
}

.hero p {
    max-width: 620px;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 1rem
}

.hero-visual {
    position: relative;
    min-height: 430px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 28px 72px rgba(27, 56, 68, .18);
    transform-style: preserve-3d
}

.hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    display: block
}

.status-card {
    position: absolute;
    left: 18px;
    bottom: 18px;
    right: 18px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 12px;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(15, 31, 40, .18)
}

.status-card strong {
    color: var(--ink)
}

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

.section {
    padding: 68px 0
}

.pale {
    background: #edf6f7
}

.section-head {
    max-width: 760px;
    margin-bottom: 28px
}

.section-head h2, .copy-block h2, .request-form h2, .footer-cta h2, .contact-panel h2, .content-card h2, .faq-item h2 {
    margin: 0 0 12px;
    font: 700 2rem/1.15 Georgia, serif;
    color: var(--ink)
}

.section-head p, .copy-block p, .request-form label, .contact-panel p, .content-card p, .faq-item p, .service-card p, .article-card p, .mini-card small {
    color: var(--muted)
}

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

.service-card, .article-card, .request-form, .contact-panel, .content-card, .faq-item, .mini-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(22, 42, 54, .08)
}

.service-card, .article-card {
    overflow: hidden
}

.service-card img, .article-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block
}

.service-card div, .article-card div {
    padding: 18px
}

.service-card span, .article-card span, .mini-card span {
    color: var(--copper);
    font-size: .74rem;
    font-weight: 900;
    text-transform: uppercase
}

.service-card h3, .article-card h3 {
    margin: 6px 0 8px;
    font-size: 1.05rem;
    line-height: 1.25
}

.more {
    font-weight: 900
}

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

.copy-block, .contact-panel, .content-card, .faq-item {
    padding: 26px
}

.check-list {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none
}

.check-list li {
    position: relative;
    padding-left: 26px;
    color: var(--ink);
    font-weight: 700
}

.check-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: .56em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 4px rgba(23, 108, 117, .12)
}

.request-form {
    padding: 22px;
    position: sticky;
    top: 88px
}

.form-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 12px
}

.request-form input, .request-form select, .request-form textarea {
    width: 100%;
    margin-top: 5px;
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #fbfeff;
    color: var(--ink)
}

.request-form textarea {
    resize: vertical
}

.request-form label {
    display: block;
    margin-bottom: 12px;
    font-size: .92rem;
    font-weight: 800
}

.link-band {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 22px
}

.link-band a, .mini-card {
    padding: 12px 14px;
    border: 1px solid rgba(23, 108, 117, .2);
    border-radius: 12px;
    background: #fff;
    font-weight: 900
}

.link-band a:hover, .mini-card:hover {
    background: #eef8f9;
    text-decoration: none
}

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

.mini-card {
    display: grid;
    gap: 5px;
    color: var(--ink)
}

.mini-card small {
    font-weight: 600
}

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

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

.content-card h2:not(:first-child) {
    margin-top: 24px
}

.narrow {
    max-width: 860px
}

.faq-item {
    margin-bottom: 16px
}

.small-note {
    margin-top: 14px;
    font-size: .9rem
}

.site-footer {
    padding: 58px 0 88px;
    background: #ffffff;
    border-top: 1px solid var(--line);
    color: var(--muted)
}


.footer-cta {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: center;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #f3fafb;
    box-shadow: 0 12px 34px rgba(22, 42, 54, .08)
}

.footer-links {
    padding-top: 32px
}

.site-footer h3 {
    font-size: 1rem;
    color: var(--ink);
    font-weight: 900
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.site-footer li {
    margin-bottom: 7px
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--line)
}

.mobile-bar {
    display: none
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s var(--ease), transform .65s var(--ease)
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

.hero .reveal {
    opacity: 1;
    transform: none
}

.parallax-card {
    transition: transform .2s ease-out
}

@media (max-width: 1199px) {
    .hero h1 {
        font-size: 2.45rem
    }

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

@media (max-width: 991px) {
    .nav-actions {
        width: 100%;
        margin: 10px 0 0
    }

    .hero {
        padding: 98px 0 48px
    }

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

    .hero-visual {
        min-height: 0
    }

    .hero-visual img {
        min-height: 0;
        aspect-ratio: 16/10
    }

    .request-form {
        position: static
    }

    .mini-grid {
        grid-template-columns:1fr
    }

    .section-head h2, .copy-block h2, .request-form h2, .footer-cta h2, .contact-panel h2, .content-card h2, .faq-item h2 {
        font-size: 1.72rem
    }
}

@media (max-width: 767px) {
    body {
        padding-bottom: 58px
    }

    .navbar-brand span {
        width: 34px;
        height: 34px
    }

    .navbar-brand strong {
        max-width: 210px;
        font-size: .88rem
    }

    .hero {
        padding: 88px 0 42px
    }

    .hero-copy {
        padding: 20px
    }

    .hero h1 {
        font-size: 1.82rem;
        line-height: 1.1
    }

    .hero p {
        font-size: .94rem
    }

    .cta-row .btn {
        width: 100%
    }

    .status-card {
        position: static;
        border-radius: 0;
        border-width: 1px 0 0;
        box-shadow: none
    }

    .section {
        padding: 50px 0
    }

    .service-grid, .article-grid {
        grid-template-columns:1fr;
        gap: 16px
    }

    .form-grid {
        grid-template-columns:1fr
    }

    .copy-block, .contact-panel, .content-card, .faq-item, .request-form {
        padding: 20px
    }

    .footer-cta {
        align-items: flex-start;
        flex-direction: column;
        padding: 20px
    }

    .footer-cta .cta-row, .footer-cta .btn {
        width: 100%
    }

    .mobile-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        display: grid;
        grid-template-columns:1fr 1fr
    }

    .mobile-bar a {
        display: grid;
        place-items: center;
        min-height: 58px;
        color: #fff;
        background: var(--teal);
        font-weight: 900
    }

    .mobile-bar a + a {
        background: var(--copper)
    }
}

@media (max-width: 420px) {
    .navbar-brand strong {
        max-width: 176px;
        font-size: .82rem
    }

    .hero h1 {
        font-size: 1.64rem
    }

    .section-head h2, .copy-block h2, .request-form h2, .footer-cta h2, .contact-panel h2, .content-card h2, .faq-item h2 {
        font-size: 1.38rem
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}
