@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url("../fonts/Inter-latin-variable.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url("../fonts/Inter-latin-ext-variable.woff2") format("woff2");
}

@font-face {
    font-family: "Sora";
    font-style: normal;
    font-weight: 600 700;
    font-display: swap;
    src: url("../fonts/Sora-latin-variable.woff2") format("woff2");
}

@font-face {
    font-family: "Sora";
    font-style: normal;
    font-weight: 600 700;
    font-display: swap;
    src: url("../fonts/Sora-latin-ext-variable.woff2") format("woff2");
}

:root {
    --us-green-950: #0c3a1d;
    --us-green-800: #214f25;
    --us-green-700: #3d6f1e;
    --us-gold-600: #c89f39;
    --us-gold-700: #a77d25;
    --us-canvas: #fdfbf5;
    --us-leaf-mist: #eff6ea;
    --us-grain-wash: #f7f1e3;
    --us-border: #dde5d7;
    --us-muted: #566358;
    --us-white: #ffffff;
    --us-ink: #142018;
    --us-font-heading: "Sora", "Inter", Arial, sans-serif;
    --us-font-body: "Inter", Arial, sans-serif;
    --us-container: 1140px;
    --us-section-space: 96px;
    --us-section-space-compact: 64px;
    --us-radius: 8px;
    --us-shadow: 0 20px 48px rgba(12, 58, 29, 0.12);
    --us-motion-duration: 560ms;
    --us-card-motion-duration: 680ms;
    --us-motion-ease: cubic-bezier(0.21, 1, 0.24, 1);
    --us-motion-shift: 18px;
    --us-card-hover-shadow: 0 24px 52px rgba(12, 58, 29, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--us-canvas);
    color: var(--us-ink);
    font-family: var(--us-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0;
}

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

a {
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: var(--us-green-950);
    font-family: var(--us-font-heading);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
    overflow-wrap: break-word;
}

h1 {
    max-width: 860px;
    font-size: 72px;
}

h2 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.12;
}

h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.24;
}

p {
    margin: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 20;
    transform: translateY(-140%);
    border-radius: 6px;
    background: var(--us-green-950);
    color: var(--us-white);
    padding: 10px 14px;
    font-weight: 600;
    text-decoration: none;
}

.skip-link:focus {
    transform: translateY(0);
}

.us-container {
    width: min(calc(100% - 48px), var(--us-container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 15;
    border-bottom: 1px solid rgba(221, 229, 215, 0.92);
    background: rgba(253, 251, 245, 0.96);
    backdrop-filter: blur(14px);
}

.site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 96px;
    padding-block: 10px;
}

.site-header__brand {
    display: inline-flex;
    align-items: center;
}

.site-header__brand img {
    width: 74px;
    height: 74px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.site-nav__link {
    position: relative;
    color: var(--us-green-950);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
}

.site-nav__link::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: var(--us-gold-600);
    content: "";
    transition: transform 180ms ease;
}

.site-nav__link:hover::after,
.site-nav__link:focus::after,
.site-nav__link.is-active::after {
    transform: scaleX(1);
}

.site-nav .site-nav__cta {
    display: none;
}

.site-header__toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--us-border);
    border-radius: 8px;
    background: var(--us-white);
}

.site-header__toggle-line {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--us-green-950);
}

.us-icon {
    display: inline-block;
    flex: 0 0 auto;
    width: 1.2em;
    height: 1.2em;
    color: currentColor;
    vertical-align: -0.18em;
}

.us-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-family: var(--us-font-body);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.1;
    text-decoration: none;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.us-button__label {
    min-width: 0;
}

.us-button__icon {
    width: 18px;
    height: 18px;
    transition: transform 180ms ease;
}

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

.us-button:hover .us-button__icon,
.us-button:focus .us-button__icon {
    transform: translateX(2px);
}

.us-button--primary {
    border-color: var(--us-green-700);
    background: var(--us-green-700);
    color: var(--us-white);
}

.us-button--primary:hover,
.us-button--primary:focus {
    border-color: var(--us-green-950);
    background: var(--us-green-950);
}

.us-button--secondary {
    border-color: var(--us-green-700);
    background: transparent;
    color: var(--us-green-950);
}

.us-button--secondary:hover,
.us-button--secondary:focus {
    background: var(--us-leaf-mist);
}

.us-button--light {
    border-color: var(--us-white);
    background: var(--us-white);
    color: var(--us-green-950);
}

