/* =========================================================
   CONTACT HERO
   TOPBAR + HEADER + HERO = 100SVH
========================================================= */

.jc-contact-hero {
    position: relative;

    width: 100%;

    height:
        calc(
            100vh -
            var(--jc-first-screen-offset)
        );

    height:
        var(--jc-first-screen-height);

    min-height: 0;

    overflow: hidden;

    color: var(--jc-white);

    background: var(--jc-forest-950);

    isolation: isolate;
}


/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.jc-contact-hero__media {
    position: absolute;
    inset: -3%;
    z-index: -6;

    transform:
        translate3d(
            0,
            var(--jc-contact-hero-parallax, 0),
            0
        );

    will-change: transform;
}

.jc-contact-hero__image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center 57%;

    filter:
        saturate(0.84)
        contrast(1.06)
        brightness(0.78);

    transform: scale(1.07);

    transition:
        transform
        1800ms
        var(--jc-ease-soft),
        filter
        1000ms
        ease;
}

.jc-contact-hero.is-ready
.jc-contact-hero__image {
    transform: scale(1.025);
}


/* =========================================================
   OVERLAYS
========================================================= */

.jc-contact-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -5;

    background:
        linear-gradient(
            90deg,
            rgba(11, 15, 7, 0.96) 0%,
            rgba(18, 24, 10, 0.88) 37%,
            rgba(18, 24, 10, 0.58) 67%,
            rgba(18, 24, 10, 0.39) 100%
        ),
        linear-gradient(
            180deg,
            rgba(8, 11, 5, 0.12) 0%,
            transparent 42%,
            rgba(8, 11, 5, 0.70) 100%
        );
}

.jc-contact-hero__texture {
    position: absolute;
    inset: 0;
    z-index: -4;

    opacity: 0.22;

    pointer-events: none;

    background-image:
        radial-gradient(
            rgba(255, 255, 255, 0.18) 0.55px,
            transparent 0.55px
        );

    background-size: 5px 5px;

    mask-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78),
            transparent 83%
        );
}

.jc-contact-hero__frame {
    position: absolute;
    inset: 18px;
    z-index: 5;

    pointer-events: none;

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    border-bottom-color:
        rgba(226, 205, 165, 0.20);
}


/* =========================================================
   DECORATIONS
========================================================= */

.jc-contact-hero__decorations {
    position: absolute;
    inset: 0;
    z-index: -3;

    overflow: hidden;

    pointer-events: none;
}

.jc-contact-hero__decor-line {
    position: absolute;
    top: 9%;
    left: 5%;

    width: 43%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--jc-gold-400),
            rgba(255, 255, 255, 0.10),
            transparent
        );
}

.jc-contact-hero__decor-circle {
    position: absolute;
    top: -250px;
    right: -210px;

    width: 570px;
    height: 570px;

    opacity: 0.12;

    border:
        1px solid
        var(--jc-gold-400);

    border-radius: 50%;
}

.jc-contact-hero__decor-circle::before,
.jc-contact-hero__decor-circle::after {
    position: absolute;

    content: "";

    border:
        1px solid
        rgba(226, 205, 165, 0.55);

    border-radius: 50%;
}

.jc-contact-hero__decor-circle::before {
    inset: 72px;
}

.jc-contact-hero__decor-circle::after {
    inset: 153px;
}

.jc-contact-hero__decor-leaf {
    position: absolute;
    bottom: 8%;
    left: -75px;

    width: 190px;
    height: 285px;

    opacity: 0.13;

    border:
        1px solid
        var(--jc-sage-300);

    border-radius:
        100% 0 100% 0 /
        72% 0 100% 28%;

    transform: rotate(27deg);
}

.jc-contact-hero__decor-leaf::before {
    position: absolute;
    top: 25px;
    left: 50%;

    width: 1px;
    height: 230px;

    content: "";

    background:
        linear-gradient(
            180deg,
            transparent,
            var(--jc-sage-300),
            transparent
        );

    transform: rotate(-24deg);
    transform-origin: top;
}

.jc-contact-hero__decor-point {
    position: absolute;
    top: 9%;
    left: 5%;

    width: 6px;
    height: 6px;

    border:
        1px solid
        var(--jc-gold-400);

    border-radius: 50%;

    transform: translateY(-50%);
}


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

.jc-contact-hero__layout {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(310px, 390px);
    align-items: center;
    gap: clamp(58px, 7vw, 112px);

    height: 100%;

    padding-top:
        clamp(33px, 5vh, 62px);

    padding-bottom:
        clamp(112px, 14vh, 142px);
}


/* =========================================================
   CONTENT
========================================================= */

.jc-contact-hero__content {
    position: relative;

    width: min(100%, 850px);
}

.jc-contact-hero__content::before {
    position: absolute;
    top: 38px;
    left: -31px;

    width: 1px;
    height: 68%;

    content: "";

    opacity: 0.48;

    background:
        linear-gradient(
            180deg,
            var(--jc-gold-400),
            rgba(255, 255, 255, 0.12),
            transparent
        );
}


/* =========================================================
   BREADCRUMB
========================================================= */

.jc-contact-hero__breadcrumb {
    margin-bottom:
        clamp(17px, 2.3vh, 25px);

    animation:
        jc-contact-breadcrumb-enter
        850ms
        var(--jc-ease-soft)
        100ms
        both;
}

.jc-contact-hero__breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 10px;

    color:
        rgba(255, 255, 255, 0.48);

    font-size: 0.59rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.jc-contact-hero__breadcrumb a {
    color:
        rgba(255, 255, 255, 0.69);

    transition:
        color
        var(--jc-duration-normal)
        ease;
}

.jc-contact-hero__breadcrumb a:hover {
    color: var(--jc-gold-300);
}

.jc-contact-hero__breadcrumb
li:nth-child(2) {
    color: var(--jc-clay-400);
}


/* =========================================================
   EYEBROW
========================================================= */

.jc-contact-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom:
        clamp(18px, 2.5vh, 26px);

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    animation:
        jc-contact-content-enter
        900ms
        var(--jc-ease-soft)
        180ms
        both;
}

.jc-contact-hero__eyebrow-line {
    width: 43px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--jc-gold-400),
            transparent
        );
}

.jc-contact-hero__eyebrow-point {
    width: 5px;
    height: 5px;

    border:
        1px solid
        var(--jc-gold-400);

    border-radius: 50%;
}


/* =========================================================
   TITLE
========================================================= */

.jc-contact-hero__title {
    max-width: 850px;
    margin-bottom:
        clamp(21px, 3vh, 30px);

    color: var(--jc-white);

    font-size:
        clamp(4rem, 6.4vw, 7rem);

    font-weight: 600;
    line-height: 0.85;
    letter-spacing: -0.053em;
}

.jc-contact-hero__title-line {
    display: block;

    animation:
        jc-contact-title-enter
        1050ms
        var(--jc-ease-soft)
        both;
}

.jc-contact-hero__title-line:nth-child(1) {
    animation-delay: 240ms;
}

.jc-contact-hero__title-line:nth-child(2) {
    animation-delay: 340ms;
}

.jc-contact-hero__title-line:nth-child(3) {
    animation-delay: 440ms;
}

.jc-contact-hero__title em {
    color: var(--jc-flower-cream);

    font-weight: 500;

    text-shadow:
        0 13px 35px
        rgba(0, 0, 0, 0.16);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.jc-contact-hero__description {
    max-width: 660px;
    margin-bottom:
        clamp(26px, 3.7vh, 38px);

    color:
        rgba(255, 255, 255, 0.72);

    font-size:
        clamp(0.96rem, 1.2vw, 1.08rem);

    line-height: 1.8;

    animation:
        jc-contact-content-enter
        900ms
        var(--jc-ease-soft)
        510ms
        both;
}


/* =========================================================
   ACTIONS
========================================================= */

.jc-contact-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;

    animation:
        jc-contact-content-enter
        900ms
        var(--jc-ease-soft)
        590ms
        both;
}

.jc-contact-hero__primary {
    min-height: 57px;
}

.jc-contact-hero__call {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    min-height: 51px;
}

.jc-contact-hero__call-icon {
    display: grid;
    place-items: center;

    width: 43px;
    height: 43px;

    color: var(--jc-gold-300);

    border:
        1px solid
        rgba(226, 205, 165, 0.25);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.045);

    transition:
        color
        var(--jc-duration-normal)
        ease,
        background-color
        var(--jc-duration-normal)
        ease,
        transform
        var(--jc-duration-normal)
        var(--jc-ease-soft);
}

.jc-contact-hero__call-icon svg {
    width: 19px;
    height: 19px;
}

.jc-contact-hero__call:hover
.jc-contact-hero__call-icon {
    color: var(--jc-forest-950);

    background: var(--jc-gold-300);

    transform: rotate(-5deg);
}

.jc-contact-hero__call-content {
    display: grid;
    gap: 3px;
}

.jc-contact-hero__call-content small {
    color:
        rgba(255, 255, 255, 0.47);

    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.jc-contact-hero__call-content strong {
    color: var(--jc-white);

    font-size: 0.83rem;
    letter-spacing: 0.025em;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.jc-contact-hero__details {
    display: flex;
    align-items: center;
    gap: 24px;

    margin-top:
        clamp(22px, 3vh, 32px);

    animation:
        jc-contact-content-enter
        900ms
        var(--jc-ease-soft)
        670ms
        both;
}

.jc-contact-hero__detail {
    display: flex;
    align-items: center;
    gap: 10px;
}

.jc-contact-hero__detail-icon {
    display: grid;
    place-items: center;

    width: 29px;
    height: 29px;

    color: var(--jc-gold-300);
}

.jc-contact-hero__detail-icon svg {
    width: 20px;
    height: 20px;
}

.jc-contact-hero__detail div {
    display: grid;
    gap: 2px;
}

.jc-contact-hero__detail strong {
    color:
        rgba(255, 255, 255, 0.81);

    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.jc-contact-hero__detail div span {
    color:
        rgba(255, 255, 255, 0.48);

    font-size: 0.59rem;
}

.jc-contact-hero__detail-divider {
    width: 1px;
    height: 33px;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(255, 255, 255, 0.23),
            transparent
        );
}


/* =========================================================
   CONTACT PANEL
========================================================= */

.jc-contact-hero__panel {
    position: relative;

    width: 100%;
    padding:
        clamp(29px, 3vw, 39px);

    overflow: hidden;

    color: var(--jc-white);

    border:
        1px solid
        rgba(255, 255, 255, 0.17);

    border-radius: var(--jc-radius-xl);

    background:
        radial-gradient(
            circle at 91% 8%,
            rgba(190, 195, 167, 0.15),
            transparent 15rem
        ),
        linear-gradient(
            145deg,
            rgba(18, 25, 10, 0.74),
            rgba(18, 25, 10, 0.50)
        );

    box-shadow:
        0 30px 75px
        rgba(5, 8, 4, 0.28);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    animation:
        jc-contact-panel-enter
        1100ms
        var(--jc-ease-soft)
        500ms
        both;
}

.jc-contact-hero__panel::before {
    position: absolute;
    top: 0;
    left: clamp(29px, 3vw, 39px);

    width: 88px;
    height: 1px;

    content: "";

    background:
        linear-gradient(
            90deg,
            var(--jc-gold-400),
            transparent
        );
}

.jc-contact-hero__panel::after {
    position: absolute;
    top: -88px;
    right: -76px;

    width: 210px;
    height: 210px;

    content: "";

    pointer-events: none;

    border:
        1px solid
        rgba(226, 205, 165, 0.11);

    border-radius:
        43% 57% 50% 50% /
        58% 42% 58% 42%;

    transform: rotate(-16deg);
}

.jc-contact-hero__panel-header {
    position: relative;
    z-index: 1;

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

    margin-bottom: 20px;
}

.jc-contact-hero__panel-number {
    display: grid;
    place-items: center;

    width: 35px;
    height: 35px;

    color: var(--jc-gold-300);

    border:
        1px solid
        rgba(226, 205, 165, 0.24);

    border-radius: 50%;

    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.jc-contact-hero__panel-label {
    color: var(--jc-gold-300);

    font-size: 0.59rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.jc-contact-hero__panel h2 {
    position: relative;
    z-index: 1;

    margin-bottom: 16px;

    color: var(--jc-white);

    font-size:
        clamp(2rem, 2.8vw, 3rem);

    line-height: 0.98;
}

.jc-contact-hero__panel h2 em {
    display: block;

    color: var(--jc-flower-cream);

    font-weight: 500;
}

.jc-contact-hero__panel-description {
    position: relative;
    z-index: 1;

    margin-bottom: 22px;

    color:
        rgba(255, 255, 255, 0.58);

    font-size: 0.74rem;
    line-height: 1.7;
}


/* =========================================================
   PROCESS STEPS
========================================================= */

.jc-contact-hero__steps {
    position: relative;
    z-index: 1;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.11);
}

.jc-contact-hero__steps li {
    display: grid;
    grid-template-columns:
        30px
        minmax(0, 1fr);
    align-items: center;
    gap: 13px;

    min-height: 69px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.11);
}

.jc-contact-hero__step-number {
    color: var(--jc-gold-400);

    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.jc-contact-hero__steps div {
    display: grid;
    gap: 3px;
}

.jc-contact-hero__steps strong {
    color: var(--jc-white);

    font-family: var(--jc-font-display);
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.05;
}

.jc-contact-hero__steps div span {
    color:
        rgba(255, 255, 255, 0.48);

    font-size: 0.61rem;
    line-height: 1.45;
}


/* =========================================================
   PANEL ACTION
========================================================= */

.jc-contact-hero__panel-action {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    min-height: 53px;
    margin-top: 22px;
    padding:
        13px
        16px;

    color: var(--jc-forest-950);

    border-radius: var(--jc-radius-sm);

    background: var(--jc-flower-cream);

    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.085em;
    text-transform: uppercase;

    transition:
        background-color
        var(--jc-duration-normal)
        ease,
        transform
        var(--jc-duration-normal)
        var(--jc-ease-soft);
}

.jc-contact-hero__panel-action svg {
    width: 18px;
    height: 18px;

    transition:
        transform
        var(--jc-duration-normal)
        var(--jc-ease-soft);
}

.jc-contact-hero__panel-action:hover {
    background: var(--jc-gold-300);

    transform: translateY(-2px);
}

.jc-contact-hero__panel-action:hover svg {
    transform: translateX(4px);
}


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

.jc-contact-hero__footer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;

    min-height: 78px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.13);

    background:
        linear-gradient(
            90deg,
            rgba(11, 15, 7, 0.90),
            rgba(18, 25, 10, 0.72)
        );

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    animation:
        jc-contact-footer-enter
        950ms
        var(--jc-ease-soft)
        720ms
        both;
}

.jc-contact-hero__footer-inner {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);

    min-height: 78px;
}

