:root {
    --navy: #0b2740;
    --green: #2f684c;
    --green-dark: #214c38;
    --cream: #f7f5ef;
    --text: #27333d;
    --muted: #66717a;
    --line: rgba(11, 39, 64, .14);
    --white: #fff;
    --shadow: 0 18px 45px rgba(11, 39, 64, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.6
}

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

a {
    color: inherit
}

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

svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round
}

h1,
h2,
h3 {
    margin-top: 0;
    color: var(--navy);
    font-family: "Libre Baskerville", serif;
    line-height: 1.18
}

p {
    margin-top: 0
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--green);
    font-size: .79rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 56px;
    text-align: center
}

.section-heading h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.25rem)
}

.heading-rule {
    display: block;
    width: 52px;
    height: 2px;
    margin: 0 auto;
    background: var(--green)
}

.heading-rule-left {
    margin-left: 0
}

.section-intro {
    max-width: 600px;
    margin: 22px auto 0;
    color: var(--muted)
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 50px;
    padding: 13px 22px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: background .25s, color .25s, border-color .25s, transform .25s, box-shadow .25s
}

.button:before {
    position: absolute;
    inset: 0 auto 0 -120%;
    width: 70%;
    content: "";
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .2), transparent);
    transform: skewX(-20deg);
    transition: left .55s
}

.button:hover:before {
    left: 140%
}

.button:hover {
    transform: translateY(-2px)
}

.button-primary,
.button-light {
    color: #fff;
    background: var(--green)
}

.button-primary:hover,
.button-light:hover {
    background: var(--green-dark);
    box-shadow: 0 10px 24px rgba(33, 76, 56, .22)
}

.button-secondary {
    color: var(--navy);
    border-color: rgba(11, 39, 64, .35);
    background: rgba(255, 255, 255, .42);
    backdrop-filter: blur(5px)
}

.button-secondary:hover {
    background: rgba(255, 255, 255, .78)
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(11, 39, 64, .08);
    backdrop-filter: blur(12px);
    transition: box-shadow .25s
}

.site-header.is-scrolled {
    box-shadow: 0 8px 24px rgba(11, 39, 64, .08)
}

.header-inner {
    display: flex;
    align-items: center;
    min-height: 118px;
    gap: 26px;
    transition: min-height .25s
}

.site-header.is-scrolled .header-inner {
    min-height: 92px
}

.brand {
    flex: 0 0 auto;
    width: 238px;
    transition: width .25s
}

.site-header.is-scrolled .brand {
    width: 205px
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-left: auto
}

.main-nav a {
    position: relative;
    font-size: .87rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap
}

.main-nav a:after {
    position: absolute;
    right: 0;
    bottom: -10px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--green);
    transform: scaleX(0);
    transition: transform .22s
}

.main-nav a:hover:after,
.main-nav a.active:after {
    transform: scaleX(1)
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap
}

.header-phone svg {
    width: 18px
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 8px;
    border: 0;
    background: transparent;
    cursor: pointer
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 6px 0;
    background: var(--navy)
}

.hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background: #d8e1e7
}

.hero-media,
.hero-media video,
.hero-overlay {
    position: absolute;
    inset: 0
}

.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-overlay {
    background: linear-gradient(90deg,
            rgba(247, 245, 239, .72) 0%,
            rgba(247, 245, 239, .55) 35%,
            rgba(247, 245, 239, .15) 65%,
            rgba(247, 245, 239, .02) 100%),
        linear-gradient(180deg,
            rgba(11, 39, 64, .02),
            rgba(11, 39, 64, .08))
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 760px;
    flex-direction: column;
    justify-content: center;
    padding: 78px 0 88px
}

.hero-copy {
    max-width: 670px
}

.hero-copy h1 {
    max-width: 720px;
    margin-bottom: 22px;
    font-size: clamp(3rem, 6vw, 5.25rem)
}

.hero-intro {
    max-width: 610px;
    margin-bottom: 30px;
    color: #33414b;
    font-size: 1.18rem;
    line-height: 1.72
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 68px;
    border-top: 1px solid rgba(11, 39, 64, .16);
    border-bottom: 1px solid rgba(11, 39, 64, .16)
}

.hero-point {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 18px;
    border-right: 1px solid rgba(11, 39, 64, .14)
}

.hero-point:last-child {
    border-right: 0
}

.hero-point svg {
    width: 28px;
    min-width: 28px;
    color: var(--green)
}

