/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-page {
    --contact-navy: #071d3d;
    --contact-blue: #2f73e8;
    --contact-blue-dark: #1e57bd;
    --contact-text: #17243a;
    --contact-muted: #627087;
    --contact-border: #dce5f1;
    --contact-surface: #ffffff;
    --contact-surface-soft: #f5f8fc;
    --contact-error: #b42318;

    min-height: 100vh;
    padding: clamp(34px, 5vw, 76px) 0 86px;

    background:
        radial-gradient(
            circle at 12% 0%,
            rgba(47, 115, 232, 0.08),
            transparent 26%
        ),
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #f3f6fa 100%
        );

    color: var(--contact-text);
}


.contact-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;

    overflow: hidden;

    background: var(--contact-surface);
    border: 1px solid rgba(204, 216, 231, 0.94);
    border-radius: 18px;

    box-shadow:
        0 24px 70px rgba(12, 32, 63, 0.09),
        0 3px 12px rgba(12, 32, 63, 0.05);
}


/* =========================================================
   HERO
   ========================================================= */

.contact-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.48fr) minmax(420px, 0.92fr);
    min-height: 400px;

    border-bottom: 1px solid var(--contact-border);
}


.contact-hero h1 {
    max-width: 690px;
    margin: 0;

    color: var(--contact-navy);
font-weight: 720;
    letter-spacing: -0.052em;
}


.contact-hero h1 span {
    display: block;

    color: var(--contact-blue);
}


.contact-hero__summary {
    max-width: 655px;
    margin: 24px 0 0;

    color: var(--contact-muted);
}


.contact-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 31px;

    margin: 29px 0 0;
    padding: 0;

    list-style: none;
}


.contact-assurances li {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #33445d;
font-weight: 650;
}


.contact-assurances svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;

    fill: none;
    stroke: var(--contact-blue);
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.contact-hero__visual {
    position: relative;
    min-height: 400px;

    overflow: hidden;

    background: #e8eef7;
}


.contact-hero__visual::before {
    content: "";

    position: absolute;
    z-index: 3;
    inset: 0 auto 0 0;

    width: 145px;

    background: linear-gradient(
        90deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0.98) 18%,
        rgba(255, 255, 255, 0.82) 38%,
        rgba(255, 255, 255, 0.45) 66%,
        rgba(255, 255, 255, 0) 100%
    );

    pointer-events: none;
}


.contact-hero__visual::before {
    content: "";

    position: absolute;
    left: -18px;
    top: 0;
    bottom: 0;

    width: 36px;
    z-index: 3;
    pointer-events: none;

    box-shadow: 0 0 35px rgba(255,255,255,.95);
}


.contact-hero__visual img {
    position: relative;
    z-index: 1;
display: block;
}


/* =========================================================
   CONTACT OPTIONS
   ========================================================= */

.contact-options {
    position: relative;
    z-index: 3;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;

    margin: -48px clamp(28px, 5vw, 68px) 0;
}


.contact-option {
    min-width: 0;
    min-height: 220px;
    padding: 28px 27px 25px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    appearance: none;

    text-align: left;

    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--contact-border);
    border-radius: 13px;

    box-shadow:
        0 11px 30px rgba(21, 46, 83, 0.08),
        0 2px 6px rgba(21, 46, 83, 0.04);

    cursor: pointer;

    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}


.contact-option:hover {
    transform: translateY(-4px);

    border-color: rgba(47, 115, 232, 0.42);

    box-shadow:
        0 18px 38px rgba(21, 46, 83, 0.12),
        0 3px 8px rgba(21, 46, 83, 0.05);
}


.contact-option:focus-visible {
    outline: 3px solid rgba(47, 115, 232, 0.23);
    outline-offset: 3px;
}


.contact-option.is-active {
    border-color: var(--contact-blue);

    box-shadow:
        0 0 0 3px rgba(47, 115, 232, 0.1),
        0 18px 38px rgba(21, 46, 83, 0.12);
}

.contact-option__heading {
    width: 100%;

    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 17px;
}
.contact-option__icon {color: var(--contact-blue);
}


