﻿:root {
    --page-max: 1920px;
    --content-max: 1550px;
    --teal: #277f97;
    --green: #8dc63f;
    --ink: #6d6e71;
    --muted: #80919D;
    --paper: #f6f6f6;
}

* {
    box-sizing: border-box;
}
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    color: black;
}

body {
    margin: 0;
    font-family: 'Barlow', sans-serif;
    color: var(--ink);
    background: #ffffff;
}

html {
    scroll-behavior: smooth;
}

p {
    margin: 0;
    line-height: 1.25;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.08;
    letter-spacing: 0.01em;
}

.shell {
    width: min(var(--content-max), calc(100% - 42px));
    margin: 0 auto;
}

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

.eyebrow {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 8px;
}

.eyebrow.light {
    color: #fff;
}

.center {
    text-align: center;
}

.hero {
    background: #fff;
    position: relative;
    z-index: 1;
}

.hero-shell {
    width: min(var(--content-max), calc(100% - 42px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(416px, 669px) 1fr;
    gap: 7.5px;
    align-items: center;
    min-height: 620px;
    padding: 28px 0 0;
}

.hero-copy {
    padding-left: 0;
}

.site-logo {
    width: 217px;
    height: auto;
    margin-bottom: 120px;
}

.hero-copy h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    max-width: 550px;
    color: #6d6e71;
    font-weight: 100;
}

.hero-copy .eyebrow {
    font-family: 'Caveat', cursive;
    font-size: 30px;
    line-height: 1;
    margin-bottom: 10px;
}

.hero-copy p {
    margin-top: 14px;
    max-width: 550px;
    font-size: 9.8px;
    color: #6d6e71;
    line-height: 1.24;
}

.hero-copy .note {
    margin-top: 25px;
    max-width: 550px;
    font-family: 'Caveat', cursive;
    font-size: 30px;
    line-height: 1;
    color: #6d6e71;
}

.hero-down-arrow {
    display: inline-flex;
    justify-content: center;
    margin-top: 26px;
    margin-bottom: 65px;
    width: 70%;
    text-align: center;
    font-size: 45px;
    color: #6d6e71;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
}

.hero-down-arrow i {
    font-size: 45px !important;
    line-height: 1;
}

.hero-down-arrow-mobile {
    display: none;
}

.hero-down-arrow:hover i {
    animation: hero-arrow-bounce 0.6s ease;
}

@keyframes hero-arrow-bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(3px);
    }
}

.hero-copy h1 + p {
    margin-top: 25px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 20px;
    line-height: 1.22;
}

.hero-art {
    align-self: end;
    position: relative;
    z-index: 1;
}

.hero-art img {
    width: calc(100% + max(0px, (min(100vw, var(--page-max)) - var(--content-max)) / 2));
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center;
    max-width: 1050px;
    margin-left: 0;
    display: block;
    animation: hero-graphic-appear 0.95s ease-out 0.12s both;
}

@keyframes hero-graphic-appear {
    from {
        opacity: 0;
        transform: scale(1.12);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.blue-band {
    background: var(--teal);
    color: #ffffff;
    padding: 65px 0 18px;
    position: relative;
    z-index: 3;
    margin-top: -10px;
}

.blue-band .shell {
    width: min(1340px, calc(100% - 42px));
    padding:50px 0 20px;
}

.blue-band .eyebrow {
    font-family: 'Caveat', cursive;
    font-size: 30px;
    line-height: 1;
    margin-bottom: 6px;
    font-weight: 100;
}

.blue-band h2 {
    max-width: 850px;
    margin: 0 auto 40px auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    color: #fff;
    font-weight: 400;
}

.band-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 90px;
}

.band-copy > p:not(.note) {
    font-family: 'Segoe UI', sans-serif;
    font-size: 20px;
    color: #ffffff;
    max-width: 100%;
    margin-bottom: 18px;
    line-height: 1.4;
}

.band-copy .note {
    margin-top: 14px;
    max-width: 100%;
    font-family: 'Caveat', cursive;
    font-size: 30px;
    line-height: 1;
}
.cta-btn{
    display: inline-block;
    color: white;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    border: 2px solid white;
    padding: 14px 28px;
    margin-top: 18px;
    font-weight: 600;
}
.cta-btn:hover{
    color: #277f97;
    background-color: white;
}
.down-arrow {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 8px;
    margin-bottom: 20px;
    font-size: 45px;
    color: #ffffff;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
}

.down-arrow i {
    font-size: 45px !important;
    line-height: 1;
}

.down-arrow:hover i {
    animation: hero-arrow-bounce 0.6s ease;
}

.band-copy .down-arrow {
    display: none;
}

.down-arrow-mobile {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 110px;
    margin-bottom: 0px;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px 10px;
    padding-top: 0;
}

.icon-item {
    text-align: center;
}

.icon-item img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 7px;
}