.hero-point p {
    margin: 0;
    font-size: .89rem;
    line-height: 1.45
}

.hero-scroll {
    position: absolute;
    z-index: 3;
    bottom: 18px;
    left: 50%;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transform: translateX(-50%);
    animation: bob 2s infinite
}

@keyframes bob {
    50% {
        transform: translate(-50%, 6px)
    }
}

.services-section,
.advice-section,
.contact-section {
    padding: 96px 0;
}

.direct-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 64px;
    align-items: start;
    margin-bottom: 56px;
}

.direct-contact-intro {
    padding-top: 10px;
}

.direct-contact-lead {
    margin: 0 0 20px;
    color: var(--green);
    font-family: "Libre Baskerville", serif;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    line-height: 1.45;
}

.direct-contact-intro > p:not(.direct-contact-lead) {
    margin: 0;
    line-height: 1.8;
}

.personal-contact-note {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    margin-top: 34px;
    padding: 24px;
    background: var(--cream);
    border-radius: 16px;
}

.personal-contact-note svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    color: var(--green);
}

.personal-contact-note strong {
    display: block;
    margin-bottom: 6px;
    color: var(--green);
    font-size: 1.05rem;
}

.personal-contact-note p {
    margin: 0;
    line-height: 1.65;
}

.direct-contact-options {
    display: grid;
    gap: 18px;
}

.direct-contact-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 24px;
    color: inherit;
    background: #fff;
    border: 1px solid rgba(23, 63, 50, 0.14);
    border-radius: 16px;
    text-decoration: none;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.direct-contact-card:hover {
    transform: translateY(-3px);
    border-color: rgba(23, 63, 50, 0.36);
    box-shadow: 0 16px 38px rgba(23, 63, 50, 0.09);
}

.direct-contact-icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    color: var(--green);
    background: var(--cream);
    border-radius: 50%;
}

.direct-contact-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.direct-contact-card-copy {
    min-width: 0;
}

.direct-contact-label {
    display: block;
    margin-bottom: 4px;
    color: var(--green);
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.direct-contact-card-copy strong {
    display: block;
    overflow-wrap: anywhere;
    color: var(--green);
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.direct-contact-card-copy > span:last-child {
    display: block;
    margin-top: 6px;
    font-size: 0.94rem;
    line-height: 1.5;
}

.direct-contact-arrow {
    color: var(--green);
    font-size: 1.45rem;
    transition: transform 180ms ease;
}

.direct-contact-card:hover .direct-contact-arrow {
    transform: translateX(4px);
}

.contact-availability {
    padding: 23px 25px;
    color: #fff;
    background: var(--green);
    border-radius: 16px;
}

.contact-availability strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.contact-availability p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
}

@media (max-width: 850px) {
    .direct-contact-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 560px) {
    .direct-contact-card {
        grid-template-columns: 50px minmax(0, 1fr);
        padding: 20px;
    }

    .direct-contact-icon {
        width: 50px;
        height: 50px;
    }

    .direct-contact-arrow {
        display: none;
    }

    .personal-contact-note {
        grid-template-columns: 1fr;
    }
}

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

.service-card {
    min-height: 265px;
    padding: 38px 34px;
    text-align: center;
    background: #fff;
    transition: transform .3s, box-shadow .3s
}

.service-card:hover {
    position: relative;
    z-index: 2;
    transform: translateY(-6px);
    box-shadow: var(--shadow)
}

.service-icon {
    display: grid;
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    place-items: center;
    color: var(--green);
    background: var(--cream);
    border-radius: 50%
}

.service-icon svg {
    width: 44px;
    height: 44px;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.service-card h3 {
    margin-bottom: 13px;
    font-size: 1.22rem
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: .94rem
}

.advice-section {
    background: var(--cream)
}

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

.advice-card {
    position: relative;
    min-height: 325px;
    padding: 32px;
    background: #fff;
    border: 1px solid rgba(11, 39, 64, .08);
    box-shadow: 0 10px 30px rgba(11, 39, 64, .05);
    transition: transform .3s, box-shadow .3s
}

.advice-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 44px rgba(11, 39, 64, .11)
}

.advice-number {
    display: block;
    margin-bottom: 34px;
    color: rgba(47, 104, 76, .68);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .14em
}

.advice-card h3 {
    margin-bottom: 16px;
    font-size: 1.48rem
}

.advice-card p {
    color: var(--muted)
}

.advice-card a {
    position: absolute;
    bottom: 28px;
    color: var(--green);
    font-weight: 700;
    text-decoration: none
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr
}

.about-panel {
    min-height: 570px
}

.about-copy-panel {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f4f5ef, #fff)
}

.about-copy {
    width: min(560px, calc(100% - 80px));
    margin-left: auto;
    padding-right: 60px
}

.about-copy h2,
.about-image-overlay h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.2rem)
}