.contact-option__icon svg {
    width: 23px;
    height: 23px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.contact-option__title {
    min-width: 0;
    color: var(--contact-navy);
font-weight: 730;
    letter-spacing: -0.015em;
}


.contact-option__description {
    margin-top: 2px;

    color: var(--contact-muted);
}


.contact-option__action {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: auto;
    padding-top: 19px;

    color: var(--contact-blue);
font-weight: 720;
}


.contact-option__action svg {
    width: 16px;
    height: 16px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform 180ms ease;
}


.contact-option:hover .contact-option__action svg {
    transform: translateX(3px);
}


/* =========================================================
   MAIN AREA
   ========================================================= */

.contact-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 335px;
    gap: clamp(34px, 5vw, 64px);

    padding:
        clamp(24px, 3vw, 42px)
        clamp(28px, 5vw, 68px)
        clamp(56px, 7vw, 82px);
}


.contact-form-panel {
    min-width: 0;
}


.contact-section-heading__eyebrow {
    display: block;

    margin-bottom: 9px;

    color: var(--contact-blue);
font-weight: 750;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}


.contact-section-heading h2 {
    margin: 0;

    color: var(--contact-navy);
font-weight: 720;
    letter-spacing: -0.038em;
}


.contact-section-heading p {
    max-width: 680px;
    margin: 14px 0 0;

    color: var(--contact-muted);
}


/* =========================================================
   FORM
   ========================================================= */

.contact-form {
    margin-top: 34px;
}


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


.contact-field {
    min-width: 0;

    display: flex;
    flex-direction: column;
}


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


.contact-field label {
    margin-bottom: 8px;

    color: #263750;
font-weight: 680;
}


.contact-field label span {
    color: var(--contact-blue);
}


.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;

    color: var(--contact-text);
    font: inherit;
    background: #ffffff;
    border: 1px solid #d5dfeb;
    border-radius: 8px;
    outline: none;

    transition:
        border-color 160ms ease,
        box-shadow 160ms ease,
        background-color 160ms ease;
}


.contact-field input,
.contact-field select {
    min-height: 49px;
    padding: 0 14px;
}


.contact-field textarea {
    min-height: 145px;
    padding: 14px;

    resize: vertical;
    line-height: 1.58;
}


.contact-field select {
    appearance: none;

    padding-right: 43px;

    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            #6d7c90 50%
        ),
        linear-gradient(
            135deg,
            #6d7c90 50%,
            transparent 50%
        );

    background-position:
        calc(100% - 18px) 21px,
        calc(100% - 13px) 21px;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;
}


.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #98a4b4;
}


.contact-field input:hover,
.contact-field select:hover,
.contact-field textarea:hover {
    border-color: #bdcad9;
}


.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: var(--contact-blue);

    box-shadow:
        0 0 0 3px rgba(47, 115, 232, 0.11);
}


.contact-field input.input-validation-error,
.contact-field select.input-validation-error,
.contact-field textarea.input-validation-error {
    border-color: var(--contact-error);
}


.contact-form > .contact-field {
    margin-bottom: 21px;
}


.contact-form > .contact-field:first-of-type {
    margin-bottom: 22px;
}


.field-validation {
    min-height: 17px;
    margin-top: 6px;

    color: var(--contact-error);
line-height: 1.35;
}


.field-validation:empty {
    display: none;
}


.contact-validation-summary {
    margin-bottom: 24px;
    padding: 14px 17px;

    color: #8f1d16;
background: #fff3f2;
    border: 1px solid #ffd3cf;
    border-radius: 9px;
}


.contact-validation-summary:empty {
    display: none;
}


.contact-validation-summary ul {
    margin: 0;
    padding-left: 19px;
}


.contact-field__meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;

    color: #8a96a7;
}


.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;
}


/* =========================================================
   CONDITIONAL AREAS
   ========================================================= */

.contact-conditional {
    margin: 29px 0;
    padding: 23px;

    background: var(--contact-surface-soft);
    border: 1px solid #e0e8f2;
    border-radius: 11px;
}


.contact-conditional[hidden] {
    display: none;
}


.contact-conditional__heading {
    margin-bottom: 21px;
}


.contact-conditional__heading h3 {
    margin: 0;

    color: var(--contact-navy);
font-weight: 720;
}


