/* ============================================================
   03. CONTACT HERO
   AMAYA'S LANDSCAPING LLC
   ============================================================ */


/* ============================================================
   01. HERO HEIGHT

   IMPORTANT:

   TOPBAR + HEADER + CONTACT HERO <= 100svh

   The contact hero can be shorter on large displays,
   but can never exceed the available first-screen height.
   ============================================================ */

.amaya-contact-hero {
    position: relative;

    z-index: 1;

    width: 100%;

    height:
        min(
            680px,
            calc(
                100svh -
                var(--amaya-first-screen-ui)
            )
        );

    overflow: hidden;

    color:
        var(--amaya-white);

    background:
        var(--amaya-dark-surface-deep);

    isolation: isolate;
}



/* ============================================================
   02. BACKGROUND MEDIA
   ============================================================ */

.amaya-contact-hero__media {
    position: absolute;

    inset: 0;

    z-index: -4;

    overflow: hidden;

    pointer-events: none;
}


.amaya-contact-hero__image {
    position: absolute;

    inset: -5% 0;

    width: 100%;
    height: 110%;

    object-fit: cover;

    object-position:
        center 55%;

    transform:
        translate3d(
            0,
            var(--amaya-contact-parallax-y, 0px),
            0
        )
        scale(1.035);

    will-change:
        transform;

    backface-visibility:
        hidden;

    -webkit-backface-visibility:
        hidden;
}



/* ============================================================
   03. OVERLAY
   ============================================================ */

.amaya-contact-hero__overlay {
    position: absolute;

    inset: 0;

    z-index: -3;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(7, 14, 9, .92) 0%,
            rgba(10, 22, 14, .78) 38%,
            rgba(10, 22, 14, .46) 67%,
            rgba(7, 14, 9, .28) 100%
        ),
        linear-gradient(
            180deg,
            rgba(7, 14, 9, .08) 0%,
            rgba(7, 14, 9, .06) 50%,
            rgba(7, 14, 9, .60) 100%
        );
}



/* ============================================================
   04. AMBIENT LIGHT
   ============================================================ */

.amaya-contact-hero__ambient {
    position: absolute;

    z-index: -2;

    top: -240px;
    right: -190px;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    pointer-events: none;

    background:
        radial-gradient(
            circle,
            rgba(162, 198, 81, .12),
            transparent 67%
        );
}



/* ============================================================
   05. CONTAINER
   ============================================================ */

.amaya-contact-hero__container {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(190px, .32fr);

    align-items: center;

    gap:
        clamp(
            55px,
            8vw,
            130px
        );

    height: 100%;

    padding-bottom: 42px;
}



/* ============================================================
   06. CONTENT
   ============================================================ */

.amaya-contact-hero__content {
    width: 100%;

    max-width: 800px;
}



/* ============================================================
   07. EYEBROW
   ============================================================ */

.amaya-contact-hero__eyebrow {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color:
        rgba(255, 255, 255, .72);

    font-size: .66rem;

    font-weight: 700;

    line-height: 1;

    letter-spacing: .14em;

    text-transform: uppercase;
}


.amaya-contact-hero__eyebrow-number {
    color:
        var(--amaya-brass-light);

    font-size: .57rem;
}


.amaya-contact-hero__eyebrow-line {
    width: 35px;
    height: 1px;

    background:
        rgba(162, 198, 81, .54);
}



/* ============================================================
   08. TITLE
   ============================================================ */

.amaya-contact-hero__title {
    max-width: 850px;

    margin:
        0
        0
        21px;

    color:
        var(--amaya-white);

    font-size:
        clamp(
            3.6rem,
            5.8vw,
            6.4rem
        );

    font-weight: 600;

    line-height: .87;

    letter-spacing: -.044em;
}


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

    overflow: hidden;

    padding-bottom: .08em;
}


.amaya-contact-hero__title-line > span {
    display: block;
}


.amaya-contact-hero__title-accent {
    color:
        #E1D1B3;

    font-style: italic;

    font-weight: 500;
}



/* ============================================================
   09. DESCRIPTION
   ============================================================ */

.amaya-contact-hero__description {
    max-width: 620px;

    margin:
        0
        0
        26px;

    color:
        rgba(255, 255, 255, .68);

    font-size:
        clamp(
            .88rem,
            1.05vw,
            1rem
        );

    line-height: 1.72;
}



/* ============================================================
   10. ACTIONS
   ============================================================ */

.amaya-contact-hero__actions {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap:
        12px
        22px;
}



/* ============================================================
   11. PRIMARY BUTTON
   ============================================================ */

.amaya-contact-hero__button--primary {
    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    min-height: 50px;

    padding:
        0 13px
        0 19px;

    overflow: hidden;

    color:
        var(--amaya-ink);

    background:
        var(--amaya-leaf-light);

    border:
        1px solid
        var(--amaya-leaf-light);

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

    box-shadow:
        0 15px 35px
        rgba(5, 13, 8, .18);

    font-size: .66rem;

    font-weight: 800;

    letter-spacing: .055em;

    isolation: isolate;
}


.amaya-contact-hero__button--primary::before {
    content: '';

    position: absolute;

    inset: 0;

    z-index: -1;

    background:
        var(--amaya-white);

    transform:
        translateX(-102%);

    transition:
        transform
        .48s
        cubic-bezier(.22, 1, .36, 1);
}


.amaya-contact-hero__button--primary:hover::before {
    transform:
        translateX(0);
}



/* ============================================================
   12. BUTTON ICON
   ============================================================ */

.amaya-contact-hero__button-icon {
    display: grid;

    place-items: center;

    width: 25px;
    height: 25px;

    color:
        var(--amaya-white);

    background:
        var(--amaya-forest-deep);

    border-radius: 4px;

    transition:
        transform var(--amaya-transition);
}


.amaya-contact-hero__button--primary:hover
.amaya-contact-hero__button-icon {
    transform:
        translateY(3px);
}


.amaya-contact-hero__button-icon svg {
    width: 13px;
    height: 13px;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}



/* ============================================================
   13. CALL BUTTON
   ============================================================ */

.amaya-contact-hero__button--call {
    display: inline-flex;

    align-items: center;

    gap: 10px;

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


.amaya-contact-hero__call-icon {
    display: grid;

    flex: 0 0 auto;

    place-items: center;

    width: 42px;
    height: 42px;

    color:
        var(--amaya-leaf-light);

    background:
        rgba(255, 255, 255, .065);

    border:
        1px solid
        rgba(255, 255, 255, .13);

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

    backdrop-filter:
        blur(8px);

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


.amaya-contact-hero__call-icon svg {
    width: 17px;
    height: 17px;

    stroke: currentColor;

    stroke-width: 1.55;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.amaya-contact-hero__call-copy {
    display: flex;

    flex-direction: column;

    gap: 1px;
}


.amaya-contact-hero__call-copy small {
    color:
        rgba(255, 255, 255, .46);

    font-size: .52rem;

    font-weight: 600;

    letter-spacing: .05em;

    text-transform: uppercase;
}


.amaya-contact-hero__call-copy strong {
    color:
        rgba(255, 255, 255, .92);

    font-size: .72rem;

    font-weight: 600;
}


.amaya-contact-hero__button--call:hover
.amaya-contact-hero__call-copy strong {
    color:
        var(--amaya-leaf-light);
}



/* ============================================================
   14. SIDE DETAIL
   ============================================================ */

.amaya-contact-hero__side {
    align-self: center;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    max-width: 230px;

    padding-left: 20px;

    border-left:
        1px solid
        rgba(255, 255, 255, .14);
}


.amaya-contact-hero__side-line {
    width: 30px;
    height: 1px;

    margin-bottom: 14px;

    background:
        var(--amaya-brass-light);
}


.amaya-contact-hero__side > span {
    margin-bottom: 4px;

    color:
        var(--amaya-leaf-light);

    font-size: .54rem;

    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;
}


.amaya-contact-hero__side strong {
    margin-bottom: 7px;

    color:
        var(--amaya-white);

    font-family:
        var(--amaya-font-heading);

    font-size:
        1.75rem;

    font-weight: 600;

    line-height: .95;
}


.amaya-contact-hero__side small {
    color:
        rgba(255, 255, 255, .48);

    font-size: .62rem;

    line-height: 1.55;
}



/* ============================================================
   15. BOTTOM DETAIL
   ============================================================ */

.amaya-contact-hero__bottom {
    position: absolute;

    right: 0;
    bottom: 0;
    left: 0;

    z-index: 3;

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

    background:
        rgba(5, 12, 8, .20);
}


.amaya-contact-hero__bottom-inner {
    display: flex;

    align-items: center;

    gap: 13px;

    min-height: 35px;

    color:
        rgba(255, 255, 255, .42);

    font-size: .49rem;

    font-weight: 600;

    letter-spacing: .11em;

    text-transform: uppercase;
}


.amaya-contact-hero__bottom-inner
> span:nth-child(even) {
    width: 18px;
    height: 1px;

    background:
        rgba(177, 138, 82, .42);
}



/* ============================================================
   16. INITIAL ANIMATION STATE
   ============================================================ */

[data-amaya-contact-hero-title] {
    opacity: 0;

    transform:
        translate3d(
            0,
            108%,
            0
        );
}


[data-amaya-contact-hero-reveal] {
    opacity: 0;

    transform:
        translate3d(
            0,
            14px,
            0
        );
}



/* ============================================================
   17. HERO READY
   ============================================================ */

.amaya-contact-hero.amaya-contact-hero--ready
[data-amaya-contact-hero-title] {
    opacity: 1;

    transform:
        translate3d(
            0,
            0,
            0
        );

    transition:
        opacity .8s ease,
        transform 1s
        cubic-bezier(.16, 1, .3, 1);
}


.amaya-contact-hero.amaya-contact-hero--ready
.amaya-contact-hero__title-line:nth-child(2)
[data-amaya-contact-hero-title] {
    transition-delay: .09s;
}


.amaya-contact-hero.amaya-contact-hero--ready
[data-amaya-contact-hero-reveal] {
    opacity: 1;

    transform:
        translate3d(
            0,
            0,
            0
        );

    transition:
        opacity .7s ease,
        transform .85s
        cubic-bezier(.22, 1, .36, 1);
}


.amaya-contact-hero.amaya-contact-hero--ready
.amaya-contact-hero__description {
    transition-delay: .14s;
}


.amaya-contact-hero.amaya-contact-hero--ready
.amaya-contact-hero__actions {
    transition-delay: .21s;
}


.amaya-contact-hero.amaya-contact-hero--ready
.amaya-contact-hero__side {
    transition-delay: .27s;
}































/* ============================================================
   04. CONTACT INFORMATION
   AMAYA'S LANDSCAPING LLC
   ============================================================ */


/* ============================================================
   01. SECTION
   ============================================================ */

.amaya-contact-info {
    position: relative;

    z-index: 5;

    width: 100%;

    background:
        var(--amaya-white);

    border-bottom:
        1px solid
        var(--amaya-border);

    box-shadow:
        0 12px 35px
        rgba(31, 67, 43, .045);

    isolation: isolate;
}



/* Subtle upper accent */

.amaya-contact-info::before {
    content: '';

    position: absolute;

    top: 0;
    left: 50%;

    width:
        min(
            calc(
                100% -
                (var(--amaya-inline-space) * 2)
            ),
            var(--amaya-container-width)
        );

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(177, 138, 82, .30),
            rgba(45, 91, 57, .24),
            transparent
        );

    transform:
        translateX(-50%);

    pointer-events: none;
}



/* ============================================================
   02. CONTAINER
   ============================================================ */

.amaya-contact-info__container {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    align-items: stretch;
}



/* ============================================================
   03. ITEM
   ============================================================ */

.amaya-contact-info__item {
    position: relative;

    display: grid;

    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 17px;

    min-width: 0;

    min-height: 126px;

    padding:
        23px
        30px;

    color:
        var(--amaya-text);

    background:
        transparent;

    transition:
        background-color
        var(--amaya-transition),
        color
        var(--amaya-transition);
}



/* Vertical separators */

.amaya-contact-info__item:not(:last-child)::after {
    content: '';

    position: absolute;

    top: 24px;
    right: 0;
    bottom: 24px;

    width: 1px;

    background:
        rgba(45, 91, 57, .11);

    pointer-events: none;
}



/* Bottom hover accent */

.amaya-contact-info__item::before {
    content: '';

    position: absolute;

    right: 30px;
    bottom: 0;
    left: 30px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--amaya-leaf),
            var(--amaya-brass)
        );

    transform:
        scaleX(0);

    transform-origin:
        right center;

    transition:
        transform
        .45s
        cubic-bezier(.22, 1, .36, 1);

    pointer-events: none;
}