.us-button--light:hover,
.us-button--light:focus {
    border-color: var(--us-gold-600);
    background: var(--us-gold-600);
    color: var(--us-green-950);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.section-eyebrow {
    color: var(--us-green-700);
    font-family: var(--us-font-body);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hero-section {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: var(--us-green-950);
    isolation: isolate;
}

.section-bg-image {
    position: absolute;
    inset: 0;
    z-index: -2;
    margin: 0;
}

.section-bg-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(7, 22, 12, 0.86) 0%, rgba(12, 58, 29, 0.72) 46%, rgba(7, 22, 12, 0.34) 100%);
}

.hero-section__inner {
    display: flex;
    align-items: center;
    min-height: 680px;
    padding-block: 96px;
}

.hero-section__content {
    width: 100%;
    max-width: 720px;
    min-width: 0;
}

.hero-section .section-eyebrow,
.hero-section h1,
.hero-section__body,
.hero-section__support {
    margin-bottom: 20px;
}

.hero-section .section-eyebrow {
    color: var(--us-gold-600);
}

.hero-section h1 {
    color: var(--us-white);
}

.hero-section__body {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 20px;
    line-height: 1.6;
}

.hero-section__support {
    max-width: 640px;
    color: var(--us-white);
    font-weight: 600;
}

.hero-section .us-button--secondary {
    border-color: rgba(255, 255, 255, 0.72);
    color: var(--us-white);
}

.hero-section .us-button--secondary:hover,
.hero-section .us-button--secondary:focus {
    border-color: var(--us-white);
    background: rgba(255, 255, 255, 0.12);
}

.trust-strip {
    border-block: 1px solid var(--us-border);
    background: var(--us-white);
}

.trust-strip__inner {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
}

.trust-strip__inner > span {
    display: grid;
    gap: 8px;
    min-height: 78px;
    place-items: center;
    padding: 14px;
    color: var(--us-green-950);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: background 220ms ease, color 220ms ease, transform 260ms ease;
}

.trust-strip__inner > span:hover,
.trust-strip__inner > span:focus-within {
    background: var(--us-leaf-mist);
    color: var(--us-green-700);
    transform: translate3d(0, -3px, 0);
}

.trust-strip__icon {
    width: 24px;
    height: 24px;
    color: var(--us-gold-600);
    transition: color 220ms ease, transform 260ms var(--us-motion-ease);
}

.trust-strip__inner > span:hover .trust-strip__icon,
.trust-strip__inner > span:focus-within .trust-strip__icon {
    color: var(--us-green-700);
    transform: translate3d(0, -2px, 0) scale(1.08);
}

.trust-strip__label {
    display: block;
}

.site-section {
    padding-block: var(--us-section-space);
    background: var(--us-canvas);
}

.site-section--mist {
    background: var(--us-leaf-mist);
}

.site-section--canvas {
    background: var(--us-canvas);
}

.site-section--dark {
    background: var(--us-green-950);
    color: var(--us-white);
}

.motion-reveal {
    --motion-delay: 0ms;
    opacity: 1;
    transform: none;
}

.motion-ready .motion-reveal {
    opacity: 0;
    transform: translate3d(0, var(--us-motion-shift), 0);
    transition: opacity var(--us-motion-duration) var(--us-motion-ease), transform var(--us-motion-duration) var(--us-motion-ease);
    transition-delay: var(--motion-delay);
    will-change: opacity, transform;
}

.motion-ready .motion-reveal--left {
    transform: translate3d(calc(-1 * var(--us-motion-shift)), 0, 0);
}

.motion-ready .motion-reveal--right {
    transform: translate3d(var(--us-motion-shift), 0, 0);
}

.motion-ready .motion-reveal--fade {
    transform: translate3d(0, var(--us-motion-shift), 0);
}

.motion-ready .motion-reveal--scale {
    transform: translate3d(0, 10px, 0) scale(0.985);
}

.motion-ready .motion-reveal--card {
    transform: translate3d(0, 24px, 0) scale(0.975);
    transition-duration: var(--us-card-motion-duration);
}

.motion-ready .motion-reveal--card:nth-child(3n + 2) {
    transform: translate3d(0, 30px, 0) scale(0.97);
}

.motion-ready .motion-reveal--card:nth-child(3n) {
    transform: translate3d(0, 18px, 0) scale(0.98);
}

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

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    align-items: center;
    gap: 56px;
}

.split-section--reverse .split-section__content {
    order: 2;
}

.split-section--reverse .split-section__media {
    order: 1;
}

.split-section__content {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.split-section__content p:not(.section-eyebrow) {
    color: var(--us-muted);
}

.media-frame {
    min-height: 420px;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--us-border);
    border-radius: 8px;
    background: var(--us-leaf-mist);
    box-shadow: var(--us-shadow);
}