.contact-conditional__heading p {
    margin: 7px 0 0;

    color: var(--contact-muted);
}


/* =========================================================
   CONSENT AND SUBMIT
   ========================================================= */

.contact-consent {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    margin-top: 23px;
}


.contact-consent input {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;

    margin-top: 2px;

    accent-color: var(--contact-blue);
}


.contact-consent label {
    color: #4f5e72;
}


.contact-security-note {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    margin-top: 24px;
    padding: 14px 16px;

    background: #f6f9fd;
    border: 1px solid #e0e8f2;
    border-radius: 9px;
}


.contact-security-note svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;

    margin-top: 2px;

    fill: none;
    stroke: var(--contact-blue);
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.contact-security-note p {
    margin: 0;

    color: #637188;
}


.contact-submit {
    min-height: 52px;
    min-width: 190px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    margin-top: 26px;
    padding: 0 23px;

    color: #ffffff;
    font: inherit;
font-weight: 720;

    background:
        linear-gradient(
            135deg,
            var(--contact-blue),
            var(--contact-blue-dark)
        );

    border: 0;
    border-radius: 8px;

    box-shadow:
        0 10px 20px rgba(47, 115, 232, 0.2);

    cursor: pointer;

    transition:
        transform 170ms ease,
        box-shadow 170ms ease;
}


.contact-submit:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 27px rgba(47, 115, 232, 0.27);
}


.contact-submit:focus-visible {
    outline: 3px solid rgba(47, 115, 232, 0.24);
    outline-offset: 3px;
}


.contact-submit:disabled {
    opacity: 0.72;
    cursor: wait;
    transform: none;
}


.contact-submit svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   SIDEBAR
   ========================================================= */

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 17px;
}


.contact-info-card {
    padding: 27px 26px;

    background:
        linear-gradient(
            145deg,
            #f4f8ff 0%,
            #edf4fd 100%
        );

    border: 1px solid #dae7f6;
    border-radius: 12px;
}

.contact-info-card__heading {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 17px;
}
.contact-info-card__heading h2 {
    min-width: 0;
    margin: 0;

    color: var(--contact-navy);
font-weight: 730;
    letter-spacing: -0.018em;
}
.contact-info-card__icon {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin: 0;

    color: var(--contact-blue);

    background: #ffffff;
    border: 1px solid rgba(47, 115, 232, 0.15);
    border-radius: 10px;
}


.contact-info-card__icon svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-info-card h2 {
    margin: 0;

    color: var(--contact-navy);
font-weight: 730;
    letter-spacing: -0.018em;
}


.contact-info-card > p {
    margin: 13px 0 0;

    color: var(--contact-muted);
}


.contact-info-card > ul {
    display: flex;
    flex-direction: column;
    gap: 11px;

    margin: 21px 0 0;
    padding: 0;

    list-style: none;
}


.contact-info-card > ul > li {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #43536a;
font-weight: 610;
}


.contact-info-card > ul > li > svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: var(--contact-blue);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.contact-direct-list {
    gap: 18px !important;
}


.contact-direct-list li {
    align-items: flex-start !important;
}


.contact-direct-list__icon {display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--contact-blue);

    background: #f0f5fd;
    border-radius: 8px;
}


.contact-direct-list__icon svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.contact-direct-list div {
    min-width: 0;
}


