/* =========================================================
   MICHAEL WOOD — CONTACT
========================================================= */

.contactContainer {
    width: min(1500px, calc(100% - 60px));
    margin: 0 auto;
}


/* =========================================================
   SHARED
========================================================= */

.contactEyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #66e3ff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.contactEyebrow > span {
    width: 27px;
    height: 1px;
    background: linear-gradient(90deg,#66e3ff,#8b7bff);
}

.contactEyebrow--dark {
    color: #315f93;
}

.contactEyebrow--dark > span {
    background: linear-gradient(90deg,#3d7fa9,#7a6bc4);
}

.contactReveal {
    opacity: 0;
    transform: translateY(38px);
    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.2,.8,.2,1);
}

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

.contactDelay1 { transition-delay: .08s; }
.contactDelay2 { transition-delay: .16s; }
.contactDelay3 { transition-delay: .24s; }
.contactDelay4 { transition-delay: .32s; }


/* =========================================================
   BUTTONS
========================================================= */

.contactButton {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 0 20px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

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

.contactButton--primary {
    color: #fff;
    border: 1px solid rgba(102,227,255,.3);
    background: linear-gradient(110deg,#3d65ef,#8049ed);
    box-shadow: 0 18px 45px rgba(61,71,220,.18);
}

.contactButton--outline {
    color: rgba(255,255,255,.78);
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.025);
}


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

.contactHero {
    position: relative;
    overflow: hidden;
    background: #050b1a;
}

.contactHero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 72px 72px;
}

.contactHero__glow {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.contactHero__glow--one {
    left: -180px;
    top: 0;
    background: rgba(45,102,255,.13);
}

.contactHero__glow--two {
    right: -160px;
    bottom: -200px;
    background: rgba(139,123,255,.12);
}

.contactHero__content {
    position: relative;
    z-index: 2;
    max-width: 1120px;
    padding: 110px 0 120px;
}

.contactHero h1 {
    max-width: 1080px;
    margin: 26px 0 24px;
    color: #fff;
    font-size: clamp(62px,6.6vw,108px);
    line-height: .91;
    letter-spacing: -.075em;
}

.contactHero h1 span {
    background: linear-gradient(90deg,#d7e5ff,#aab9ff,#a78bff,#69deff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contactHero__lead {
    max-width: 760px;
    margin: 0;
    color: rgba(239,243,255,.64);
    font-size: 16px;
    line-height: 1.75;
}

.contactHero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 34px;
}

.contactHero__meta {
    max-width: 800px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.09);
}

.contactHero__meta > div {
    padding: 0 22px;
    border-left: 1px solid rgba(255,255,255,.08);
}

.contactHero__meta > div:first-child {
    padding-left: 0;
    border-left: 0;
}

.contactHero__meta strong,
.contactHero__meta span {
    display: block;
}

.contactHero__meta strong {
    color: #fff;
    font-size: 14px;
}

.contactHero__meta span {
    margin-top: 5px;
    color: rgba(239,243,255,.4);
    font-size: 10px;
}


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

.contactMain {
    padding: 125px 0;
    color: #081225;
    background: #fff;
}

.contactMain__grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 90px;
    align-items: start;
}

.contactMain__intro {
    position: sticky;
    top: 165px;
}

.contactMain__intro h2 {
    max-width: 650px;
    margin: 15px 0 18px;
    font-size: clamp(42px,4.6vw,66px);
    line-height: .98;
    letter-spacing: -.06em;
}

.contactMain__intro h2 span {
    color: #6d778e;
}

.contactMain__intro > p {
    max-width: 610px;
    margin: 0;
    color: #53617a;
    font-size: 14px;
    line-height: 1.75;
}

.contactDirect {
    margin-top: 38px;
    border-top: 1px solid #e1e6ed;
}

.contactDirect a {
    min-height: 75px;
    display: grid;
    grid-template-columns: 90px 1fr auto;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #e1e6ed;
    color: #081225;
    text-decoration: none;
}

.contactDirect a > span {
    color: #8a93a6;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contactDirect a strong {
    font-size: 13px;
}

.contactDirect a b {
    color: #315fc4;
}


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

.contactFormCard {
    padding: 34px;
    border: 1px solid #e3e7ee;
    border-radius: 20px;
    background: #f7f9fc;
    box-shadow: 0 20px 55px rgba(15,23,42,.06);
}

.contactFormCard__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.contactFormCard__head > div:first-child > span {
    color: #5573a9;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contactFormCard__head h2 {
    margin: 8px 0 0;
    color: #081225;
    font-size: 31px;
    letter-spacing: -.045em;
}

.contactFormCard__status {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border: 1px solid #dce4e6;
    border-radius: 999px;
    color: #537064;
    background: #fff;
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contactFormCard__status i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2ed47a;
    box-shadow: 0 0 10px rgba(46,212,122,.4);
}


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

.contactForm {
    display: grid;
    gap: 18px;
}

.contactForm__two {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
}

.contactField {
    display: grid;
    gap: 8px;
}

.contactField label {
    color: #374158;
    font-size: 10px;
    font-weight: 850;
}

.contactField label span {
    color: #315fc4;
}