.media-frame img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.section-heading {
    display: grid;
    max-width: 760px;
    gap: 14px;
    margin-bottom: 36px;
}

.section-heading p:not(.section-eyebrow) {
    color: var(--us-muted);
}

.section-heading--light h2,
.section-heading--light p {
    color: var(--us-white);
}

.section-heading--light .section-eyebrow {
    color: var(--us-gold-600);
}

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

.info-card {
    position: relative;
    min-height: 218px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid var(--us-border);
    border-radius: 8px;
    background: var(--us-white);
    box-shadow: 0 12px 30px rgba(12, 58, 29, 0);
    transform: translateZ(0);
    transition: border-color 220ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.info-card::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background: linear-gradient(135deg, rgba(61, 111, 30, 0.1), rgba(200, 159, 57, 0.08) 44%, rgba(255, 255, 255, 0) 72%);
    opacity: 0;
    transition: opacity 260ms ease;
}

.info-card__icon {
    width: 42px;
    height: 42px;
    padding: 9px;
    margin-bottom: 18px;
    border-radius: 8px;
    background: var(--us-leaf-mist);
    color: var(--us-green-700);
    transition: background 220ms ease, color 220ms ease, transform 260ms var(--us-motion-ease);
}

.info-card__media {
    aspect-ratio: 16 / 9;
    margin: -24px -24px 18px;
    overflow: hidden;
    border-bottom: 1px solid var(--us-border);
    background: var(--us-leaf-mist);
}

.info-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.001);
    transition: transform 720ms var(--us-motion-ease), filter 260ms ease;
}

.info-card:hover,
.info-card:focus-within {
    border-color: rgba(61, 111, 30, 0.34);
    box-shadow: var(--us-card-hover-shadow);
    transform: translate3d(0, -6px, 0);
}

.info-card:hover::after,
.info-card:focus-within::after {
    opacity: 1;
}

.info-card:hover .info-card__icon,
.info-card:focus-within .info-card__icon {
    background: var(--us-green-700);
    color: var(--us-white);
    transform: translate3d(0, -3px, 0) rotate(-2deg);
}

.info-card:hover .info-card__media img,
.info-card:focus-within .info-card__media img {
    filter: saturate(1.06) contrast(1.02);
    transform: scale(1.055);
}

.info-card__kicker {
    color: var(--us-green-700);
    font-size: 13px;
    font-weight: 600;
}

.info-card h3 {
    margin-bottom: 10px;
}

.info-card p {
    color: var(--us-muted);
    font-size: 16px;
    line-height: 1.6;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.pillar-card {
    position: relative;
    min-height: 240px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    transform: translateZ(0);
    transition: background 240ms ease, border-color 240ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.pillar-card::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(200, 159, 57, 0.14) 42%, rgba(255, 255, 255, 0) 74%);
    opacity: 0;
    transition: opacity 260ms ease;
}

.pillar-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 32px;
}

.pillar-card__top span {
    display: inline-block;
    color: var(--us-gold-600);
    font-size: 13px;
    font-weight: 600;
}

.pillar-card__icon {
    width: 34px;
    height: 34px;
    color: var(--us-gold-600);
    transition: color 220ms ease, transform 300ms var(--us-motion-ease);
}

.pillar-card:hover,
.pillar-card:focus-within {
    border-color: rgba(200, 159, 57, 0.5);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
    transform: translate3d(0, -6px, 0);
}

.pillar-card:hover::before,
.pillar-card:focus-within::before {
    opacity: 1;
}

.pillar-card:hover .pillar-card__icon,
.pillar-card:focus-within .pillar-card__icon {
    color: var(--us-white);
    transform: translate3d(0, -3px, 0) rotate(3deg);
}

.pillar-card h3 {
    margin-bottom: 10px;
    color: var(--us-white);
}

.pillar-card p {
    color: var(--us-leaf-mist);
    font-size: 15px;
    line-height: 1.55;
}

.cta-band {
    position: relative;
    overflow: hidden;
    background: var(--us-green-950);
    isolation: isolate;
}

.cta-band__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(12, 58, 29, 0.94), rgba(12, 58, 29, 0.82), rgba(12, 58, 29, 0.34));
}

.cta-band__content {
    display: grid;
    max-width: 760px;
    gap: 18px;
    padding-block: 96px;
    margin-inline: auto auto;
    color: var(--us-white);
}

.cta-band h2,
.cta-band p {
    color: var(--us-white);
}

.cta-band .section-eyebrow {
    color: var(--us-gold-600);
}