.about-copy .heading-rule {
    margin-bottom: 28px
}

.about-copy p {
    color: #43505a
}

.about-copy .button {
    margin-top: 12px
}

.about-image-panel {
    position: relative;
    background: linear-gradient(rgba(11, 39, 64, .18), rgba(11, 39, 64, .18)), url("../media/images/looped.webp") center/cover no-repeat
}

.about-image-overlay {
    position: absolute;
    right: 50px;
    bottom: 50px;
    left: 50px;
    padding: 30px;
    color: #fff;
    background: rgba(11, 39, 64, .7);
    backdrop-filter: blur(6px)
}

.about-image-overlay h2,
.about-image-overlay .eyebrow {
    color: #fff
}

.cta-section {
    padding: 40px 0;
    color: #fff;
    background: var(--navy)
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.cta-copy {
    display: flex;
    align-items: center;
    gap: 20px
}

.cta-copy>svg {
    width: 42px;
    min-width: 42px
}

.cta-copy h2 {
    margin-bottom: 4px;
    color: #fff;
    font-size: 1.58rem
}

.cta-copy p {
    margin: 0;
    color: rgba(255, 255, 255, .8)
}

.contact-section {
    background: #fff
}

.contact-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 56px
}

.contact-information {
    display: grid;
    gap: 28px
}

.contact-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 14px;
    align-items: start
}

.contact-item>svg {
    width: 24px;
    color: var(--green)
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--navy)
}

.contact-item a,
.contact-item address {
    color: var(--muted);
    font-style: normal;
    text-decoration: none;
    overflow-wrap: anywhere
}

.contact-assurance {
    margin-top: 8px;
    padding: 26px;
    background: var(--cream);
    border-left: 3px solid var(--green)
}

.contact-assurance h3 {
    margin-bottom: 10px;
    font-size: 1.18rem
}

.contact-assurance p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem
}

.contact-form {
    padding: 38px;
    background: var(--cream);
    border: 1px solid rgba(11, 39, 64, .09);
    box-shadow: var(--shadow)
}

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

.form-field {
    margin-bottom: 20px
}

.form-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--navy);
    font-size: .9rem;
    font-weight: 700
}

.form-field label span {
    color: var(--green)
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 13px 14px;
    color: var(--text);
    background: #fff;
    border: 1px solid rgba(11, 39, 64, .22);
    border-radius: 3px;
    outline: none;
    transition: border-color .2s, box-shadow .2s
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(47, 104, 76, .12)
}

.form-field textarea {
    min-height: 135px;
    resize: vertical
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    cursor: pointer
}

.form-consent input {
    width: auto;
    margin-top: 5px
}

.form-consent label span {
    color: var(--muted)
}

.form-submit {
    width: 100%;
    border: 0;
    cursor: pointer
}

.form-small-print {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: .77rem;
    text-align: center
}

.website-field {
    position: absolute;
    left: -9999px
}

.form-message {
    max-width: 780px;
    margin: 0 auto 34px;
    padding: 16px 20px;
    border-radius: 3px;
    text-align: center
}

.form-success {
    color: #174c34;
    background: #e5f3eb;
    border: 1px solid #b9dcc8
}

.form-error {
    color: #792b2b;
    background: #f8e8e8;
    border: 1px solid #e5baba
}

.contact-map {
    overflow: hidden;
    min-height: 420px;
    border-radius: 4px;
    box-shadow: var(--shadow)
}

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