.icon-item span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
}

.reveal-col {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left {
    transform: translateX(-32px);
    padding-right: 50px;
}

.reveal-right {
    transform: translateX(32px);
}

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

.reveal-logo {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.logo-wall .reveal-logo:nth-child(1) { transition-delay: 0.02s; }
.logo-wall .reveal-logo:nth-child(2) { transition-delay: 0.04s; }
.logo-wall .reveal-logo:nth-child(3) { transition-delay: 0.06s; }
.logo-wall .reveal-logo:nth-child(4) { transition-delay: 0.08s; }
.logo-wall .reveal-logo:nth-child(5) { transition-delay: 0.10s; }
.logo-wall .reveal-logo:nth-child(6) { transition-delay: 0.12s; }
.logo-wall .reveal-logo:nth-child(7) { transition-delay: 0.14s; }
.logo-wall .reveal-logo:nth-child(8) { transition-delay: 0.16s; }
.logo-wall .reveal-logo:nth-child(9) { transition-delay: 0.18s; }
.logo-wall .reveal-logo:nth-child(10) { transition-delay: 0.20s; }
.logo-wall .reveal-logo:nth-child(11) { transition-delay: 0.22s; }
.logo-wall .reveal-logo:nth-child(12) { transition-delay: 0.24s; }

.logo-section {
    background: #fff;
    padding: 80px 0;
}

.logo-section .shell.narrow {
    width: min(1580px, calc(100% - 42px));
}

.logo-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    margin-bottom: 20px;
    font-weight: 400;
}

.logo-section .eyebrow {
    font-family: 'Caveat', cursive;
    font-size: 30px;
    line-height: 1;
    color: #000!important;
}

.dark {
    color: #6d6e71;
}

.logo-section .intro {
    margin: 0 auto 30px;
    max-width: 1220px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 20px;
    line-height: 1.2;
}

.logo-wall {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 220px));
    gap: 26px 62px;
    align-items: center;
    justify-items: center;
    justify-content: center;
}

.logo-item {
    width: 220px;
    max-width: 100%;
}