.contact-panel,
.inquiry-form,
.info-card,
.pillar-card,
.media-frame,
.site-section__media,
.split-section__media,
.split-section__content,
.trust-strip__inner > span,
.site-footer__brand,
.site-footer__column,
.site-footer__bottom {
    will-change: opacity, transform;
}

.contact-grid,
.form-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
    gap: 48px;
    align-items: start;
}

.contact-grid > div:first-child,
.form-layout > div:first-child {
    display: grid;
    gap: 16px;
}

.contact-grid p,
.form-layout p {
    color: var(--us-muted);
}

.contact-panel,
.inquiry-form {
    border: 1px solid var(--us-border);
    border-radius: 8px;
    background: var(--us-white);
    box-shadow: var(--us-shadow);
}

.contact-panel {
    padding: 28px;
}

.contact-panel--featured {
    display: grid;
    gap: 18px;
    padding: 20px;
    background:
        linear-gradient(135deg, rgba(12, 58, 29, 0.94), rgba(33, 79, 37, 0.9)),
        var(--us-green-950);
    color: var(--us-white);
}

.contact-panel__item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 8px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.contact-panel__item--location {
    background: rgba(200, 159, 57, 0.14);
}

.contact-panel__icon {
    width: 36px;
    height: 36px;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--us-gold-600);
}

.contact-panel__copy {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.contact-panel__label {
    color: var(--us-gold-600);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
}

.contact-panel__item a,
.contact-panel__item p {
    margin: 0;
    color: var(--us-white);
    font-family: var(--us-font-heading);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.28;
    text-decoration: none;
}

.contact-panel dl {
    display: grid;
    gap: 18px;
    margin: 0;
}

.contact-panel dl div {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 18px;
}

.contact-panel dt {
    color: var(--us-green-700);
    font-size: 14px;
    font-weight: 600;
}

.contact-panel dd {
    margin: 0;
    color: var(--us-green-950);
    font-size: 16px;
    font-weight: 500;
}

.inquiry-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 28px;
}

.inquiry-form label {
    display: grid;
    gap: 7px;
    color: var(--us-green-950);
    font-size: 14px;
    font-weight: 600;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    border: 1px solid var(--us-border);
    border-radius: 6px;
    background: var(--us-white);
    color: var(--us-ink);
    font: 400 16px/1.45 var(--us-font-body);
    padding: 12px 13px;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    outline: 2px solid rgba(200, 159, 57, 0.42);
    border-color: var(--us-gold-600);
}

.inquiry-form input[aria-invalid="true"],
.inquiry-form select[aria-invalid="true"],
.inquiry-form textarea[aria-invalid="true"] {
    border-color: #9d2b1f;
    outline: 2px solid rgba(157, 43, 31, 0.18);
}

.inquiry-form em {
    color: #9d2b1f;
    font-style: normal;
    font-weight: 500;
}

.inquiry-form__wide,
.form-notice {
    grid-column: 1 / -1;
}

.form-notice {
    border-radius: 8px;
    background: var(--us-leaf-mist);
    color: var(--us-green-950);
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 600;
}

.site-footer {
    background: var(--us-green-950);
    color: var(--us-white);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
    gap: 34px;
    padding-block: 64px 44px;
}

.site-footer__brand img {
    width: 120px;
    margin-bottom: 18px;
}

.site-footer__brand p,
.site-footer__column p {
    color: var(--us-leaf-mist);
    font-size: 15px;
    line-height: 1.55;
}

.site-footer__column {
    display: grid;
    align-content: start;
    gap: 10px;
}

.site-footer h2 {
    color: var(--us-white);
    font-size: 15px;
    line-height: 1.25;
}

