:root {
    --navy: #08285f;
    --navy-deep: #052454;
    --navy-ink: #082b67;
    --sage: #557629;
    --sage-soft: #eef3e8;
    --cream: #f7f8f3;
    --offwhite: #fbfcfb;
    --line: #e1e5ea;
    --text: #171a20;
    --muted: #555f6c;
    --shell: 1180px;
    --serif: Georgia, "Times New Roman", serif;
    --sans: "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--text);
    background: #fff;
    /* font-family: var(--sans); */
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none
}

button,
input,
textarea {
    font: inherit
}

button {
    cursor: pointer
}

.shell {
    width: min(var(--shell), calc(100% - 64px));
    margin-inline: auto;
}

/* Header */
.site-header {
    background: #fff;
    border-bottom: 1px solid #f0f1f3;
}

.nav-shell {
    min-height: 84px;
    display: grid;
    grid-template-columns: 1.45fr auto auto;
    align-items: center;
    gap: 36px;
}

/* .brand {
        display: flex;
        align-items: center;
        gap: 14px;
        min-width: 0
    } */



.brand-copy {
    display: flex;
    flex-direction: column
}

.brand-name {
    /* font-family: var(--serif); */
    text-transform: uppercase;
    font-variant: small-caps;
    letter-spacing: .2px;
    color: var(--navy);
    font-size: 20px;
}

.brand-tag {
    /* font-family: var(--serif); */
    font-size: 12px;
    color: var(--navy)
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 38px;
    font-size: 15px
}

.primary-nav a {
    position: relative;
    padding: 31px 0 26px;
}

.primary-nav a.active {
    color: var(--navy);
    font-weight: 600
}

.primary-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 17px;
    height: 2px;
    background: var(--navy);
}

.button {
    min-height: 46px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .02em;
    font-weight: 700;
    transition: opacity .2s ease;
}

.button:hover {
    opacity: .9
}

.button img {
    width: 18px;
    height: 18px
}

.button-primary {
    background: var(--navy);
    color: #fff;
    border: 1px solid var(--navy);
    box-shadow: 0 8px 20px rgba(8, 40, 95, .10);
}

.button-primary img {
    filter: brightness(0) invert(1)
}

.button-outline {
    background: #fff;
    color: var(--navy);
    border: 1px solid var(--navy);
}

.header-cta {
    white-space: nowrap
}

/* Hero */
.hero {
    background: #fff;
    border-bottom: 1px solid #eef0f1;
}

.hero-grid {
    min-height: 390px;
    display: grid;
    grid-template-columns: 48% 52%;
    align-items: stretch;
    overflow: hidden;
}



.hero h1 {
    margin: 0;
    /* font-family: var(--serif); */
    font-size: 60px;
    line-height: 1.03;
    font-weight: 400;
    color: var(--navy);
}

.title-rule {
    width: 64px;
    height: 2px;
    background: var(--sage);
    margin: 20px 0 20px;
}

.hero-copy p {
    margin: 0 0 12px;
    max-width: 440px;
    font-size: 18px;
    line-height: 1.55;
}

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

.hero-image-wrap {
    overflow: hidden;
    min-height: 390px;
    height: 390px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* First visit */
.visit-section {
    padding: 34px 0 42px;
    background: #fff;
}

.section-title {
    margin: 0;
    text-align: center;
    /* font-family: var(--serif); */
    color: var(--navy);
    font-size: 31px;
    font-weight: 600;
}

.section-rule {
    display: block;
    width: 34px;
    height: 2px;
    margin: 10px auto 20px;
    background: #7ea05d;
}

.visit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 4px;
}

.visit-step {
    position: relative;
    padding: 0 50px;
    text-align: center;
}

.visit-step+.visit-step::before {
    content: "";
    position: absolute;
    left: 0;
    top: 42px;
    bottom: 3px;
    width: 1px;
    background: #d6d9db;
}

.step-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 6px;
    border-radius: 50%;
    background: var(--sage-soft);
    display: grid;
    place-items: center;
    color: #45651f;
}

.step-icon img {
    width: 38px;
    height: 38px
}

.step-number {
    /* font-family: var(--serif); */
    color: #536f25;
    font-size: 25px;
    font-weight: 600;
}

.visit-step h3 {
    margin: 2px 0 8px;
    color: var(--navy);
    /* font-family: var(--serif); */
    font-size: 25px;
    font-weight: 600;
}