.contact-direct-list div > span {
    display: block;

    margin-bottom: 4px;

    color: #69778b;
font-weight: 680;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


.contact-direct-list a,
.contact-direct-list p {
    margin: 0;

    color: var(--contact-navy);
font-weight: 650;
text-decoration: none;
    overflow-wrap: anywhere;
}


.contact-direct-list a:hover {
    color: var(--contact-blue);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {

    .contact-hero {
        grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.75fr);
    }


    .contact-hero__content {
        padding:
            52px
            clamp(30px, 5vw, 52px)
            75px;
    }


    .contact-options {
        margin-left: 30px;
        margin-right: 30px;
    }


    .contact-option {
        padding: 24px 21px;
    }


    .contact-main {
        grid-template-columns: 1fr;
        padding-left: 30px;
        padding-right: 30px;
    }


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

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .contact-page {
        padding: 20px 0 50px;
    }


    .contact-shell {
        width: min(100% - 24px, 1180px);

        border-radius: 13px;
    }


    .contact-hero {
        display: flex;
        flex-direction: column;
    }


    .contact-hero__content {
        order: 2;

        padding: 31px 22px 76px;
    }


    .contact-hero__visual {
        order: 1;

        min-height: 215px;
        height: 215px;
    }


    .contact-hero__visual::before {
        inset: auto 0 0 0;

        width: auto;
        height: 70px;

        background: linear-gradient(
            0deg,
            #ffffff 0%,
            transparent 100%
        );
    }


    .contact-hero__summary {
        margin-top: 19px;
}


    .contact-assurances {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;

        margin-top: 24px;
    }


    .contact-assurances li br {
        display: none;
    }


    .contact-options {
        grid-template-columns: 1fr;
        gap: 11px;

        margin:
            -46px
            15px
            0;
    }

.contact-option {
    min-height: 0;
    padding: 21px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.contact-option__heading {
    gap: 13px;
    margin-bottom: 12px;
}


    .contact-option__description {
        margin-top: 6px;
    }


    .contact-option__action {
        margin-top: 10px;
        padding-top: 0;
    }


    .contact-main {
        gap: 42px;

        padding:
            52px
            21px
            48px;
    }


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


    .contact-field--full {
        grid-column: auto;
    }


    .contact-conditional {
        padding: 19px 16px;
    }


    .contact-submit {
        width: 100%;
    }


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

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .contact-option,
    .contact-option__action svg,
    .contact-submit {
        transition: none;
    }

}


/* =========================================================
   THANK-YOU PAGE
   ========================================================= */

.contact-thank-you {
    width: min(720px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(45px, 7vw, 78px);

    text-align: center;

    background: #ffffff;
    border: 1px solid #dce5f1;
    border-radius: 18px;

    box-shadow:
        0 24px 70px rgba(12, 32, 63, 0.09);
}


.contact-thank-you__heading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    margin-bottom: 28px;
}

.contact-thank-you__icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--contact-blue);

    background: #eef4ff;
    border: 1px solid rgba(47,115,232,.18);
    border-radius: 50%;
}

.contact-thank-you__icon svg {
    width: 30px;
    height: 30px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.contact-kicker {
    color: var(--contact-blue);

    font-size: .95rem;
    font-weight: 760;

    letter-spacing: .08em;
    text-transform: uppercase;
}


.contact-thank-you h1 {
    margin: 0;

    color: #071d3d;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 720;
    letter-spacing: -0.045em;
    line-height: 1.06;
}


.contact-thank-you > p {
    max-width: 580px;
    margin: 20px auto 0;

    color: #627087;
    font-size: 1rem;
    line-height: 1.72;
}


.contact-thank-you__reference {
    margin: 23px auto 0;
    padding: 11px 15px;

    color: #536178;
    font-size: 0.76rem;

    background: #f5f8fc;
    border-radius: 8px;

    overflow-wrap: anywhere;
}


.contact-thank-you__notice {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    margin: 25px auto 0;
    padding: 16px 18px;

    text-align: left;

    color: #5e6c80;
    font-size: 0.8rem;
    line-height: 1.58;

    background: #f5f8fc;
    border: 1px solid #e0e8f2;
    border-radius: 10px;
}


.contact-thank-you__notice svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;

    fill: none;
    stroke: #2f73e8;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.contact-thank-you__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 30px;
}


.contact-thank-you__primary,
.contact-thank-you__secondary {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 21px;

    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;

    border-radius: 8px;
}


.contact-thank-you__primary {
    color: #ffffff;
    background: #2f73e8;
}


.contact-thank-you__secondary {
    color: #1e57bd;
    background: #ffffff;
    border: 1px solid #cbd8e7;
}


@media (max-width: 560px) {

    .contact-thank-you {
        width: min(100% - 24px, 720px);
        padding: 39px 21px;
    }


    .contact-thank-you__actions {
        flex-direction: column;
    }


    .contact-thank-you__primary,
    .contact-thank-you__secondary {
        width: 100%;
    }

}