.jc-contact-hero__footer-item {
    display: flex;
    align-items: center;
    gap: 11px;
}

.jc-contact-hero__footer-item > span {
    color: var(--jc-gold-400);

    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.jc-contact-hero__footer-item div {
    display: grid;
    gap: 3px;
}

.jc-contact-hero__footer-item strong {
    color:
        rgba(255, 255, 255, 0.78);

    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.jc-contact-hero__footer-item small {
    color:
        rgba(255, 255, 255, 0.40);

    font-size: 0.55rem;
}

.jc-contact-hero__footer-divider {
    width: 1px;
    height: 28px;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(255, 255, 255, 0.22),
            transparent
        );
}

.jc-contact-hero__scroll {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-left: auto;

    color:
        rgba(255, 255, 255, 0.66);

    font-size: 0.57rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.jc-contact-hero__scroll-line {
    position: relative;

    width: 41px;
    height: 1px;

    overflow: hidden;

    background:
        rgba(255, 255, 255, 0.20);
}

.jc-contact-hero__scroll-line::after {
    position: absolute;
    inset: 0;

    content: "";

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--jc-gold-400),
            transparent
        );

    animation:
        jc-contact-scroll-line
        1800ms
        var(--jc-ease-soft)
        infinite;
}


/* =========================================================
   SHORT VIEWPORT PROTECTION
========================================================= */

.jc-contact-hero.is-short
.jc-contact-hero__layout {
    grid-template-columns: 1fr;

    padding-top: 23px;
    padding-bottom: 92px;
}

.jc-contact-hero.is-short
.jc-contact-hero__panel {
    display: none;
}

.jc-contact-hero.is-short
.jc-contact-hero__title {
    font-size:
        clamp(3rem, 8vh, 5.1rem);
}

.jc-contact-hero.is-short
.jc-contact-hero__breadcrumb {
    margin-bottom: 10px;
}

.jc-contact-hero.is-short
.jc-contact-hero__eyebrow {
    margin-bottom: 12px;
}

.jc-contact-hero.is-short
.jc-contact-hero__description {
    margin-bottom: 19px;
}

.jc-contact-hero.is-short
.jc-contact-hero__details {
    margin-top: 16px;
}

.jc-contact-hero.is-very-short
.jc-contact-hero__footer {
    display: none;
}

.jc-contact-hero.is-very-short
.jc-contact-hero__layout {
    padding-top: 15px;
    padding-bottom: 15px;
}

.jc-contact-hero.is-very-short
.jc-contact-hero__title {
    margin-bottom: 13px;

    font-size:
        clamp(2.65rem, 7.3vh, 4.25rem);
}

.jc-contact-hero.is-very-short
.jc-contact-hero__description {
    max-width: 610px;
    margin-bottom: 14px;

    font-size: 0.87rem;
    line-height: 1.55;
}