.visit-step p {
    margin: 0 auto;
    max-width: 270px;
    font-size: 14px;
    line-height: 1.62;
}

/* Questionnaire + request */
.action-section {
    padding: 28px 0 22px;
    border-top: 1px solid #eef0f1;
}

.action-grid {
    display: grid;
    grid-template-columns: 44% 56%;
    gap: 22px;
    align-items: stretch;
}

.questionnaire-panel,
.request-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
}

.questionnaire-panel {
    background: linear-gradient(135deg, #fbfcf8, #f5f7f1);
    padding: 30px 30px 28px;
}

.request-panel {
    background: #fff;
    padding: 26px 28px 24px;
}

.panel-kicker {
    /* font-family: var(--serif); */
    font-size: 16px;
    margin-bottom: 2px;
}

.questionnaire-panel h2,
.request-panel h2 {
    margin: 0 0 18px;
    color: var(--navy);
    /* font-family: var(--serif); */
    font-size: 28px;
    font-weight: 600;
}

.questionnaire-panel>p,
.request-panel>p {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.65;
}

.questionnaire-callout {
    margin: 18px 0 20px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #edf3e6;
    border-radius: 5px;
    font-size: 14px;
}

.questionnaire-callout img {
    width: 22px;
    height: 22px
}

.download-button {
    min-height: 50px;
    padding-inline: 22px;
    font-size: 13px;
}

.download-button img {
    width: 22px;
    height: 22px
}

.small-copy {
    margin-top: 20px !important;
    color: #48515e;
    font-size: 13px !important;
    line-height: 1.7 !important;
}

.request-form {
    margin-top: 10px
}

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

label>span {
    /* display: block; */
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 600;
}

label b {
    color: #d94848
}

input,
textarea {
    width: 100%;
    border: 1px solid #cfd6df;
    background: #fff;
    color: #16191f;
    border-radius: 3px;
    outline: none;
    padding: 11px 12px;
    font-size: 13px;
}

input:focus,
textarea:focus {
    border-color: #6e88ad;
    box-shadow: 0 0 0 2px rgba(8, 40, 95, .07);
}

textarea {
    resize: vertical;
    min-height: 96px
}

.message-field {
    display: block;
    margin-top: 10px
}

.message-field small {
    display: block;
    margin: -1px 0 6px;
    color: #666e78;
    font-size: 11px;
}

.submit-button {
    margin-top: 10px;
    min-height: 46px;
    padding-inline: 22px;
}

.privacy-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 14px 0 0 !important;
    color: #69717b;
    font-size: 11px !important;
    line-height: 1.45 !important;
}

.privacy-note img {
    width: 16px;
    height: 16px;
    flex: 0 0 auto
}

.hp-field {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* FAQ strip */
.faq-strip {
    padding: 0 0 16px
}

.faq-inner {
    min-height: 72px;
    padding: 11px 30px;
    display: grid;
    grid-template-columns: 56px 1fr auto;
    align-items: center;
    gap: 20px;
    border-radius: 7px;
    background: linear-gradient(90deg, #f5f7fa, #edf2fa);
}

.faq-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #e4ebf5;
    display: grid;
    place-items: center;
}

.faq-icon img {
    width: 30px;
    height: 30px
}

.faq-copy h2 {
    margin: 0 0 2px;
    color: var(--navy);
    /* font-family: var(--serif); */
    font-size: 18px;
}

.faq-copy p {
    margin: 0;
    font-size: 12px
}

.faq-link {
    color: var(--navy);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}


.legal-links {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
    align-items: center
}

/* Responsive */
@media (max-width:1050px) {
    .nav-shell {
        grid-template-columns: 1fr auto
    }

    .primary-nav {
        display: none
    }

    .hero-grid {
        grid-template-columns: 46% 54%
    }

    .hero h1 {
        font-size: 52px
    }


}

@media (max-width:820px) {
    .shell {
        width: min(100% - 36px, var(--shell))
    }

    .nav-shell {
        min-height: 72px;
        gap: 18px
    }



    .brand-name {
        font-size: 17px
    }

    .header-cta {
        font-size: 10px;
        padding-inline: 13px
    }

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

    .hero-copy {
        padding: 42px 15px 28px
    }

    .hero-image-wrap {
        min-height: 330px;
        height: 330px;
        margin-inline: -18px;
    }

    .hero h1 {
        font-size: 52px
    }

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

    .visit-step {
        padding: 20px 0
    }

    .visit-step+.visit-step::before {
        left: 18%;
        right: 18%;
        top: 0;
        bottom: auto;
        width: auto;
        height: 1px
    }

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

    .faq-inner {
        grid-template-columns: 52px 1fr
    }

    .faq-link {
        grid-column: 2;
        margin-bottom: 8px
    }


}

@media (max-width:560px) {
    /* .brand-copy {
            display: none
        } */

    .header-cta {
        min-height: 42px
    }

    .header-cta img {
        display: none
    }

    .hero h1 {
        font-size: 43px
    }

    .hero-copy p {
        font-size: 16px
    }

    .section-title {
        font-size: 28px
    }

    .questionnaire-panel,
    .request-panel {
        padding: 24px 20px
    }

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

    .faq-inner {
        padding: 14px 18px
    }


}

.eyebrow img,
.panel-kicker img {
    width: 22px;
    height: 22px;
    filter: none;
}

/* Journey section styles */
.journey1 {
    padding: 44px 0 40px
}

.journey1 h1 {
    font: 32px Georgia;
    color: var(--navy);
    text-align: center;
    margin: 0
}

.rule1 {
    /* width: 38px;
    height: 2px;
    background: #6f9c4c; */
    margin: 13px auto 0
}

.rule1:after {
    content: "✦";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--heroSolid);
    color: var(--accent);
    padding: 0 14px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 32px
}