.site-footer a {
    color: var(--us-leaf-mist);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.site-footer .us-button {
    color: var(--us-green-950);
}

.site-footer .us-button--light:hover,
.site-footer .us-button--light:focus {
    color: var(--us-green-950);
}

.site-footer a:hover,
.site-footer a:focus {
    color: var(--us-gold-600);
}

.site-footer a.us-button:hover,
.site-footer a.us-button:focus {
    color: var(--us-green-950);
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-block: 18px;
}

.site-footer__bottom p {
    color: var(--us-leaf-mist);
    font-size: 14px;
}

.error-page {
    display: grid;
    min-height: 58vh;
    align-content: center;
    justify-items: start;
    gap: 18px;
}

@media (max-width: 1366px) {
    :root {
        --us-container: 1140px;
        --us-section-space: 82px;
    }

    h1 {
        font-size: 64px;
    }

    h2 {
        font-size: 38px;
    }

    .site-nav {
        gap: 14px;
    }
}

@media (max-width: 1200px) {
    :root {
        --us-container: 1140px;
    }

    .site-header__cta {
        display: none;
    }

    .site-nav .site-nav__cta {
        display: inline-flex;
        width: 100%;
        margin-top: 6px;
    }

    .site-header__inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .site-header__toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        right: 24px;
        left: 24px;
        z-index: 20;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border: 1px solid var(--us-border);
        border-radius: 8px;
        background: var(--us-white);
        box-shadow: var(--us-shadow);
    }

    .site-nav.is-open {
        box-shadow: var(--us-shadow), 0 100vh 0 100vh rgba(12, 58, 29, 0.52);
    }

    @supports selector(body:has(.site-nav.is-open)) {
        body:has(.site-nav.is-open) .hero-section .button-row {
            visibility: hidden;
            pointer-events: none;
        }
    }

    .js-enabled .site-nav {
        display: none;
    }

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

    .site-nav__link {
        padding: 10px 4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .motion-reveal,
    .motion-reveal--left,
    .motion-reveal--right,
    .motion-reveal--scale,
    .motion-reveal--card,
    .info-card,
    .pillar-card,
    .info-card__icon,
    .pillar-card__icon,
    .info-card__media img,
    .trust-strip__inner > span,
    .trust-strip__icon {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width: 1024px) {
    :root {
        --us-section-space: 72px;
    }

    h1 {
        font-size: 54px;
    }

    h2 {
        font-size: 34px;
    }

    body {
        font-size: 17px;
    }

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

    .split-section--reverse .split-section__content,
    .split-section--reverse .split-section__media {
        order: initial;
    }

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

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

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

    .trust-strip__inner > span {
        min-height: 118px;
        padding: 16px 8px;
        font-size: 13px;
        line-height: 1.35;
    }

    .trust-strip__icon {
        width: 22px;
        height: 22px;
    }

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

    .media-frame,
    .media-frame img {
        min-height: 340px;
    }

    .contact-panel div {
        grid-template-columns: 1fr;
        gap: 3px;
    }
}

@media (max-width: 767px) {
    .us-container {
        width: min(calc(100% - 36px), var(--us-container));
    }

    h1 {
        font-size: 46px;
    }

    h2 {
        font-size: 31px;
    }

    .hero-section,
    .hero-section__inner {
        min-height: 620px;
    }

    :root {
        --us-section-space: 56px;
    }

    .us-container {
        width: min(calc(100% - 32px), var(--us-container));
        max-width: var(--us-container);
        margin-inline: auto;
    }

    body {
        font-size: 16px;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 29px;
    }

    h3 {
        font-size: 20px;
    }

    .site-header__inner {
        min-height: 74px;
    }

    .site-header__brand img {
        width: 62px;
        height: 62px;
    }

    .hero-section,
    .hero-section__inner {
        min-height: 560px;
    }

    .hero-section__inner {
        padding-block: 64px;
    }

    .hero-section__overlay {
        background: linear-gradient(90deg, rgba(7, 22, 12, 0.9) 0%, rgba(12, 58, 29, 0.78) 68%, rgba(7, 22, 12, 0.46) 100%);
    }

    .hero-section .section-bg-image img {
        object-position: 68% center;
    }

    .hero-section h1 {
        width: 100%;
        max-width: 100%;
        font-size: clamp(32px, 9vw, 40px);
    }

    .hero-section__body {
        width: 100%;
        max-width: 36rem;
        font-size: 17px;
    }

    .hero-section__support {
        width: 100%;
        max-width: 36rem;
    }

    .hero-section__content,
    .hero-section h1,
    .hero-section__body,
    .hero-section__support,
    .section-heading,
    .contact-grid > div,
    .form-layout > div,
    .contact-panel,
    .inquiry-form,
    .info-card {
        max-width: calc(100vw - 32px);
    }

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

    .contact-panel__item a,
    .contact-panel__item p,
    .info-card h3,
    .info-card p {
        overflow-wrap: anywhere;
    }

    .trust-strip__inner,
    .card-grid,
    .pillar-grid,
    .inquiry-form,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .trust-strip__inner > span {
        min-height: 72px;
        padding: 14px;
    }

    .inquiry-form {
        padding: 22px;
    }

    .cta-band__content {
        padding-block: 64px;
    }
}

@media (max-width: 480px) {
    .us-container {
        width: min(calc(100% - 32px), var(--us-container));
        max-width: var(--us-container);
        margin-inline: auto;
    }

    h1 {
        font-size: clamp(31px, 8.8vw, 34px);
    }

    h2 {
        font-size: 27px;
    }

    .button-row,
    .us-button {
        width: 100%;
    }

    .media-frame,
    .media-frame img {
        min-height: 280px;
    }
}