.contactField input,
.contactField select,
.contactField textarea {
    width: 100%;
    border: 1px solid #dce2eb;
    border-radius: 9px;
    outline: none;
    color: #10182c;
    background: #fff;
    font: inherit;
    font-size: 13px;
    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.contactField input,
.contactField select {
    min-height: 54px;
    padding: 0 14px;
}

.contactField textarea {
    min-height: 180px;
    resize: vertical;
    padding: 14px;
    line-height: 1.6;
}

.contactField input::placeholder,
.contactField textarea::placeholder {
    color: #a1a8b7;
}

.contactField input:focus,
.contactField select:focus,
.contactField textarea:focus {
    border-color: #91a7d7;
    box-shadow: 0 0 0 4px rgba(49,95,196,.07);
}

.contactHoney {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.contactForm__submit {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 4px;
}

.contactSubmit {
    min-width: 190px;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 20px;
    border: 1px solid rgba(49,95,196,.2);
    border-radius: 6px;
    color: #fff;
    background: linear-gradient(110deg,#3d65ef,#8049ed);
    box-shadow: 0 16px 38px rgba(61,71,220,.16);
    font: inherit;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
}

.contactSubmit:disabled {
    opacity: .6;
    cursor: wait;
}

.contactForm__submit p {
    max-width: 430px;
    margin: 0;
    color: #8992a4;
    font-size: 10px;
    line-height: 1.55;
}

.contactForm__message {
    min-height: 18px;
    color: #536078;
    font-size: 11px;
    font-weight: 750;
}

.contactForm__message.is-error {
    color: #a33947;
}

.contactForm__message.is-success {
    color: #26734c;
}


/* =========================================================
   NOTICE
========================================================= */

.contactNotice {
    margin-bottom: 24px;
    padding: 17px 19px;
    border-radius: 12px;
}

.contactNotice strong,
.contactNotice span {
    display: block;
}

.contactNotice strong {
    font-size: 13px;
}

.contactNotice span {
    margin-top: 4px;
    font-size: 11px;
}

.contactNotice--success {
    border: 1px solid #cce9d9;
    color: #285c40;
    background: #f1faf5;
}

.contactNotice--error {
    border: 1px solid #efd4d8;
    color: #843d48;
    background: #fff7f8;
}


/* =========================================================
   NEXT STEPS
========================================================= */

.contactNext {
    padding: 115px 0 125px;
    color: #081225;
    background: #f8faff;
}

.contactNext__head h2 {
    margin: 15px 0 42px;
    font-size: clamp(42px,4.8vw,68px);
    line-height: .98;
    letter-spacing: -.06em;
}

.contactNext__head h2 span {
    color: #6d778e;
}

.contactNext__steps {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    border-top: 1px solid #dfe4ec;
}

.contactNext__step {
    min-height: 235px;
    padding: 26px 28px 0 0;
    border-right: 1px solid #dfe4ec;
}

.contactNext__step + .contactNext__step {
    padding-left: 28px;
}

.contactNext__step:last-child {
    border-right: 0;
}

.contactNext__step > span {
    color: #5573a9;
    font-size: 9px;
    font-weight: 900;
}

.contactNext__step h3 {
    margin: 42px 0 11px;
    font-size: 22px;
    letter-spacing: -.035em;
}

.contactNext__step p {
    margin: 0;
    color: #53617a;
    font-size: 12px;
    line-height: 1.65;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 980px) {
    .contactMain__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contactMain__intro {
        position: static;
    }
}

@media (max-width: 720px) {
    .contactContainer {
        width: calc(100% - 28px);
    }

    .contactHero__content {
        padding: 70px 0 82px;
    }

    .contactHero h1 {
        font-size: clamp(50px,15vw,76px);
    }

    .contactHero__lead {
        font-size: 15px;
    }

    .contactHero__actions {
        display: grid;
    }

    .contactButton {
        justify-content: space-between;
    }

    .contactHero__meta {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 44px;
    }

    .contactHero__meta > div {
        padding: 0 0 16px;
        border-left: 0;
        border-bottom: 1px solid rgba(255,255,255,.07);
    }

    .contactMain,
    .contactNext {
        padding: 82px 0;
    }

    .contactFormCard {
        padding: 24px 18px;
    }

    .contactFormCard__head {
        flex-direction: column;
        gap: 14px;
    }

    .contactForm__two {
        grid-template-columns: 1fr;
    }

    .contactForm__submit {
        align-items: flex-start;
        flex-direction: column;
    }

    .contactSubmit {
        width: 100%;
    }

    .contactDirect a {
        grid-template-columns: 75px 1fr auto;
    }

    .contactNext__steps {
        grid-template-columns: 1fr;
        border-top: 0;
    }

    .contactNext__step,
    .contactNext__step + .contactNext__step {
        min-height: 0;
        padding: 25px 0;
        border-right: 0;
        border-bottom: 1px solid #dfe4ec;
    }

    .contactNext__step h3 {
        margin-top: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contactReveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* =========================================================
   V5 — LIGHT SECTION COLOUR REFINEMENT
========================================================= */
.contactMain__intro h2 span,
.contactNext__head h2 span {
    background: linear-gradient(100deg, #4769df 0%, #6d63da 48%, #8a62df 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