.contact-hero__visual img{
    width: 103%;
    height: 103%;

    object-fit: cover;
    object-position: left center;

    margin-left: -1.5%;
    margin-top: -1.5%;
}
.contact-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 26px 48px 75px;
}
/* ===========================
   Laptop (1100px–1499px)
   =========================== */
/* Laptop only */
/* Laptop only */
@media (min-width: 981px) and (max-width: 1499px) {

    .contact-shell {
        width: min(1260px, calc(100% - 24px));
    }

    .contact-hero {
        grid-template-columns:
            minmax(0, 1.25fr)
            minmax(0, 1fr);
    }


    .contact-hero h1 {
        max-width: none;
}

    .contact-hero h1 span {
        white-space: nowrap;
    }

	.contact-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 26px 48px 75px;
}
}
/* ===========================
   Large Desktop (1500px+)
   =========================== */
@media (min-width:1500px){

    .contact-shell{
        width:min(1380px, calc(100% - 70px));
    }

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

}


.contact-option__icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin: 0;

    background: none;
    border: 0;
    border-radius: 0;
}

.contact-option__icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}


.contact-direct-list__icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
}

.contact-direct-list__icon svg {
    width: 22px;
    height: 22px;
}

/* =========================================================
   CONTACT PAGE — FINAL TYPOGRAPHY OVERRIDE
   ========================================================= */

/* HERO TITLE */
.contact-hero h1 {
    font-size: clamp(3rem, 4vw, 4rem) !important;
    line-height: 1.02 !important;
}


/* 18px — HERO / CARD / SUBSECTION TITLES */
.contact-hero__summary,
.contact-option__title,
.contact-info-card h2,
.contact-info-card__heading h2,
.contact-conditional__heading h3 {
    font-size: 1.125rem !important;
}


/* 16px — STANDARD BODY TEXT */
.contact-option__description,
.contact-section-heading p,
.contact-field input,
.contact-field select,
.contact-field textarea,
.contact-info-card > p {
    font-size: 1rem !important;
}


/* 15px — SECONDARY CONTENT */
.contact-conditional__heading p,
.contact-submit,
.contact-info-card > ul > li,
.contact-direct-list a,
.contact-direct-list p {
    font-size: 0.9375rem !important;
}


/* 14px — LABELS / ACTIONS */
.contact-assurances li,
.contact-option__action,
.contact-field label,
.contact-validation-summary,
.contact-consent label {
    font-size: 0.875rem !important;
}


/* 13px — SUPPORTING / VALIDATION TEXT */
.field-validation,
.contact-security-note p {
    font-size: 0.8125rem !important;
}


/* 12px — EYEBROWS / MICRO LABELS */
.contact-section-heading__eyebrow,
.contact-field__meta,
.contact-direct-list div > span {
    font-size: 0.75rem !important;
}


/* MAIN SECTION TITLE */
.contact-section-heading h2 {
    font-size: clamp(2rem, 2.6vw, 2.5rem) !important;
    line-height: 1.1 !important;
}


/* =========================================================
   LINE HEIGHTS
   ========================================================= */

/* LARGE BODY COPY */
.contact-hero__summary,
.contact-section-heading p,
.contact-info-card > p {
    line-height: 1.65 !important;
}


/* STANDARD DESCRIPTIONS */
.contact-option__description,
.contact-conditional__heading p {
    line-height: 1.6 !important;
}


/* CARD / SUBSECTION TITLES */
.contact-option__title,
.contact-info-card h2,
.contact-info-card__heading h2,
.contact-conditional__heading h3 {
    line-height: 1.3 !important;
}


/* LISTS / CONTACT DETAILS */
.contact-info-card > ul > li,
.contact-direct-list a,
.contact-direct-list p {
    line-height: 1.5 !important;
}


/* SMALL SUPPORTING TEXT */
.contact-consent label,
.contact-security-note p {
    line-height: 1.55 !important;
}


/* HERO ASSURANCES */
.contact-assurances li {
    line-height: 1.4 !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .contact-hero h1 {
        font-size: clamp(2.5rem, 10vw, 3rem) !important;
    }

    .contact-hero__summary {
        font-size: 1rem !important;
    }

    .contact-section-heading h2 {
        font-size: clamp(1.75rem, 8vw, 2.125rem) !important;
    }
}