.site-footer {
    color: rgba(255, 255, 255, .78);
    background: #071c2d
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    padding-top: 46px;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.footer-top img {
    width: 210px;
    padding: 10px;
    background: #fff
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px 28px
}

.footer-contact a {
    color: #fff;
    text-decoration: none
}

.footer-regulatory {
    padding-top: 30px;
    padding-bottom: 40px;
    font-size: .78rem;
    line-height: 1.65
}

.footer-regulatory p {
    max-width: 980px;
    margin-bottom: 10px
}

.footer-regulatory strong {
    color: #fff
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-intro,
.hero-actions,
.hero-points {
    opacity: 0;
    transform: translateY(20px)
}

.page-loaded .hero-copy .eyebrow,
.page-loaded .hero-copy h1,
.page-loaded .hero-intro,
.page-loaded .hero-actions,
.page-loaded .hero-points {
    opacity: 1;
    transform: none
}

.page-loaded .hero-copy .eyebrow {
    transition: .65s ease .08s
}

.page-loaded .hero-copy h1 {
    transition: .8s ease .2s
}

.page-loaded .hero-intro {
    transition: .75s ease .34s
}

.page-loaded .hero-actions {
    transition: .75s ease .46s
}

.page-loaded .hero-points {
    transition: .8s ease .62s
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease var(--delay, 0ms), transform .75s ease var(--delay, 0ms)
}

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

@media(max-width:1180px) {
    .brand {
        width: 205px
    }

    .site-header.is-scrolled .brand {
        width: 185px
    }

    .header-inner {
        min-height: 104px
    }

    .main-nav {
        gap: 15px
    }

    .main-nav a {
        font-size: .79rem
    }

    .header-phone {
        display: none
    }

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

@media(max-width:900px) {
    .container {
        width: min(100% - 32px, 760px)
    }

    .header-inner {
        justify-content: space-between
    }

    .menu-toggle {
        display: block;
        margin-left: auto
    }

    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 12px 20px 22px;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 14px 30px rgba(11, 39, 64, .12)
    }

    .main-nav.is-open {
        display: flex
    }

    .main-nav a {
        padding: 12px 0;
        font-size: .95rem
    }

    .main-nav a:after {
        display: none
    }

    .hero,
    .hero-content {
        min-height: 720px
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(247, 245, 239, .97), rgba(247, 245, 239, .87) 60%, rgba(247, 245, 239, .36))
    }

    .hero-points {
        grid-template-columns: repeat(2, 1fr)
    }

    .hero-point:nth-child(2) {
        border-right: 0
    }

    .hero-point:nth-child(-n+2) {
        border-bottom: 1px solid rgba(11, 39, 64, .14)
    }

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

    .about-section {
        grid-template-columns: 1fr
    }

    .about-copy-panel {
        padding: 80px 0
    }

    .about-copy {
        width: min(100% - 40px, 680px);
        margin: 0 auto;
        padding: 0
    }

    .about-panel {
        min-height: 500px
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 42px
    }
}

@media(max-width:640px) {
    .container {
        width: min(100% - 24px, 560px)
    }

    .brand {
        width: 180px
    }

    .site-header.is-scrolled .brand {
        width: 165px
    }

    .header-inner,
    .site-header.is-scrolled .header-inner {
        min-height: 88px
    }

    .hero {
        min-height: auto
    }

    .hero-content {
        min-height: 700px;
        padding: 70px 0
    }

    .hero-copy h1 {
        font-size: clamp(2.45rem, 12vw, 3.7rem)
    }

    .hero-intro {
        font-size: 1.04rem
    }

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

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

    .hero-points {
        grid-template-columns: 1fr;
        margin-top: 46px
    }

    .hero-point,
    .hero-point:nth-child(2),
    .hero-point:nth-child(3) {
        border-right: 0;
        border-bottom: 1px solid rgba(11, 39, 64, .14)
    }

    .hero-point:last-child {
        border-bottom: 0
    }

    .services-section,
    .advice-section,
    .contact-section {
        padding: 72px 0
    }

    .section-heading {
        margin-bottom: 42px
    }

    .service-grid,
    .advice-grid {
        grid-template-columns: 1fr
    }

    .service-card {
        min-height: auto;
        padding: 34px 26px
    }

    .advice-card {
        min-height: 290px
    }

    .cta-inner,
    .footer-top {
        align-items: flex-start;
        flex-direction: column
    }

    .cta-inner .button {
        width: 100%
    }

    .footer-contact {
        justify-content: flex-start;
        flex-direction: column
    }

    .about-image-overlay {
        right: 20px;
        bottom: 20px;
        left: 20px
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0
    }

    .contact-form {
        padding: 25px 20px
    }
}

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

    *,
    *:before,
    *:after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important
    }

    .reveal,
    .hero-copy .eyebrow,
    .hero-copy h1,
    .hero-intro,
    .hero-actions,
    .hero-points {
        opacity: 1;
        transform: none
    }
}