a.amaya-contact-info__item:hover::before,
a.amaya-contact-info__item:focus-visible::before {
    transform:
        scaleX(1);

    transform-origin:
        left center;
}


a.amaya-contact-info__item:hover,
a.amaya-contact-info__item:focus-visible {
    background:
        var(--amaya-background-soft);
}



/* ============================================================
   04. ICON
   ============================================================ */

.amaya-contact-info__icon {
    display: grid;

    flex: 0 0 auto;

    place-items: center;

    width: 45px;
    height: 45px;

    color:
        var(--amaya-forest);

    background:
        var(--amaya-sage-light);

    border:
        1px solid
        rgba(45, 91, 57, .11);

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

    transition:
        color var(--amaya-transition),
        background-color var(--amaya-transition),
        transform var(--amaya-transition);
}


.amaya-contact-info__icon svg {
    width: 19px;
    height: 19px;

    stroke:
        currentColor;

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}


a.amaya-contact-info__item:hover
.amaya-contact-info__icon {
    color:
        var(--amaya-white);

    background:
        var(--amaya-forest);

    transform:
        translateY(-2px);
}



/* ============================================================
   05. CONTENT
   ============================================================ */

.amaya-contact-info__content {
    display: flex;

    flex-direction: column;

    min-width: 0;

    gap: 3px;
}



/* ============================================================
   06. LABEL
   ============================================================ */

.amaya-contact-info__label {
    color:
        var(--amaya-brass);

    font-size: .54rem;

    font-weight: 800;

    line-height: 1;

    letter-spacing: .11em;

    text-transform: uppercase;
}



/* ============================================================
   07. MAIN VALUE
   ============================================================ */

.amaya-contact-info__value {
    overflow: hidden;

    color:
        var(--amaya-forest-deep);

    font-family:
        var(--amaya-font-heading);

    font-size:
        clamp(
            1.45rem,
            1.65vw,
            1.85rem
        );

    font-weight: 600;

    line-height: 1.05;

    letter-spacing: -.015em;

    text-overflow: ellipsis;

    white-space: nowrap;
}


.amaya-contact-info__value--email {
    font-family:
        var(--amaya-font-body);

    font-size:
        clamp(
            .76rem,
            .9vw,
            .9rem
        );

    font-weight: 650;

    letter-spacing: -.015em;
}



/* ============================================================
   08. HINT
   ============================================================ */

.amaya-contact-info__hint {
    color:
        var(--amaya-text-muted);

    font-size: .56rem;

    font-weight: 500;

    line-height: 1.35;
}



/* ============================================================
   09. ARROW
   ============================================================ */

.amaya-contact-info__arrow {
    display: grid;

    place-items: center;

    width: 31px;
    height: 31px;

    color:
        rgba(45, 91, 57, .45);

    border:
        1px solid
        rgba(45, 91, 57, .11);

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

    transition:
        color var(--amaya-transition),
        background-color var(--amaya-transition),
        border-color var(--amaya-transition),
        transform var(--amaya-transition);
}


.amaya-contact-info__arrow svg {
    width: 14px;
    height: 14px;

    stroke:
        currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}


a.amaya-contact-info__item:hover
.amaya-contact-info__arrow {
    color:
        var(--amaya-white);

    background:
        var(--amaya-forest);

    border-color:
        var(--amaya-forest);

    transform:
        translateX(3px);
}



/* ============================================================
   10. HOURS STATUS
   ============================================================ */

.amaya-contact-info__status {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding:
        6px
        8px;

    color:
        var(--amaya-forest-deep);

    background:
        rgba(131, 169, 56, .08);

    border:
        1px solid
        rgba(131, 169, 56, .15);

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

    font-size: .48rem;

    font-weight: 700;

    line-height: 1;

    letter-spacing: .05em;

    text-transform: uppercase;

    white-space: nowrap;
}


.amaya-contact-info__status-dot {
    width: 6px;
    height: 6px;

    background:
        var(--amaya-leaf);

    border-radius: 50%;

    box-shadow:
        0 0 0 3px
        rgba(131, 169, 56, .10);
}



/* ============================================================
   11. REVEAL STATE
   ============================================================ */

[data-amaya-contact-info-item] {
    opacity: 0;

    transform:
        translate3d(
            0,
            14px,
            0
        );
}


.amaya-contact-info.amaya-contact-info--visible
[data-amaya-contact-info-item] {
    opacity: 1;

    transform:
        translate3d(
            0,
            0,
            0
        );

    transition:
        opacity .65s ease,
        transform .78s
        cubic-bezier(.22, 1, .36, 1),

        background-color
        var(--amaya-transition);
}


.amaya-contact-info.amaya-contact-info--visible
[data-amaya-contact-info-item]:nth-child(2) {
    transition-delay: .07s;
}


.amaya-contact-info.amaya-contact-info--visible
[data-amaya-contact-info-item]:nth-child(3) {
    transition-delay: .14s;
}

































/* ============================================================
   05. ESTIMATE FORM
   AMAYA'S LANDSCAPING LLC
   ============================================================ */


/* ============================================================
   01. SECTION
   ============================================================ */

.amaya-estimate {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 92% 7%,
            rgba(131, 169, 56, .075),
            transparent 27rem
        ),
        radial-gradient(
            circle at 5% 93%,
            rgba(177, 138, 82, .065),
            transparent 25rem
        ),
        var(--amaya-ivory);

    isolation: isolate;
}



/* ============================================================
   02. DECORATION
   ============================================================ */

.amaya-estimate__ambient {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}


.amaya-estimate__ambient--one {
    top: 100px;
    right: -250px;

    width: 580px;
    height: 580px;

    border:
        1px solid
        rgba(45, 91, 57, .055);
}


.amaya-estimate__ambient--one::before,
.amaya-estimate__ambient--one::after {
    content: '';
    position: absolute;

    border:
        1px solid
        rgba(45, 91, 57, .045);

    border-radius: 50%;
}


.amaya-estimate__ambient--one::before {
    inset: 70px;
}


.amaya-estimate__ambient--one::after {
    inset: 145px;
}


.amaya-estimate__ambient--two {
    bottom: -310px;
    left: -280px;

    width: 650px;
    height: 650px;

    background:
        radial-gradient(
            circle,
            rgba(177, 138, 82, .08),
            transparent 67%
        );
}


.amaya-estimate__botanical {
    position: absolute;

    bottom: 3%;
    right: 2%;

    width: 170px;

    color:
        var(--amaya-forest);

    opacity: .045;

    pointer-events: none;
}


.amaya-estimate__botanical svg {
    width: 100%;
    height: auto;

    stroke: currentColor;
    stroke-width: 1.2;

    stroke-linecap: round;
    stroke-linejoin: round;
}



/* ============================================================
   03. CONTAINER
   ============================================================ */

.amaya-estimate__container {
    position: relative;
    z-index: 2;
}



/* ============================================================
   04. HEADER
   ============================================================ */

.amaya-estimate__header {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(280px, .65fr);

    align-items: end;

    gap:
        clamp(55px, 8vw, 125px);

    margin-bottom: 54px;
}


.amaya-estimate__eyebrow {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    color:
        var(--amaya-forest);

    font-size: .65rem;
    font-weight: 700;
    line-height: 1;

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


.amaya-estimate__eyebrow-number {
    color:
        var(--amaya-brass);

    font-size: .58rem;
}


.amaya-estimate__eyebrow-line {
    width: 36px;
    height: 1px;

    background:
        rgba(45, 91, 57, .36);
}


.amaya-estimate__title {
    max-width: 790px;

    margin: 0;

    color:
        var(--amaya-ink);

    font-size:
        clamp(3.35rem, 5vw, 5.65rem);

    font-weight: 600;
    line-height: .89;

    letter-spacing: -.042em;
}


.amaya-estimate__title span {
    display: block;

    color:
        var(--amaya-forest);

    font-style: italic;
    font-weight: 500;
}


.amaya-estimate__header-copy {
    max-width: 430px;
}


.amaya-estimate__header-copy p {
    margin:
        0
        0
        17px;

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

    font-size: .9rem;
    line-height: 1.72;
}


.amaya-estimate__header-note {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color:
        var(--amaya-forest-deep);

    font-size: .57rem;
    font-weight: 700;

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


.amaya-estimate__header-note > span:first-child {
    display: grid;
    place-items: center;

    width: 24px;
    height: 24px;

    color:
        var(--amaya-white);

    background:
        var(--amaya-forest);

    border-radius: 4px;

    font-size: .6rem;
}



/* ============================================================
   05. MAIN LAYOUT
   ============================================================ */

.amaya-estimate__layout {
    display: grid;

    grid-template-columns:
        minmax(285px, .42fr)
        minmax(0, 1fr);

    align-items: stretch;

    overflow: hidden;

    background:
        var(--amaya-white);

    border:
        1px solid
        rgba(45, 91, 57, .11);

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

    box-shadow:
        0 28px 75px
        rgba(31, 67, 43, .10);
}



/* ============================================================
   06. ASIDE
   ============================================================ */

.amaya-estimate__aside {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;

    padding:
        42px
        34px;

    overflow: hidden;

    color:
        var(--amaya-white);

    background:
        var(--amaya-dark-surface-deep);

    isolation: isolate;
}


.amaya-estimate__aside::before {
    content: '';

    position: absolute;

    top: -170px;
    right: -: isolate;
}


.amaya-estimate__aside::before {
    content: '';

    position: absolute;

    top: -170px;
    right: -180px;

    z-index: -1;

    width: 390px;
    height: 390px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(162, 198, 81, .13),
            transparent 67%
        );
}


.amaya-estimate__aside::after {
    content: '';

    position: absolute;

    right: 25px;
    bottom: 25px;
    left: 25px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(177, 138, 82, .28),
            transparent
        );

    pointer-events: none;
}