.logo-item img {
    width: 190px;
    height: 125px;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.green-section {
    background: var(--green);
    color: #000;
    padding: 90px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-copy {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.contact-copy h3 {
    font-size: 30px;
    margin-bottom: 14px;
    font-weight: 400;
}

.contact-copy p {
    font-size: 30px;
    margin-bottom: 13px;
    line-height: 1.12;
}

.contact-copy a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.contact-copy .phone {
    margin-top: 50px;
    margin-bottom: 100px;
}

.contact-copy .address a:hover,
.contact-copy .address a:focus-visible,
.contact-copy .phone a:hover,
.contact-copy .phone a:focus-visible {
    color: #2c5310;
    text-decoration: none;
}

.social-icons {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 55px;
    line-height: 1;
    transition: transform 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}

.social-icons a i {
    color: #fff;
    font-size: 60px;
    line-height: 1;
    transition: transform 0.2s ease, color 0.2s ease;
}

.social-icons a:hover,
.social-icons a:focus-visible {
    color: #2c5310;
    opacity: 1;
    transform: translateY(-3px) scale(1.04);
}

.social-icons a:hover i,
.social-icons a:focus-visible i {
    color: #2c5310;
}

.green-section .eyebrow.light {
    color: #000;
}

.form-block {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
}

.form-block .eyebrow {
    font-family: 'Caveat', cursive;
    font-size: 30px;
    line-height: 1;
}

.hbspt-form{
    width: 100%;
}

.form-placeholder {
    background: #8dc63f;
    color: #666666;
    width: 100%;
    /* height: 360px; */
    display: grid;
    place-items: center;
    font-size: 20px;
    padding:40px 0;
}

.footer-strip {
    height: 40px;
    background: var(--teal);
}

.hero-down-arrow:focus-visible,
.down-arrow:focus-visible,
.contact-copy a:focus-visible,
.social-icons a:focus-visible {
    outline: 2px solid transparent;
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 5px #0f4f63;
    border-radius: 4px;
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal-col,
    .reveal-logo {
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 1400px) {
    .hero-shell {
        grid-template-columns: minmax(460px, 1fr) 1fr;
        min-height: 560px;
    }

    .hero-copy h1 {
        font-size: 32px;
    }

    .hero-copy h1 + p {
        font-size: 18px;
    }
    .logo-wall {
        grid-template-columns:repeat(5, minmax(0, 220px));
        gap: 20px 40px;
        justify-content: center;
    }
}

@media (max-width: 1200px) {
    .hero-shell {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        min-height: 0;
        padding: 16px 0 0;
    }
    .reveal-left{
        padding-right: unset;
    }

    .hero-copy {
        padding-left: 0;
    }

    .hero-copy h1 {
        font-size: 30px;
        max-width: 100%;
    }

    .hero-copy p,
    .hero-copy .note {
        max-width: 100%;
    }

    .hero-copy .note {
        font-size: 26px;
    }

    .hero-down-arrow {
        width: 100%;
        justify-content: flex-start;
        text-align: left;
    }

    .hero-art img {
        width: 100%;
    }
}

@media (max-width: 960px) {
    .hero-shell,
    .band-columns,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero-shell {
        gap: 20px;
        padding-top: 20px;
        min-height: 0;
    }

    .hero-copy {
        padding-left: 0;
    }

    .hero-copy {
        order: 1;
    }

    .hero-art {
        order: 2;
    }

    .hero-down-arrow-mobile {
        order: 3;
        display: inline-flex;
        justify-content: center;
        width: 100%;
        margin-top: 10px;
        margin-bottom: 20px;
        text-align: center;
    }

    .hero-copy .hero-down-arrow {
        display: none;
    }

    .hero-art img {
        width: 100%;
    }

    .site-logo {
        width: 170px;
        margin-bottom: 26px;
    }

    .hero-copy .eyebrow {
        font-size: 24px;
    }

    .hero-copy h1 {
        font-size: 28px;
    }

    .hero-copy .note {
        font-size: 24px;
        margin-top: 24px;
    }

    .hero-copy h1 + p {
        margin-top: 24px;
        font-size: 17px;
    }

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

    .blue-band .shell {
        width: calc(100% - 26px);
    }

    .blue-band {
        margin-top: 0;
        padding-top: 0;
    }
    .cta-btn{
        max-width: fit-content;
        margin-inline: auto;
        display: block;
    }

    .blue-band h2 {
        font-size: 28px;
        margin-bottom: 0;
    }

    .logo-section{
        padding: 50px 0;
    }
    .green-section{
        padding: 50px 0;
    }

    .band-columns {
        gap: 24px;
        margin-top: 30px;
    }

    .band-copy .down-arrow {
        display: none;
    }

    .down-arrow-mobile {
        margin-top: 12px;
    }

    .band-copy > p:not(.note) {
        font-size: 17px;
    }

    .band-copy .note {
        font-size: 24px;
    }

    .icon-item img {
        width: 78px;
        height: 78px;
    }

    .logo-section h2 {
        font-size: 28px;
    }

    .logo-section .intro {
        font-size: 17px;
    }

    .logo-wall {
        grid-template-columns: repeat(3, minmax(0, 170px));
        gap: 18px 14px;
        justify-content: center;
    }

    .logo-item,
    .logo-item img {
        width: 170px;
        height: 106px;
    }

    .contact-copy,
    .form-block {
        margin: 0 auto;
    }

    .contact-copy .phone {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .form-placeholder {
        /*height: 280px;*/
    }
}

@media (max-width: 620px) {
    .shell,
    .narrow {
        width: calc(100% - 26px);
    }

    .hero-copy p,
    .hero-copy .note,
    .band-copy .note {
        max-width: 100%;
    }

    .blue-band .eyebrow {
        font-size: 24px;
    }

    .blue-band h2 {
        font-size: 24px;
    }

    .band-copy > p:not(.note) {
        font-size: 15px;
    }

    .band-copy .note {
        font-size: 22px;
    }

    .icon-item img {
        width: 64px;
        height: 64px;
    }

    .icon-item span {
        font-size: 12px;
    }

    .site-logo {
        width: 140px;
    }

    .hero-copy .eyebrow {
        font-size: 22px;
    }

    .hero-copy h1 {
        font-size: 24px;
    }

    .hero-copy h1 + p {
        font-size: 15px;
    }

    .hero-copy .note {
        font-size: 22px;
    }

    .hero-down-arrow,
    .hero-down-arrow i {
        font-size: 36px !important;
    }

    .logo-section .eyebrow {
        font-size: 24px;
    }

    .logo-section h2 {
        font-size: 24px;
    }

    .logo-section .intro {
        font-size: 15px;
    }

    .logo-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 10px;
        justify-content: center;
    }

    .logo-item,
    .logo-item img {
        width: 140px;
        height: 88px;
    }

    .contact-copy h3 {
        font-size: 22px;
    }

    .contact-copy p {
        font-size: 17px;
    }

    .form-placeholder {
        /*height: 220px;*/
        font-size: 18px;
    }
    .icon-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 30px 10px;
    }
}
@media (max-width: 412px) {
    .hero-art img{
        animation: none;
    }
}