.step {
    text-align: center;
    padding: 0 44px;
    position: relative
}

.step:not(:last-child):after {
    content: "";
    position: absolute;
    right: 0;
    top: 45px;
    width: 1px;
    height: 130px;
    background: #d8dee7
}

.num {
    font: 700 18px Georgia;
    color: #5f7f32;
    margin-bottom: 7px
}

.step h3 {
    font: 22px Georgia;
    color: var(--navy);
    margin: 0 0 10px
}

.step p {
    font-size: 13px;
    line-height: 1.55;
    margin: 0 auto;
    max-width: 260px
}

.ico img {
    width: 32px;
    height: 32px;
}

@media(max-width:900px) {
    .steps {
        grid-template-columns: 1fr
    }

    .step {
        padding: 18px 12px
    }

    .step:not(:last-child):after {
        display: none
    }
}

/* Action section styles */
.wrap {
    width: min(1180px, 92vw);
    margin: auto
}

.action {
    padding: 8px 0 28px
}

.grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 22px
}

.panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 30px 28px;
    background: #fff
}

.ph {
    display: flex;
    align-items: center;
    gap: 14px
}

.ph .ico {
    margin: 0;
    width: 54px;
    height: 54px
}

.ph h2 {
    font: 26px Georgia;
    color: var(--navy);
    margin: 0
}

.mini {
    width: 32px;
    height: 2px;
    background: #6f9c4c;
    margin: 10px 0 28px 82px
}

.questionnaire .intro {
    text-align: center;
    max-width: 330px;
    margin: 0 auto 24px;
    font-size: 15px;
    line-height: 1.55
}

.download {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--navy);
    color: var(--navy);
    padding: 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700
}

.note {
    margin-top: 28px;
    padding: 17px 18px;
    background: #eef3fb;
    border-radius: 6px;
    color: #19335f;
    font-size: 13px;
    line-height: 1.5;
    display: flex;
    gap: 12px
}

.formintro {
    margin: -6px 0 24px 68px;
    font-size: 14px;
    line-height: 1.55
}

.formgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px
}

.field.full {
    grid-column: 1/-1
}

.field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 7px
}

.req {
    color: #c83232
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid #cbd5e2;
    padding: 12px 13px
}

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

.helper {
    font-size: 11px;
    color: #69788d;
    margin: -2px 0 7px
}

.send {
    margin-top: 14px;
    background: var(--navy);
    color: #fff;
    border: 0;
    border-radius: 3px;
    padding: 14px 22px;
    font-size: 12px;
    font-weight: 700
}

.privacy {
    margin-top: 12px;
    font-size: 10.5px;
    color: #6d7a8d
}

@media(max-width:900px) {
    .grid {
        grid-template-columns: 1fr
    }

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

    .formintro,
    .mini {
        margin-left: 0
    }
}


.ico {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--badge);
    display: grid;
    place-items: center;
    margin: 0 auto 13px;
    font-size: 26px;
}