.amaya-estimate__aside-kicker {
    display: block;

    margin-bottom: 17px;

    color:
        var(--amaya-leaf-light);

    font-size: .57rem;
    font-weight: 700;

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


.amaya-estimate__aside-top h3 {
    margin:
        0
        0
        17px;

    color:
        var(--amaya-white);

    font-size:
        clamp(2.3rem, 3vw, 3.3rem);

    font-weight: 600;
    line-height: .92;
}


.amaya-estimate__aside-top h3 em {
    display: block;

    color:
        #E2D2B5;

    font-weight: 500;
}


.amaya-estimate__aside-top p {
    margin: 0;

    color:
        rgba(255, 255, 255, .55);

    font-size: .72rem;
    line-height: 1.65;
}



/* ============================================================
   07. SNAPSHOT
   ============================================================ */

.amaya-estimate__snapshot {
    margin-top: 38px;

    padding:
        19px;

    background:
        rgba(255, 255, 255, .045);

    border:
        1px solid
        rgba(255, 255, 255, .09);

    border-radius:
        var(--amaya-radius-md);
}


.amaya-estimate__snapshot-head {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-bottom: 16px;

    padding-bottom: 13px;

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


.amaya-estimate__snapshot-head > span:first-child {
    color:
        rgba(255, 255, 255, .77);

    font-size: .57rem;
    font-weight: 700;

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


.amaya-estimate__snapshot-status {
    color:
        var(--amaya-brass-light);

    font-size: .48rem;
    font-weight: 600;
}


.amaya-estimate__snapshot-list {
    display: flex;
    flex-direction: column;

    gap: 13px;
}


.amaya-estimate__snapshot-row {
    display: grid;

    grid-template-columns:
        62px
        minmax(0, 1fr);

    gap: 9px;

    align-items: start;
}


.amaya-estimate__snapshot-row span {
    color:
        rgba(255, 255, 255, .37);

    font-size: .49rem;
    font-weight: 600;

    text-transform: uppercase;
}


.amaya-estimate__snapshot-row strong {
    overflow: hidden;

    color:
        rgba(255, 255, 255, .78);

    font-size: .59rem;
    font-weight: 600;

    line-height: 1.35;

    text-overflow: ellipsis;
}



/* ============================================================
   08. ASIDE CONTACT
   ============================================================ */

.amaya-estimate__aside-contact {
    display: flex;
    flex-direction: column;

    gap: 6px;

    margin-top: auto;

    padding-top: 42px;
}


.amaya-estimate__aside-contact > span {
    color:
        rgba(255, 255, 255, .39);

    font-size: .51rem;

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


.amaya-estimate__aside-contact a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

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


.amaya-estimate__aside-contact strong {
    font-size: .82rem;
    font-weight: 600;
}


.amaya-estimate__aside-contact a > span {
    color:
        var(--amaya-leaf-light);

    transition:
        transform var(--amaya-transition);
}


.amaya-estimate__aside-contact a:hover > span {
    transform:
        translateX(4px);
}



/* ============================================================
   09. FORM PANEL
   ============================================================ */

.amaya-estimate__form-panel {
    min-width: 0;

    padding:
        35px
        clamp(28px, 4vw, 55px)
        42px;

    background:
        rgba(254, 254, 254, .96);
}



/* ============================================================
   10. PROGRESS
   ============================================================ */

.amaya-estimate__progress {
    margin-bottom: 29px;
}


.amaya-estimate__progress-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 9px;
}


.amaya-estimate__progress-top span {
    color:
        var(--amaya-text-muted);

    font-size: .51rem;
    font-weight: 700;

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


.amaya-estimate__progress-top strong {
    color:
        var(--amaya-forest);

    font-size: .52rem;
    font-weight: 700;
}


.amaya-estimate__progress-track {
    position: relative;

    width: 100%;
    height: 3px;

    overflow: hidden;

    background:
        rgba(45, 91, 57, .09);

    border-radius: 3px;
}


.amaya-estimate__progress-bar {
    position: absolute;

    inset:
        0
        auto
        0
        0;

    width: 0%;

    background:
        linear-gradient(
            90deg,
            var(--amaya-forest),
            var(--amaya-leaf)
        );

    transition:
        width
        .45s
        cubic-bezier(.22, 1, .36, 1);
}



/* ============================================================
   11. FORM SECTIONS
   ============================================================ */

.amaya-estimate__form-section {
    margin: 0;

    padding:
        27px
        0;

    border: 0;
    border-top:
        1px solid
        rgba(45, 91, 57, .09);
}


.amaya-estimate__form-section:first-of-type {
    padding-top: 0;

    border-top: 0;
}


.amaya-estimate__form-section-head {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    width: 100%;

    margin:
        0
        0
        19px;

    padding: 0;

    border: 0;
}


.amaya-estimate__form-section-head > span:first-child {
    flex: 0 0 auto;

    padding-top: 3px;

    color:
        var(--amaya-brass);

    font-size: .5rem;
    font-weight: 700;

    letter-spacing: .1em;
}


.amaya-estimate__form-section-head h3,
.amaya-estimate__form-section-head strong {
    display: block;

    margin:
        0
        0
        2px;

    color:
        var(--amaya-forest-deep);

    font-family:
        var(--amaya-font-heading);

    font-size: 1.42rem;
    font-weight: 600;

    line-height: 1;
}


.amaya-estimate__form-section-head p,
.amaya-estimate__form-section-head small {
    display: block;

    margin: 0;

    color:
        var(--amaya-text-muted);

    font-family:
        var(--amaya-font-body);

    font-size: .55rem;
    font-weight: 500;

    line-height: 1.4;
}



/* ============================================================
   12. FIELD GRID
   ============================================================ */

.amaya-estimate__fields {
    display: grid;

    gap:
        18px
        16px;
}


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



/* ============================================================
   13. FIELD
   ============================================================ */

.amaya-estimate__field {
    min-width: 0;
}


.amaya-estimate__field > label,
.amaya-estimate__project-type > legend,
.amaya-estimate__message-label label {
    display: block;

    margin-bottom: 8px;

    color:
        var(--amaya-charcoal);

    font-size: .58rem;
    font-weight: 700;

    line-height: 1.3;

    letter-spacing: .035em;
}


.amaya-estimate__field > label span,
.amaya-estimate__project-type > legend span,
.amaya-estimate__message-label label span {
    color:
        var(--amaya-brass);
}



/* ============================================================
   14. INPUT CONTROL
   ============================================================ */

.amaya-estimate__control,
.amaya-estimate__select-wrap {
    position: relative;
}


.amaya-estimate__control input,
.amaya-estimate__select-wrap select,
.amaya-estimate textarea {
    width: 100%;

    color:
        var(--amaya-text);

    background:
        var(--amaya-background-soft);

    border:
        1px solid
        rgba(45, 91, 57, .12);

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

    outline: none;

    transition:
        border-color var(--amaya-transition),
        background-color var(--amaya-transition),
        box-shadow var(--amaya-transition);
}


.amaya-estimate__control input {
    height: 49px;

    padding:
        0
        45px
        0
        14px;

    font-size: .72rem;
}


.amaya-estimate__control input::placeholder,
.amaya-estimate textarea::placeholder {
    color:
        rgba(92, 102, 95, .58);
}


.amaya-estimate__control input:focus,
.amaya-estimate__select-wrap select:focus,
.amaya-estimate textarea:focus {
    background:
        var(--amaya-white);

    border-color:
        rgba(45, 91, 57, .55);

    box-shadow:
        0 0 0 3px
        rgba(131, 169, 56, .08);
}


.amaya-estimate__control-icon {
    position: absolute;

    top: 50%;
    right: 13px;

    display: grid;
    place-items: center;

    width: 23px;
    height: 23px;

    color:
        rgba(45, 91, 57, .49);

    transform:
        translateY(-50%);

    pointer-events: none;
}


.amaya-estimate__control-icon svg {
    width: 15px;
    height: 15px;

    stroke: currentColor;

    stroke-width: 1.45;

    stroke-linecap: round;
    stroke-linejoin: round;
}



/* ============================================================
   15. SERVICES
   ============================================================ */

.amaya-estimate__fieldset {
    min-width: 0;
}


.amaya-estimate__services {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 9px;
}


.amaya-estimate__service-option {
    position: relative;

    min-width: 0;

    cursor: pointer;
}


.amaya-estimate__service-option input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
    pointer-events: none;
}


.amaya-estimate__service-option > span {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;

    min-height: 65px;

    padding:
        11px
        12px;

    color:
        var(--amaya-charcoal);

    background:
        var(--amaya-background-soft);

    border:
        1px solid
        rgba(45, 91, 57, .11);

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

    font-size: .62rem;
    font-weight: 700;

    line-height: 1.25;

    transition:
        color var(--amaya-transition),
        background-color var(--amaya-transition),
        border-color var(--amaya-transition),
        transform var(--amaya-transition);
}


.amaya-estimate__service-option > span::after {
    content: '✓';

    position: absolute;

    top: 8px;
    right: 8px;

    display: grid;
    place-items: center;

    width: 17px;
    height: 17px;

    color:
        var(--amaya-white);

    background:
        var(--amaya-forest);

    border-radius: 3px;

    opacity: 0;

    transform:
        scale(.65);

    transition:
        opacity var(--amaya-transition),
        transform var(--amaya-transition);

    font-size: .48rem;
}


.amaya-estimate__service-option small {
    margin-top: 2px;

    color:
        var(--amaya-text-muted);

    font-size: .48rem;
    font-weight: 500;

    line-height: 1.25;

    transition:
        color var(--amaya-transition);
}


.amaya-estimate__service-option:hover > span {
    border-color:
        rgba(45, 91, 57, .30);

    transform:
        translateY(-2px);
}


.amaya-estimate__service-option input:checked + span {
    color:
        var(--amaya-white);

    background:
        var(--amaya-forest-deep);

    border-color:
        var(--amaya-forest-deep);

    box-shadow:
        0 8px 22px
        rgba(31, 67, 43, .12);
}


.amaya-estimate__service-option input:checked + span small {
    color:
        rgba(255, 255, 255, .58);
}


.amaya-estimate__service-option input:checked + span::after {
    opacity: 1;

    transform:
        scale(1);
}


.amaya-estimate__service-option input:focus-visible + span {
    outline:
        2px solid
        var(--amaya-leaf);

    outline-offset: 3px;
}



/* ============================================================
   16. OVERVIEW
   ============================================================ */

.amaya-estimate__overview {
    display: grid;

    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(220px, .6fr);

    align-items: end;

    gap: 20px;
}


.amaya-estimate__project-type {
    min-width: 0;

    margin: 0;
    padding: 0;

    border: 0;
}


.amaya-estimate__type-options {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 8px;
}


.amaya-estimate__type-options label {
    position: relative;

    cursor: pointer;
}


.amaya-estimate__type-options input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
}


.amaya-estimate__type-options label > span {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-height: 61px;

    padding:
        9px
        10px;

    color:
        var(--amaya-charcoal);

    background:
        var(--amaya-background-soft);

    border:
        1px solid
        rgba(45, 91, 57, .11);

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

    font-size: .58rem;
    font-weight: 700;

    line-height: 1.2;

    transition:
        color var(--amaya-transition),
        background-color var(--amaya-transition),
        border-color var(--amaya-transition);
}


.amaya-estimate__type-options small {
    margin-top: 3px;

    color:
        var(--amaya-text-muted);

    font-size: .44rem;
    font-weight: 500;

    transition:
        color var(--amaya-transition);
}


.amaya-estimate__type-options
input:checked + span {
    color:
        var(--amaya-white);

    background:
        var(--amaya-forest);

    border-color:
        var(--amaya-forest);
}


.amaya-estimate__type-options
input:checked + span small {
    color:
        rgba(255, 255, 255, .62);
}


.amaya-estimate__type-options
input:focus-visible + span {
    outline:
        2px solid
        var(--amaya-leaf);

    outline-offset: 3px;
}



/* ============================================================
   17. SELECT
   ============================================================ */

.amaya-estimate__select-wrap select {
    height: 49px;

    padding:
        0
        42px
        0
        13px;

    appearance: none;

    -webkit-appearance: none;

    font-size: .68rem;

    cursor: pointer;
}


.amaya-estimate__select-arrow {
    position: absolute;

    top: 50%;
    right: 13px;

    display: grid;
    place-items: center;

    width: 20px;
    height: 20px;

    color:
        var(--amaya-forest);

    transform:
        translateY(-50%);

    pointer-events: none;
}


.amaya-estimate__select-arrow svg {
    width: 14px;
    height: 14px;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}



/* ============================================================
   18. MESSAGE
   ============================================================ */

.amaya-estimate__message-label {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 8px;
}


.amaya-estimate__message-label label {
    margin: 0;
}


.amaya-estimate__counter {
    color:
        var(--amaya-text-muted);

    font-size: .5rem;
    font-weight: 600;
}


.amaya-estimate textarea {
    min-height: 132px;

    padding:
        13px
        14px;

    resize: vertical;

    font-family:
        var(--amaya-font-body);

    font-size: .72rem;
    line-height: 1.6;
}


.amaya-estimate__message-footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    margin-top: 7px;
}


.amaya-estimate__field-help {
    max-width: 500px;

    color:
        var(--amaya-text-muted);

    font-size: .49rem;

    line-height: 1.45;
}



/* ============================================================
   19. ERRORS
   ============================================================ */

.amaya-estimate__error {
    display: block;

    min-height: 15px;

    margin-top: 4px;

    color:
        #9B463E;

    font-size: .48rem;

    line-height: 1.3;
}


.amaya-estimate__error--group {
    margin-top: 7px;
}


.amaya-estimate__field.amaya-field--invalid
input,
.amaya-estimate__field.amaya-field--invalid
select,
.amaya-estimate__field.amaya-field--invalid
textarea {
    border-color:
        rgba(155, 70, 62, .58);

    background:
        rgba(155, 70, 62, .035);
}



/* ============================================================
   20. NOTICE
   ============================================================ */

.amaya-estimate__notice {
    margin-bottom: 20px;

    padding:
        12px
        14px;

    border:
        1px solid
        rgba(45, 91, 57, .14);

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

    color:
        var(--amaya-forest-deep);

    background:
        var(--amaya-sage-light);

    font-size: .65rem;

    line-height: 1.5;
}


.amaya-estimate__notice.amaya-notice--error {
    color:
        #7E3934;

    background:
        #F7EBE8;

    border-color:
        rgba(155, 70, 62, .18);
}



/* ============================================================
   21. SUBMIT AREA
   ============================================================ */

.amaya-estimate__submit-area {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding-top: 5px;
}


.amaya-estimate__privacy {
    display: flex;
    align-items: center;

    gap: 9px;

    max-width: 380px;
}


.amaya-estimate__privacy > span {
    display: grid;
    place-items: center;

    flex: 0 0 auto;

    width: 29px;
    height: 29px;

    color:
        var(--amaya-forest);

    background:
        var(--amaya-sage-light);

    border-radius:
        var(--amaya-radius-sm);
}


.amaya-estimate__privacy svg {
    width: 14px;
    height: 14px;

    stroke: currentColor;

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.amaya-estimate__privacy p {
    margin: 0;

    color:
        var(--amaya-text-muted);

    font-size: .5rem;

    line-height: 1.45;
}



/* ============================================================
   22. SUBMIT BUTTON
   ============================================================ */

.amaya-estimate__submit {
    position: relative;

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

    gap: 13px;

    min-height: 51px;

    padding:
        0
        13px
        0
        20px;

    overflow: hidden;

    color:
        var(--amaya-white);

    background:
        var(--amaya-forest);

    border:
        1px solid
        var(--amaya-forest);

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

    box-shadow:
        0 10px 25px
        rgba(31, 67, 43, .15);

    font-size: .64rem;
    font-weight: 800;

    letter-spacing: .055em;

    white-space: nowrap;

    isolation: isolate;
}


.amaya-estimate__submit::before {
    content: '';

    position: absolute;

    inset: 0;

    z-index: -1;

    background:
        var(--amaya-forest-deep);

    transform:
        translateX(-102%);

    transition:
        transform
        .45s
        cubic-bezier(.22, 1, .36, 1);
}


.amaya-estimate__submit:hover::before {
    transform:
        translateX(0);
}


.amaya-estimate__submit-icon {
    display: grid;
    place-items: center;

    width: 27px;
    height: 27px;

    color:
        var(--amaya-forest);

    background:
        var(--amaya-white);

    border-radius: 4px;

    transition:
        transform var(--amaya-transition);
}


.amaya-estimate__submit:hover
.amaya-estimate__submit-icon {
    transform:
        translateX(3px);
}


.amaya-estimate__submit-icon svg {
    width: 14px;
    height: 14px;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}



/* ============================================================
   23. HONEYPOT
   ============================================================ */

.amaya-estimate__trap {
    position: absolute !important;

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

    overflow: hidden !important;

    clip:
        rect(0 0 0 0) !important;

    clip-path:
        inset(50%) !important;

    white-space: nowrap !important;
}
































/* ============================================================
   06. WHAT HAPPENS NEXT
   AMAYA'S LANDSCAPING LLC
   ============================================================ */


/* ============================================================
   01. SECTION
   ============================================================ */

.amaya-next {
    position: relative;

    overflow: hidden;

    color:
        var(--amaya-white);

    background:
        var(--amaya-dark-surface-deep);

    isolation: isolate;
}



/* ============================================================
   02. AMBIENT DECORATION
   ============================================================ */

.amaya-next__ambient {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.amaya-next__ambient--one {
    top: -270px;
    right: -220px;

    width: 620px;
    height: 620px;

    background:
        radial-gradient(
            circle,
            rgba(131, 169, 56, .12),
            rgba(45, 91, 57, .035) 43%,
            transparent 70%
        );
}


.amaya-next__ambient--two {
    bottom: -320px;
    left: -260px;

    width: 670px;
    height: 670px;

    background:
        radial-gradient(
            circle,
            rgba(177, 138, 82, .075),
            transparent 68%
        );
}



/* ============================================================
   03. BOTANICAL
   ============================================================ */

.amaya-next__botanical {
    position: absolute;

    top: 10%;
    right: 2%;

    width: 160px;

    color:
        var(--amaya-white);

    opacity: .035;

    pointer-events: none;
}


.amaya-next__botanical svg {
    width: 100%;
    height: auto;

    stroke:
        currentColor;

    stroke-width: 1.15;

    stroke-linecap: round;
    stroke-linejoin: round;
}



/* ============================================================
   04. CONTAINER
   ============================================================ */

.amaya-next__container {
    position: relative;

    z-index: 2;
}



/* ============================================================
   05. HEADER
   ============================================================ */

.amaya-next__header {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(280px, .65fr);

    align-items: end;

    gap:
        clamp(55px, 8vw, 125px);

    margin-bottom:
        clamp(55px, 6vw, 85px);
}



/* ============================================================
   06. EYEBROW
   ============================================================ */

.amaya-next__eyebrow {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    color:
        var(--amaya-leaf-light);

    font-size: .65rem;

    font-weight: 700;

    line-height: 1;

    letter-spacing: .14em;

    text-transform: uppercase;
}


.amaya-next__eyebrow-number {
    color:
        var(--amaya-brass-light);

    font-size: .58rem;
}


.amaya-next__eyebrow-line {
    width: 36px;
    height: 1px;

    background:
        rgba(162, 198, 81, .40);
}



/* ============================================================
   07. TITLE
   ============================================================ */

.amaya-next__title {
    max-width: 830px;

    margin: 0;

    color:
        var(--amaya-white);

    font-size:
        clamp(
            3.35rem,
            5vw,
            5.65rem
        );

    font-weight: 600;

    line-height: .89;

    letter-spacing: -.042em;
}


.amaya-next__title span {
    display: block;

    color:
        #E1D1B3;

    font-style: italic;

    font-weight: 500;
}



/* ============================================================
   08. HEADER COPY
   ============================================================ */

.amaya-next__header-copy {
    max-width: 440px;
}


.amaya-next__header-copy p {
    margin: 0;

    color:
        rgba(255, 255, 255, .57);

    font-size: .9rem;

    line-height: 1.75;
}



/* ============================================================
   09. PROCESS
   ============================================================ */

.amaya-next__process {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap:
        clamp(28px, 4vw, 60px);
}



/* ============================================================
   10. CONNECTION TRACK
   ============================================================ */

.amaya-next__track {
    position: absolute;

    top: 26px;
    right: 0;
    left: 0;

    z-index: 0;

    height: 1px;

    overflow: hidden;

    background:
        rgba(255, 255, 255, .10);

    pointer-events: none;
}


.amaya-next__track-progress {
    display: block;

    width: 0%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            var(--amaya-brass),
            var(--amaya-leaf-light)
        );

    transition:
        width
        1.4s
        cubic-bezier(.16, 1, .3, 1);
}


.amaya-next.amaya-next--visible
.amaya-next__track-progress {
    width: 100%;
}



/* ============================================================
   11. STEP
   ============================================================ */

.amaya-next__step {
    position: relative;

    z-index: 2;

    min-width: 0;

    padding-top: 0;
}



/* ============================================================
   12. STEP TOP
   ============================================================ */

.amaya-next__step-top {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 29px;
}



/* ============================================================
   13. LARGE NUMBER
   ============================================================ */

.amaya-next__step-number {
    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    min-width: 54px;
    height: 54px;

    padding-right: 9px;

    color:
        var(--amaya-brass-light);

    background:
        var(--amaya-dark-surface-deep);

    font-family:
        var(--amaya-font-heading);

    font-size: 2.2rem;

    font-weight: 500;

    line-height: 1;
}



/* ============================================================
   14. TRACK NODE
   ============================================================ */

.amaya-next__step-node {
    position: absolute;

    top: 50%;
    right: 0;

    z-index: 3;

    display: grid;

    place-items: center;

    width: 13px;
    height: 13px;

    background:
        var(--amaya-dark-surface-deep);

    border:
        1px solid
        rgba(162, 198, 81, .46);

    border-radius: 50%;

    transform:
        translateY(-50%);
}


.amaya-next__step-node > span {
    width: 5px;
    height: 5px;

    background:
        var(--amaya-leaf-light);

    border-radius: 50%;
}



/* ============================================================
   15. STEP CONTENT
   ============================================================ */

.amaya-next__step-content {
    max-width: 340px;
}


.amaya-next__step-label {
    display: block;

    margin-bottom: 11px;

    color:
        var(--amaya-leaf-light);

    font-size: .53rem;

    font-weight: 800;

    line-height: 1;

    letter-spacing: .13em;

    text-transform: uppercase;
}


.amaya-next__step-content h3 {
    margin:
        0
        0
        15px;

    color:
        var(--amaya-white);

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

    font-weight: 600;

    line-height: .93;

    letter-spacing: -.025em;
}


.amaya-next__step-content h3 span {
    display: block;

    color:
        #DCCBAE;

    font-style: italic;

    font-weight: 500;
}


.amaya-next__step-content p {
    margin: 0;

    color:
        rgba(255, 255, 255, .48);

    font-size: .72rem;

    line-height: 1.67;
}



/* ============================================================
   16. STEP ICON
   ============================================================ */

.amaya-next__step-icon {
    display: grid;

    place-items: center;

    width: 42px;
    height: 42px;

    margin-top: 26px;

    color:
        var(--amaya-leaf-light);

    background:
        rgba(255, 255, 255, .035);

    border:
        1px solid
        rgba(255, 255, 255, .09);

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

    transition:
        color var(--amaya-transition),
        background-color var(--amaya-transition),
        border-color var(--amaya-transition),
        transform var(--amaya-transition);
}


.amaya-next__step-icon svg {
    width: 18px;
    height: 18px;

    stroke:
        currentColor;

    stroke-width: 1.45;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.amaya-next__step:hover
.amaya-next__step-icon {
    color:
        var(--amaya-ink);

    background:
        var(--amaya-leaf-light);

    border-color:
        var(--amaya-leaf-light);

    transform:
        translateY(-3px);
}



/* ============================================================
   17. CONTACT STRIP
   ============================================================ */

.amaya-next__contact {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    margin-top:
        clamp(58px, 7vw, 90px);

    padding:
        21px
        22px;

    background:
        rgba(255, 255, 255, .045);

    border:
        1px solid
        rgba(255, 255, 255, .09);

    border-radius:
        var(--amaya-radius-md);

    backdrop-filter:
        blur(8px);

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



/* ============================================================
   18. CONTACT CONTENT
   ============================================================ */

.amaya-next__contact-content {
    display: flex;

    align-items: center;

    gap: 13px;
}


.amaya-next__contact-mark {
    display: grid;

    flex: 0 0 auto;

    place-items: center;

    width: 39px;
    height: 39px;

    color:
        var(--amaya-leaf-light);

    background:
        rgba(162, 198, 81, .08);

    border:
        1px solid
        rgba(162, 198, 81, .13);

    border-radius:
        var(--amaya-radius-sm);
}


.amaya-next__contact-mark svg {
    width: 17px;
    height: 17px;

    stroke: currentColor;

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.amaya-next__contact-content > div {
    display: flex;

    flex-direction: column;

    gap: 3px;
}


.amaya-next__contact-content
div > span {
    color:
        rgba(255, 255, 255, .42);

    font-size: .53rem;

    font-weight: 600;

    letter-spacing: .05em;

    text-transform: uppercase;
}


.amaya-next__contact-content strong {
    color:
        rgba(255, 255, 255, .82);

    font-size: .69rem;

    font-weight: 600;
}



/* ============================================================
   19. CALL
   ============================================================ */

.amaya-next__call {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding-left: 22px;

    border-left:
        1px solid
        rgba(255, 255, 255, .10);
}


.amaya-next__call-copy {
    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 2px;
}


.amaya-next__call-copy small {
    color:
        rgba(255, 255, 255, .39);

    font-size: .48rem;

    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;
}


.amaya-next__call-copy strong {
    color:
        var(--amaya-white);

    font-size: .75rem;

    font-weight: 600;

    white-space: nowrap;

    transition:
        color var(--amaya-transition);
}


.amaya-next__call:hover
.amaya-next__call-copy strong {
    color:
        var(--amaya-leaf-light);
}



/* ============================================================
   20. CALL ARROW
   ============================================================ */

.amaya-next__call-arrow {
    display: grid;

    place-items: center;

    width: 32px;
    height: 32px;

    color:
        var(--amaya-ink);

    background:
        var(--amaya-leaf-light);

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

    transition:
        color var(--amaya-transition),
        background-color var(--amaya-transition),
        transform var(--amaya-transition);
}


.amaya-next__call:hover
.amaya-next__call-arrow {
    color:
        var(--amaya-white);

    background:
        var(--amaya-forest);

    transform:
        translateX(3px);
}


.amaya-next__call-arrow svg {
    width: 14px;
    height: 14px;

    stroke:
        currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}



/* ============================================================
   21. INITIAL REVEAL
   ============================================================ */

[data-amaya-next-reveal] {
    opacity: 0;

    transform:
        translate3d(0, 18px, 0);
}


[data-amaya-next-step] {
    opacity: 0;

    transform:
        translate3d(0, 24px, 0);
}



/* ============================================================
   22. VISIBLE STATE
   ============================================================ */

.amaya-next.amaya-next--visible
[data-amaya-next-reveal] {
    opacity: 1;

    transform:
        translate3d(0, 0, 0);

    transition:
        opacity .7s ease,
        transform .9s
        cubic-bezier(.22, 1, .36, 1);
}


.amaya-next.amaya-next--visible
.amaya-next__header-copy {
    transition-delay: .1s;
}


.amaya-next.amaya-next--visible
[data-amaya-next-step] {
    opacity: 1;

    transform:
        translate3d(0, 0, 0);

    transition:
        opacity .72s ease,
        transform .9s
        cubic-bezier(.22, 1, .36, 1);
}


.amaya-next.amaya-next--visible
[data-amaya-next-step]:nth-of-type(1) {
    transition-delay: .12s;
}


.amaya-next.amaya-next--visible
[data-amaya-next-step]:nth-of-type(2) {
    transition-delay: .22s;
}


.amaya-next.amaya-next--visible
[data-amaya-next-step]:nth-of-type(3) {
    transition-delay: .32s;
}


.amaya-next.amaya-next--visible
.amaya-next__contact {
    transition-delay: .40s;
}





























/* ============================================================
   18. COMPUTER
   ============================================================ */

@media (min-width: 1200px) {
     .amaya-next__process {
        gap:
            clamp(
                45px,
                5vw,
                70px
            );
    }


    .amaya-next__step-content {
        max-width: 350px;
    }

     .amaya-estimate__services {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }


    .amaya-estimate__form-panel {
        padding:
            38px
            52px
            45px;
    }
      .amaya-contact-info__item {
        min-height: 128px;

        padding:
            24px
            32px;
    }

    .amaya-contact-hero {
        height:
            min(
                680px,
                calc(
                    100svh -
                    var(--amaya-first-screen-ui)
                )
            );
    }


    .amaya-contact-hero__container {
        padding-bottom: 40px;
    }

}



/* ============================================================
   19. TABLET / SMALL LAPTOP
   ============================================================ */

@media (min-width: 768px) and (max-width: 1199px) {
    .amaya-next__header {
        grid-template-columns:
            minmax(0, 1.15fr)
            minmax(250px, .85fr);

        gap: 45px;

        margin-bottom: 60px;
    }


    .amaya-next__title {
        font-size:
            clamp(
                3.15rem,
                6vw,
                4.7rem
            );
    }


    .amaya-next__process {
        gap: 32px;
    }


    .amaya-next__step-content h3 {
        font-size:
            clamp(
                1.9rem,
                3.4vw,
                2.5rem
            );
    }


    .amaya-next__step-content p {
        font-size: .68rem;
    }


    .amaya-next__contact {
        gap: 24px;
    }

      .amaya-estimate__header {
        grid-template-columns:
            minmax(0, 1.15fr)
            minmax(250px, .85fr);

        gap: 45px;
    }


    .amaya-estimate__title {
        font-size:
            clamp(3.1rem, 6vw, 4.7rem);
    }


    .amaya-estimate__layout {
        grid-template-columns:
            minmax(240px, .38fr)
            minmax(0, 1fr);
    }


    .amaya-estimate__aside {
        padding:
            34px
            25px;
    }


    .amaya-estimate__form-panel {
        padding:
            31px
            28px
            38px;
    }


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


    .amaya-estimate__overview {
        grid-template-columns: 1fr;
    }


    .amaya-estimate__type-options {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
     .amaya-contact-info__item {
        gap: 12px;

        min-height: 114px;

        padding:
            19px
            18px;
    }


    .amaya-contact-info__icon {
        width: 40px;
        height: 40px;
    }


    .amaya-contact-info__icon svg {
        width: 17px;
        height: 17px;
    }


    .amaya-contact-info__arrow {
        width: 28px;
        height: 28px;
    }


    .amaya-contact-info__value {
        font-size:
            clamp(
                1.2rem,
                2vw,
                1.5rem
            );
    }


    .amaya-contact-info__value--email {
        font-size: .66rem;
    }


    .amaya-contact-info__status {
        padding:
            5px
            6px;

        font-size: .42rem;
    }


    .amaya-contact-hero {
        height:
            min(
                620px,
                calc(
                    100svh -
                    var(--amaya-first-screen-ui)
                )
            );
    }


    .amaya-contact-hero__container {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(160px, .3fr);

        gap: 42px;

        padding-bottom: 38px;
    }


    .amaya-contact-hero__title {
        font-size:
            clamp(
                3.45rem,
                7vw,
                5rem
            );
    }


    .amaya-contact-hero__side strong {
        font-size: 1.5rem;
    }

}



/* ============================================================
   20. MOBILE
   ============================================================ */

@media (min-width: 481px) and (max-width: 767px) {
    .amaya-next__header {
        grid-template-columns: 1fr;

        gap: 27px;

        margin-bottom: 48px;
    }


    .amaya-next__title {
        max-width: 590px;

        font-size:
            clamp(
                3rem,
                9vw,
                4.05rem
            );
    }


    .amaya-next__header-copy {
        max-width: 560px;
    }


    .amaya-next__process {
        grid-template-columns: 1fr;

        gap: 0;

        padding-left: 38px;
    }


    .amaya-next__track {
        top: 0;
        right: auto;
        bottom: 0;
        left: 11px;

        width: 1px;
        height: 100%;
    }


    .amaya-next__track-progress {
        width: 100%;
        height: 0%;
    }


    .amaya-next.amaya-next--visible
    .amaya-next__track-progress {
        width: 100%;
        height: 100%;
    }


    .amaya-next__step {
        padding-bottom: 46px;
    }


    .amaya-next__step:last-child {
        padding-bottom: 0;
    }


    .amaya-next__step-top {
        position: static;

        margin-bottom: 18px;
    }


    .amaya-next__step-number {
        min-width: auto;
        height: auto;

        padding: 0;

        background:
            transparent;

        font-size: 1.8rem;
    }


    .amaya-next__step-node {
        top: 7px;
        right: auto;
        left: -33px;
    }


    .amaya-next__step-content {
        max-width: 520px;
    }


    .amaya-next__contact {
        align-items: flex-start;

        flex-direction: column;

        gap: 20px;

        margin-top: 55px;
    }


    .amaya-next__call {
        width: 100%;

        justify-content: space-between;

        padding:
            18px
            0
            0;

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

        border-left: 0;
    }


    .amaya-next__call-copy {
        align-items: flex-start;
    }
     .amaya-estimate__header {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 42px;
    }


    .amaya-estimate__title {
        font-size:
            clamp(3rem, 9vw, 4rem);
    }


    .amaya-estimate__layout {
        grid-template-columns: 1fr;
    }


    .amaya-estimate__aside {
        padding:
            31px
            27px;
    }


    .amaya-estimate__snapshot {
        margin-top: 27px;
    }


    .amaya-estimate__aside-contact {
        margin-top: 28px;
        padding-top: 0;
    }


    .amaya-estimate__form-panel {
        padding:
            30px
            24px
            36px;
    }


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


    .amaya-estimate__overview {
        grid-template-columns: 1fr;
    }


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


    .amaya-estimate__submit-area {
        align-items: flex-start;
        flex-direction: column;
    }
     .amaya-contact-info__container {
        grid-template-columns:
            1fr;
    }


    .amaya-contact-info__item {
        min-height: 92px;

        padding:
            17px
            4px;

        gap: 14px;
    }


    .amaya-contact-info__item:not(:last-child)::after {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;

        width: 100%;
        height: 1px;
    }


    .amaya-contact-info__item::before {
        right: 0;
        left: 0;
    }


    .amaya-contact-info__value {
        font-size: 1.45rem;
    }


    .amaya-contact-info__value--email {
        font-size: .78rem;
    }


    .amaya-contact-hero {
        height:
            calc(
                100svh -
                var(--amaya-first-screen-ui)
            );
    }


    .amaya-contact-hero__image {
        object-position:
            60% center;
    }


    .amaya-contact-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(7, 14, 9, .91) 0%,
                rgba(8, 17, 11, .70) 74%,
                rgba(7, 14, 9, .40) 100%
            ),
            linear-gradient(
                180deg,
                rgba(7, 14, 9, .05),
                rgba(7, 14, 9, .68)
            );
    }


    .amaya-contact-hero__container {
        grid-template-columns: 1fr;

        align-content: center;

        gap: 20px;

        padding-bottom: 42px;
    }


    .amaya-contact-hero__content {
        max-width: 590px;
    }


    .amaya-contact-hero__title {
        font-size:
            clamp(
                3.15rem,
                10.5vw,
                4.4rem
            );
    }


    .amaya-contact-hero__description {
        max-width: 520px;

        font-size: .84rem;
    }


    .amaya-contact-hero__side {
        display: none;
    }


    .amaya-contact-hero__bottom-inner {
        min-height: 33px;
    }

}



/* ============================================================
   21. SMALL MOBILE
   ============================================================ */

@media (max-width: 480px) {
     .amaya-next__header {
        grid-template-columns: 1fr;

        gap: 22px;

        margin-bottom: 42px;
    }


    .amaya-next__eyebrow {
        gap: 9px;

        margin-bottom: 16px;

        font-size: .56rem;
    }


    .amaya-next__eyebrow-line {
        width: 27px;
    }


    .amaya-next__title {
        font-size:
            clamp(
                2.7rem,
                12vw,
                3.55rem
            );
    }


    .amaya-next__header-copy p {
        font-size: .79rem;

        line-height: 1.62;
    }


    .amaya-next__process {
        grid-template-columns: 1fr;

        gap: 0;

        padding-left: 31px;
    }


    .amaya-next__track {
        top: 0;
        right: auto;
        bottom: 0;
        left: 9px;

        width: 1px;
        height: 100%;
    }


    .amaya-next__track-progress {
        width: 100%;
        height: 0%;
    }


    .amaya-next.amaya-next--visible
    .amaya-next__track-progress {
        width: 100%;
        height: 100%;
    }


    .amaya-next__step {
        padding-bottom: 40px;
    }


    .amaya-next__step:last-child {
        padding-bottom: 0;
    }


    .amaya-next__step-top {
        position: static;

        margin-bottom: 15px;
    }


    .amaya-next__step-number {
        min-width: auto;
        height: auto;

        padding: 0;

        background:
            transparent;

        font-size: 1.65rem;
    }


    .amaya-next__step-node {
        top: 6px;
        right: auto;
        left: -27px;

        width: 11px;
        height: 11px;
    }


    .amaya-next__step-node > span {
        width: 4px;
        height: 4px;
    }


    .amaya-next__step-label {
        margin-bottom: 8px;

        font-size: .48rem;
    }


    .amaya-next__step-content h3 {
        margin-bottom: 11px;

        font-size:
            clamp(
                1.85rem,
                9vw,
                2.4rem
            );
    }


    .amaya-next__step-content p {
        font-size: .65rem;

        line-height: 1.58;
    }


    .amaya-next__step-icon {
        width: 37px;
        height: 37px;

        margin-top: 19px;
    }


    .amaya-next__contact {
        align-items: flex-start;

        flex-direction: column;

        gap: 17px;

        margin-top: 48px;

        padding: 17px;
    }


    .amaya-next__contact-content {
        align-items: flex-start;
    }


    .amaya-next__contact-content strong {
        font-size: .63rem;

        line-height: 1.4;
    }


    .amaya-next__call {
        width: 100%;

        justify-content: space-between;

        padding:
            15px
            0
            0;

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

        border-left: 0;
    }


    .amaya-next__call-copy {
        align-items: flex-start;
    }


    .amaya-next__botanical {
        display: none;
    }
     .amaya-estimate__header {
        grid-template-columns: 1fr;

        gap: 21px;

        margin-bottom: 35px;
    }


    .amaya-estimate__eyebrow {
        gap: 9px;

        margin-bottom: 16px;

        font-size: .56rem;
    }


    .amaya-estimate__eyebrow-line {
        width: 27px;
    }


    .amaya-estimate__title {
        font-size:
            clamp(2.7rem, 12vw, 3.55rem);
    }


    .amaya-estimate__header-copy p {
        font-size: .79rem;
    }


    .amaya-estimate__layout {
        grid-template-columns: 1fr;

        border-radius:
            var(--amaya-radius-md);
    }


    .amaya-estimate__aside {
        padding:
            28px
            20px;
    }


    .amaya-estimate__aside-top h3 {
        font-size: 2.3rem;
    }


    .amaya-estimate__snapshot {
        margin-top: 24px;

        padding: 15px;
    }


    .amaya-estimate__aside-contact {
        margin-top: 25px;
        padding-top: 0;
    }


    .amaya-estimate__form-panel {
        padding:
            25px
            17px
            31px;
    }


    .amaya-estimate__fields--two {
        grid-template-columns: 1fr;
    }


    .amaya-estimate__form-section {
        padding:
            24px
            0;
    }


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

        gap: 7px;
    }


    .amaya-estimate__service-option > span {
        min-height: 62px;

        padding:
            9px
            10px;

        font-size: .56rem;
    }


    .amaya-estimate__overview {
        grid-template-columns: 1fr;

        gap: 20px;
    }


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


    .amaya-estimate__type-options label > span {
        min-height: 58px;
    }


    .amaya-estimate textarea {
        min-height: 145px;
    }


    .amaya-estimate__message-footer {
        flex-direction: column;

        gap: 3px;
    }


    .amaya-estimate__submit-area {
        align-items: stretch;
        flex-direction: column;

        gap: 18px;
    }


    .amaya-estimate__submit {
        width: 100%;
    }


    .amaya-estimate__botanical,
    .amaya-estimate__ambient--one {
        display: none;
    }
     .amaya-contact-info__container {
        grid-template-columns:
            1fr;
    }


    .amaya-contact-info__item {
        grid-template-columns:
            40px
            minmax(0, 1fr)
            auto;

        min-height: 86px;

        gap: 11px;

        padding:
            15px
            2px;
    }


    .amaya-contact-info__item:not(:last-child)::after {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;

        width: 100%;
        height: 1px;
    }


    .amaya-contact-info__item::before {
        right: 0;
        left: 0;
    }


    .amaya-contact-info__icon {
        width: 38px;
        height: 38px;
    }


    .amaya-contact-info__icon svg {
        width: 16px;
        height: 16px;
    }


    .amaya-contact-info__label {
        font-size: .48rem;
    }


    .amaya-contact-info__value {
        font-size: 1.3rem;
    }


    .amaya-contact-info__value--email {
        overflow: visible;

        font-size: .7rem;

        text-overflow: initial;

        white-space: normal;

        overflow-wrap: anywhere;
    }


    .amaya-contact-info__hint {
        font-size: .51rem;
    }


    .amaya-contact-info__arrow {
        width: 27px;
        height: 27px;
    }


    .amaya-contact-info__status {
        padding:
            5px
            6px;

        font-size: .4rem;
    }

    .amaya-contact-hero {
        height:
            calc(
                100svh -
                var(--amaya-first-screen-ui)
            );
    }


    .amaya-contact-hero__image {
        object-position:
            62% center;
    }


    .amaya-contact-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(7, 14, 9, .93) 0%,
                rgba(8, 17, 11, .74) 80%,
                rgba(7, 14, 9, .44) 100%
            ),
            linear-gradient(
                180deg,
                rgba(7, 14, 9, .06),
                rgba(7, 14, 9, .72)
            );
    }


    .amaya-contact-hero__container {
        grid-template-columns: 1fr;

        align-content: center;

        gap: 0;

        padding-bottom: 37px;
    }


    .amaya-contact-hero__eyebrow {
        gap: 8px;

        margin-bottom: 13px;

        font-size: .51rem;
    }


    .amaya-contact-hero__eyebrow-line {
        width: 25px;
    }


    .amaya-contact-hero__title {
        margin-bottom: 14px;

        font-size:
            clamp(
                2.75rem,
                12.4vw,
                3.55rem
            );

        line-height: .89;
    }


    .amaya-contact-hero__description {
        max-width: 430px;

        margin-bottom: 18px;

        font-size: .76rem;

        line-height: 1.55;
    }


    .amaya-contact-hero__actions {
        gap:
            10px
            16px;
    }


    .amaya-contact-hero__button--primary {
        min-height: 44px;

        padding:
            0 10px
            0 14px;

        font-size: .56rem;
    }


    .amaya-contact-hero__button-icon {
        width: 22px;
        height: 22px;
    }


    .amaya-contact-hero__call-icon {
        width: 38px;
        height: 38px;
    }


    .amaya-contact-hero__call-copy small {
        font-size: .46rem;
    }


    .amaya-contact-hero__call-copy strong {
        font-size: .64rem;
    }


    .amaya-contact-hero__side {
        display: none;
    }


    .amaya-contact-hero__bottom-inner {
        gap: 8px;

        min-height: 31px;

        font-size: .42rem;

        letter-spacing: .07em;
    }


    .amaya-contact-hero__bottom-inner
    > span:nth-child(even) {
        width: 11px;
    }

}



/* ============================================================
   ACCESSIBILITY
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
     [data-amaya-next-reveal],
    [data-amaya-next-step] {
        opacity: 1 !important;

        transform: none !important;

        transition: none !important;
    }


    .amaya-next__track-progress {
        width: 100% !important;
        height: 100% !important;

        transition: none !important;
    }


    .amaya-next__step-icon,
    .amaya-next__call-arrow {
        transition: none !important;
    }
     .amaya-estimate__progress-bar,
    .amaya-estimate__service-option > span,
    .amaya-estimate__type-options label > span,
    .amaya-estimate__submit,
    .amaya-estimate__submit::before,
    .amaya-estimate__submit-icon {
        transition: none !important;
    }
     [data-amaya-contact-info-item] {
        opacity: 1 !important;

        transform: none !important;

        transition: none !important;
    }


    .amaya-contact-info__icon,
    .amaya-contact-info__arrow,
    .amaya-contact-info__item::before {
        transition: none !important;
    }

    .amaya-contact-hero__image {
        transform:
            scale(1.035) !important;

        will-change: auto;
    }


    [data-amaya-contact-hero-title],
    [data-amaya-contact-hero-reveal] {
        opacity: 1 !important;

        transform: none !important;

        transition: none !important;
    }

}











































/* ============================================================
   AMAYA'S LANDSCAPING LLC
   CONTACT PAGE — TYPOGRAPHY READABILITY PATCH

   Add at the VERY END of /css/contact.css
   ============================================================ */


/* ============================================================
   01. DESKTOP
   ============================================================ */

@media (min-width: 1200px) {

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

    .amaya-contact-hero__eyebrow {
        font-size: .74rem;
    }

    .amaya-contact-hero__eyebrow-number {
        font-size: .66rem;
    }

    .amaya-contact-hero__description {
        font-size:
            clamp(
                1rem,
                1.05vw,
                1.08rem
            );
    }

    .amaya-contact-hero__button--primary {
        font-size: .75rem;
    }

    .amaya-contact-hero__call-copy small {
        font-size: .63rem;
    }

    .amaya-contact-hero__call-copy strong {
        font-size: .84rem;
    }

    .amaya-contact-hero__side > span {
        font-size: .64rem;
    }

    .amaya-contact-hero__side small {
        font-size: .72rem;
    }

    .amaya-contact-hero__bottom-inner {
        font-size: .61rem;
    }


    /* ========================================================
       CONTACT INFORMATION
       ======================================================== */

    .amaya-contact-info__label {
        font-size: .65rem;
    }

    .amaya-contact-info__value--email {
        font-size:
            clamp(
                .88rem,
                .95vw,
                1rem
            );
    }

    .amaya-contact-info__hint {
        font-size: .69rem;
    }

    .amaya-contact-info__status {
        font-size: .61rem;
    }


    /* ========================================================
       ESTIMATE — HEADER
       ======================================================== */

    .amaya-estimate__eyebrow {
        font-size: .74rem;
    }

    .amaya-estimate__eyebrow-number {
        font-size: .66rem;
    }

    .amaya-estimate__header-copy p {
        font-size: .98rem;
    }

    .amaya-estimate__header-note {
        font-size: .67rem;
    }

    .amaya-estimate__header-note > span:first-child {
        font-size: .68rem;
    }


    /* ========================================================
       ESTIMATE — ASIDE
       ======================================================== */

    .amaya-estimate__aside-kicker {
        font-size: .67rem;
    }

    .amaya-estimate__aside-top p {
        font-size: .84rem;
    }

    .amaya-estimate__snapshot-head > span:first-child {
        font-size: .67rem;
    }

    .amaya-estimate__snapshot-status {
        font-size: .6rem;
    }

    .amaya-estimate__snapshot-row span {
        font-size: .6rem;
    }

    .amaya-estimate__snapshot-row strong {
        font-size: .71rem;
    }

    .amaya-estimate__aside-contact > span {
        font-size: .62rem;
    }

    .amaya-estimate__aside-contact strong {
        font-size: .92rem;
    }


    /* ========================================================
       ESTIMATE — FORM
       ======================================================== */

    .amaya-estimate__progress-top span,
    .amaya-estimate__progress-top strong {
        font-size: .63rem;
    }

    .amaya-estimate__form-section-head > span:first-child {
        font-size: .61rem;
    }

    .amaya-estimate__form-section-head p,
    .amaya-estimate__form-section-head small {
        font-size: .68rem;
    }

    .amaya-estimate__field > label,
    .amaya-estimate__project-type > legend,
    .amaya-estimate__message-label label {
        font-size: .7rem;
    }

    .amaya-estimate__control input,
    .amaya-estimate__select-wrap select,
    .amaya-estimate textarea {
        font-size: .88rem;
    }

    .amaya-estimate__service-option > span {
        font-size: .73rem;
    }

    .amaya-estimate__service-option small {
        font-size: .62rem;
    }

    .amaya-estimate__service-option > span::after {
        font-size: .61rem;
    }

    .amaya-estimate__type-options label > span {
        font-size: .7rem;
    }

    .amaya-estimate__type-options small {
        font-size: .61rem;
    }

    .amaya-estimate__counter {
        font-size: .62rem;
    }

    .amaya-estimate__field-help {
        font-size: .63rem;
    }

    .amaya-estimate__error {
        font-size: .63rem;
    }

    .amaya-estimate__notice {
        font-size: .75rem;
    }

    .amaya-estimate__privacy p {
        font-size: .63rem;
    }

    .amaya-estimate__submit {
        font-size: .74rem;
    }


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

    .amaya-next__eyebrow {
        font-size: .74rem;
    }

    .amaya-next__eyebrow-number {
        font-size: .66rem;
    }

    .amaya-next__header-copy p {
        font-size: .98rem;
    }

    .amaya-next__step-label {
        font-size: .64rem;
    }

    .amaya-next__step-content p {
        font-size: .83rem;
    }

    .amaya-next__contact-content div > span {
        font-size: .63rem;
    }

    .amaya-next__contact-content strong {
        font-size: .81rem;
    }

    .amaya-next__call-copy small {
        font-size: .61rem;
    }

    .amaya-next__call-copy strong {
        font-size: .86rem;
    }

}



/* ============================================================
   02. TABLET / SMALL LAPTOP
   ============================================================ */

@media (min-width: 768px) and (max-width: 1199px) {

    /* CONTACT HERO */

    .amaya-contact-hero__eyebrow {
        font-size: .71rem;
    }

    .amaya-contact-hero__eyebrow-number {
        font-size: .64rem;
    }

    .amaya-contact-hero__description {
        font-size: .96rem;
    }

    .amaya-contact-hero__button--primary {
        font-size: .72rem;
    }

    .amaya-contact-hero__call-copy small {
        font-size: .61rem;
    }

    .amaya-contact-hero__call-copy strong {
        font-size: .81rem;
    }

    .amaya-contact-hero__side > span {
        font-size: .62rem;
    }

    .amaya-contact-hero__side small {
        font-size: .69rem;
    }

    .amaya-contact-hero__bottom-inner {
        font-size: .59rem;
    }


    /* CONTACT INFO */

    .amaya-contact-info__label {
        font-size: .63rem;
    }

    .amaya-contact-info__value--email {
        font-size: .78rem;
    }

    .amaya-contact-info__hint {
        font-size: .66rem;
    }

    .amaya-contact-info__status {
        font-size: .58rem;
    }


    /* ESTIMATE HEADER */

    .amaya-estimate__eyebrow {
        font-size: .71rem;
    }

    .amaya-estimate__eyebrow-number {
        font-size: .64rem;
    }

    .amaya-estimate__header-copy p {
        font-size: .94rem;
    }

    .amaya-estimate__header-note {
        font-size: .65rem;
    }


    /* ESTIMATE ASIDE */

    .amaya-estimate__aside-kicker {
        font-size: .65rem;
    }

    .amaya-estimate__aside-top p {
        font-size: .81rem;
    }

    .amaya-estimate__snapshot-head > span:first-child {
        font-size: .65rem;
    }

    .amaya-estimate__snapshot-status {
        font-size: .59rem;
    }

    .amaya-estimate__snapshot-row span {
        font-size: .59rem;
    }

    .amaya-estimate__snapshot-row strong {
        font-size: .69rem;
    }

    .amaya-estimate__aside-contact > span {
        font-size: .61rem;
    }

    .amaya-estimate__aside-contact strong {
        font-size: .88rem;
    }


    /* FORM */

    .amaya-estimate__progress-top span,
    .amaya-estimate__progress-top strong {
        font-size: .61rem;
    }

    .amaya-estimate__form-section-head > span:first-child {
        font-size: .6rem;
    }

    .amaya-estimate__form-section-head p,
    .amaya-estimate__form-section-head small {
        font-size: .66rem;
    }

    .amaya-estimate__field > label,
    .amaya-estimate__project-type > legend,
    .amaya-estimate__message-label label {
        font-size: .69rem;
    }

    .amaya-estimate__control input,
    .amaya-estimate__select-wrap select,
    .amaya-estimate textarea {
        font-size: .86rem;
    }

    .amaya-estimate__service-option > span {
        font-size: .71rem;
    }

    .amaya-estimate__service-option small {
        font-size: .61rem;
    }

    .amaya-estimate__type-options label > span {
        font-size: .69rem;
    }

    .amaya-estimate__type-options small {
        font-size: .6rem;
    }

    .amaya-estimate__counter,
    .amaya-estimate__field-help,
    .amaya-estimate__error,
    .amaya-estimate__privacy p {
        font-size: .61rem;
    }

    .amaya-estimate__notice {
        font-size: .73rem;
    }

    .amaya-estimate__submit {
        font-size: .72rem;
    }


    /* WHAT HAPPENS NEXT */

    .amaya-next__eyebrow {
        font-size: .71rem;
    }

    .amaya-next__eyebrow-number {
        font-size: .64rem;
    }

    .amaya-next__header-copy p {
        font-size: .94rem;
    }

    .amaya-next__step-label {
        font-size: .62rem;
    }

    .amaya-next__step-content p {
        font-size: .8rem;
    }

    .amaya-next__contact-content div > span {
        font-size: .61rem;
    }

    .amaya-next__contact-content strong {
        font-size: .78rem;
    }

    .amaya-next__call-copy small {
        font-size: .59rem;
    }

    .amaya-next__call-copy strong {
        font-size: .82rem;
    }

}



/* ============================================================
   03. MOBILE
   481px — 767px
   ============================================================ */

@media (min-width: 481px) and (max-width: 767px) {

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

    .amaya-contact-hero__eyebrow {
        font-size: .68rem;
    }

    .amaya-contact-hero__eyebrow-number {
        font-size: .61rem;
    }

    .amaya-contact-hero__description {
        font-size: .92rem;

        line-height: 1.62;
    }

    .amaya-contact-hero__button--primary {
        font-size: .7rem;
    }

    .amaya-contact-hero__call-copy small {
        font-size: .6rem;
    }

    .amaya-contact-hero__call-copy strong {
        font-size: .79rem;
    }

    .amaya-contact-hero__bottom-inner {
        font-size: .58rem;

        letter-spacing: .065em;
    }


    /* ========================================================
       CONTACT INFORMATION
       ======================================================== */

    .amaya-contact-info__label {
        font-size: .63rem;
    }

    .amaya-contact-info__value--email {
        font-size: .85rem;
    }

    .amaya-contact-info__hint {
        font-size: .67rem;
    }

    .amaya-contact-info__status {
        font-size: .59rem;
    }


    /* ========================================================
       ESTIMATE HEADER
       ======================================================== */

    .amaya-estimate__eyebrow {
        font-size: .68rem;
    }

    .amaya-estimate__eyebrow-number {
        font-size: .61rem;
    }

    .amaya-estimate__header-copy p {
        font-size: .91rem;

        line-height: 1.65;
    }

    .amaya-estimate__header-note {
        font-size: .64rem;
    }


    /* ========================================================
       ESTIMATE ASIDE
       ======================================================== */

    .amaya-estimate__aside-kicker {
        font-size: .64rem;
    }

    .amaya-estimate__aside-top p {
        font-size: .81rem;
    }

    .amaya-estimate__snapshot-head > span:first-child {
        font-size: .64rem;
    }

    .amaya-estimate__snapshot-status {
        font-size: .59rem;
    }

    .amaya-estimate__snapshot-row span {
        font-size: .59rem;
    }

    .amaya-estimate__snapshot-row strong {
        font-size: .69rem;
    }

    .amaya-estimate__aside-contact > span {
        font-size: .61rem;
    }

    .amaya-estimate__aside-contact strong {
        font-size: .88rem;
    }


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

    .amaya-estimate__progress-top span,
    .amaya-estimate__progress-top strong {
        font-size: .61rem;
    }

    .amaya-estimate__form-section-head > span:first-child {
        font-size: .6rem;
    }

    .amaya-estimate__form-section-head p,
    .amaya-estimate__form-section-head small {
        font-size: .67rem;
    }

    .amaya-estimate__field > label,
    .amaya-estimate__project-type > legend,
    .amaya-estimate__message-label label {
        font-size: .7rem;
    }

    /*
       Keep form controls comfortably readable.
    */

    .amaya-estimate__control input,
    .amaya-estimate__select-wrap select,
    .amaya-estimate textarea {
        font-size: 1rem;
    }

    .amaya-estimate__service-option > span {
        font-size: .72rem;
    }

    .amaya-estimate__service-option small {
        font-size: .63rem;
    }

    .amaya-estimate__service-option > span::after {
        font-size: .62rem;
    }

    .amaya-estimate__type-options label > span {
        font-size: .7rem;
    }

    .amaya-estimate__type-options small {
        font-size: .62rem;
    }

    .amaya-estimate__counter {
        font-size: .62rem;
    }

    .amaya-estimate__field-help {
        font-size: .64rem;
    }

    .amaya-estimate__error {
        font-size: .64rem;
    }

    .amaya-estimate__notice {
        font-size: .74rem;
    }

    .amaya-estimate__privacy p {
        font-size: .64rem;
    }

    .amaya-estimate__submit {
        font-size: .72rem;
    }


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

    .amaya-next__eyebrow {
        font-size: .68rem;
    }

    .amaya-next__eyebrow-number {
        font-size: .61rem;
    }

    .amaya-next__header-copy p {
        font-size: .91rem;

        line-height: 1.65;
    }

    .amaya-next__step-label {
        font-size: .62rem;
    }

    .amaya-next__step-content p {
        font-size: .8rem;

        line-height: 1.62;
    }

    .amaya-next__contact-content div > span {
        font-size: .61rem;
    }

    .amaya-next__contact-content strong {
        font-size: .78rem;
    }

    .amaya-next__call-copy small {
        font-size: .59rem;
    }

    .amaya-next__call-copy strong {
        font-size: .82rem;
    }

}



/* ============================================================
   04. SMALL MOBILE
   <= 480px
   ============================================================ */

@media (max-width: 480px) {

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

    .amaya-contact-hero__eyebrow {
        font-size: .65rem;

        letter-spacing: .085em;
    }

    .amaya-contact-hero__eyebrow-number {
        font-size: .59rem;
    }

    .amaya-contact-hero__description {
        font-size: .89rem;

        line-height: 1.62;
    }

    .amaya-contact-hero__button--primary {
        min-height: 46px;

        font-size: .68rem;
    }

    .amaya-contact-hero__call-copy small {
        font-size: .58rem;
    }

    .amaya-contact-hero__call-copy strong {
        font-size: .76rem;
    }


    /*
       Was .42rem in the original CSS.
    */

    .amaya-contact-hero__bottom-inner {
        gap: 6px;

        font-size: .6rem;

        line-height: 1.25;

        letter-spacing: .04em;
    }


    /* ========================================================
       CONTACT INFORMATION
       ======================================================== */

    .amaya-contact-info__label {
        font-size: .62rem;
    }

    .amaya-contact-info__value--email {
        font-size: .82rem;

        line-height: 1.35;
    }

    .amaya-contact-info__hint {
        font-size: .66rem;
    }

    /*
       Original small-mobile rule was .40rem.
    */

    .amaya-contact-info__status {
        font-size: .58rem;
    }


    /* ========================================================
       ESTIMATE — HEADER
       ======================================================== */

    .amaya-estimate__eyebrow {
        font-size: .66rem;
    }

    .amaya-estimate__eyebrow-number {
        font-size: .59rem;
    }

    .amaya-estimate__header-copy p {
        font-size: .89rem;

        line-height: 1.65;
    }

    .amaya-estimate__header-note {
        font-size: .63rem;
    }


    /* ========================================================
       ESTIMATE — ASIDE
       ======================================================== */

    .amaya-estimate__aside-kicker {
        font-size: .63rem;
    }

    .amaya-estimate__aside-top p {
        font-size: .8rem;

        line-height: 1.62;
    }

    .amaya-estimate__snapshot-head > span:first-child {
        font-size: .63rem;
    }

    .amaya-estimate__snapshot-status {
        font-size: .58rem;
    }

    .amaya-estimate__snapshot-row {
        grid-template-columns:
            70px
            minmax(0, 1fr);
    }

    .amaya-estimate__snapshot-row span {
        font-size: .58rem;
    }

    .amaya-estimate__snapshot-row strong {
        font-size: .68rem;
    }

    .amaya-estimate__aside-contact > span {
        font-size: .6rem;
    }

    .amaya-estimate__aside-contact strong {
        font-size: .86rem;
    }


    /* ========================================================
       ESTIMATE — FORM
       ======================================================== */

    .amaya-estimate__progress-top span,
    .amaya-estimate__progress-top strong {
        font-size: .6rem;
    }

    .amaya-estimate__form-section-head > span:first-child {
        font-size: .59rem;
    }

    .amaya-estimate__form-section-head h3,
    .amaya-estimate__form-section-head strong {
        font-size: 1.5rem;
    }

    .amaya-estimate__form-section-head p,
    .amaya-estimate__form-section-head small {
        font-size: .66rem;

        line-height: 1.5;
    }

    .amaya-estimate__field > label,
    .amaya-estimate__project-type > legend,
    .amaya-estimate__message-label label {
        font-size: .71rem;
    }


    /* --------------------------------------------------------
       INPUTS

       1rem keeps form text comfortable on phones.
       -------------------------------------------------------- */

    .amaya-estimate__control input,
    .amaya-estimate__select-wrap select,
    .amaya-estimate textarea {
        font-size: 1rem;
    }

    .amaya-estimate__control input,
    .amaya-estimate__select-wrap select {
        min-height: 50px;
    }


    /* SERVICES */

    .amaya-estimate__service-option > span {
        min-height: 68px;

        font-size: .72rem;
    }

    .amaya-estimate__service-option small {
        margin-top: 4px;

        font-size: .63rem;

        line-height: 1.35;
    }

    .amaya-estimate__service-option > span::after {
        font-size: .62rem;
    }


    /* PROJECT TYPE */

    .amaya-estimate__type-options label > span {
        min-height: 64px;

        font-size: .71rem;
    }

    .amaya-estimate__type-options small {
        margin-top: 4px;

        font-size: .62rem;

        line-height: 1.3;
    }


    /* HELP / ERRORS */

    .amaya-estimate__counter {
        font-size: .61rem;
    }

    .amaya-estimate__field-help {
        font-size: .64rem;

        line-height: 1.5;
    }

    .amaya-estimate__error {
        min-height: 17px;

        font-size: .64rem;
    }

    .amaya-estimate__notice {
        font-size: .74rem;

        line-height: 1.55;
    }

    .amaya-estimate__privacy p {
        font-size: .64rem;

        line-height: 1.5;
    }

    .amaya-estimate__submit {
        min-height: 52px;

        font-size: .73rem;
    }


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

    .amaya-next__eyebrow {
        font-size: .66rem;
    }

    .amaya-next__eyebrow-number {
        font-size: .59rem;
    }

    .amaya-next__header-copy p {
        font-size: .88rem;

        line-height: 1.65;
    }

    .amaya-next__step-label {
        font-size: .61rem;
    }

    .amaya-next__step-content p {
        font-size: .79rem;

        line-height: 1.62;
    }

    .amaya-next__contact-content div > span {
        font-size: .6rem;
    }

    .amaya-next__contact-content strong {
        font-size: .76rem;

        line-height: 1.45;
    }

    .amaya-next__call-copy small {
        font-size: .58rem;
    }

    .amaya-next__call-copy strong {
        font-size: .8rem;
    }

}