.jc-contact-hero.is-very-short
.jc-contact-hero__details {
    display: none;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes jc-contact-breadcrumb-enter {

    from {
        opacity: 0;
        transform: translateX(-22px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes jc-contact-content-enter {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes jc-contact-title-enter {

    from {
        opacity: 0;

        clip-path:
            inset(0 0 100% 0);

        transform: translateY(40px);
    }

    to {
        opacity: 1;

        clip-path:
            inset(0 0 0 0);

        transform: translateY(0);
    }

}

@keyframes jc-contact-panel-enter {

    from {
        opacity: 0;

        transform:
            translateX(42px)
            scale(0.975);
    }

    to {
        opacity: 1;

        transform:
            translateX(0)
            scale(1);
    }

}

@keyframes jc-contact-footer-enter {

    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes jc-contact-scroll-line {

    from {
        transform: translateX(-110%);
    }

    to {
        transform: translateX(110%);
    }

}


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

html.jc-reduced-motion
.jc-contact-hero *,
html.jc-reduced-motion
.jc-contact-hero *::before,
html.jc-reduced-motion
.jc-contact-hero *::after {
    animation: none !important;
    transition: none !important;
}

html.jc-reduced-motion
.jc-contact-hero__media {
    transform: none;
}


































/* =========================================================
   CONTACT INFORMATION AND ESTIMATE FORM
========================================================= */

.jc-contact-form {
    position: relative;

    padding:
        clamp(98px, 9vw, 154px)
        0
        clamp(92px, 8vw, 138px);

    overflow: hidden;

    color: var(--jc-text-primary);

    border-bottom:
        1px solid
        var(--jc-divider);

    background:
        radial-gradient(
            circle at 7% 8%,
            rgba(190, 195, 167, 0.25),
            transparent 28rem
        ),
        radial-gradient(
            circle at 94% 82%,
            rgba(176, 109, 74, 0.07),
            transparent 30rem
        ),
        linear-gradient(
            145deg,
            var(--jc-ivory-50),
            var(--jc-ivory-100)
        );

    isolation: isolate;
}


/* =========================================================
   DECORATIONS
========================================================= */

.jc-contact-form__decorations {
    position: absolute;
    inset: 0;
    z-index: -1;

    overflow: hidden;

    pointer-events: none;
}

.jc-contact-form__decorations::before {
    position: absolute;
    inset: 0;

    content: "";

    opacity: 0.19;

    background-image:
        radial-gradient(
            rgba(53, 65, 22, 0.13) 0.6px,
            transparent 0.6px
        );

    background-size: 31px 31px;

    mask-image:
        linear-gradient(
            90deg,
            transparent,
            rgba(0, 0, 0, 0.74),
            transparent
        );
}

.jc-contact-form__decor-arc {
    position: absolute;
    top: -280px;
    right: -255px;

    width: 620px;
    height: 620px;

    opacity: 0.09;

    border:
        1px solid
        var(--jc-olive-600);

    border-radius: 50%;
}

.jc-contact-form__decor-arc::before,
.jc-contact-form__decor-arc::after {
    position: absolute;

    content: "";

    border:
        1px solid
        rgba(104, 113, 72, 0.64);

    border-radius: 50%;
}

.jc-contact-form__decor-arc::before {
    inset: 75px;
}

.jc-contact-form__decor-arc::after {
    inset: 157px;
}

.jc-contact-form__decor-leaf {
    position: absolute;

    border:
        1px solid
        rgba(53, 65, 22, 0.16);

    border-radius:
        100% 0 100% 0 /
        72% 0 100% 28%;
}

.jc-contact-form__decor-leaf::before {
    position: absolute;
    top: 9%;
    left: 50%;

    width: 1px;
    height: 81%;

    content: "";

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(53, 65, 22, 0.20),
            transparent
        );
}

.jc-contact-form__decor-leaf--one {
    top: 36%;
    left: -78px;

    width: 190px;
    height: 295px;

    transform: rotate(27deg);
}

.jc-contact-form__decor-leaf--one::before {
    transform: rotate(-24deg);
    transform-origin: top;
}

.jc-contact-form__decor-leaf--two {
    right: 3%;
    bottom: 4%;

    width: 125px;
    height: 195px;

    opacity: 0.65;

    transform:
        rotate(-31deg)
        scaleX(-1);
}

.jc-contact-form__decor-leaf--two::before {
    transform: rotate(-23deg);
    transform-origin: top;
}

.jc-contact-form__decor-grid {
    position: absolute;
    right: 4%;
    bottom: 10%;

    width: 255px;
    height: 175px;

    opacity: 0.04;

    background-image:
        linear-gradient(
            rgba(53, 65, 22, 0.8) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(53, 65, 22, 0.8) 1px,
            transparent 1px
        );

    background-size: 42px 32px;

    transform: rotate(-7deg);
}

.jc-contact-form__decor-route {
    position: absolute;
    top: 14%;
    left: 8%;

    width: 40%;
    height: 105px;

    opacity: 0.18;

    border-top:
        1px dashed
        var(--jc-clay-500);

    border-radius: 50%;

    transform: rotate(4deg);
}

.jc-contact-form__decor-point {
    position: absolute;

    width: 7px;
    height: 7px;

    border:
        1px solid
        var(--jc-gold-600);

    border-radius: 50%;

    box-shadow:
        0 0 0 6px
        rgba(190, 155, 93, 0.08);
}

.jc-contact-form__decor-point--one {
    top: 13%;
    left: 12%;
}

.jc-contact-form__decor-point--two {
    right: 10%;
    bottom: 16%;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.jc-contact-form__section-header {
    display: grid;
    grid-template-columns:
        minmax(0, 1.18fr)
        minmax(320px, 0.68fr);
    align-items: end;
    gap: clamp(58px, 8vw, 124px);

    margin-bottom:
        clamp(62px, 7vw, 96px);
}

.jc-contact-form__heading {
    position: relative;
}

.jc-contact-form__heading::after {
    position: absolute;
    right: 0;
    bottom: -27px;
    left: 0;

    height: 1px;

    content: "";

    background:
        linear-gradient(
            90deg,
            var(--jc-gold-500),
            rgba(53, 65, 22, 0.15),
            transparent
        );
}

.jc-contact-form__heading h2 {
    max-width: 880px;
    margin: 0;

    font-size:
        clamp(3.15rem, 5.25vw, 5.65rem);

    line-height: 0.94;
}

.jc-contact-form__heading h2 em {
    display: block;

    color: var(--jc-olive-600);

    font-weight: 500;
}

.jc-contact-form__section-intro {
    max-width: 490px;
}

.jc-contact-form__section-intro p {
    margin-bottom: 23px;

    font-size:
        clamp(0.95rem, 1.15vw, 1.06rem);

    line-height: 1.85;
}

.jc-contact-form__section-intro a {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;

    color: var(--jc-text-secondary);

    font-size: 0.7rem;
    font-weight: 700;
}

.jc-contact-form__section-intro a strong {
    color: var(--jc-clay-600);

    font-weight: 800;
}


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

.jc-contact-form__layout {
    display: grid;
    grid-template-columns:
        minmax(300px, 0.67fr)
        minmax(0, 1.33fr);
    align-items: stretch;
    gap: clamp(30px, 4vw, 54px);
}


/* =========================================================
   INFORMATION PANEL
========================================================= */

.jc-contact-form__information {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 760px;
    padding:
        clamp(35px, 4vw, 51px);

    overflow: hidden;

    color: var(--jc-white);

    border:
        1px solid
        rgba(226, 205, 165, 0.18);

    border-radius: var(--jc-radius-xl);

    background:
        radial-gradient(
            circle at 91% 6%,
            rgba(190, 195, 167, 0.15),
            transparent 17rem
        ),
        linear-gradient(
            145deg,
            var(--jc-forest-900),
            var(--jc-forest-950)
        );

    box-shadow: var(--jc-shadow-lg);
}

.jc-contact-form__information::before {
    position: absolute;
    top: 0;
    left: clamp(35px, 4vw, 51px);

    width: 92px;
    height: 1px;

    content: "";

    background:
        linear-gradient(
            90deg,
            var(--jc-gold-400),
            transparent
        );
}

.jc-contact-form__information::after {
    position: absolute;
    top: -96px;
    right: -88px;

    width: 245px;
    height: 245px;

    content: "";

    pointer-events: none;

    border:
        1px solid
        rgba(226, 205, 165, 0.10);

    border-radius:
        43% 57% 50% 50% /
        58% 42% 58% 42%;

    transform: rotate(-17deg);
}

.jc-contact-form__information-header {
    position: relative;
    z-index: 1;

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

    margin-bottom: 25px;
}

.jc-contact-form__information-number {
    display: grid;
    place-items: center;

    width: 36px;
    height: 36px;

    color: var(--jc-gold-300);

    border:
        1px solid
        rgba(226, 205, 165, 0.24);

    border-radius: 50%;

    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.jc-contact-form__information-label {
    color: var(--jc-gold-300);

    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.jc-contact-form__information h3 {
    position: relative;
    z-index: 1;

    margin-bottom: 20px;

    color: var(--jc-white);

    font-size:
        clamp(2.2rem, 3.15vw, 3.4rem);

    line-height: 0.98;
}

.jc-contact-form__information h3 em {
    display: block;

    color: var(--jc-flower-cream);

    font-weight: 500;
}

.jc-contact-form__information-description {
    position: relative;
    z-index: 1;

    margin-bottom: 31px;

    color:
        rgba(255, 255, 255, 0.59);

    font-size: 0.8rem;
    line-height: 1.76;
}


/* =========================================================
   CONTACT ITEMS
========================================================= */

.jc-contact-form__contact-list {
    position: relative;
    z-index: 1;

    display: grid;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.11);
}

.jc-contact-form__contact-item {
    display: grid;
    grid-template-columns:
        46px
        minmax(0, 1fr);
    align-items: center;
    gap: 15px;

    min-height: 91px;

    color: var(--jc-white);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.11);
}

.jc-contact-form__contact-icon {
    display: grid;
    place-items: center;

    width: 43px;
    height: 43px;

    color: var(--jc-gold-300);

    border:
        1px solid
        rgba(226, 205, 165, 0.20);

    border-radius:
        44% 56% 48% 52% /
        56% 44% 56% 44%;

    background:
        rgba(255, 255, 255, 0.035);

    transition:
        color
        var(--jc-duration-normal)
        ease,
        background-color
        var(--jc-duration-normal)
        ease,
        transform
        var(--jc-duration-normal)
        var(--jc-ease-soft);
}

.jc-contact-form__contact-icon svg {
    width: 20px;
    height: 20px;
}

a.jc-contact-form__contact-item:hover
.jc-contact-form__contact-icon {
    color: var(--jc-forest-950);

    background: var(--jc-gold-300);

    transform: rotate(-4deg);
}

.jc-contact-form__contact-item > span:last-child {
    display: grid;
    gap: 3px;
}

.jc-contact-form__contact-item small {
    color:
        rgba(255, 255, 255, 0.43);

    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.jc-contact-form__contact-item strong {
    color: var(--jc-white);

    font-family: var(--jc-font-display);
    font-size: 1.14rem;
    font-weight: 600;
    line-height: 1;
}

.jc-contact-form__contact-item
> span:last-child
> span {
    color:
        rgba(255, 255, 255, 0.49);

    font-size: 0.63rem;
}


/* =========================================================
   PROCESS AND PRIVACY
========================================================= */

.jc-contact-form__process {
    position: relative;
    z-index: 1;

    margin-top: 29px;
}

.jc-contact-form__process-label {
    display: block;

    margin-bottom: 14px;

    color: var(--jc-gold-300);

    font-size: 0.57rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.jc-contact-form__process ul {
    display: grid;
    gap: 12px;
}

.jc-contact-form__process li {
    display: grid;
    grid-template-columns:
        28px
        minmax(0, 1fr);
    align-items: center;
    gap: 10px;

    color:
        rgba(255, 255, 255, 0.60);

    font-size: 0.66rem;
    line-height: 1.5;
}

.jc-contact-form__process li span {
    color: var(--jc-clay-400);

    font-size: 0.53rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.jc-contact-form__privacy-note {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns:
        33px
        minmax(0, 1fr);
    align-items: center;
    gap: 12px;

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

    border-top:
        1px solid
        rgba(255, 255, 255, 0.11);
}

.jc-contact-form__privacy-note > span {
    display: grid;
    place-items: center;

    width: 31px;
    height: 31px;

    color: var(--jc-gold-300);
}

.jc-contact-form__privacy-note svg {
    width: 21px;
    height: 21px;
}

.jc-contact-form__privacy-note p {
    color:
        rgba(255, 255, 255, 0.45);

    font-size: 0.6rem;
    line-height: 1.55;
}


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

.jc-contact-form__panel {
    position: relative;

    min-width: 0;
    min-height: 760px;
    padding:
        clamp(31px, 4vw, 50px);

    overflow: hidden;

    border:
        1px solid
        var(--jc-border);

    border-radius: var(--jc-radius-xl);

    background:
        radial-gradient(
            circle at 93% 4%,
            rgba(190, 195, 167, 0.23),
            transparent 20rem
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.97),
            rgba(242, 240, 233, 0.96)
        );

    box-shadow: var(--jc-shadow-lg);
}

.jc-contact-form__panel::before {
    position: absolute;
    top: 0;
    left: clamp(31px, 4vw, 50px);

    width: 108px;
    height: 1px;

    content: "";

    background:
        linear-gradient(
            90deg,
            var(--jc-gold-500),
            transparent
        );
}

.jc-contact-form__panel::after {
    position: absolute;
    top: -120px;
    right: -105px;

    width: 285px;
    height: 285px;

    content: "";

    pointer-events: none;

    border:
        1px solid
        rgba(53, 65, 22, 0.09);

    border-radius: 50%;
}

.jc-contact-form__panel-header {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;

    margin-bottom: 28px;
    padding-bottom: 25px;

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

.jc-contact-form__panel-kicker {
    display: block;

    margin-bottom: 10px;

    color: var(--jc-gold-700);

    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.jc-contact-form__panel-header h3 {
    margin: 0;

    font-size:
        clamp(2rem, 2.9vw, 3.25rem);

    line-height: 0.98;
}

.jc-contact-form__panel-header h3 em {
    display: block;

    color: var(--jc-olive-600);

    font-weight: 500;
}

.jc-contact-form__draft-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    flex: 0 0 auto;

    padding:
        9px
        12px;

    color: var(--jc-olive-700);

    border:
        1px solid
        rgba(53, 65, 22, 0.14);

    border-radius: var(--jc-radius-xs);

    background:
        rgba(255, 255, 255, 0.60);

    font-size: 0.53rem;
    font-weight: 800;
    letter-spacing: 0.065em;
    text-transform: uppercase;
}

.jc-contact-form__draft-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--jc-olive-600);

    box-shadow:
        0 0 0 4px
        rgba(104, 113, 72, 0.10);
}


/* =========================================================
   STATUS MESSAGE
========================================================= */

.jc-contact-form__status {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        38px
        minmax(0, 1fr)
        28px;
    align-items: center;
    gap: 13px;

    margin-bottom: 24px;
    padding:
        15px
        16px;

    border:
        1px solid
        rgba(53, 65, 22, 0.16);

    border-radius: var(--jc-radius-sm);

    background:
        rgba(255, 255, 255, 0.72);
}

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

.jc-contact-form__status.is-success {
    border-color:
        rgba(74, 119, 65, 0.25);

    background:
        rgba(227, 239, 222, 0.80);
}

.jc-contact-form__status.is-error {
    border-color:
        rgba(176, 109, 74, 0.27);

    background:
        rgba(248, 229, 220, 0.82);
}

.jc-contact-form__status-icon {
    display: grid;
    place-items: center;

    width: 36px;
    height: 36px;

    border-radius: 50%;

    background: var(--jc-forest-800);

    color: var(--jc-white);
}

.jc-contact-form__status.is-error
.jc-contact-form__status-icon {
    background: var(--jc-clay-600);
}

.jc-contact-form__status strong {
    display: block;

    margin-bottom: 3px;

    font-family: var(--jc-font-display);
    font-size: 1.05rem;
    font-weight: 600;
}

.jc-contact-form__status p {
    font-size: 0.67rem;
    line-height: 1.5;
}

.jc-contact-form__status button {
    display: grid;
    place-items: center;

    width: 27px;
    height: 27px;

    color: var(--jc-text-soft);

    border-radius: 50%;

    font-size: 1.2rem;
}


/* =========================================================
   PROGRESS
========================================================= */

.jc-contact-form__progress {
    position: relative;
    z-index: 1;

    margin-bottom: 32px;
}

.jc-contact-form__progress-bar {
    position: relative;

    width: 100%;
    height: 2px;
    margin-bottom: 16px;

    overflow: hidden;

    background:
        rgba(53, 65, 22, 0.11);
}

.jc-contact-form__progress-bar span {
    display: block;

    width: 50%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            var(--jc-gold-500),
            var(--jc-clay-500)
        );

    transition:
        width
        650ms
        var(--jc-ease-soft);
}

.jc-contact-form__progress-steps {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.jc-contact-form__progress-step {
    display: flex;
    align-items: center;
    gap: 11px;

    min-height: 55px;
    padding:
        9px
        12px;

    color: var(--jc-text-soft);

    border:
        1px solid
        var(--jc-border);

    border-radius: var(--jc-radius-sm);

    background:
        rgba(255, 255, 255, 0.45);

    text-align: left;

    transition:
        color
        var(--jc-duration-normal)
        ease,
        border-color
        var(--jc-duration-normal)
        ease,
        background-color
        var(--jc-duration-normal)
        ease;
}

.jc-contact-form__progress-step:disabled {
    cursor: default;
    opacity: 0.67;
}

.jc-contact-form__progress-step.is-active {
    color: var(--jc-forest-900);

    border-color:
        rgba(53, 65, 22, 0.22);

    background:
        rgba(255, 255, 255, 0.82);
}

.jc-contact-form__progress-step > span:first-child {
    display: grid;
    place-items: center;

    flex: 0 0 auto;

    width: 32px;
    height: 32px;

    color: var(--jc-gold-700);

    border:
        1px solid
        rgba(190, 155, 93, 0.27);

    border-radius: 50%;

    font-size: 0.53rem;
    font-weight: 800;
}

.jc-contact-form__progress-step.is-active
> span:first-child {
    color: var(--jc-white);

    border-color: var(--jc-forest-800);

    background: var(--jc-forest-800);
}

.jc-contact-form__progress-step > span:last-child {
    display: grid;
    gap: 2px;
}

.jc-contact-form__progress-step strong {
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.jc-contact-form__progress-step small {
    font-size: 0.57rem;
}


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

.jc-contact-form__form,
.jc-contact-form__step {
    position: relative;
    z-index: 1;
}

.jc-contact-form__step {
    margin: 0;
    padding: 0;

    border: 0;
}

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

.jc-contact-form__step > legend {
    position: absolute;

    width: 1px;
    height: 1px;

    overflow: hidden;

    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.jc-contact-form__fields {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap:
        23px
        19px;
}

.jc-contact-form__field--wide {
    grid-column: 1 / -1;
}

.jc-contact-form__field {
    min-width: 0;
}

.jc-contact-form__field label,
.jc-contact-form__choice-field > legend {
    display: block;

    margin-bottom: 9px;

    color: var(--jc-text-primary);

    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.jc-contact-form__field label > span,
.jc-contact-form__choice-field
> legend
> span {
    color: var(--jc-clay-600);
}

.jc-contact-form__optional {
    margin-left: 5px;

    color: var(--jc-text-soft) !important;

    font-size: 0.51rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.jc-contact-form__label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.jc-contact-form__character-count {
    color: var(--jc-text-soft);

    font-size: 0.57rem;
    font-weight: 700;
}


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

.jc-contact-form__control {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 56px;

    border:
        1px solid
        var(--jc-border-strong);

    border-radius: var(--jc-radius-sm);

    background:
        rgba(255, 255, 255, 0.78);

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.92);

    transition:
        border-color
        var(--jc-duration-normal)
        ease,
        background-color
        var(--jc-duration-normal)
        ease,
        box-shadow
        var(--jc-duration-normal)
        ease;
}

.jc-contact-form__control:focus-within {
    border-color:
        rgba(53, 65, 22, 0.46);

    background: var(--jc-white);

    box-shadow:
        0 0 0 4px
        rgba(104, 113, 72, 0.09);
}

.jc-contact-form__field.is-invalid
.jc-contact-form__control {
    border-color:
        rgba(176, 109, 74, 0.62);

    box-shadow:
        0 0 0 4px
        rgba(176, 109, 74, 0.08);
}

.jc-contact-form__field-icon {
    display: grid;
    place-items: center;

    flex: 0 0 auto;

    width: 52px;
    height: 54px;

    color: var(--jc-olive-600);
}

.jc-contact-form__field-icon svg {
    width: 20px;
    height: 20px;
}

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

    color: var(--jc-text-primary);

    border: 0;
    outline: 0;

    background: transparent;

    font-family: var(--jc-font-body);
    font-size: 0.78rem;
}

.jc-contact-form__control input,
.jc-contact-form__control select {
    min-height: 54px;
    padding:
        0
        42px
        0
        0;
}

.jc-contact-form__control input::placeholder,
.jc-contact-form__control textarea::placeholder {
    color:
        rgba(74, 56, 43, 0.52);
}

.jc-contact-form__control select {
    cursor: pointer;

    appearance: none;
}

.jc-contact-form__select-arrow {
    position: absolute;
    top: 50%;
    right: 15px;

    display: grid;
    place-items: center;

    width: 20px;
    height: 20px;

    color: var(--jc-text-soft);

    pointer-events: none;

    transform: translateY(-50%);
}

.jc-contact-form__select-arrow svg {
    width: 17px;
    height: 17px;
}

.jc-contact-form__control--textarea {
    min-height: 142px;
    align-items: stretch;
}

.jc-contact-form__control textarea {
    min-height: 140px;
    padding:
        16px
        17px;

    resize: vertical;

    line-height: 1.7;
}

.jc-contact-form__error {
    display: block;

    min-height: 16px;
    margin-top: 5px;

    color: var(--jc-clay-700);

    font-size: 0.57rem;
    font-weight: 700;
    line-height: 1.4;
}

.jc-contact-form__field-footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.jc-contact-form__helper {
    margin-top: 5px;

    color: var(--jc-text-soft);

    font-size: 0.57rem;
    line-height: 1.45;
}


/* =========================================================
   CONTACT METHOD CHOICES
========================================================= */

.jc-contact-form__choice-field {
    margin:
        25px
        0
        0;
    padding: 0;

    border: 0;
}

.jc-contact-form__choices {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.jc-contact-form__choices label {
    cursor: pointer;
}

.jc-contact-form__choices input {
    position: absolute;

    width: 1px;
    height: 1px;

    overflow: hidden;

    opacity: 0;
}

.jc-contact-form__choices label > span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 51px;
    padding:
        10px
        12px;

    color: var(--jc-text-secondary);

    border:
        1px solid
        var(--jc-border);

    border-radius: var(--jc-radius-sm);

    background:
        rgba(255, 255, 255, 0.54);

    font-size: 0.63rem;
    font-weight: 800;

    transition:
        color
        var(--jc-duration-normal)
        ease,
        border-color
        var(--jc-duration-normal)
        ease,
        background-color
        var(--jc-duration-normal)
        ease,
        box-shadow
        var(--jc-duration-normal)
        ease;
}

.jc-contact-form__choices svg {
    width: 18px;
    height: 18px;

    color: var(--jc-olive-600);
}

.jc-contact-form__choices input:checked
+ span {
    color: var(--jc-white);

    border-color: var(--jc-forest-800);

    background: var(--jc-forest-800);

    box-shadow:
        0 12px 27px
        rgba(53, 65, 22, 0.17);
}

.jc-contact-form__choices input:checked
+ span
svg {
    color: var(--jc-gold-300);
}

.jc-contact-form__choices input:focus-visible
+ span {
    outline:
        3px solid
        rgba(104, 113, 72, 0.20);

    outline-offset: 2px;
}


/* =========================================================
   REQUEST SUMMARY
========================================================= */

.jc-contact-form__summary {
    margin-top: 26px;
    padding:
        20px
        21px;

    border:
        1px solid
        var(--jc-border);

    border-radius: var(--jc-radius-lg);

    background:
        linear-gradient(
            110deg,
            rgba(190, 195, 167, 0.15),
            rgba(255, 255, 255, 0.62)
        );
}

.jc-contact-form__summary-label {
    display: block;

    margin-bottom: 15px;

    color: var(--jc-gold-700);

    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.jc-contact-form__summary-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 17px;
}

.jc-contact-form__summary-grid div {
    min-width: 0;
    padding-right: 14px;

    border-right:
        1px solid
        var(--jc-divider);
}

.jc-contact-form__summary-grid div:last-child {
    padding-right: 0;

    border-right: 0;
}

.jc-contact-form__summary-grid small {
    display: block;

    margin-bottom: 5px;

    color: var(--jc-text-soft);

    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.jc-contact-form__summary-grid strong {
    display: block;

    overflow: hidden;

    color: var(--jc-forest-900);

    font-family: var(--jc-font-display);
    font-size: 1.03rem;
    font-weight: 600;
    line-height: 1.15;

    text-overflow: ellipsis;
}


/* =========================================================
   CONSENT
========================================================= */

.jc-contact-form__consent {
    margin-top: 21px;
}

.jc-contact-form__consent label {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    cursor: pointer;
}

.jc-contact-form__consent input {
    position: absolute;

    width: 1px;
    height: 1px;

    overflow: hidden;

    opacity: 0;
}

.jc-contact-form__consent
label
> span:nth-child(2) {
    display: grid;
    place-items: center;

    flex: 0 0 auto;

    width: 21px;
    height: 21px;

    color: transparent;

    border:
        1px solid
        var(--jc-border-strong);

    border-radius: 6px;

    background: var(--jc-white);

    transition:
        color
        var(--jc-duration-normal)
        ease,
        border-color
        var(--jc-duration-normal)
        ease,
        background-color
        var(--jc-duration-normal)
        ease;
}

.jc-contact-form__consent
label
> span:nth-child(2)
svg {
    width: 15px;
    height: 15px;
}

.jc-contact-form__consent
input:checked
+ span {
    color: var(--jc-white);

    border-color: var(--jc-forest-800);

    background: var(--jc-forest-800);
}

.jc-contact-form__consent
input:focus-visible
+ span {
    outline:
        3px solid
        rgba(104, 113, 72, 0.20);

    outline-offset: 2px;
}

.jc-contact-form__consent
label
> span:last-child {
    color: var(--jc-text-secondary);

    font-size: 0.64rem;
    line-height: 1.55;
}


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

.jc-contact-form__navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 23px;

    margin-top: 30px;
    padding-top: 24px;

    border-top:
        1px solid
        var(--jc-divider);
}

.jc-contact-form__navigation-note {
    color: var(--jc-text-soft);

    font-size: 0.57rem;
    font-weight: 800;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.jc-contact-form__next,
.jc-contact-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    min-height: 53px;
    padding:
        13px
        19px;

    color: var(--jc-white);

    border-radius: var(--jc-radius-sm);

    background:
        linear-gradient(
            145deg,
            var(--jc-forest-700),
            var(--jc-forest-900)
        );

    box-shadow:
        0 16px 35px
        rgba(53, 65, 22, 0.18);

    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;

    transition:
        transform
        var(--jc-duration-normal)
        var(--jc-ease-soft),
        box-shadow
        var(--jc-duration-normal)
        ease;
}

.jc-contact-form__next svg,
.jc-contact-form__submit-icon,
.jc-contact-form__submit-icon svg {
    width: 18px;
    height: 18px;
}

.jc-contact-form__next:hover,
.jc-contact-form__submit:hover {
    box-shadow:
        0 21px 45px
        rgba(53, 65, 22, 0.24);

    transform: translateY(-3px);
}

.jc-contact-form__back {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    min-height: 43px;

    color: var(--jc-text-secondary);

    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.jc-contact-form__back svg {
    width: 17px;
    height: 17px;

    color: var(--jc-clay-600);

    transition:
        transform
        var(--jc-duration-normal)
        var(--jc-ease-soft);
}

.jc-contact-form__back:hover svg {
    transform: translateX(-4px);
}

.jc-contact-form__submit {
    min-width: 218px;

    background:
        linear-gradient(
            145deg,
            var(--jc-clay-500),
            var(--jc-clay-700)
        );
}

.jc-contact-form__spinner {
    display: none;

    width: 17px;
    height: 17px;

    border:
        2px solid
        rgba(255, 255, 255, 0.32);

    border-top-color: var(--jc-white);

    border-radius: 50%;

    animation:
        jc-contact-form-spin
        800ms
        linear
        infinite;
}

.jc-contact-form__form.is-submitting
.jc-contact-form__submit-icon {
    display: none;
}

.jc-contact-form__form.is-submitting
.jc-contact-form__spinner {
    display: block;
}

.jc-contact-form__submit:disabled {
    cursor: wait;
    opacity: 0.75;
}


/* =========================================================
   HONEYPOT
========================================================= */

.jc-contact-form__honeypot {
    position: absolute;
    top: -9999px;
    left: -9999px;

    width: 1px;
    height: 1px;

    overflow: hidden;
}


/* =========================================================
   REVEAL ANIMATIONS
========================================================= */

html.jc-js
.jc-contact-form
[data-jc-contact-reveal] {
    opacity: 0;

    transition:
        opacity
        900ms
        ease,
        transform
        1050ms
        var(--jc-ease-soft);

    transition-delay:
        var(--jc-contact-form-delay, 0ms);
}

html.jc-js
.jc-contact-form
[data-jc-contact-reveal="left"] {
    transform: translateX(-42px);
}

html.jc-js
.jc-contact-form
[data-jc-contact-reveal="right"] {
    transform: translateX(42px);
}

html.jc-js
.jc-contact-form
[data-jc-contact-reveal].is-visible {
    opacity: 1;
    transform: none;
}


/* =========================================================
   KEYFRAMES
========================================================= */

@keyframes jc-contact-form-spin {

    to {
        transform: rotate(360deg);
    }

}


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

html.jc-reduced-motion
.jc-contact-form *,
html.jc-reduced-motion
.jc-contact-form *::before,
html.jc-reduced-motion
.jc-contact-form *::after {
    animation: none !important;
    transition: none !important;
}





































/* =========================================================
   WHAT HAPPENS NEXT
========================================================= */

.jc-next-steps {
    position: relative;

    padding:
        clamp(100px, 9vw, 156px)
        0
        clamp(94px, 8vw, 138px);

    overflow: hidden;

    color: var(--jc-white);

    background:
        radial-gradient(
            circle at 8% 8%,
            rgba(190, 195, 167, 0.14),
            transparent 29rem
        ),
        radial-gradient(
            circle at 94% 84%,
            rgba(176, 109, 74, 0.10),
            transparent 31rem
        ),
        linear-gradient(
            145deg,
            #1C2511 0%,
            var(--jc-forest-950) 53%,
            #0D1207 100%
        );

    isolation: isolate;
}


/* =========================================================
   DECORATIONS
========================================================= */

.jc-next-steps__decorations {
    position: absolute;
    inset: 0;
    z-index: -1;

    overflow: hidden;

    pointer-events: none;
}

.jc-next-steps__decorations::before {
    position: absolute;
    inset: 0;

    content: "";

    opacity: 0.14;

    background-image:
        radial-gradient(
            rgba(255, 255, 255, 0.17) 0.6px,
            transparent 0.6px
        );

    background-size: 31px 31px;

    mask-image:
        linear-gradient(
            90deg,
            transparent,
            rgba(0, 0, 0, 0.74),
            transparent
        );
}

.jc-next-steps__decor-circle {
    position: absolute;
    top: -310px;
    right: -270px;

    width: 660px;
    height: 660px;

    opacity: 0.09;

    border:
        1px solid
        var(--jc-gold-400);

    border-radius: 50%;
}

.jc-next-steps__decor-circle::before,
.jc-next-steps__decor-circle::after {
    position: absolute;

    content: "";

    border:
        1px solid
        rgba(226, 205, 165, 0.56);

    border-radius: 50%;
}

.jc-next-steps__decor-circle::before {
    inset: 78px;
}

.jc-next-steps__decor-circle::after {
    inset: 167px;
}

.jc-next-steps__decor-leaf {
    position: absolute;

    border:
        1px solid
        rgba(190, 195, 167, 0.25);

    border-radius:
        100% 0 100% 0 /
        72% 0 100% 28%;
}

.jc-next-steps__decor-leaf::before {
    position: absolute;
    top: 9%;
    left: 50%;

    width: 1px;
    height: 81%;

    content: "";

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(190, 195, 167, 0.29),
            transparent
        );
}

.jc-next-steps__decor-leaf--one {
    top: 35%;
    left: -78px;

    width: 190px;
    height: 295px;

    opacity: 0.68;

    transform: rotate(27deg);
}

.jc-next-steps__decor-leaf--one::before {
    transform: rotate(-24deg);
    transform-origin: top;
}

.jc-next-steps__decor-leaf--two {
    right: 3%;
    bottom: 8%;

    width: 120px;
    height: 190px;

    opacity: 0.44;

    transform:
        rotate(-31deg)
        scaleX(-1);
}

.jc-next-steps__decor-leaf--two::before {
    transform: rotate(-23deg);
    transform-origin: top;
}

.jc-next-steps__decor-line {
    position: absolute;
    top: 8%;
    left: 6%;

    width: 43%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--jc-gold-400),
            rgba(255, 255, 255, 0.10),
            transparent
        );
}

.jc-next-steps__decor-grid {
    position: absolute;
    right: 4%;
    bottom: 8%;

    width: 255px;
    height: 175px;

    opacity: 0.04;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.7) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.7) 1px,
            transparent 1px
        );

    background-size: 42px 32px;

    transform: rotate(-7deg);
}

.jc-next-steps__decor-path {
    position: absolute;
    top: 17%;
    left: 9%;

    width: 38%;
    height: 110px;

    opacity: 0.16;

    border-top:
        1px dashed
        var(--jc-clay-400);

    border-radius: 50%;

    transform: rotate(5deg);
}

.jc-next-steps__decor-point {
    position: absolute;

    width: 7px;
    height: 7px;

    border:
        1px solid
        var(--jc-gold-400);

    border-radius: 50%;

    box-shadow:
        0 0 0 6px
        rgba(226, 205, 165, 0.07);
}

.jc-next-steps__decor-point--one {
    top: 16%;
    left: 12%;
}

.jc-next-steps__decor-point--two {
    top: 21%;
    left: 31%;
}

.jc-next-steps__decor-point--three {
    right: 11%;
    bottom: 16%;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.jc-next-steps__header {
    display: grid;
    grid-template-columns:
        minmax(0, 1.18fr)
        minmax(320px, 0.68fr);
    align-items: end;
    gap: clamp(58px, 8vw, 124px);

    margin-bottom:
        clamp(64px, 7vw, 100px);
}

.jc-next-steps__heading {
    position: relative;
}

.jc-next-steps__heading::after {
    position: absolute;
    right: 0;
    bottom: -27px;
    left: 0;

    height: 1px;

    content: "";

    background:
        linear-gradient(
            90deg,
            var(--jc-gold-500),
            rgba(255, 255, 255, 0.13),
            transparent
        );
}

.jc-next-steps .jc-eyebrow {
    color: var(--jc-gold-300);
}

.jc-next-steps__heading h2 {
    max-width: 900px;
    margin: 0;

    color: var(--jc-white);

    font-size:
        clamp(3.2rem, 5.3vw, 5.75rem);

    line-height: 0.94;
}

.jc-next-steps__heading h2 em {
    display: block;

    color: var(--jc-flower-cream);

    font-weight: 500;
}

.jc-next-steps__introduction {
    max-width: 490px;
}

.jc-next-steps__introduction p {
    margin-bottom: 26px;

    color:
        rgba(255, 255, 255, 0.64);

    font-size:
        clamp(0.95rem, 1.16vw, 1.06rem);

    line-height: 1.87;
}

.jc-next-steps__header-link {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 13px;

    color: var(--jc-gold-300);

    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.jc-next-steps__header-link::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;

    height: 1px;

    content: "";

    background:
        linear-gradient(
            90deg,
            var(--jc-gold-400),
            transparent
        );

    transform: scaleX(0.46);
    transform-origin: left;

    transition:
        transform
        var(--jc-duration-slow)
        var(--jc-ease-soft);
}

.jc-next-steps__header-link svg {
    width: 18px;
    height: 18px;

    transition:
        transform
        var(--jc-duration-normal)
        var(--jc-ease-soft);
}

.jc-next-steps__header-link:hover::after {
    transform: scaleX(1);
}

.jc-next-steps__header-link:hover svg {
    transform: translateX(4px);
}


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

.jc-next-steps__layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(300px, 0.65fr);
    align-items: start;
    gap: clamp(38px, 5vw, 72px);
}


/* =========================================================
   TIMELINE
========================================================= */

.jc-next-steps__timeline {
    position: relative;

    display: grid;
    gap: 25px;
}

.jc-next-steps__timeline-line {
    position: absolute;
    top: 42px;
    bottom: 42px;
    left: 28px;

    width: 1px;

    overflow: hidden;

    background:
        rgba(255, 255, 255, 0.12);
}

.jc-next-steps__timeline-line > span {
    display: block;

    width: 100%;
    height: var(--jc-next-progress, 0%);

    background:
        linear-gradient(
            180deg,
            var(--jc-gold-400),
            var(--jc-clay-400)
        );

    transition:
        height
        700ms
        var(--jc-ease-soft);
}

.jc-next-steps__step {
    position: relative;

    display: grid;
    grid-template-columns:
        58px
        minmax(0, 1fr);
    gap: 22px;
}

.jc-next-steps__marker {
    position: relative;
    z-index: 3;

    display: grid;
    place-items: center;

    align-self: start;

    width: 58px;
    height: 58px;

    color:
        rgba(255, 255, 255, 0.62);

    border:
        1px solid
        rgba(255, 255, 255, 0.17);

    border-radius: 50%;

    background:
        var(--jc-forest-950);

    box-shadow:
        0 12px 28px
        rgba(0, 0, 0, 0.18);

    transition:
        color
        var(--jc-duration-normal)
        ease,
        border-color
        var(--jc-duration-normal)
        ease,
        background-color
        var(--jc-duration-normal)
        ease,
        transform
        var(--jc-duration-slow)
        var(--jc-ease-soft);
}

.jc-next-steps__marker-number {
    position: relative;
    z-index: 2;

    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.jc-next-steps__marker-ring {
    position: absolute;
    inset: -7px;

    opacity: 0;

    border:
        1px solid
        rgba(226, 205, 165, 0.28);

    border-radius: 50%;

    transform: scale(0.76);

    transition:
        opacity
        var(--jc-duration-normal)
        ease,
        transform
        var(--jc-duration-slow)
        var(--jc-ease-soft);
}

.jc-next-steps__step.is-active
.jc-next-steps__marker {
    color: var(--jc-forest-950);

    border-color: var(--jc-gold-300);

    background: var(--jc-gold-300);

    transform: scale(1.06);
}

.jc-next-steps__step.is-active
.jc-next-steps__marker-ring {
    opacity: 1;
    transform: scale(1);
}


/* =========================================================
   STEP CARD
========================================================= */

.jc-next-steps__step-card {
    position: relative;

    padding:
        clamp(28px, 3.4vw, 42px);

    overflow: hidden;

    border:
        1px solid
        rgba(255, 255, 255, 0.13);

    border-radius: var(--jc-radius-lg);

    background:
        radial-gradient(
            circle at 94% 5%,
            rgba(190, 195, 167, 0.10),
            transparent 14rem
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.067),
            rgba(255, 255, 255, 0.024)
        );

    box-shadow:
        0 24px 58px
        rgba(4, 7, 3, 0.16);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transition:
        border-color
        var(--jc-duration-normal)
        ease,
        background-color
        var(--jc-duration-normal)
        ease,
        transform
        700ms
        var(--jc-ease-soft);
}

.jc-next-steps__step-card::before {
    position: absolute;
    top: 0;
    left: clamp(28px, 3.4vw, 42px);

    width: 0;
    height: 1px;

    content: "";

    background:
        linear-gradient(
            90deg,
            var(--jc-gold-400),
            transparent
        );

    transition:
        width
        700ms
        var(--jc-ease-soft);
}

.jc-next-steps__step-card::after {
    position: absolute;
    right: -65px;
    bottom: -70px;

    width: 155px;
    height: 155px;

    content: "";

    pointer-events: none;

    border:
        1px solid
        rgba(226, 205, 165, 0.075);

    border-radius: 50%;

    transition:
        transform
        750ms
        var(--jc-ease-soft);
}

.jc-next-steps__step:hover
.jc-next-steps__step-card,
.jc-next-steps__step.is-active
.jc-next-steps__step-card {
    border-color:
        rgba(226, 205, 165, 0.28);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.035)
        );

    transform: translateX(5px);
}

.jc-next-steps__step:hover
.jc-next-steps__step-card::before,
.jc-next-steps__step.is-active
.jc-next-steps__step-card::before {
    width: 105px;
}

.jc-next-steps__step:hover
.jc-next-steps__step-card::after {
    transform: scale(1.18);
}

.jc-next-steps__step-header {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 18px;
}

.jc-next-steps__step-icon {
    display: grid;
    place-items: center;

    width: 43px;
    height: 43px;

    color: var(--jc-gold-300);

    border:
        1px solid
        rgba(226, 205, 165, 0.20);

    border-radius:
        44% 56% 48% 52% /
        56% 44% 56% 44%;

    background:
        rgba(255, 255, 255, 0.035);

    transition:
        color
        var(--jc-duration-normal)
        ease,
        background-color
        var(--jc-duration-normal)
        ease,
        transform
        var(--jc-duration-slow)
        var(--jc-ease-soft);
}

.jc-next-steps__step-icon svg {
    width: 21px;
    height: 21px;
}

.jc-next-steps__step:hover
.jc-next-steps__step-icon,
.jc-next-steps__step.is-active
.jc-next-steps__step-icon {
    color: var(--jc-forest-950);

    background: var(--jc-gold-300);

    transform:
        translateY(-2px)
        rotate(-3deg);
}

.jc-next-steps__step-label {
    color: var(--jc-gold-300);

    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.jc-next-steps__step-card h3 {
    margin-bottom: 16px;

    color: var(--jc-white);

    font-size:
        clamp(2rem, 2.8vw, 3rem);

    line-height: 0.98;
}

.jc-next-steps__step-card h3 em {
    display: block;

    color: var(--jc-flower-cream);

    font-weight: 500;
}

.jc-next-steps__step-card > p {
    max-width: 700px;
    margin-bottom: 23px;

    color:
        rgba(255, 255, 255, 0.60);

    font-size: 0.8rem;
    line-height: 1.75;
}

.jc-next-steps__step-note {
    display: grid;
    grid-template-columns:
        29px
        minmax(0, 1fr);
    align-items: start;
    gap: 11px;

    padding-top: 18px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.10);
}

.jc-next-steps__step-note > span:first-child {
    color: var(--jc-clay-400);

    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.jc-next-steps__step-note > span:last-child {
    color:
        rgba(255, 255, 255, 0.45);

    font-size: 0.63rem;
    line-height: 1.55;
}


/* =========================================================
   SUPPORT PANEL
========================================================= */

.jc-next-steps__support {
    position: sticky;
    top: 125px;
}

.jc-next-steps__support-inner {
    position: relative;

    padding:
        clamp(34px, 4vw, 49px);

    overflow: hidden;

    color: var(--jc-text-primary);

    border:
        1px solid
        rgba(255, 255, 255, 0.24);

    border-radius: var(--jc-radius-xl);

    background:
        radial-gradient(
            circle at 94% 5%,
            rgba(190, 195, 167, 0.25),
            transparent 18rem
        ),
        linear-gradient(
            145deg,
            rgba(250, 249, 245, 0.98),
            rgba(241, 239, 231, 0.97)
        );

    box-shadow:
        0 34px 84px
        rgba(4, 7, 3, 0.29);
}

.jc-next-steps__support-inner::before {
    position: absolute;
    top: 0;
    left: clamp(34px, 4vw, 49px);

    width: 96px;
    height: 1px;

    content: "";

    background:
        linear-gradient(
            90deg,
            var(--jc-gold-500),
            transparent
        );
}

.jc-next-steps__support-inner::after {
    position: absolute;
    top: -95px;
    right: -82px;

    width: 225px;
    height: 225px;

    content: "";

    pointer-events: none;

    border:
        1px solid
        rgba(53, 65, 22, 0.09);

    border-radius:
        43% 57% 50% 50% /
        58% 42% 58% 42%;

    transform: rotate(-16deg);
}

.jc-next-steps__support-number {
    display: block;

    margin-bottom: 25px;

    color: var(--jc-gold-700);

    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.jc-next-steps__support-kicker {
    display: block;

    margin-bottom: 13px;

    color: var(--jc-gold-700);

    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.jc-next-steps__support h3 {
    margin-bottom: 19px;

    color: var(--jc-ink-950);

    font-size:
        clamp(2.15rem, 3vw, 3.25rem);

    line-height: 0.98;
}

.jc-next-steps__support h3 em {
    display: block;

    color: var(--jc-olive-600);

    font-weight: 500;
}

.jc-next-steps__support-inner > p {
    margin-bottom: 27px;

    font-size: 0.78rem;
    line-height: 1.72;
}


/* =========================================================
   SUPPORT LIST
========================================================= */

.jc-next-steps__support-list {
    display: grid;

    border-top:
        1px solid
        var(--jc-divider);
}

.jc-next-steps__support-list li {
    display: grid;
    grid-template-columns:
        32px
        minmax(0, 1fr);
    gap: 11px;

    padding:
        18px
        0;

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

.jc-next-steps__support-list
> li
> span {
    color: var(--jc-clay-600);

    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.jc-next-steps__support-list div {
    display: grid;
    gap: 4px;
}

.jc-next-steps__support-list strong {
    color: var(--jc-forest-900);

    font-family: var(--jc-font-display);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1;
}

.jc-next-steps__support-list small {
    color: var(--jc-text-soft);

    font-size: 0.62rem;
    line-height: 1.5;
}


/* =========================================================
   AVAILABILITY
========================================================= */

.jc-next-steps__availability {
    display: grid;
    grid-template-columns:
        43px
        minmax(0, 1fr);
    align-items: center;
    gap: 13px;

    margin-top: 26px;
    padding:
        17px;

    border:
        1px solid
        var(--jc-border);

    border-radius: var(--jc-radius-sm);

    background:
        rgba(255, 255, 255, 0.62);
}

.jc-next-steps__availability-icon {
    display: grid;
    place-items: center;

    width: 41px;
    height: 41px;

    color: var(--jc-forest-800);

    border:
        1px solid
        rgba(53, 65, 22, 0.17);

    border-radius: 50%;
}

.jc-next-steps__availability-icon svg {
    width: 20px;
    height: 20px;
}

.jc-next-steps__availability div {
    display: grid;
    gap: 3px;
}

.jc-next-steps__availability small {
    color: var(--jc-text-soft);

    font-size: 0.51rem;
    font-weight: 800;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.jc-next-steps__availability strong {
    color: var(--jc-forest-900);

    font-family: var(--jc-font-display);
    font-size: 1.09rem;
    font-weight: 600;
    line-height: 1;
}

.jc-next-steps__availability div span {
    color: var(--jc-text-secondary);

    font-size: 0.62rem;
}


/* =========================================================
   SUPPORT ACTIONS
========================================================= */

.jc-next-steps__support-actions {
    display: grid;
    gap: 17px;

    margin-top: 27px;
}

.jc-next-steps__support-actions
.jc-button {
    width: 100%;
}

.jc-next-steps__support-phone {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    min-height: 45px;

    color: var(--jc-text-secondary);

    border-top:
        1px solid
        var(--jc-divider);

    font-size: 0.62rem;
    font-weight: 700;
}

.jc-next-steps__support-phone strong {
    color: var(--jc-clay-600);

    font-size: 0.78rem;
}


/* =========================================================
   REASSURANCE STRIP
========================================================= */

.jc-next-steps__reassurance {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(300px, 0.9fr)
        minmax(0, 1.1fr);
    align-items: center;
    gap: 42px;

    margin-top:
        clamp(56px, 6vw, 84px);
    padding:
        29px
        32px;

    overflow: hidden;

    border:
        1px solid
        rgba(255, 255, 255, 0.14);

    border-radius: var(--jc-radius-lg);

    background:
        linear-gradient(
            110deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 22px 54px
        rgba(4, 7, 3, 0.17);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.jc-next-steps__reassurance::before {
    position: absolute;
    top: 0;
    left: 32px;

    width: 88px;
    height: 1px;

    content: "";

    background:
        linear-gradient(
            90deg,
            var(--jc-gold-400),
            transparent
        );
}

.jc-next-steps__reassurance-heading {
    display: flex;
    align-items: center;
    gap: 15px;
}

.jc-next-steps__reassurance-heading
> span {
    color: var(--jc-gold-300);

    font-size: 1.2rem;
}

.jc-next-steps__reassurance-heading div {
    display: grid;
    gap: 4px;
}

.jc-next-steps__reassurance-heading small {
    color:
        rgba(255, 255, 255, 0.44);

    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.jc-next-steps__reassurance-heading strong {
    color: var(--jc-white);

    font-family: var(--jc-font-display);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.1;
}

.jc-next-steps__reassurance-items {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap:
        11px
        25px;
}

.jc-next-steps__reassurance-items span {
    position: relative;

    padding-left: 15px;

    color:
        rgba(255, 255, 255, 0.59);

    font-size: 0.65rem;
    font-weight: 700;
}

.jc-next-steps__reassurance-items
span::before {
    position: absolute;
    top: 50%;
    left: 0;

    width: 6px;
    height: 1px;

    content: "";

    background: var(--jc-clay-400);
}


/* =========================================================
   REVEAL ANIMATIONS
========================================================= */

html.jc-js
.jc-next-steps
[data-jc-next-reveal] {
    opacity: 0;

    transition:
        opacity
        900ms
        ease,
        transform
        1050ms
        var(--jc-ease-soft);

    transition-delay:
        var(--jc-next-delay, 0ms);
}

html.jc-js
.jc-next-steps
[data-jc-next-reveal="left"] {
    transform: translateX(-42px);
}

html.jc-js
.jc-next-steps
[data-jc-next-reveal="right"] {
    transform: translateX(42px);
}

html.jc-js
.jc-next-steps
[data-jc-next-reveal="up"] {
    transform: translateY(36px);
}

html.jc-js
.jc-next-steps
[data-jc-next-reveal].is-visible {
    opacity: 1;
    transform: none;
}


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

html.jc-reduced-motion
.jc-next-steps *,
html.jc-reduced-motion
.jc-next-steps *::before,
html.jc-reduced-motion
.jc-next-steps *::after {
    animation: none !important;
    transition: none !important;
}







































/* =========================================================
   SERVICE AREA CONFIRMATION
========================================================= */

.jc-area-confirmation {
    position: relative;

    padding:
        clamp(100px, 9vw, 156px)
        0
        clamp(94px, 8vw, 138px);

    overflow: hidden;

    color: var(--jc-text-primary);

    border-bottom:
        1px solid
        var(--jc-divider);

    background:
        radial-gradient(
            circle at 7% 8%,
            rgba(190, 195, 167, 0.25),
            transparent 29rem
        ),
        radial-gradient(
            circle at 94% 85%,
            rgba(176, 109, 74, 0.075),
            transparent 30rem
        ),
        linear-gradient(
            145deg,
            var(--jc-ivory-50),
            var(--jc-ivory-100)
        );

    isolation: isolate;
}


/* =========================================================
   DECORATIONS
========================================================= */

.jc-area-confirmation__decorations {
    position: absolute;
    inset: 0;
    z-index: -1;

    overflow: hidden;

    pointer-events: none;
}

.jc-area-confirmation__decorations::before {
    position: absolute;
    inset: 0;

    content: "";

    opacity: 0.19;

    background-image:
        radial-gradient(
            rgba(53, 65, 22, 0.13) 0.6px,
            transparent 0.6px
        );

    background-size: 31px 31px;

    mask-image:
        linear-gradient(
            90deg,
            transparent,
            rgba(0, 0, 0, 0.72),
            transparent
        );
}

.jc-area-confirmation__decor-contour {
    position: absolute;

    border:
        1px solid
        rgba(104, 113, 72, 0.15);

    border-radius:
        48% 52% 45% 55% /
        55% 42% 58% 45%;
}

.jc-area-confirmation__decor-contour::before,
.jc-area-confirmation__decor-contour::after {
    position: absolute;

    content: "";

    border:
        1px solid
        rgba(104, 113, 72, 0.12);

    border-radius: inherit;
}

.jc-area-confirmation__decor-contour::before {
    inset: 58px;
}

.jc-area-confirmation__decor-contour::after {
    inset: 122px;
}

.jc-area-confirmation__decor-contour--one {
    top: -255px;
    right: -245px;

    width: 610px;
    height: 530px;

    transform: rotate(-12deg);
}

.jc-area-confirmation__decor-contour--two {
    bottom: -345px;
    left: -345px;

    width: 690px;
    height: 600px;

    opacity: 0.62;

    transform: rotate(20deg);
}

.jc-area-confirmation__decor-leaf {
    position: absolute;
    top: 38%;
    left: -80px;

    width: 190px;
    height: 295px;

    opacity: 0.065;

    border:
        1px solid
        var(--jc-forest-800);

    border-radius:
        100% 0 100% 0 /
        72% 0 100% 28%;

    transform: rotate(27deg);
}

.jc-area-confirmation__decor-leaf::before {
    position: absolute;
    top: 26px;
    left: 50%;

    width: 1px;
    height: 235px;

    content: "";

    background:
        linear-gradient(
            180deg,
            transparent,
            var(--jc-forest-800),
            transparent
        );

    transform: rotate(-24deg);
    transform-origin: top;
}

.jc-area-confirmation__decor-grid {
    position: absolute;
    right: 4%;
    bottom: 8%;

    width: 250px;
    height: 175px;

    opacity: 0.04;

    background-image:
        linear-gradient(
            rgba(53, 65, 22, 0.8) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(53, 65, 22, 0.8) 1px,
            transparent 1px
        );

    background-size: 42px 32px;

    transform: rotate(-7deg);
}

.jc-area-confirmation__decor-route {
    position: absolute;
    top: 15%;
    left: 8%;

    width: 42%;
    height: 105px;

    opacity: 0.18;

    border-top:
        1px dashed
        var(--jc-clay-500);

    border-radius: 50%;

    transform: rotate(4deg);
}

.jc-area-confirmation__decor-point {
    position: absolute;

    width: 7px;
    height: 7px;

    border:
        1px solid
        var(--jc-gold-600);

    border-radius: 50%;

    box-shadow:
        0 0 0 6px
        rgba(190, 155, 93, 0.08);
}

.jc-area-confirmation__decor-point--one {
    top: 14%;
    left: 12%;
}

.jc-area-confirmation__decor-point--two {
    top: 20%;
    left: 33%;
}

.jc-area-confirmation__decor-point--three {
    right: 11%;
    bottom: 16%;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.jc-area-confirmation__header {
    display: grid;
    grid-template-columns:
        minmax(0, 1.18fr)
        minmax(320px, 0.68fr);
    align-items: end;
    gap: clamp(58px, 8vw, 124px);

    margin-bottom:
        clamp(64px, 7vw, 98px);
}

.jc-area-confirmation__heading {
    position: relative;
}

.jc-area-confirmation__heading::after {
    position: absolute;
    right: 0;
    bottom: -27px;
    left: 0;

    height: 1px;

    content: "";

    background:
        linear-gradient(
            90deg,
            var(--jc-gold-500),
            rgba(53, 65, 22, 0.15),
            transparent
        );
}

.jc-area-confirmation__heading h2 {
    max-width: 900px;
    margin: 0;

    font-size:
        clamp(3.2rem, 5.3vw, 5.75rem);

    line-height: 0.94;
}

.jc-area-confirmation__heading h2 em {
    display: block;

    color: var(--jc-olive-600);

    font-weight: 500;
}

.jc-area-confirmation__introduction {
    max-width: 490px;
}

.jc-area-confirmation__introduction p {
    margin-bottom: 24px;

    font-size:
        clamp(0.95rem, 1.16vw, 1.06rem);

    line-height: 1.87;
}

.jc-area-confirmation__introduction a {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 7px;

    color: var(--jc-text-secondary);

    font-size: 0.69rem;
    font-weight: 700;
}

.jc-area-confirmation__introduction a strong {
    color: var(--jc-clay-600);

    font-weight: 800;
}


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

.jc-area-confirmation__layout {
    display: grid;
    grid-template-columns:
        minmax(310px, 0.72fr)
        minmax(0, 1.28fr);
    align-items: stretch;
    gap: clamp(30px, 4vw, 54px);
}


/* =========================================================
   COVERAGE PANEL
========================================================= */

.jc-area-confirmation__coverage {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 690px;
    padding:
        clamp(35px, 4vw, 51px);

    overflow: hidden;

    color: var(--jc-white);

    border:
        1px solid
        rgba(226, 205, 165, 0.18);

    border-radius: var(--jc-radius-xl);

    background:
        radial-gradient(
            circle at 92% 6%,
            rgba(190, 195, 167, 0.15),
            transparent 17rem
        ),
        linear-gradient(
            145deg,
            var(--jc-forest-900),
            var(--jc-forest-950)
        );

    box-shadow: var(--jc-shadow-lg);
}

.jc-area-confirmation__coverage::before {
    position: absolute;
    top: 0;
    left: clamp(35px, 4vw, 51px);

    width: 94px;
    height: 1px;

    content: "";

    background:
        linear-gradient(
            90deg,
            var(--jc-gold-400),
            transparent
        );
}

.jc-area-confirmation__coverage::after {
    position: absolute;
    top: -100px;
    right: -90px;

    width: 250px;
    height: 250px;

    content: "";

    pointer-events: none;

    border:
        1px solid
        rgba(226, 205, 165, 0.10);

    border-radius:
        43% 57% 50% 50% /
        58% 42% 58% 42%;

    transform: rotate(-17deg);
}

.jc-area-confirmation__coverage-top {
    position: relative;
    z-index: 1;

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

    margin-bottom: 28px;
}

.jc-area-confirmation__coverage-number {
    color: var(--jc-white);

    font-family: var(--jc-font-display);
    font-size: 4.3rem;
    font-weight: 600;
    line-height: 0.75;
    letter-spacing: -0.055em;
}

.jc-area-confirmation__coverage-label {
    max-width: 110px;
    padding-bottom: 2px;

    color: var(--jc-gold-300);

    font-size: 0.57rem;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.jc-area-confirmation__coverage h3 {
    position: relative;
    z-index: 1;

    margin-bottom: 19px;

    color: var(--jc-white);

    font-size:
        clamp(2.2rem, 3.15vw, 3.4rem);

    line-height: 0.98;
}

.jc-area-confirmation__coverage h3 em {
    display: block;

    color: var(--jc-flower-cream);

    font-weight: 500;
}

.jc-area-confirmation__coverage-description {
    position: relative;
    z-index: 1;

    margin-bottom: 29px;

    color:
        rgba(255, 255, 255, 0.59);

    font-size: 0.79rem;
    line-height: 1.76;
}


/* =========================================================
   COMMUNITY OPTIONS
========================================================= */

.jc-area-confirmation__community-grid {
    position: relative;
    z-index: 1;

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

    margin-bottom: 29px;
}

.jc-area-confirmation__community-grid button {
    display: grid;
    grid-template-columns:
        25px
        minmax(0, 1fr);
    align-items: center;
    gap: 8px;

    min-height: 49px;
    padding:
        9px
        11px;

    color:
        rgba(255, 255, 255, 0.72);

    border:
        1px solid
        rgba(255, 255, 255, 0.11);

    border-radius: var(--jc-radius-xs);

    background:
        rgba(255, 255, 255, 0.035);

    font-family: var(--jc-font-display);
    font-size: 0.98rem;
    font-weight: 600;
    text-align: left;

    transition:
        color
        var(--jc-duration-normal)
        ease,
        border-color
        var(--jc-duration-normal)
        ease,
        background-color
        var(--jc-duration-normal)
        ease,
        transform
        var(--jc-duration-normal)
        var(--jc-ease-soft);
}

.jc-area-confirmation__community-grid
button span {
    color: var(--jc-gold-400);

    font-family: var(--jc-font-body);
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.jc-area-confirmation__community-grid
button:hover {
    color: var(--jc-white);

    border-color:
        rgba(226, 205, 165, 0.27);

    background:
        rgba(255, 255, 255, 0.065);

    transform: translateY(-2px);
}

.jc-area-confirmation__community-grid
button.is-selected {
    color: var(--jc-forest-950);

    border-color: var(--jc-flower-cream);

    background: var(--jc-flower-cream);

    box-shadow:
        0 12px 25px
        rgba(0, 0, 0, 0.14);
}

.jc-area-confirmation__community-grid
button.is-selected span {
    color: var(--jc-clay-700);
}


/* =========================================================
   COVERAGE NOTE
========================================================= */

.jc-area-confirmation__coverage-note {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns:
        42px
        minmax(0, 1fr);
    align-items: center;
    gap: 13px;

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

    border-top:
        1px solid
        rgba(255, 255, 255, 0.11);
}

.jc-area-confirmation__coverage-note-icon {
    display: grid;
    place-items: center;

    width: 40px;
    height: 40px;

    color: var(--jc-gold-300);

    border:
        1px solid
        rgba(226, 205, 165, 0.20);

    border-radius: 50%;
}

.jc-area-confirmation__coverage-note-icon svg {
    width: 19px;
    height: 19px;
}

.jc-area-confirmation__coverage-note p {
    color:
        rgba(255, 255, 255, 0.48);

    font-size: 0.64rem;
    line-height: 1.55;
}


/* =========================================================
   CHECKER PANEL
========================================================= */

.jc-area-confirmation__checker {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 690px;
    padding:
        clamp(31px, 4vw, 50px);

    overflow: hidden;

    border:
        1px solid
        var(--jc-border);

    border-radius: var(--jc-radius-xl);

    background:
        radial-gradient(
            circle at 93% 4%,
            rgba(190, 195, 167, 0.23),
            transparent 20rem
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.97),
            rgba(242, 240, 233, 0.96)
        );

    box-shadow: var(--jc-shadow-lg);
}

.jc-area-confirmation__checker::before {
    position: absolute;
    top: 0;
    left: clamp(31px, 4vw, 50px);

    width: 108px;
    height: 1px;

    content: "";

    background:
        linear-gradient(
            90deg,
            var(--jc-gold-500),
            transparent
        );
}

.jc-area-confirmation__checker::after {
    position: absolute;
    top: -120px;
    right: -105px;

    width: 285px;
    height: 285px;

    content: "";

    pointer-events: none;

    border:
        1px solid
        rgba(53, 65, 22, 0.09);

    border-radius: 50%;
}


/* =========================================================
   CHECKER HEADER
========================================================= */

.jc-area-confirmation__checker-header {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;

    margin-bottom: 29px;
    padding-bottom: 25px;

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

.jc-area-confirmation__checker-kicker {
    display: block;

    margin-bottom: 10px;

    color: var(--jc-gold-700);

    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.jc-area-confirmation__checker-header h3 {
    margin: 0;

    font-size:
        clamp(2rem, 2.9vw, 3.25rem);

    line-height: 0.98;
}

.jc-area-confirmation__checker-header h3 em {
    display: block;

    color: var(--jc-olive-600);

    font-weight: 500;
}

.jc-area-confirmation__checker-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    flex: 0 0 auto;

    padding:
        9px
        12px;

    color: var(--jc-olive-700);

    border:
        1px solid
        rgba(53, 65, 22, 0.14);

    border-radius: var(--jc-radius-xs);

    background:
        rgba(255, 255, 255, 0.60);

    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.065em;
    text-transform: uppercase;
}

.jc-area-confirmation__checker-status
> span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--jc-olive-600);

    box-shadow:
        0 0 0 4px
        rgba(104, 113, 72, 0.10);
}

.jc-area-confirmation__checker-status.is-confirmed
> span {
    background: #4A7741;
}

.jc-area-confirmation__checker-status.is-nearby
> span {
    background: var(--jc-gold-600);
}

.jc-area-confirmation__checker-status.is-error
> span {
    background: var(--jc-clay-600);
}


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

.jc-area-confirmation__form {
    position: relative;
    z-index: 1;

    margin-bottom: 23px;
}

.jc-area-confirmation__form label {
    display: block;

    margin-bottom: 9px;

    color: var(--jc-text-primary);

    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.jc-area-confirmation__control {
    position: relative;

    display: grid;
    grid-template-columns:
        52px
        minmax(0, 1fr)
        auto;
    align-items: center;

    min-height: 61px;

    border:
        1px solid
        var(--jc-border-strong);

    border-radius: var(--jc-radius-sm);

    background:
        rgba(255, 255, 255, 0.78);

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.92);

    transition:
        border-color
        var(--jc-duration-normal)
        ease,
        box-shadow
        var(--jc-duration-normal)
        ease;
}

.jc-area-confirmation__control:focus-within {
    border-color:
        rgba(53, 65, 22, 0.46);

    box-shadow:
        0 0 0 4px
        rgba(104, 113, 72, 0.09);
}

.jc-area-confirmation__control.is-invalid {
    border-color:
        rgba(176, 109, 74, 0.62);

    box-shadow:
        0 0 0 4px
        rgba(176, 109, 74, 0.08);
}

.jc-area-confirmation__control-icon {
    display: grid;
    place-items: center;

    width: 52px;
    height: 59px;

    color: var(--jc-olive-600);
}

.jc-area-confirmation__control-icon svg {
    width: 21px;
    height: 21px;
}

.jc-area-confirmation__control input {
    width: 100%;
    min-width: 0;
    min-height: 59px;

    color: var(--jc-text-primary);

    border: 0;
    outline: 0;

    background: transparent;

    font-family: var(--jc-font-body);
    font-size: 0.8rem;
}

.jc-area-confirmation__control input::placeholder {
    color:
        rgba(74, 56, 43, 0.50);
}

.jc-area-confirmation__control button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 45px;
    margin-right: 7px;
    padding:
        11px
        15px;

    color: var(--jc-white);

    border-radius: 9px;

    background:
        linear-gradient(
            145deg,
            var(--jc-forest-700),
            var(--jc-forest-900)
        );

    box-shadow:
        0 13px 29px
        rgba(53, 65, 22, 0.17);

    font-size: 0.59rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;

    transition:
        transform
        var(--jc-duration-normal)
        var(--jc-ease-soft),
        box-shadow
        var(--jc-duration-normal)
        ease;
}

.jc-area-confirmation__control button svg {
    width: 17px;
    height: 17px;

    transition:
        transform
        var(--jc-duration-normal)
        var(--jc-ease-soft);
}

.jc-area-confirmation__control button:hover {
    box-shadow:
        0 18px 37px
        rgba(53, 65, 22, 0.23);

    transform: translateY(-2px);
}

.jc-area-confirmation__control button:hover svg {
    transform: translateX(3px);
}

.jc-area-confirmation__error {
    display: block;

    min-height: 17px;
    margin-top: 6px;

    color: var(--jc-clay-700);

    font-size: 0.58rem;
    font-weight: 700;
}


/* =========================================================
   DEFAULT GUIDANCE
========================================================= */

.jc-area-confirmation__guidance {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns:
        47px
        minmax(0, 1fr);
    align-items: center;
    gap: 14px;

    margin-bottom: 24px;
    padding:
        18px
        19px;

    border:
        1px solid
        var(--jc-border);

    border-radius: var(--jc-radius-sm);

    background:
        rgba(255, 255, 255, 0.55);
}

.jc-area-confirmation__guidance.is-hidden {
    display: none;
}

.jc-area-confirmation__guidance-icon {
    display: grid;
    place-items: center;

    width: 44px;
    height: 44px;

    color: var(--jc-forest-800);

    border:
        1px solid
        rgba(53, 65, 22, 0.16);

    border-radius: 50%;
}

.jc-area-confirmation__guidance-icon svg {
    width: 21px;
    height: 21px;
}

.jc-area-confirmation__guidance div {
    display: grid;
    gap: 4px;
}

.jc-area-confirmation__guidance strong {
    color: var(--jc-forest-900);

    font-family: var(--jc-font-display);
    font-size: 1.16rem;
    font-weight: 600;
    line-height: 1;
}

.jc-area-confirmation__guidance p {
    font-size: 0.65rem;
    line-height: 1.55;
}


/* =========================================================
   DYNAMIC RESULT
========================================================= */

.jc-area-confirmation__result {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns:
        57px
        minmax(0, 1fr);
    align-items: start;
    gap: 17px;

    margin-bottom: 24px;
    padding:
        22px;

    border:
        1px solid
        rgba(53, 65, 22, 0.18);

    border-radius: var(--jc-radius-lg);

    background:
        linear-gradient(
            110deg,
            rgba(190, 195, 167, 0.17),
            rgba(255, 255, 255, 0.67)
        );

    animation:
        jc-area-confirmation-result-enter
        500ms
        var(--jc-ease-soft)
        both;
}

.jc-area-confirmation__result[hidden] {
    display: none;
}

.jc-area-confirmation__result.is-nearby {
    border-color:
        rgba(190, 155, 93, 0.26);

    background:
        linear-gradient(
            110deg,
            rgba(226, 205, 165, 0.20),
            rgba(255, 255, 255, 0.69)
        );
}

.jc-area-confirmation__result-icon {
    display: grid;
    place-items: center;

    width: 54px;
    height: 54px;

    color: var(--jc-white);

    border-radius:
        45% 55% 47% 53% /
        55% 45% 55% 45%;

    background: var(--jc-forest-800);

    font-family: var(--jc-font-display);
    font-size: 1.7rem;
    font-weight: 600;
}

.jc-area-confirmation__result.is-nearby
.jc-area-confirmation__result-icon {
    color: var(--jc-forest-950);

    background: var(--jc-gold-300);
}

.jc-area-confirmation__result-content {
    min-width: 0;
}

.jc-area-confirmation__result-label {
    display: block;

    margin-bottom: 6px;

    color: var(--jc-gold-700);

    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.jc-area-confirmation__result h4 {
    margin-bottom: 8px;

    color: var(--jc-forest-900);

    font-size:
        clamp(1.55rem, 2.2vw, 2.15rem);

    line-height: 1;
}

.jc-area-confirmation__result p {
    font-size: 0.7rem;
    line-height: 1.65;
}


/* =========================================================
   PROJECT CONTEXT
========================================================= */

.jc-area-confirmation__project-context {
    position: relative;
    z-index: 1;

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

    border-top:
        1px solid
        var(--jc-divider);
}

.jc-area-confirmation__context-label {
    display: block;

    margin-bottom: 14px;

    color: var(--jc-gold-700);

    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.jc-area-confirmation__context-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.jc-area-confirmation__context-grid div {
    display: grid;
    grid-template-columns:
        23px
        minmax(0, 1fr);
    align-items: center;
    gap: 7px;

    min-height: 46px;
    padding:
        9px
        10px;

    border:
        1px solid
        var(--jc-border);

    border-radius: var(--jc-radius-xs);

    background:
        rgba(255, 255, 255, 0.48);

    color: var(--jc-text-secondary);

    font-size: 0.61rem;
    font-weight: 700;
}

.jc-area-confirmation__context-grid
div span {
    color: var(--jc-clay-600);

    font-size: 0.51rem;
    font-weight: 800;
    letter-spacing: 0.07em;
}


/* =========================================================
   ACTIONS
========================================================= */

.jc-area-confirmation__actions {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    margin-top: 28px;
    padding-top: 24px;

    border-top:
        1px solid
        var(--jc-divider);
}

.jc-area-confirmation__phone {
    display: grid;
    gap: 4px;

    text-align: right;
}

.jc-area-confirmation__phone span {
    color: var(--jc-text-soft);

    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.jc-area-confirmation__phone strong {
    color: var(--jc-clay-600);

    font-size: 0.8rem;
}


/* =========================================================
   BOTTOM STRIP
========================================================= */

.jc-area-confirmation__strip {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(300px, 1fr)
        auto;
    align-items: center;
    gap: 40px;

    margin-top:
        clamp(56px, 6vw, 84px);
    padding:
        29px
        32px;

    overflow: hidden;

    border:
        1px solid
        var(--jc-border);

    border-radius: var(--jc-radius-lg);

    background:
        rgba(255, 255, 255, 0.64);

    box-shadow: var(--jc-shadow-sm);

    backdrop-filter: blur(14px);
}

.jc-area-confirmation__strip::before {
    position: absolute;
    top: 0;
    left: 32px;

    width: 88px;
    height: 1px;

    content: "";

    background:
        linear-gradient(
            90deg,
            var(--jc-gold-500),
            transparent
        );
}

.jc-area-confirmation__strip-heading {
    display: flex;
    align-items: center;
    gap: 15px;
}

.jc-area-confirmation__strip-heading
> span {
    color: var(--jc-gold-700);

    font-size: 1.15rem;
}

.jc-area-confirmation__strip-heading div {
    display: grid;
    gap: 4px;
}

.jc-area-confirmation__strip-heading small {
    color: var(--jc-text-soft);

    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.jc-area-confirmation__strip-heading strong {
    color: var(--jc-forest-900);

    font-family: var(--jc-font-display);
    font-size: 1.22rem;
    font-weight: 600;
    line-height: 1.12;
}

.jc-area-confirmation__strip-details {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap:
        10px
        24px;
}

.jc-area-confirmation__strip-details span {
    position: relative;

    padding-left: 15px;

    color: var(--jc-text-secondary);

    font-size: 0.64rem;
    font-weight: 700;
}

.jc-area-confirmation__strip-details
span::before {
    position: absolute;
    top: 50%;
    left: 0;

    width: 6px;
    height: 1px;

    content: "";

    background: var(--jc-clay-500);
}


/* =========================================================
   REVEAL
========================================================= */

html.jc-js
.jc-area-confirmation
[data-jc-area-confirmation-reveal] {
    opacity: 0;

    transition:
        opacity
        900ms
        ease,
        transform
        1050ms
        var(--jc-ease-soft);

    transition-delay:
        var(--jc-area-confirmation-delay, 0ms);
}

html.jc-js
.jc-area-confirmation
[data-jc-area-confirmation-reveal="left"] {
    transform: translateX(-42px);
}

html.jc-js
.jc-area-confirmation
[data-jc-area-confirmation-reveal="right"] {
    transform: translateX(42px);
}

html.jc-js
.jc-area-confirmation
[data-jc-area-confirmation-reveal="up"] {
    transform: translateY(36px);
}

html.jc-js
.jc-area-confirmation
[data-jc-area-confirmation-reveal].is-visible {
    opacity: 1;
    transform: none;
}


/* =========================================================
   KEYFRAMES
========================================================= */

@keyframes jc-area-confirmation-result-enter {

    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


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

html.jc-reduced-motion
.jc-area-confirmation *,
html.jc-reduced-motion
.jc-area-confirmation *::before,
html.jc-reduced-motion
.jc-area-confirmation *::after {
    animation: none !important;
    transition: none !important;
}



































/* =========================================================
   RESPONSIVE
   EXACTAMENTE CUATRO MEDIA QUERIES
========================================================= */

/* 1. COMPUTER */
@media (min-width: 1200px) {
       .jc-area-confirmation__coverage,
    .jc-area-confirmation__checker {
        min-height: 700px;
    }

    .jc-area-confirmation__checker {
        padding:
            46px
            50px;
    }
    .jc-next-steps__support {
        top:
            calc(
                var(--jc-header-height, 88px) +
                28px
            );
    }

    .jc-next-steps__step-card {
        min-height: 300px;
    }
      .jc-contact-form__information,
    .jc-contact-form__panel {
        min-height: 770px;
    }

    .jc-contact-form__panel {
        padding:
            46px
            50px;
    }

    .jc-contact-hero__layout {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(330px, 390px);
    }

    .jc-contact-hero__panel {
        max-width: 390px;
        justify-self: end;
    }

    .jc-contact-hero__title {
        font-size:
            clamp(4.1rem, 6vw, 6.8rem);
    }

}


/* 2. TABLET AND SMALL LAPTOP */
@media (min-width: 768px) and (max-width: 1199px) {
     .jc-area-confirmation {
        padding:
            clamp(90px, 9vw, 122px)
            0;
    }

    .jc-area-confirmation__header {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(280px, 0.68fr);
        gap: 46px;

        margin-bottom: 66px;
    }

    .jc-area-confirmation__heading h2 {
        font-size:
            clamp(2.9rem, 5.8vw, 4.7rem);
    }

    .jc-area-confirmation__layout {
        grid-template-columns:
            minmax(275px, 0.68fr)
            minmax(0, 1.32fr);
        gap: 28px;
    }

    .jc-area-confirmation__coverage {
        min-height: 670px;
        padding: 34px 28px;
    }

    .jc-area-confirmation__coverage h3 {
        font-size:
            clamp(2rem, 3.6vw, 2.85rem);
    }

    .jc-area-confirmation__community-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .jc-area-confirmation__community-grid button {
        min-height: 45px;
    }

    .jc-area-confirmation__checker {
        min-height: 670px;
        padding: 35px 29px;
    }

    .jc-area-confirmation__checker-header {
        display: grid;
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .jc-area-confirmation__checker-status {
        width: fit-content;
    }

    .jc-area-confirmation__control {
        grid-template-columns:
            47px
            minmax(0, 1fr);
    }

    .jc-area-confirmation__control button {
        grid-column: 1 / -1;

        width: calc(100% - 14px);
        margin:
            0
            7px
            7px;
    }

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

    .jc-area-confirmation__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .jc-area-confirmation__phone {
        text-align: left;
    }
       .jc-next-steps {
        padding:
            clamp(90px, 9vw, 122px)
            0;
    }

    .jc-next-steps__header {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(280px, 0.68fr);
        gap: 46px;

        margin-bottom: 66px;
    }

    .jc-next-steps__heading h2 {
        font-size:
            clamp(2.9rem, 5.8vw, 4.7rem);
    }

    .jc-next-steps__layout {
        grid-template-columns:
            minmax(0, 1.22fr)
            minmax(275px, 0.78fr);
        gap: 30px;
    }

    .jc-next-steps__step {
        grid-template-columns:
            52px
            minmax(0, 1fr);
        gap: 17px;
    }

    .jc-next-steps__marker {
        width: 52px;
        height: 52px;
    }

    .jc-next-steps__timeline-line {
        left: 25px;
    }

    .jc-next-steps__step-card {
        padding: 29px 25px;
    }

    .jc-next-steps__step-card h3 {
        font-size:
            clamp(1.85rem, 3vw, 2.55rem);
    }

    .jc-next-steps__support {
        position: relative;
        top: auto;
    }

    .jc-next-steps__support-inner {
        padding: 34px 27px;
    }

    .jc-next-steps__support h3 {
        font-size:
            clamp(2rem, 3.4vw, 2.8rem);
    }

    .jc-next-steps__reassurance {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .jc-next-steps__reassurance-items {
        justify-content: flex-start;
    }
      .jc-contact-form {
        padding:
            clamp(90px, 9vw, 122px)
            0;
    }

    .jc-contact-form__section-header {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(280px, 0.68fr);
        gap: 46px;

        margin-bottom: 66px;
    }

    .jc-contact-form__heading h2 {
        font-size:
            clamp(2.9rem, 5.8vw, 4.7rem);
    }

    .jc-contact-form__layout {
        grid-template-columns:
            minmax(270px, 0.64fr)
            minmax(0, 1.36fr);
        gap: 27px;
    }

    .jc-contact-form__information {
        min-height: 720px;
        padding: 34px 28px;
    }

    .jc-contact-form__information h3 {
        font-size:
            clamp(2rem, 3.6vw, 2.85rem);
    }

    .jc-contact-form__panel {
        min-height: 720px;
        padding: 35px 29px;
    }

    .jc-contact-form__panel-header {
        display: grid;
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .jc-contact-form__draft-status {
        width: fit-content;
    }

    .jc-contact-form__fields {
        gap:
            21px
            15px;
    }

    .jc-contact-form__choices {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .jc-contact-form__choices label > span {
        justify-content: flex-start;

        min-height: 47px;
    }

    .jc-contact-hero__frame {
        inset: 13px;
    }

    .jc-contact-hero__layout {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(275px, 315px);
        gap: 36px;

        padding-top: 31px;
        padding-bottom: 101px;
    }

    .jc-contact-hero__content::before {
        left: -20px;
    }

    .jc-contact-hero__title {
        font-size:
            clamp(3.45rem, 6.7vw, 5.25rem);
    }

    .jc-contact-hero__description {
        font-size: 0.92rem;
        line-height: 1.68;
    }

    .jc-contact-hero__panel {
        padding: 27px 23px;
    }

    .jc-contact-hero__panel h2 {
        font-size:
            clamp(1.9rem, 3.1vw, 2.6rem);
    }

    .jc-contact-hero__panel-description {
        font-size: 0.68rem;
    }

    .jc-contact-hero__steps li {
        min-height: 61px;
    }

    .jc-contact-hero__steps strong {
        font-size: 0.98rem;
    }

    .jc-contact-hero__steps div span {
        font-size: 0.56rem;
    }

    .jc-contact-hero__footer-item:nth-of-type(3),
    .jc-contact-hero__footer-divider:nth-of-type(2) {
        display: none;
    }

}


/* 3. MOBILE */
@media (min-width: 481px) and (max-width: 767px) {
     .jc-area-confirmation {
        padding:
            84px
            0
            76px;
    }

    .jc-area-confirmation__decor-contour--one {
        top: -350px;
        right: -380px;
    }

    .jc-area-confirmation__decor-contour--two {
        left: -520px;
    }

    .jc-area-confirmation__decor-leaf {
        left: -145px;
    }

    .jc-area-confirmation__header {
        grid-template-columns: 1fr;
        gap: 44px;

        margin-bottom: 58px;
    }

    .jc-area-confirmation__heading::after {
        bottom: -21px;
    }

    .jc-area-confirmation__heading h2 {
        font-size:
            clamp(2.8rem, 9vw, 4rem);
    }

    .jc-area-confirmation__layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .jc-area-confirmation__coverage {
        min-height: auto;
    }

    .jc-area-confirmation__community-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .jc-area-confirmation__community-grid button {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 4px;

        min-height: 66px;

        text-align: center;
    }

    .jc-area-confirmation__checker {
        min-height: auto;
    }

    .jc-area-confirmation__context-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .jc-area-confirmation__strip {
        grid-template-columns: 1fr;
        gap: 25px;

        padding: 28px;
    }

    .jc-area-confirmation__strip-details {
        justify-content: flex-start;
    }

     .jc-next-steps {
        padding:
            84px
            0
            76px;
    }

    .jc-next-steps__decor-circle {
        top: -390px;
        right: -390px;
    }

    .jc-next-steps__decor-leaf--one {
        left: -145px;
    }

    .jc-next-steps__header {
        grid-template-columns: 1fr;
        gap: 44px;

        margin-bottom: 58px;
    }

    .jc-next-steps__heading::after {
        bottom: -21px;
    }

    .jc-next-steps__heading h2 {
        font-size:
            clamp(2.8rem, 9vw, 4rem);
    }

    .jc-next-steps__layout {
        grid-template-columns: 1fr;
        gap: 31px;
    }

    .jc-next-steps__timeline {
        gap: 22px;
    }

    .jc-next-steps__step {
        grid-template-columns:
            54px
            minmax(0, 1fr);
        gap: 18px;
    }

    .jc-next-steps__marker {
        width: 54px;
        height: 54px;
    }

    .jc-next-steps__timeline-line {
        left: 26px;
    }

    .jc-next-steps__support {
        position: relative;
        top: auto;
    }

    .jc-next-steps__support-list {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
        gap: 1px;

        border: 0;

        background: var(--jc-divider);
    }

    .jc-next-steps__support-list li {
        grid-template-columns: 1fr;
        align-content: start;

        min-height: 170px;
        padding:
            20px
            16px;

        border: 0;

        background:
            rgba(255, 255, 255, 0.60);
    }

    .jc-next-steps__reassurance {
        grid-template-columns: 1fr;
        gap: 25px;

        padding: 28px;
    }

    .jc-next-steps__reassurance-items {
        justify-content: flex-start;
    }

       .jc-contact-form {
        padding:
            84px
            0
            76px;
    }

    .jc-contact-form__decor-arc {
        top: -360px;
        right: -380px;
    }

    .jc-contact-form__decor-leaf--one {
        left: -145px;
    }

    .jc-contact-form__section-header {
        grid-template-columns: 1fr;
        gap: 44px;

        margin-bottom: 58px;
    }

    .jc-contact-form__heading::after {
        bottom: -21px;
    }

    .jc-contact-form__heading h2 {
        font-size:
            clamp(2.8rem, 9vw, 4rem);
    }

    .jc-contact-form__layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .jc-contact-form__information {
        min-height: auto;
    }

    .jc-contact-form__contact-list {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
        gap: 1px;

        background:
            rgba(255, 255, 255, 0.11);
    }

    .jc-contact-form__contact-item {
        grid-template-columns: 1fr;
        align-content: start;

        min-height: 180px;
        padding:
            21px
            17px;

        border: 0;

        background:
            rgba(16, 22, 9, 0.38);
    }

    .jc-contact-form__privacy-note {
        margin-top: 29px;
    }

    .jc-contact-form__panel {
        min-height: 720px;
    }

    .jc-contact-form__panel-header {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .jc-contact-form__draft-status {
        width: fit-content;
    }

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

    .jc-contact-form__choices {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .jc-contact-form__summary-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .jc-contact-hero__image {
        object-position: 61% center;
    }

    .jc-contact-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(11, 15, 7, 0.95) 0%,
                rgba(18, 24, 10, 0.81) 65%,
                rgba(18, 24, 10, 0.52) 100%
            ),
            linear-gradient(
                180deg,
                transparent 20%,
                rgba(8, 11, 5, 0.68) 100%
            );
    }

    .jc-contact-hero__frame {
        inset: 10px;
    }

    .jc-contact-hero__layout {
        display: flex;
        align-items: center;

        padding-top: 25px;
        padding-bottom: 88px;
    }

    .jc-contact-hero__content {
        width: min(100%, 620px);
    }

    .jc-contact-hero__content::before {
        display: none;
    }

    .jc-contact-hero__breadcrumb {
        margin-bottom: 14px;
    }

    .jc-contact-hero__eyebrow {
        margin-bottom: 15px;

        font-size: 0.59rem;
        letter-spacing: 0.13em;
    }

    .jc-contact-hero__eyebrow-line {
        width: 31px;
    }

    .jc-contact-hero__title {
        margin-bottom: 20px;

        font-size:
            clamp(3.2rem, 10.5vw, 4.65rem);

        line-height: 0.88;
    }

    .jc-contact-hero__description {
        max-width: 550px;
        margin-bottom: 24px;

        font-size: 0.89rem;
        line-height: 1.65;
    }

    .jc-contact-hero__actions {
        gap: 20px;
    }

    .jc-contact-hero__primary {
        min-height: 52px;
    }

    .jc-contact-hero__details {
        margin-top: 20px;
    }

    .jc-contact-hero__panel {
        display: none;
    }

    .jc-contact-hero__footer,
    .jc-contact-hero__footer-inner {
        min-height: 64px;
    }

    .jc-contact-hero__footer-item:nth-of-type(2),
    .jc-contact-hero__footer-item:nth-of-type(3),
    .jc-contact-hero__footer-divider {
        display: none;
    }

}


/* 4. SMALL MOBILE */
@media (max-width: 480px) {
     .jc-area-confirmation {
        padding:
            72px
            0
            66px;
    }

    .jc-area-confirmation__decor-contour--one {
        top: -420px;
        right: -465px;

        opacity: 0.66;
    }

    .jc-area-confirmation__decor-contour--two,
    .jc-area-confirmation__decor-leaf,
    .jc-area-confirmation__decor-grid,
    .jc-area-confirmation__decor-route {
        display: none;
    }

    .jc-area-confirmation__header {
        grid-template-columns: 1fr;
        gap: 39px;

        margin-bottom: 49px;
    }

    .jc-area-confirmation__heading::after {
        bottom: -18px;
    }

    .jc-area-confirmation__heading h2 {
        font-size:
            clamp(2.5rem, 12vw, 3.55rem);

        line-height: 0.97;
    }

    .jc-area-confirmation__introduction p {
        font-size: 0.87rem;
        line-height: 1.73;
    }

    .jc-area-confirmation__layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .jc-area-confirmation__coverage {
        min-height: auto;
        padding:
            31px
            21px
            27px;

        border-radius: var(--jc-radius-lg);
    }

    .jc-area-confirmation__coverage h3 {
        font-size:
            clamp(2rem, 10vw, 2.8rem);
    }

    .jc-area-confirmation__community-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .jc-area-confirmation__community-grid button {
        min-height: 50px;
    }

    .jc-area-confirmation__checker {
        min-height: auto;
        padding:
            30px
            19px
            24px;

        border-radius: var(--jc-radius-lg);
    }

    .jc-area-confirmation__checker-header {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;

        margin-bottom: 23px;
        padding-bottom: 20px;
    }

    .jc-area-confirmation__checker-header h3 {
        font-size:
            clamp(1.9rem, 9vw, 2.65rem);
    }

    .jc-area-confirmation__checker-status {
        width: fit-content;

        font-size: 0.48rem;
    }

    .jc-area-confirmation__control {
        grid-template-columns:
            45px
            minmax(0, 1fr);
    }

    .jc-area-confirmation__control-icon {
        width: 45px;
    }

    .jc-area-confirmation__control button {
        grid-column: 1 / -1;

        width: calc(100% - 14px);
        margin:
            0
            7px
            7px;
    }

    .jc-area-confirmation__guidance,
    .jc-area-confirmation__result {
        grid-template-columns:
            45px
            minmax(0, 1fr);
        gap: 13px;

        padding:
            18px
            16px;
    }

    .jc-area-confirmation__result-icon {
        width: 43px;
        height: 43px;

        font-size: 1.4rem;
    }

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

    .jc-area-confirmation__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .jc-area-confirmation__actions
    .jc-button {
        width: 100%;
    }

    .jc-area-confirmation__phone {
        text-align: center;
    }

    .jc-area-confirmation__strip {
        grid-template-columns: 1fr;
        gap: 23px;

        margin-top: 44px;
        padding:
            25px
            21px;
    }

    .jc-area-confirmation__strip-details {
        display: grid;
        justify-content: stretch;
        gap: 12px;
    }

    .jc-next-steps {
        padding:
            72px
            0
            66px;
    }

    .jc-next-steps__decor-circle {
        top: -455px;
        right: -470px;

        opacity: 0.07;
    }

    .jc-next-steps__decor-leaf,
    .jc-next-steps__decor-grid,
    .jc-next-steps__decor-path {
        display: none;
    }

    .jc-next-steps__header {
        grid-template-columns: 1fr;
        gap: 39px;

        margin-bottom: 49px;
    }

    .jc-next-steps__heading::after {
        bottom: -18px;
    }

    .jc-next-steps__heading h2 {
        font-size:
            clamp(2.5rem, 12vw, 3.55rem);

        line-height: 0.97;
    }

    .jc-next-steps__introduction p {
        font-size: 0.87rem;
        line-height: 1.73;
    }

    .jc-next-steps__layout {
        grid-template-columns: 1fr;
        gap: 23px;
    }

    .jc-next-steps__timeline {
        gap: 18px;
    }

    .jc-next-steps__timeline-line {
        left: 20px;
    }

    .jc-next-steps__step {
        grid-template-columns:
            42px
            minmax(0, 1fr);
        gap: 13px;
    }

    .jc-next-steps__marker {
        width: 42px;
        height: 42px;
    }

    .jc-next-steps__marker-ring {
        inset: -5px;
    }

    .jc-next-steps__step-card {
        padding:
            26px
            19px;

        border-radius: var(--jc-radius-lg);
    }

    .jc-next-steps__step:hover
    .jc-next-steps__step-card,
    .jc-next-steps__step.is-active
    .jc-next-steps__step-card {
        transform: none;
    }

    .jc-next-steps__step-icon {
        width: 39px;
        height: 39px;
    }

    .jc-next-steps__step-icon svg {
        width: 19px;
        height: 19px;
    }

    .jc-next-steps__step-card h3 {
        font-size:
            clamp(1.85rem, 9.5vw, 2.65rem);
    }

    .jc-next-steps__step-card > p {
        font-size: 0.74rem;
        line-height: 1.68;
    }

    .jc-next-steps__support {
        position: relative;
        top: auto;
    }

    .jc-next-steps__support-inner {
        padding:
            31px
            21px
            26px;

        border-radius: var(--jc-radius-lg);
    }

    .jc-next-steps__support h3 {
        font-size:
            clamp(2rem, 10vw, 2.8rem);
    }

    .jc-next-steps__support-list li {
        grid-template-columns:
            28px
            minmax(0, 1fr);
    }

    .jc-next-steps__support-actions {
        grid-template-columns: 1fr;
    }

    .jc-next-steps__reassurance {
        grid-template-columns: 1fr;
        gap: 23px;

        margin-top: 44px;
        padding:
            25px
            21px;
    }

    .jc-next-steps__reassurance-items {
        display: grid;
        justify-content: stretch;
        gap: 12px;
    }

     .jc-contact-form {
        padding:
            72px
            0
            66px;
    }

    .jc-contact-form__decor-arc {
        top: -420px;
        right: -455px;

        opacity: 0.07;
    }

    .jc-contact-form__decor-leaf,
    .jc-contact-form__decor-grid,
    .jc-contact-form__decor-route {
        display: none;
    }

    .jc-contact-form__section-header {
        grid-template-columns: 1fr;
        gap: 39px;

        margin-bottom: 49px;
    }

    .jc-contact-form__heading::after {
        bottom: -18px;
    }

    .jc-contact-form__heading h2 {
        font-size:
            clamp(2.5rem, 12vw, 3.55rem);

        line-height: 0.97;
    }

    .jc-contact-form__section-intro p {
        font-size: 0.87rem;
        line-height: 1.73;
    }

    .jc-contact-form__layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .jc-contact-form__information {
        min-height: auto;
        padding:
            31px
            21px
            27px;

        border-radius: var(--jc-radius-lg);
    }

    .jc-contact-form__information h3 {
        font-size:
            clamp(2rem, 10vw, 2.8rem);
    }

    .jc-contact-form__contact-item {
        min-height: 84px;
    }

    .jc-contact-form__process {
        margin-top: 25px;
    }

    .jc-contact-form__privacy-note {
        margin-top: 27px;
    }

    .jc-contact-form__panel {
        min-height: 680px;
        padding:
            30px
            19px
            24px;

        border-radius: var(--jc-radius-lg);
    }

    .jc-contact-form__panel-header {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;

        margin-bottom: 23px;
        padding-bottom: 20px;
    }

    .jc-contact-form__panel-header h3 {
        font-size:
            clamp(1.9rem, 9vw, 2.65rem);
    }

    .jc-contact-form__draft-status {
        width: fit-content;

        font-size: 0.48rem;
    }

    .jc-contact-form__progress-step {
        gap: 8px;

        min-height: 51px;
        padding:
            8px
            9px;
    }

    .jc-contact-form__progress-step
    > span:first-child {
        width: 29px;
        height: 29px;
    }

    .jc-contact-form__progress-step strong {
        font-size: 0.58rem;
    }

    .jc-contact-form__progress-step small {
        display: none;
    }

    .jc-contact-form__fields {
        grid-template-columns: 1fr;
        gap: 19px;
    }

    .jc-contact-form__field--wide {
        grid-column: auto;
    }

    .jc-contact-form__choices {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .jc-contact-form__choices label > span {
        justify-content: flex-start;

        min-height: 48px;
    }

    .jc-contact-form__summary-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .jc-contact-form__summary-grid div {
        padding:
            0
            0
            12px;

        border-right: 0;
        border-bottom:
            1px solid
            var(--jc-divider);
    }

    .jc-contact-form__summary-grid div:last-child {
        padding-bottom: 0;

        border-bottom: 0;
    }

    .jc-contact-form__field-footer {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .jc-contact-form__navigation {
        align-items: stretch;
        flex-direction: column;
    }

    .jc-contact-form__navigation-note {
        text-align: center;
    }

    .jc-contact-form__next,
    .jc-contact-form__submit {
        width: 100%;
    }

    .jc-contact-form__back {
        justify-content: center;

        width: 100%;
    }

    .jc-contact-hero__image {
        object-position: 64% center;
    }

    .jc-contact-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(10, 14, 6, 0.96) 0%,
                rgba(17, 23, 9, 0.84) 72%,
                rgba(17, 23, 9, 0.58) 100%
            ),
            linear-gradient(
                180deg,
                transparent 15%,
                rgba(7, 10, 4, 0.72) 100%
            );
    }

    .jc-contact-hero__frame {
        inset: 8px;
    }

    .jc-contact-hero__decor-circle {
        top: -360px;
        right: -410px;

        opacity: 0.08;
    }

    .jc-contact-hero__decor-leaf {
        display: none;
    }

    .jc-contact-hero__layout {
        display: flex;
        align-items: center;

        padding-top: 17px;
        padding-bottom: 68px;
    }

    .jc-contact-hero__content::before {
        display: none;
    }

    .jc-contact-hero__breadcrumb {
        margin-bottom: 10px;
    }

    .jc-contact-hero__breadcrumb ol {
        font-size: 0.52rem;
    }

    .jc-contact-hero__eyebrow {
        gap: 9px;

        margin-bottom: 12px;

        font-size: 0.53rem;
        letter-spacing: 0.09em;
    }

    .jc-contact-hero__eyebrow-line {
        width: 24px;
    }

    .jc-contact-hero__eyebrow-point {
        display: none;
    }

    .jc-contact-hero__title {
        margin-bottom: 16px;

        font-size:
            clamp(2.75rem, 12.7vw, 4rem);

        line-height: 0.91;
    }

    .jc-contact-hero__description {
        max-width: 430px;
        margin-bottom: 19px;

        font-size: 0.8rem;
        line-height: 1.56;
    }

    .jc-contact-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;

        width: min(100%, 310px);
    }

    .jc-contact-hero__primary {
        width: 100%;
        min-height: 49px;
    }

    .jc-contact-hero__call {
        min-height: 39px;
    }

    .jc-contact-hero__call-icon {
        width: 37px;
        height: 37px;
    }

    .jc-contact-hero__details {
        display: none;
    }

    .jc-contact-hero__panel {
        display: none;
    }

    .jc-contact-hero__footer,
    .jc-contact-hero__footer-inner {
        min-height: 55px;
    }

    .jc-contact-hero__footer-item {
        display: none;
    }

    .jc-contact-hero__footer-divider {
        display: none;
    }

    .jc-contact-hero__scroll {
        margin-left: 0;

        font-size: 0.51rem;
    }

    .jc-contact-hero__scroll-line {
        width: 29px;
    }

}