/* ============================================================
   AMAYA'S LANDSCAPING LLC
   GLOBAL DESIGN SYSTEM
   ============================================================ */


/* ============================================================
   01. VARIABLES
   ============================================================ */

:root {

    /* --------------------------------------------------------
       BRAND — LOGO COLORS
       -------------------------------------------------------- */

    --amaya-forest: #2D5B39;
    --amaya-forest-deep: #1F432B;

    --amaya-leaf: #83A938;
    --amaya-leaf-light: #A2C651;

    --amaya-earth: #4E3925;
    --amaya-earth-soft: #6B5138;


    /* --------------------------------------------------------
       ELEGANT SUPPORTING COLORS
       -------------------------------------------------------- */

    --amaya-white: #FEFEFE;

    --amaya-ivory: #F5F2EA;
    --amaya-cream: #EDE8DC;

    --amaya-sage: #D5DDCF;
    --amaya-sage-light: #E7ECE3;

    --amaya-charcoal: #18201B;
    --amaya-ink: #101713;

    --amaya-brass: #B18A52;
    --amaya-brass-light: #CFB078;


    /* --------------------------------------------------------
       TEXT
       -------------------------------------------------------- */

    --amaya-text: #18201B;
    --amaya-text-soft: #5C665F;
    --amaya-text-muted: #737C76;

    --amaya-text-light: #F7F5EE;
    --amaya-text-light-soft: rgba(255, 255, 255, .76);


    /* --------------------------------------------------------
       BACKGROUNDS
       -------------------------------------------------------- */

    --amaya-background: #F5F2EA;
    --amaya-background-soft: #F8F6F0;

    --amaya-surface: #FEFEFE;
    --amaya-surface-soft: #F0EDE5;

    --amaya-dark-surface: #14251A;
    --amaya-dark-surface-deep: #0D1811;


    /* --------------------------------------------------------
       BORDERS
       -------------------------------------------------------- */

    --amaya-border:
        rgba(45, 91, 57, .13);

    --amaya-border-light:
        rgba(255, 255, 255, .13);

    --amaya-border-earth:
        rgba(78, 57, 37, .15);


    /* --------------------------------------------------------
       SHADOWS
       -------------------------------------------------------- */

    --amaya-shadow-xs:
        0 4px 16px rgba(31, 67, 43, .05);

    --amaya-shadow-sm:
        0 8px 24px rgba(31, 67, 43, .07);

    --amaya-shadow-md:
        0 18px 50px rgba(31, 67, 43, .10);

    --amaya-shadow-lg:
        0 30px 80px rgba(16, 23, 19, .14);

    --amaya-shadow-dark:
        0 24px 70px rgba(8, 15, 10, .24);


    /* --------------------------------------------------------
       BORDER RADIUS
       -------------------------------------------------------- */

    --amaya-radius-sm: 6px;
    --amaya-radius-md: 10px;
    --amaya-radius-lg: 14px;


    /* --------------------------------------------------------
       TYPOGRAPHY
       -------------------------------------------------------- */

    --amaya-font-heading:
        'Cormorant Garamond',
        Georgia,
        'Times New Roman',
        serif;

    --amaya-font-body:
        'Manrope',
        Arial,
        Helvetica,
        sans-serif;


    /* --------------------------------------------------------
       TRANSITIONS
       -------------------------------------------------------- */

    --amaya-transition-fast:
        180ms ease;

    --amaya-transition:
        320ms cubic-bezier(.22, 1, .36, 1);

    --amaya-transition-slow:
        650ms cubic-bezier(.16, 1, .3, 1);

    --amaya-transition-page:
        480ms cubic-bezier(.77, 0, .18, 1);


    /* --------------------------------------------------------
       GLOBAL LAYOUT
       Values are overwritten by the four breakpoints below.
       -------------------------------------------------------- */

    --amaya-container-width: 1280px;

    --amaya-inline-space: 24px;

    --amaya-section-space: 90px;

    --amaya-scroll-offset: 100px;
}



/* ============================================================
   02. RESET
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;

    scroll-behavior: smooth;
    scroll-padding-top: var(--amaya-scroll-offset);

    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;

    scrollbar-width: thin;

    scrollbar-color:
        var(--amaya-forest)
        var(--amaya-cream);
}


body {
    position: relative;

    margin: 0;
    padding: 0;

    min-width: 320px;
    min-height: 100vh;
    min-height: 100svh;

    overflow-x: hidden;

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

    font-size: 16px;
    font-weight: 400;

    line-height: 1.7;

    color: var(--amaya-text);


    /* --------------------------------------------------------
       GLOBAL ELEGANT BACKGROUND

       Very subtle green + brass/earth atmospheric tones.
       Individual sections can still have their own background.
       -------------------------------------------------------- */

    background:
        radial-gradient(
            circle at 8% 4%,
            rgba(131, 169, 56, .075) 0,
            transparent 28rem
        ),
        radial-gradient(
            circle at 95% 18%,
            rgba(177, 138, 82, .065) 0,
            transparent 25rem
        ),
        radial-gradient(
            circle at 45% 100%,
            rgba(45, 91, 57, .045) 0,
            transparent 34rem
        ),
        linear-gradient(
            180deg,
            #F8F6F0 0%,
            var(--amaya-ivory) 42%,
            #F1EEE5 100%
        );

    background-attachment: fixed;

    text-rendering: optimizeLegibility;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    animation:
    amayaPageEntrance .55s
    ease
    both;
}


body,
button,
input,
textarea,
select {
    font-family: var(--amaya-font-body);
}


img,
picture,
video,
canvas,
svg {
    display: block;

    max-width: 100%;
}


img {
    height: auto;
}


button,
input,
textarea,
select {
    font: inherit;
}


button,
a {
    -webkit-tap-highlight-color: transparent;
}


button {
    cursor: pointer;
}


a {
    color: inherit;

    text-decoration: none;
}


p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}


p:last-child {
    margin-bottom: 0;
}



/* ============================================================
   03. GLOBAL TYPOGRAPHY
   ============================================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--amaya-font-heading);

    color: var(--amaya-ink);

    font-weight: 600;

    line-height: .98;

    letter-spacing: -.025em;
}


h1 {
    font-size: clamp(3.25rem, 7vw, 7.5rem);
}


h2 {
    font-size: clamp(2.7rem, 5vw, 5.5rem);
}


h3 {
    font-size: clamp(1.85rem, 3vw, 3rem);
}


h4 {
    font-size: clamp(1.4rem, 2vw, 2rem);
}


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

    line-height: 1.75;
}



/* ============================================================
   04. TEXT SELECTION
   ============================================================ */

::selection {
    color: var(--amaya-white);

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


::-moz-selection {
    color: var(--amaya-white);

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



/* ============================================================
   05. ACCESSIBILITY / FOCUS
   ============================================================ */

:focus {
    outline: none;
}


:focus-visible {
    outline:
        2px solid
        var(--amaya-leaf);

    outline-offset: 4px;
}


a,
button,
input,
textarea,
select {
    transition:
        color var(--amaya-transition),
        background-color var(--amaya-transition),
        border-color var(--amaya-transition),
        opacity var(--amaya-transition),
        transform var(--amaya-transition),
        box-shadow var(--amaya-transition);
}



/* ============================================================
   06. GLOBAL CONTAINER
   ============================================================ */

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

    margin-inline: auto;
}



/* ============================================================
   07. GLOBAL SECTION SPACING
   ============================================================ */

.amaya-section {
    position: relative;

    padding-block:
        var(--amaya-section-space);

    scroll-margin-top:
        var(--amaya-scroll-offset);
}


section[id],
footer[id],
div[id] {
    scroll-margin-top:
        var(--amaya-scroll-offset);
}



/* ============================================================
   08. OPTIONAL GLOBAL SURFACES
   ============================================================ */

.amaya-surface-light {
    background:
        var(--amaya-surface);
}


.amaya-surface-ivory {
    background:
        var(--amaya-ivory);
}


.amaya-surface-dark {
    color:
        var(--amaya-text-light);

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



/* ============================================================
   09. CUSTOM SCROLLBAR
   ============================================================ */

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 11px;
}


html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background:
        var(--amaya-cream);
}


html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    min-height: 50px;

    border:
        3px solid
        var(--amaya-cream);

    border-radius: 10px;

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


html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
    background:
        var(--amaya-leaf);
}


html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner {
    background:
        var(--amaya-cream);
}



/* ============================================================
   10. PAGE TRANSITION
   ============================================================ */

.amaya-page-transition {
    position: fixed;

    inset: 0;

    z-index: 999999;

    display: grid;

    place-items: center;

    width: 100%;
    height: 100vh;
    height: 100dvh;

    pointer-events: none;

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

    transform:
        translate3d(0, 101%, 0);

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

    will-change: transform;
}


/* Decorative top edge */

.amaya-page-transition::before {
    content: '';

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

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


.amaya-page-transition__brand {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 15px;

    opacity: 0;

    transform:
        translateY(16px);

    transition:
        opacity .25s ease .12s,
        transform .4s
        cubic-bezier(.22, 1, .36, 1)
        .12s;
}


.amaya-page-transition__line {
    width: 42px;
    height: 1px;

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


.amaya-page-transition__text {
    color:
        rgba(255, 255, 255, .86);

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

    font-size: .7rem;

    font-weight: 600;

    letter-spacing: .22em;

    text-transform: uppercase;
}



/* Transition activated before navigation */

html.amaya-is-leaving
.amaya-page-transition {
    pointer-events: auto;

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


html.amaya-is-leaving
.amaya-page-transition__brand {
    opacity: 1;

    transform:
        translateY(0);
}



/* Immediate state used during bfcache recovery */

.amaya-page-transition.amaya-transition-reset {
    transition:
        none !important;

    transform:
        translate3d(0, 101%, 0) !important;

    pointer-events:
        none !important;
}


.amaya-page-transition.amaya-transition-reset
.amaya-page-transition__brand {
    opacity:
        0 !important;

    transform:
        translateY(16px) !important;

    transition:
        none !important;
}



/* ============================================================
   11. PAGE ENTRANCE
   ============================================================ */

@keyframes amayaPageEntrance {

    from {
        opacity: .82;
    }

    to {
        opacity: 1;
    }

}



/* ============================================================
   12. SECTION-TO-SECTION NAVIGATION ANIMATION
   ============================================================ */

.amaya-anchor-arrival {
    animation:
        amayaAnchorArrival
        .7s
        cubic-bezier(.22, 1, .36, 1);
}


@keyframes amayaAnchorArrival {

    0% {
        opacity: .88;

        transform:
            translateY(12px);
    }

    100% {
        opacity: 1;

        transform:
            translateY(0);
    }

}



/* ============================================================
   13. UTILITY — PREVENT SCROLL WHEN NEEDED
   ============================================================ */

body.amaya-scroll-lock {
    overflow: hidden;

    overscroll-behavior: none;
}



































/* ============================================================
   AMAYA'S LANDSCAPING LLC
   TOP INFORMATION BAR
   ============================================================ */


/* ============================================================
   01. FIRST SCREEN HEIGHT SYSTEM

   These variables coordinate:

   TOPBAR
   +
   HEADER
   +
   HERO
   =
   MAXIMUM 100svh
   ============================================================ */

:root {

    --amaya-topbar-height: 38px;

    --amaya-header-height: 82px;

    --amaya-first-screen-ui:
        calc(
            var(--amaya-topbar-height) +
            var(--amaya-header-height)
        );

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



/* ============================================================
   02. TOPBAR
   ============================================================ */

.amaya-topbar {
    position: relative;

    z-index: 1100;

    width: 100%;
    height: var(--amaya-topbar-height);

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

    background:
        var(--amaya-ink);

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

    overflow: hidden;

    isolation: isolate;
}



/* Elegant, subtle environmental detail */

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

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(177, 138, 82, .25) 22%,
            var(--amaya-brass) 50%,
            rgba(131, 169, 56, .35) 78%,
            transparent 100%
        );

    pointer-events: none;
}



/* ============================================================
   03. INNER
   ============================================================ */

.amaya-topbar__inner {
    position: relative;

    display: grid;

    grid-template-columns:
        auto
        1fr
        auto;

    align-items: center;

    height: 100%;
}



/* ============================================================
   04. INFORMATION ITEMS
   ============================================================ */

.amaya-topbar__item {
    position: relative;

    display: inline-flex;

    align-items: center;

    min-width: 0;

    gap: 8px;

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

    font-size: .72rem;

    font-weight: 500;

    line-height: 1;

    letter-spacing: .035em;

    white-space: nowrap;
}



/* ============================================================
   05. HOURS
   ============================================================ */

.amaya-topbar__hours {
    justify-self: start;
}



/* ============================================================
   06. LOCATION
   ============================================================ */

.amaya-topbar__location {
    justify-self: center;

    padding-inline: 28px;

    color:
        rgba(255, 255, 255, .62);
}


.amaya-topbar__location::before,
.amaya-topbar__location::after {
    content: '';

    position: absolute;

    top: 50%;

    width: 1px;
    height: 13px;

    transform:
        translateY(-50%);

    background:
        rgba(255, 255, 255, .14);
}


.amaya-topbar__location::before {
    left: 0;
}


.amaya-topbar__location::after {
    right: 0;
}



/* ============================================================
   07. PHONE
   ============================================================ */

.amaya-topbar__phone {
    justify-self: end;

    color:
        var(--amaya-white);

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


.amaya-topbar__phone:hover {
    color:
        var(--amaya-leaf-light);
}


.amaya-topbar__phone-number {
    color:
        inherit;

    font-size: .74rem;

    font-weight: 700;

    letter-spacing: .035em;
}



/* ============================================================
   08. LABELS
   ============================================================ */

.amaya-topbar__label,
.amaya-topbar__location-prefix,
.amaya-topbar__call-label {
    color:
        var(--amaya-brass-light);

    font-weight: 600;
}


.amaya-topbar__value {
    color:
        rgba(255, 255, 255, .74);
}



/* ============================================================
   09. ICONS
   ============================================================ */

.amaya-topbar__icon {
    display: grid;

    flex: 0 0 auto;

    place-items: center;

    width: 15px;
    height: 15px;

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


.amaya-topbar__icon svg {
    width: 100%;
    height: 100%;

    stroke: currentColor;

    stroke-width: 1.55;

    stroke-linecap: round;

    stroke-linejoin: round;
}



/* ============================================================
   10. ENTRANCE ANIMATION

   IMPORTANT:
   We animate the CONTENT, not the entire topbar.

   The topbar itself is intentionally never transformed because
   it is part of the structural system that will sit above the
   header.
   ============================================================ */

.amaya-topbar__item {
    opacity: 0;

    transform:
        translateY(-5px);
}


.amaya-topbar.amaya-topbar--ready
.amaya-topbar__item {
    opacity: 1;

    transform:
        translateY(0);

    transition:
        opacity .55s
        cubic-bezier(.22, 1, .36, 1),

        transform .55s
        cubic-bezier(.22, 1, .36, 1);
}


.amaya-topbar.amaya-topbar--ready
.amaya-topbar__location {
    transition-delay: .06s;
}


.amaya-topbar.amaya-topbar--ready
.amaya-topbar__phone {
    transition-delay: .12s;
}







































/* ============================================================
   AMAYA'S LANDSCAPING LLC
   HEADER / NAVIGATION
   ============================================================ */


/* ============================================================
   01. HEADER STRUCTURE

   IMPORTANT:
   The header element stays in normal document flow.

   This reserves its full height and prevents layout jumps.

   The visual shell is:
   - absolute while at its natural position
   - fixed only after the header reaches viewport top

   NO position: sticky is used.
   ============================================================ */

.amaya-header {
    position: relative;

    z-index: 3000;

    width: 100%;
    height: var(--amaya-header-height);

    flex: 0 0 var(--amaya-header-height);
}



/* ============================================================
   02. HEADER SHELL
   ============================================================ */

.amaya-header__shell {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: var(--amaya-header-height);

    background:
        rgba(248, 246, 240, .96);

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

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

    isolation: isolate;
}


/* Fixed only after reaching viewport top */

.amaya-header.amaya-header--fixed
.amaya-header__shell {
    position: fixed;

    top: 0;
    right: 0;
    left: 0;

    background:
        rgba(248, 246, 240, .97);

    box-shadow:
        0 12px 40px rgba(16, 23, 19, .08);

    backdrop-filter:
        blur(18px);

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


/* Decorative line */

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

    position: absolute;

    right: 0;
    bottom: -1px;
    left: 0;

    height: 1px;

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

    pointer-events: none;
}



/* ============================================================
   03. INNER LAYOUT
   ============================================================ */

.amaya-header__inner {
    display: grid;

    grid-template-columns:
        auto
        1fr
        auto;

    align-items: center;

    gap: 32px;

    height: 100%;
}



/* ============================================================
   04. LOGO
   ============================================================ */

.amaya-header__logo {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 auto;
}


.amaya-header__logo img {
    display: block;

    width: 68px;
    height: 68px;

    object-fit: contain;

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


.amaya-header__logo:hover img {
    transform:
        scale(1.025);
}



/* ============================================================
   05. DESKTOP NAVIGATION
   ============================================================ */

.amaya-header__nav {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: clamp(18px, 2vw, 34px);

    min-width: 0;
}


.amaya-header__nav-link {
    position: relative;

    display: inline-flex;

    align-items: center;

    height: var(--amaya-header-height);

    color: var(--amaya-charcoal);

    font-size: .76rem;

    font-weight: 600;

    line-height: 1;

    letter-spacing: .045em;

    white-space: nowrap;
}


.amaya-header__nav-link::after {
    content: '';

    position: absolute;

    right: 0;
    bottom: 21px;
    left: 0;

    height: 1px;

    background:
        var(--amaya-forest);

    transform:
        scaleX(0);

    transform-origin:
        right center;

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


.amaya-header__nav-link:hover {
    color:
        var(--amaya-forest);
}


.amaya-header__nav-link:hover::after,
.amaya-header__nav-link.amaya-nav-link--active::after {
    transform:
        scaleX(1);

    transform-origin:
        left center;
}


.amaya-header__nav-link.amaya-nav-link--active {
    color:
        var(--amaya-forest);

    font-weight: 700;
}



/* ============================================================
   06. FREE ESTIMATE BUTTON
   ============================================================ */

.amaya-header__estimate {
    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    min-height: 46px;

    padding:
        0 16px
        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 8px 20px
        rgba(31, 67, 43, .12);

    font-size: .73rem;

    font-weight: 700;

    letter-spacing: .055em;

    white-space: nowrap;

    isolation: isolate;
}


.amaya-header__estimate::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-header__estimate:hover::before {
    transform:
        translateX(0);
}


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

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


.amaya-header__estimate-icon {
    display: grid;

    place-items: center;

    width: 26px;
    height: 26px;

    color:
        var(--amaya-forest);

    background:
        var(--amaya-ivory);

    border-radius:
        4px;

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


.amaya-header__estimate:hover
.amaya-header__estimate-icon {
    transform:
        translateX(2px);
}


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

    stroke:
        currentColor;

    stroke-width:
        1.8;

    stroke-linecap:
        round;

    stroke-linejoin:
        round;
}



/* ============================================================
   07. HAMBURGER
   Hidden on desktop by default
   ============================================================ */

.amaya-header__menu-button {
    display: none;

    margin: 0;
    padding: 0;

    color:
        var(--amaya-ink);

    background:
        transparent;

    border: 0;
}


.amaya-header__menu-lines {
    position: relative;

    display: block;

    width: 23px;
    height: 15px;
}


.amaya-header__menu-lines span {
    position: absolute;

    left: 0;

    display: block;

    height: 1.5px;

    background:
        currentColor;

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


.amaya-header__menu-lines span:first-child {
    top: 3px;

    width: 23px;
}


.amaya-header__menu-lines span:last-child {
    bottom: 3px;

    width: 16px;
}


.amaya-header__menu-button:hover
.amaya-header__menu-lines span:last-child {
    width: 23px;
}


.amaya-header__menu-text {
    font-size: .62rem;

    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;
}



/* ============================================================
   08. MOBILE NAVIGATION ROOT

   IMPORTANT:
   This component is outside the header and outside main.
   Therefore neither hero overflow nor header positioning can
   clip or constrain it.
   ============================================================ */

.amaya-mobile-nav {
    position: fixed;

    inset: 0;

    z-index: 50000;

    width: 100%;
    height: 100vh;
    height: 100dvh;

    visibility: hidden;

    pointer-events: none;
}


.amaya-mobile-nav.amaya-mobile-nav--open {
    visibility: visible;

    pointer-events: auto;
}



/* ============================================================
   09. BACKDROP
   ============================================================ */

.amaya-mobile-nav__backdrop {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    opacity: 0;

    background:
        rgba(8, 15, 10, .62);

    border: 0;

    backdrop-filter:
        blur(5px);

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

    transition:
        opacity .42s ease;
}


.amaya-mobile-nav--open
.amaya-mobile-nav__backdrop {
    opacity: 1;
}



/* ============================================================
   10. MOBILE PANEL
   ============================================================ */

.amaya-mobile-nav__panel {
    position: absolute;

    top: 0;
    left: 0;

    display: flex;

    flex-direction: column;

    width: min(90%, 520px);
    height: 100%;
    height: 100dvh;

    overflow-x: hidden;
    overflow-y: auto;

    overscroll-behavior: contain;

    color:
        var(--amaya-white);

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

    box-shadow:
        30px 0 90px
        rgba(0, 0, 0, .28);

    transform:
        translate3d(-103%, 0, 0);

    transition:
        transform
        .58s
        cubic-bezier(.16, 1, .3, 1);

    will-change:
        transform;
}


.amaya-mobile-nav--open
.amaya-mobile-nav__panel {
    transform:
        translate3d(0, 0, 0);
}



/* ============================================================
   11. MOBILE PANEL TOP
   ============================================================ */

.amaya-mobile-nav__top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 94px;

    padding:
        12px
        clamp(20px, 5vw, 34px);

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


.amaya-mobile-nav__logo {
    display: block;
}


.amaya-mobile-nav__logo img {
    width: 70px;
    height: 70px;

    object-fit:
        contain;
}



/* ============================================================
   12. CLOSE BUTTON
   ============================================================ */

.amaya-mobile-nav__close {
    position: relative;

    width: 44px;
    height: 44px;

    padding: 0;

    color:
        var(--amaya-white);

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

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

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


.amaya-mobile-nav__close span {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 19px;
    height: 1px;

    background:
        currentColor;
}


.amaya-mobile-nav__close span:first-child {
    transform:
        translate(-50%, -50%)
        rotate(45deg);
}


.amaya-mobile-nav__close span:last-child {
    transform:
        translate(-50%, -50%)
        rotate(-45deg);
}



/* ============================================================
   13. MOBILE LINKS
   ============================================================ */

.amaya-mobile-nav__links {
    display: flex;

    flex-direction: column;

    padding:
        28px
        clamp(20px, 5vw, 34px);
}


.amaya-mobile-nav__link {
    position: relative;

    display: grid;

    grid-template-columns:
        34px
        1fr;

    align-items: center;

    min-height: 61px;

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

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

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

    font-size:
        clamp(1.65rem, 5vw, 2.15rem);

    font-weight: 600;

    line-height: 1;

    letter-spacing: -.015em;

    transition:
        color var(--amaya-transition),
        padding-left var(--amaya-transition);
}


.amaya-mobile-nav__link:hover,
.amaya-mobile-nav__link:focus-visible {
    padding-left:
        7px;

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


.amaya-mobile-nav__number {
    color:
        var(--amaya-brass-light);

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

    font-size:
        .58rem;

    font-weight:
        600;

    letter-spacing:
        .08em;
}



/* ============================================================
   14. MOBILE FOOTER
   ============================================================ */

.amaya-mobile-nav__footer {
    display: flex;

    flex-direction: column;

    gap: 15px;

    margin-top: auto;

    padding:
        20px
        clamp(20px, 5vw, 34px)
        max(24px, env(safe-area-inset-bottom));

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

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


.amaya-mobile-nav__eyebrow {
    color:
        rgba(255, 255, 255, .52);

    font-size:
        .64rem;

    font-weight:
        600;

    letter-spacing:
        .09em;

    text-transform:
        uppercase;
}


.amaya-mobile-nav__estimate {
    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 50px;

    padding:
        0 17px;

    color:
        var(--amaya-ink);

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

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

    font-size:
        .72rem;

    font-weight:
        800;

    letter-spacing:
        .04em;
}


.amaya-mobile-nav__estimate svg {
    width: 18px;
    height: 18px;

    stroke:
        currentColor;

    stroke-width:
        1.8;

    stroke-linecap:
        round;

    stroke-linejoin:
        round;
}


.amaya-mobile-nav__phone {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

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

    font-size:
        .67rem;
}


.amaya-mobile-nav__phone strong {
    color:
        var(--amaya-white);

    font-size:
        .72rem;
}



/* ============================================================
   15. BODY SCROLL LOCK

   JS stores the user's exact Y position before activating this.
   This is intentionally NOT simply overflow:hidden because
   mobile Safari can behave inconsistently with that technique.
   ============================================================ */

body.amaya-mobile-menu-lock {
    position: fixed;

    left: 0;

    width: 100%;

    overflow: hidden;

    touch-action: none;
}





































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


/* ============================================================
   01. HERO STRUCTURE

   IMPORTANT:

   Topbar + Header + Hero = 100svh

   Hero does NOT use 100vh independently.
   ============================================================ */

.amaya-hero {
    position: relative;

    z-index: 1;

    width: 100%;

    height:
        var(--amaya-hero-height);

    min-height:
        var(--amaya-hero-height);

    overflow: hidden;

    color:
        var(--amaya-white);

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

    isolation: isolate;
}



/* ============================================================
   02. PARALLAX MEDIA
   ============================================================ */

.amaya-hero__media {
    position: absolute;

    /*
       Extra vertical area prevents empty edges while the
       image moves during parallax.
    */

    top: -12%;
    right: 0;
    bottom: -12%;
    left: 0;

    z-index: -4;

    overflow: hidden;

    pointer-events: none;
}


.amaya-hero__image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

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

    transform:
        translate3d(
            0,
            var(--amaya-hero-parallax-y, 0px),
            0
        )
        scale(1.045);

    will-change: transform;

    backface-visibility: hidden;

    -webkit-backface-visibility: hidden;
}



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

.amaya-hero__overlay {
    position: absolute;

    inset: 0;

    z-index: -3;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(8, 15, 10, .89) 0%,
            rgba(12, 25, 16, .76) 35%,
            rgba(12, 25, 16, .43) 67%,
            rgba(8, 15, 10, .22) 100%
        ),
        linear-gradient(
            180deg,
            rgba(7, 13, 9, .12) 0%,
            rgba(7, 13, 9, .04) 55%,
            rgba(7, 13, 9, .58) 100%
        );
}



/* ============================================================
   04. ELEGANT AMBIENT DETAIL
   ============================================================ */

.amaya-hero__texture {
    position: absolute;

    inset: 0;

    z-index: -2;

    opacity: .55;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 78% 27%,
            rgba(162, 198, 81, .09),
            transparent 27%
        ),
        radial-gradient(
            circle at 17% 82%,
            rgba(177, 138, 82, .08),
            transparent 25%
        );
}



/* Fine bottom line */

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

    position: absolute;

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

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(177, 138, 82, .42) 30%,
            rgba(162, 198, 81, .25) 67%,
            transparent 100%
        );

    pointer-events: none;
}



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

.amaya-hero__container {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    height: 100%;

    padding-bottom: 48px;
}



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

.amaya-hero__content {
    width:
        min(
            760px,
            67%
        );

    padding-top: 8px;
}



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

.amaya-hero__eyebrow {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 20px;

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

    font-size: .69rem;

    font-weight: 600;

    line-height: 1.3;

    letter-spacing: .14em;

    text-transform: uppercase;
}


.amaya-hero__eyebrow-line {
    display: block;

    width: 38px;
    height: 1px;

    flex: 0 0 auto;

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



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

.amaya-hero__title {
    max-width: 820px;

    margin:
        0
        0
        23px;

    color:
        var(--amaya-white);

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

    font-size:
        clamp(
            3.45rem,
            5.6vw,
            6.25rem
        );

    font-weight: 600;

    line-height: .87;

    letter-spacing: -.042em;
}


.amaya-hero__title-line {
    display: block;

    overflow: hidden;

    padding-bottom: .08em;
}


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


.amaya-hero__title-accent {
    color:
        #E2D3B6;

    font-style: italic;

    font-weight: 500;
}



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

.amaya-hero__description {
    max-width: 610px;

    margin-bottom: 28px;

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

    font-size:
        clamp(
            .93rem,
            1.05vw,
            1.04rem
        );

    font-weight: 400;

    line-height: 1.75;
}



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

.amaya-hero__actions {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;
}



/* ============================================================
   11. BUTTONS
   ============================================================ */

.amaya-hero__button {
    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    min-height: 50px;

    padding:
        0 18px;

    overflow: hidden;

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

    font-size: .69rem;

    font-weight: 700;

    line-height: 1;

    letter-spacing: .065em;

    isolation: isolate;
}



/* PRIMARY */

.amaya-hero__button--primary {
    min-width: 190px;

    color:
        var(--amaya-ink);

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

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

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


.amaya-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-hero__button--primary:hover::before {
    transform:
        translateX(0);
}


.amaya-hero__button--primary:hover {
    color:
        var(--amaya-forest-deep);
}



/* ICON */

.amaya-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-hero__button:hover
.amaya-hero__button-icon {
    transform:
        translateX(3px);
}


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

    stroke:
        currentColor;

    stroke-width: 1.8;

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



/* SECONDARY */

.amaya-hero__button--secondary {
    min-width: 157px;

    color:
        var(--amaya-white);

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

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

    backdrop-filter:
        blur(8px);

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


.amaya-hero__button--secondary:hover {
    color:
        var(--amaya-white);

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

    border-color:
        rgba(255, 255, 255, .36);
}



/* ============================================================
   12. BOTTOM INFORMATION
   ============================================================ */

.amaya-hero__bottom {
    position: absolute;

    right: 0;
    bottom: 20px;
    left: 0;

    z-index: 3;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    pointer-events: none;
}



/* ============================================================
   13. LOCAL AREA
   ============================================================ */

.amaya-hero__local {
    display: flex;

    align-items: center;

    gap: 10px;

    pointer-events: auto;

    font-size: .61rem;

    line-height: 1;

    letter-spacing: .08em;

    text-transform: uppercase;
}


.amaya-hero__local-label {
    color:
        var(--amaya-brass-light);

    font-weight: 700;
}


.amaya-hero__local-value {
    color:
        rgba(255, 255, 255, .55);

    font-weight: 500;
}



/* ============================================================
   14. SCROLL INDICATOR
   ============================================================ */

.amaya-hero__scroll {
    display: flex;

    align-items: center;

    gap: 11px;

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

    pointer-events: auto;

    font-size: .6rem;

    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;
}


.amaya-hero__scroll-line {
    position: relative;

    display: block;

    width: 42px;
    height: 1px;

    overflow: hidden;

    background:
        rgba(255, 255, 255, .25);
}


.amaya-hero__scroll-line::after {
    content: '';

    position: absolute;

    inset: 0;

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

    transform:
        translateX(-100%);

    animation:
        amayaHeroScrollLine
        2.2s
        cubic-bezier(.77, 0, .18, 1)
        infinite;
}


@keyframes amayaHeroScrollLine {

    0% {
        transform:
            translateX(-100%);
    }

    48%,
    55% {
        transform:
            translateX(0);
    }

    100% {
        transform:
            translateX(100%);
    }

}



/* ============================================================
   15. ENTRANCE ANIMATION
   ============================================================ */

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

    transform:
        translate3d(0, 108%, 0)
        rotate(.5deg);
}


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

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



/* READY */

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

    transform:
        translate3d(0, 0, 0)
        rotate(0);

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


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


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

    transform:
        translate3d(0, 0, 0);

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


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


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


.amaya-hero.amaya-hero--ready
.amaya-hero__bottom
[data-amaya-hero-reveal] {
    transition-delay: .31s;
}


































/* ============================================================
   04. SERVICES
   AMAYA'S LANDSCAPING LLC
   ============================================================ */


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

.amaya-services {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(131, 169, 56, .065),
            transparent 26rem
        ),
        radial-gradient(
            circle at 7% 90%,
            rgba(177, 138, 82, .055),
            transparent 24rem
        ),
        var(--amaya-ivory);

    isolation: isolate;
}



/* Subtle architectural line */

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

    position: absolute;

    top: 0;
    left: var(--amaya-inline-space);

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

    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--amaya-border),
            transparent 75%
        );

    pointer-events: none;
}



/* ============================================================
   02. HEADER
   ============================================================ */

.amaya-services__header {
    display: grid;

    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(300px, .55fr);

    align-items: end;

    gap:
        clamp(50px, 7vw, 120px);

    margin-bottom:
        clamp(54px, 6vw, 88px);
}


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



/* ============================================================
   03. EYEBROW
   ============================================================ */

.amaya-services__eyebrow {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 22px;

    color:
        var(--amaya-forest);

    font-size: .68rem;

    font-weight: 700;

    line-height: 1;

    letter-spacing: .13em;

    text-transform: uppercase;
}


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

    font-size: .6rem;
}


.amaya-services__eyebrow-line {
    width: 34px;
    height: 1px;

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



/* ============================================================
   04. TITLE
   ============================================================ */

.amaya-services__title {
    max-width: 800px;

    margin: 0;

    color:
        var(--amaya-ink);

    font-size:
        clamp(3.25rem, 5vw, 5.55rem);

    font-weight: 600;

    line-height: .9;

    letter-spacing: -.04em;
}


.amaya-services__title span {
    display: block;

    color:
        var(--amaya-forest);

    font-style: italic;

    font-weight: 500;
}



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

.amaya-services__header-copy {
    padding-bottom: 5px;
}


.amaya-services__header-copy p {
    max-width: 450px;

    margin:
        0
        0
        24px;

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

    font-size: .92rem;

    line-height: 1.75;
}



/* ============================================================
   06. GALLERY LINK
   ============================================================ */

.amaya-services__gallery-link {
    display: inline-flex;

    align-items: center;

    gap: 11px;

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

    font-size: .66rem;

    font-weight: 800;

    letter-spacing: .08em;

    text-transform: uppercase;
}


.amaya-services__gallery-link > span {
    display: grid;

    place-items: center;

    width: 31px;
    height: 31px;

    color:
        var(--amaya-white);

    background:
        var(--amaya-forest);

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

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


.amaya-services__gallery-link svg {
    width: 14px;
    height: 14px;

    stroke: currentColor;

    stroke-width: 1.7;

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


.amaya-services__gallery-link:hover > span {
    background:
        var(--amaya-forest-deep);

    transform:
        translateX(4px);
}



/* ============================================================
   07. GRID

   Editorial layout:
   Featured first card + supporting cards.
   ============================================================ */

.amaya-services__grid {
    display: grid;

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

    gap: 18px;
}



/* ============================================================
   08. SERVICE CARD
   ============================================================ */

.amaya-service-card {
    position: relative;

    grid-column: span 4;

    min-height: 470px;

    overflow: hidden;

    color:
        var(--amaya-white);

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

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

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

    box-shadow:
        var(--amaya-shadow-sm);

    isolation: isolate;

    cursor: pointer;

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

        box-shadow .55s
        cubic-bezier(.22, 1, .36, 1),

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


.amaya-service-card--featured {
    grid-column: span 8;
}



/* ============================================================
   09. IMAGE
   ============================================================ */

.amaya-service-card__media {
    position: absolute;

    inset: 0;

    z-index: -3;

    overflow: hidden;
}


.amaya-service-card__media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transform:
        scale(1.035);

    transition:
        transform
        1.05s
        cubic-bezier(.16, 1, .3, 1),

        filter
        .7s ease;

    will-change:
        transform;
}



/* ============================================================
   10. IMAGE SHADE
   ============================================================ */

.amaya-service-card__shade {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(7, 14, 9, .28) 0%,
            rgba(7, 14, 9, .12) 30%,
            rgba(7, 14, 9, .79) 76%,
            rgba(7, 14, 9, .94) 100%
        );

    transition:
        background
        .55s ease;
}



/* Subtle botanical atmosphere */

.amaya-service-card::before {
    content: '';

    position: absolute;

    inset: 0;

    z-index: -1;

    opacity: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 80% 18%,
            rgba(162, 198, 81, .17),
            transparent 28%
        );

    transition:
        opacity
        .55s ease;
}



/* Fine frame */

.amaya-service-card::after {
    content: '';

    position: absolute;

    inset: 10px;

    z-index: 5;

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

    border-radius:
        calc(
            var(--amaya-radius-md) - 3px
        );

    pointer-events: none;

    transition:
        inset .55s
        cubic-bezier(.22, 1, .36, 1),

        border-color
        .55s ease;
}



/* ============================================================
   11. TOP
   ============================================================ */

.amaya-service-card__top {
    position: absolute;

    top: 22px;
    right: 22px;
    left: 22px;

    z-index: 3;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;
}


.amaya-service-card__number {
    color:
        var(--amaya-brass-light);

    font-size: .6rem;

    font-weight: 700;

    letter-spacing: .12em;
}


.amaya-service-card__category {
    padding:
        7px 10px;

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

    background:
        rgba(11, 23, 14, .42);

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

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

    backdrop-filter:
        blur(8px);

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

    font-size: .54rem;

    font-weight: 600;

    letter-spacing: .08em;

    text-transform: uppercase;
}



/* ============================================================
   12. CONTENT
   ============================================================ */

.amaya-service-card__content {
    position: absolute;

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

    z-index: 3;

    padding-right: 52px;
}


.amaya-service-card__content h3 {
    max-width: 520px;

    margin:
        0
        0
        12px;

    color:
        var(--amaya-white);

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

    font-weight: 600;

    line-height: .92;

    letter-spacing: -.03em;
}


.amaya-service-card__content h3 span {
    display: block;

    color:
        #E4D4B5;

    font-style: italic;

    font-weight: 500;
}


.amaya-service-card__content p {
    max-width: 500px;

    margin: 0;

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

    font-size: .75rem;

    line-height: 1.62;

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



/* ============================================================
   13. ARROW
   ============================================================ */

.amaya-service-card__arrow {
    position: absolute;

    right: 24px;
    bottom: 24px;

    z-index: 4;

    display: grid;

    place-items: center;

    width: 38px;
    height: 38px;

    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
        .5s
        cubic-bezier(.22, 1, .36, 1);
}


.amaya-service-card__arrow svg {
    width: 16px;
    height: 16px;

    stroke:
        currentColor;

    stroke-width:
        1.7;

    stroke-linecap:
        round;

    stroke-linejoin:
        round;
}



/* ============================================================
   14. HOVER / FOCUS
   ============================================================ */

.amaya-service-card:hover,
.amaya-service-card:focus-visible {
    transform:
        translateY(-7px);

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

    box-shadow:
        0 26px 65px
        rgba(16, 23, 19, .16);
}


.amaya-service-card:hover
.amaya-service-card__media img,
.amaya-service-card:focus-visible
.amaya-service-card__media img {
    transform:
        scale(1.095);
}


.amaya-service-card:hover::before,
.amaya-service-card:focus-visible::before {
    opacity: 1;
}


.amaya-service-card:hover::after,
.amaya-service-card:focus-visible::after {
    inset: 13px;

    border-color:
        rgba(255, 255, 255, .15);
}


.amaya-service-card:hover
.amaya-service-card__arrow,
.amaya-service-card:focus-visible
.amaya-service-card__arrow {
    color:
        var(--amaya-white);

    background:
        var(--amaya-forest);

    transform:
        translateX(4px);
}


.amaya-service-card:hover
.amaya-service-card__content p {
    color:
        rgba(255, 255, 255, .82);
}



/* ============================================================
   15. REVEAL
   ============================================================ */

[data-amaya-services-reveal],
[data-amaya-service-card] {
    opacity: 0;

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


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

    transform:
        translate3d(0, 0, 0);

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


.amaya-services.amaya-services--visible
.amaya-services__header-copy {
    transition-delay: .1s;
}


.amaya-services.amaya-services--visible
[data-amaya-service-card] {
    opacity: 1;

    transform:
        translate3d(0, 0, 0);

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

        box-shadow .55s
        cubic-bezier(.22, 1, .36, 1),

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


.amaya-services.amaya-services--visible
[data-amaya-service-card]:nth-child(1) {
    transition-delay: .06s;
}


.amaya-services.amaya-services--visible
[data-amaya-service-card]:nth-child(2) {
    transition-delay: .11s;
}


.amaya-services.amaya-services--visible
[data-amaya-service-card]:nth-child(3) {
    transition-delay: .16s;
}


.amaya-services.amaya-services--visible
[data-amaya-service-card]:nth-child(4) {
    transition-delay: .21s;
}


.amaya-services.amaya-services--visible
[data-amaya-service-card]:nth-child(5) {
    transition-delay: .26s;
}


.amaya-services.amaya-services--visible
[data-amaya-service-card]:nth-child(6) {
    transition-delay: .31s;
}




































/* ============================================================
   06. WHY CHOOSE US
   AMAYA'S LANDSCAPING LLC
   ============================================================ */


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

.amaya-why {
    position: relative;

    overflow: hidden;

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

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

    isolation: isolate;
}



/* Environmental lighting */

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

    position: absolute;

    top: -280px;
    right: -220px;

    width: 620px;
    height: 620px;

    pointer-events: none;

    background:
        radial-gradient(
            circle,
            rgba(131, 169, 56, .10) 0%,
            rgba(45, 91, 57, .045) 38%,
            transparent 70%
        );
}



/* Subtle earth accent */

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

    position: absolute;

    bottom: -300px;
    left: -260px;

    width: 650px;
    height: 650px;

    pointer-events: none;

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



/* ============================================================
   02. LAYOUT
   ============================================================ */

.amaya-why__layout {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(340px, .85fr)
        minmax(0, 1.15fr);

    align-items: center;

    gap:
        clamp(
            65px,
            8vw,
            130px
        );
}



/* ============================================================
   03. VISUAL
   ============================================================ */

.amaya-why__visual {
    position: relative;

    min-width: 0;
}


.amaya-why__image-wrap {
    position: relative;

    min-height: 620px;

    overflow: hidden;

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

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

    box-shadow:
        var(--amaya-shadow-dark);
}



/* ============================================================
   04. IMAGE
   ============================================================ */

.amaya-why__image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform:
        scale(1.065);

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

    will-change:
        transform;
}


.amaya-why.amaya-why--visible
.amaya-why__image {
    transform:
        scale(1);
}



/* ============================================================
   05. IMAGE SHADE
   ============================================================ */

.amaya-why__image-shade {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(7, 14, 9, .10) 0%,
            rgba(7, 14, 9, .02) 42%,
            rgba(7, 14, 9, .68) 100%
        );
}



/* ============================================================
   06. FRAME
   ============================================================ */

.amaya-why__frame {
    position: absolute;

    inset: 15px;

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

    border-radius:
        calc(
            var(--amaya-radius-sm) - 2px
        );

    pointer-events: none;
}



/* ============================================================
   07. IMAGE LABEL
   ============================================================ */

.amaya-why__visual-label {
    position: absolute;

    bottom: 30px;
    left: 30px;

    display: flex;

    align-items: center;

    gap: 11px;

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

    font-size: .59rem;

    font-weight: 700;

    letter-spacing: .13em;

    text-transform: uppercase;
}


.amaya-why__visual-label-line {
    width: 32px;
    height: 1px;

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



/* ============================================================
   08. VISUAL FOOTER
   ============================================================ */

.amaya-why__visual-footer {
    display: grid;

    grid-template-columns:
        auto
        1fr;

    align-items: start;

    gap: 17px;

    margin-top: 22px;

    padding-top: 20px;

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


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

    font-size: .58rem;

    font-weight: 700;

    letter-spacing: .13em;
}


.amaya-why__visual-footer p {
    max-width: 440px;

    margin: 0;

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

    font-size: .72rem;

    line-height: 1.65;
}



/* ============================================================
   09. CONTENT
   ============================================================ */

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



/* ============================================================
   10. EYEBROW
   ============================================================ */

.amaya-why__eyebrow {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 20px;

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

    font-size: .65rem;

    font-weight: 700;

    line-height: 1;

    letter-spacing: .14em;

    text-transform: uppercase;
}


.amaya-why__eyebrow-line {
    width: 42px;
    height: 1px;

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



/* ============================================================
   11. TITLE
   ============================================================ */

.amaya-why__title {
    max-width: 760px;

    margin:
        0
        0
        24px;

    color:
        var(--amaya-white);

    font-size:
        clamp(
            3.3rem,
            5vw,
            5.7rem
        );

    font-weight: 600;

    line-height: .89;

    letter-spacing: -.041em;
}


.amaya-why__title span {
    display: block;

    color:
        #E3D3B6;

    font-style: italic;

    font-weight: 500;
}



/* ============================================================
   12. INTRO
   ============================================================ */

.amaya-why__intro {
    max-width: 650px;

    margin:
        0
        0
        39px;

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

    font-size: .9rem;

    line-height: 1.75;
}



/* ============================================================
   13. REASONS
   ============================================================ */

.amaya-why__reasons {
    border-top:
        1px solid
        rgba(255, 255, 255, .11);
}



/* ============================================================
   14. REASON
   ============================================================ */

.amaya-why__reason {
    position: relative;

    display: grid;

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

    align-items: start;

    gap: 16px;

    padding:
        21px
        0;

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

    transition:
        padding-left
        .45s
        cubic-bezier(.22, 1, .36, 1),

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


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

    position: absolute;

    top: 0;
    bottom: 0;
    left: 0;

    width: 2px;

    background:
        var(--amaya-leaf);

    transform:
        scaleY(0);

    transform-origin:
        bottom;

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



/* ============================================================
   15. REASON NUMBER
   ============================================================ */

.amaya-why__reason-number {
    padding-top: 5px;

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

    font-size: .56rem;

    font-weight: 700;

    line-height: 1;

    letter-spacing: .12em;
}



/* ============================================================
   16. REASON CONTENT
   ============================================================ */

.amaya-why__reason-content h3 {
    margin:
        0
        0
        7px;

    color:
        var(--amaya-white);

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

    font-size:
        clamp(
            1.55rem,
            2vw,
            2.05rem
        );

    font-weight: 600;

    line-height: 1;

    letter-spacing: -.02em;
}


.amaya-why__reason-content p {
    max-width: 600px;

    margin: 0;

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

    font-size: .72rem;

    line-height: 1.62;

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



/* ============================================================
   17. REASON MARK
   ============================================================ */

.amaya-why__reason-mark {
    display: grid;

    place-items: center;

    width: 32px;
    height: 32px;

    margin-top: 2px;

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

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

    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-why__reason-mark svg {
    width: 14px;
    height: 14px;

    stroke:
        currentColor;

    stroke-width: 1.6;

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



/* ============================================================
   18. REASON HOVER
   ============================================================ */

.amaya-why__reason:hover {
    padding-left: 14px;

    border-color:
        rgba(162, 198, 81, .20);
}


.amaya-why__reason:hover::before {
    transform:
        scaleY(1);

    transform-origin:
        top;
}


.amaya-why__reason:hover
.amaya-why__reason-content p {
    color:
        rgba(255, 255, 255, .67);
}


.amaya-why__reason:hover
.amaya-why__reason-mark {
    color:
        var(--amaya-ink);

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

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

    transform:
        translateX(3px);
}



/* ============================================================
   19. CTA
   ============================================================ */

.amaya-why__cta {
    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 34px;
}



/* ============================================================
   20. CTA BUTTON
   ============================================================ */

.amaya-why__cta-button {
    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    min-height: 49px;

    padding:
        0 14px
        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);

    font-size: .66rem;

    font-weight: 800;

    letter-spacing: .055em;

    isolation: isolate;
}


.amaya-why__cta-button::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-why__cta-button:hover::before {
    transform:
        translateX(0);
}



/* ============================================================
   21. CTA ICON
   ============================================================ */

.amaya-why__cta-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-why__cta-button:hover
.amaya-why__cta-icon {
    transform:
        translateX(3px);
}


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

    stroke:
        currentColor;

    stroke-width: 1.8;

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



/* ============================================================
   22. PHONE
   ============================================================ */

.amaya-why__phone {
    display: flex;

    flex-direction: column;

    gap: 3px;
}


.amaya-why__phone span {
    color:
        rgba(255, 255, 255, .43);

    font-size: .55rem;

    font-weight: 600;

    letter-spacing: .07em;

    text-transform: uppercase;
}


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

    font-size: .78rem;

    font-weight: 600;

    letter-spacing: .025em;
}


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



/* ============================================================
   23. REVEAL STATES
   ============================================================ */

[data-amaya-why-visual] {
    opacity: 0;

    transform:
        translate3d(-25px, 0, 0);
}


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

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


[data-amaya-why-reason] {
    opacity: 0;

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



/* ============================================================
   24. VISIBLE
   ============================================================ */

.amaya-why.amaya-why--visible
[data-amaya-why-visual] {
    opacity: 1;

    transform:
        translate3d(0, 0, 0);

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


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

    transform:
        translate3d(0, 0, 0);

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


.amaya-why.amaya-why--visible
.amaya-why__title {
    transition-delay: .07s;
}


.amaya-why.amaya-why--visible
.amaya-why__intro {
    transition-delay: .13s;
}


.amaya-why.amaya-why--visible
[data-amaya-why-reason] {
    opacity: 1;

    transform:
        translate3d(0, 0, 0);

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

        padding-left
        .45s
        cubic-bezier(.22, 1, .36, 1),

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


.amaya-why.amaya-why--visible
[data-amaya-why-reason]:nth-child(1) {
    transition-delay: .12s;
}


.amaya-why.amaya-why--visible
[data-amaya-why-reason]:nth-child(2) {
    transition-delay: .18s;
}


.amaya-why.amaya-why--visible
[data-amaya-why-reason]:nth-child(3) {
    transition-delay: .24s;
}


.amaya-why.amaya-why--visible
[data-amaya-why-reason]:nth-child(4) {
    transition-delay: .30s;
}


.amaya-why.amaya-why--visible
.amaya-why__cta {
    transition-delay: .35s;
}

































/* ============================================================
   07. REVIEWS
   AMAYA'S LANDSCAPING LLC
   ============================================================ */


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

.amaya-reviews {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #F8F6F0 0%,
            var(--amaya-ivory) 55%,
            #F0ECE2 100%
        );

    isolation: isolate;
}



/* Architectural top line */

.amaya-reviews::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(45, 91, 57, .20),
            rgba(177, 138, 82, .34),
            rgba(45, 91, 57, .20),
            transparent
        );

    transform:
        translateX(-50%);

    pointer-events: none;
}



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

.amaya-reviews__container {
    position: relative;

    z-index: 3;
}



/* ============================================================
   03. AMBIENT ORBS
   ============================================================ */

.amaya-reviews__orb {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.amaya-reviews__orb--one {
    top: -260px;
    right: -240px;

    width: 620px;
    height: 620px;

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


.amaya-reviews__orb--two {
    bottom: -330px;
    left: -270px;

    width: 690px;
    height: 690px;

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



/* ============================================================
   04. BOTANICAL DECORATION
   ============================================================ */

.amaya-reviews__leaf {
    position: absolute;

    z-index: 1;

    color:
        var(--amaya-forest);

    opacity: .055;

    pointer-events: none;
}


.amaya-reviews__leaf svg {
    width: 100%;
    height: 100%;

    stroke: currentColor;

    stroke-width: 1.2;

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


.amaya-reviews__leaf--left {
    bottom: 4%;
    left: -30px;

    width: 180px;

    transform:
        rotate(-13deg);
}


.amaya-reviews__leaf--right {
    top: 6%;
    right: -35px;

    width: 185px;

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



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

.amaya-reviews__header {
    display: grid;

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

    align-items: end;

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

    margin-bottom:
        52px;
}



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

.amaya-reviews__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-reviews__eyebrow-number {
    color:
        var(--amaya-brass);

    font-size: .58rem;
}


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

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



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

.amaya-reviews__title {
    max-width: 820px;

    margin: 0;

    color:
        var(--amaya-ink);

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

    font-weight: 600;

    line-height: .89;

    letter-spacing: -.042em;
}


.amaya-reviews__title span {
    display: block;

    color:
        var(--amaya-forest);

    font-style: italic;

    font-weight: 500;
}



/* ============================================================
   08. INTRO
   ============================================================ */

.amaya-reviews__intro {
    position: relative;

    max-width: 430px;

    padding:
        27px
        0
        4px
        35px;

    border-left:
        1px solid
        rgba(45, 91, 57, .17);
}


.amaya-reviews__quote {
    position: absolute;

    top: -17px;
    left: 23px;

    color:
        rgba(177, 138, 82, .30);

    font-family:
        Georgia,
        serif;

    font-size: 5.6rem;

    line-height: 1;

    pointer-events: none;
}


.amaya-reviews__intro p {
    position: relative;

    z-index: 2;

    margin: 0;

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

    font-size: .9rem;

    line-height: 1.75;
}



/* ============================================================
   09. TRUST STRIP
   ============================================================ */

.amaya-reviews__trust {
    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr
        auto
        1fr;

    align-items: center;

    margin-bottom: 24px;

    padding:
        18px
        24px;

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

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

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

    box-shadow:
        var(--amaya-shadow-xs);

    backdrop-filter:
        blur(10px);

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


.amaya-reviews__trust-item {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;
}


.amaya-reviews__trust-item > div {
    display: flex;

    flex-direction: column;

    gap: 2px;
}


.amaya-reviews__trust-item strong {
    color:
        var(--amaya-charcoal);

    font-size: .69rem;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: .025em;
}


.amaya-reviews__trust-item div > span {
    color:
        var(--amaya-text-muted);

    font-size: .57rem;

    line-height: 1.3;
}



/* ============================================================
   10. TRUST ICON
   ============================================================ */

.amaya-reviews__trust-icon {
    display: grid;

    flex: 0 0 auto;

    place-items: center;

    width: 34px;
    height: 34px;

    color:
        var(--amaya-forest);

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

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

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


.amaya-reviews__trust-icon svg {
    width: 16px;
    height: 16px;

    stroke:
        currentColor;

    stroke-width: 1.5;

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


.amaya-reviews__trust-divider {
    width: 1px;
    height: 31px;

    margin-inline: 22px;

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



/* ============================================================
   11. ELFSIGHT OUTER FRAME
   ============================================================ */

.amaya-reviews__widget-frame {
    position: relative;

    overflow: hidden;

    background:
        rgba(254, 254, 254, .78);

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

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

    box-shadow:
        0 24px 65px
        rgba(31, 67, 43, .09);

    backdrop-filter:
        blur(12px);

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



/* Brass detail */

.amaya-reviews__widget-frame::before {
    content: '';

    position: absolute;

    top: 0;
    left: 50%;

    z-index: 3;

    width: 130px;
    height: 2px;

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

    transform:
        translateX(-50%);

    pointer-events: none;
}



/* ============================================================
   12. WIDGET TOP
   ============================================================ */

.amaya-reviews__widget-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    min-height: 55px;

    padding:
        0 25px;

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

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

    font-size: .58rem;

    font-weight: 700;

    letter-spacing: .10em;

    text-transform: uppercase;
}



/* ============================================================
   13. STARS
   ============================================================ */

.amaya-reviews__stars {
    display: flex;

    align-items: center;

    gap: 3px;

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


.amaya-reviews__stars span {
    font-size: .73rem;

    line-height: 1;
}



/* ============================================================
   14. ELFSIGHT SLOT
   ============================================================ */

.amaya-reviews__widget-slot {
    position: relative;

    width: 100%;

    min-height: 390px;

    padding:
        28px 24px;

    background:
        rgba(255, 255, 255, .32);
}



/*
   IMPORTANT

   Do not apply styles directly to:
   .elfsight-app-...
   iframe
   Elfsight internal cards

   This shell styles only the area around the widget.
*/



/* ============================================================
   15. TEMPORARY PLACEHOLDER

   This is NOT a loader.
   Remove it when the actual Elfsight widget is inserted.
   ============================================================ */

.amaya-reviews__elfsight-placeholder {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    width: 100%;
    min-height: 334px;

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

    border:
        1px dashed
        rgba(45, 91, 57, .18);

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

    background:
        rgba(245, 242, 234, .45);
}


.amaya-reviews__elfsight-placeholder > div:last-child {
    display: flex;

    flex-direction: column;

    gap: 2px;
}


.amaya-reviews__elfsight-placeholder strong {
    color:
        var(--amaya-forest-deep);

    font-size: .72rem;

    font-weight: 700;
}


.amaya-reviews__elfsight-placeholder
div:last-child span {
    color:
        var(--amaya-text-muted);

    font-size: .58rem;

    letter-spacing: .04em;
}


.amaya-reviews__placeholder-mark {
    display: grid;

    place-items: center;

    width: 38px;
    height: 38px;

    color:
        var(--amaya-brass);

    background:
        var(--amaya-white);

    border:
        1px solid
        rgba(177, 138, 82, .18);

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

    box-shadow:
        var(--amaya-shadow-xs);
}



/* ============================================================
   16. WIDGET BOTTOM
   ============================================================ */

.amaya-reviews__widget-bottom {
    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: center;

    gap: 16px;

    min-height: 47px;

    padding:
        0 25px;

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

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

    font-size: .52rem;

    font-weight: 700;

    letter-spacing: .13em;

    text-transform: uppercase;
}


.amaya-reviews__widget-bottom-line {
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(45, 91, 57, .15)
        );
}


.amaya-reviews__widget-bottom-line:last-of-type {
    background:
        linear-gradient(
            90deg,
            rgba(45, 91, 57, .15),
            transparent
        );
}



/* ============================================================
   17. BOTTOM SECTION
   ============================================================ */

.amaya-reviews__bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    margin-top: 30px;
}


.amaya-reviews__bottom-copy {
    display: flex;

    flex-direction: column;

    gap: 3px;
}


.amaya-reviews__bottom-copy > span {
    color:
        var(--amaya-forest-deep);

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

    font-size: 1.55rem;

    font-weight: 600;

    line-height: 1;
}


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

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

    font-size: .7rem;
}



/* ============================================================
   18. CTA
   ============================================================ */

.amaya-reviews__cta {
    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    min-height: 48px;

    padding:
        0 13px
        0 19px;

    overflow: hidden;

    color:
        var(--amaya-white);

    background:
        var(--amaya-forest);

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

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

    box-shadow:
        var(--amaya-shadow-sm);

    font-size: .64rem;

    font-weight: 800;

    letter-spacing: .055em;

    isolation: isolate;
}


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

    position: absolute;

    inset: 0;

    z-index: -1;

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

    transform:
        translateX(-102%);

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


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



/* ============================================================
   19. CTA ICON
   ============================================================ */

.amaya-reviews__cta-icon {
    display: grid;

    place-items: center;

    width: 25px;
    height: 25px;

    color:
        var(--amaya-forest);

    background:
        var(--amaya-white);

    border-radius: 4px;

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


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


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

    stroke:
        currentColor;

    stroke-width: 1.8;

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




































/* ============================================================
   08. SERVICE AREAS
   AMAYA'S LANDSCAPING LLC
   ============================================================ */


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

.amaya-areas {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 12%,
            rgba(131, 169, 56, .075),
            transparent 28rem
        ),
        radial-gradient(
            circle at 5% 92%,
            rgba(177, 138, 82, .06),
            transparent 25rem
        ),
        var(--amaya-ivory);

    isolation: isolate;
}


.amaya-areas__ambient {
    position: absolute;

    top: 8%;
    right: -190px;

    width: 420px;
    height: 420px;

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

    border-radius: 50%;

    pointer-events: none;
}


.amaya-areas__ambient::before,
.amaya-areas__ambient::after {
    content: '';

    position: absolute;

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

    border-radius: 50%;
}


.amaya-areas__ambient::before {
    inset: 55px;
}


.amaya-areas__ambient::after {
    inset: 115px;
}



/* ============================================================
   02. HEADER
   ============================================================ */

.amaya-areas__header {
    display: grid;

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

    align-items: end;

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

    margin-bottom:
        52px;
}



/* ============================================================
   03. EYEBROW
   ============================================================ */

.amaya-areas__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-areas__eyebrow-number {
    color:
        var(--amaya-brass);

    font-size: .58rem;
}


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

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



/* ============================================================
   04. TITLE
   ============================================================ */

.amaya-areas__title {
    max-width: 820px;

    margin: 0;

    color:
        var(--amaya-ink);

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

    font-weight: 600;

    line-height: .89;

    letter-spacing: -.042em;
}


.amaya-areas__title span {
    display: block;

    color:
        var(--amaya-forest);

    font-style: italic;

    font-weight: 500;
}



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

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


.amaya-areas__header-copy p {
    margin:
        0
        0
        22px;

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

    font-size: .9rem;

    line-height: 1.75;
}


.amaya-areas__map-hint {
    display: inline-flex;

    align-items: center;

    gap: 9px;

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

    font-size: .59rem;

    font-weight: 700;

    letter-spacing: .055em;

    text-transform: uppercase;
}


.amaya-areas__map-hint-icon {
    display: grid;

    place-items: center;

    width: 29px;
    height: 29px;

    color:
        var(--amaya-forest);

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

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


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

    stroke: currentColor;

    stroke-width: 1.6;

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



/* ============================================================
   06. EXPLORER
   ============================================================ */

.amaya-areas__explorer {
    display: grid;

    grid-template-columns:
        minmax(0, 1.55fr)
        minmax(330px, .45fr);

    overflow: hidden;

    background:
        var(--amaya-white);

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

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

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



/* ============================================================
   07. MAP COLUMN
   ============================================================ */

.amaya-areas__map-column {
    min-width: 0;

    background:
        #E7E9E1;

    border-right:
        1px solid
        rgba(45, 91, 57, .10);
}


.amaya-areas__map-frame {
    position: relative;

    overflow: hidden;
}



/* ============================================================
   08. LEAFLET MAP

   A defined height is required for Leaflet.
   ============================================================ */

.amaya-areas__map {
    position: relative;

    z-index: 1;

    width: 100%;
    height: 610px;

    background:
        #DCE2D8;
}



/* ============================================================
   09. LEAFLET VISUAL INTEGRATION
   ============================================================ */

.amaya-areas
.leaflet-container {
    font-family:
        var(--amaya-font-body);

    background:
        #DCE2D8;

    outline: none;
}


.amaya-areas
.leaflet-control-zoom {
    overflow: hidden;

    margin:
        18px
        0
        0
        18px;

    border: 0;

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

    box-shadow:
        0 8px 24px
        rgba(16, 23, 19, .14);
}


.amaya-areas
.leaflet-control-zoom a {
    display: grid;

    place-items: center;

    width: 38px;
    height: 38px;

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

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

    border-bottom:
        1px solid
        rgba(45, 91, 57, .10);

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

    font-size: 1.15rem;

    line-height: 1;
}


.amaya-areas
.leaflet-control-zoom a:hover {
    color:
        var(--amaya-white);

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


.amaya-areas
.leaflet-control-attribution {
    color:
        var(--amaya-text-muted);

    background:
        rgba(254, 254, 254, .86);

    font-size: 9px;
}



/* ============================================================
   10. CUSTOM MARKER
   ============================================================ */

.amaya-map-marker {
    position: relative;

    width: 38px;
    height: 46px;
}


.amaya-map-marker__pin {
    position: absolute;

    top: 0;
    left: 50%;

    display: grid;

    place-items: center;

    width: 34px;
    height: 34px;

    color:
        var(--amaya-white);

    background:
        var(--amaya-forest);

    border:
        3px solid
        rgba(255, 255, 255, .96);

    border-radius:
        50% 50% 50% 8px;

    box-shadow:
        0 7px 18px
        rgba(16, 23, 19, .25);

    transform:
        translateX(-50%)
        rotate(-45deg);

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


.amaya-map-marker__pin::before {
    content: '';

    width: 8px;
    height: 8px;

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

    border-radius: 50%;

    transform:
        rotate(45deg);
}


.amaya-map-marker__shadow {
    position: absolute;

    bottom: 1px;
    left: 50%;

    width: 19px;
    height: 6px;

    border-radius: 50%;

    background:
        rgba(16, 23, 19, .20);

    transform:
        translateX(-50%);
}


.amaya-map-marker--active
.amaya-map-marker__pin {
    background:
        var(--amaya-brass);

    transform:
        translateX(-50%)
        rotate(-45deg)
        scale(1.12);
}



/* Remove Leaflet DivIcon default box */

.amaya-leaflet-marker {
    background:
        transparent !important;

    border:
        0 !important;
}



/* ============================================================
   11. POPUP
   ============================================================ */

.amaya-areas
.leaflet-popup-content-wrapper {
    overflow: hidden;

    padding: 0;

    color:
        var(--amaya-text);

    background:
        var(--amaya-white);

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

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

    box-shadow:
        0 18px 45px
        rgba(16, 23, 19, .16);
}


.amaya-areas
.leaflet-popup-content {
    width: 230px !important;

    margin: 0;
}


.amaya-map-popup {
    padding:
        19px;
}


.amaya-map-popup__eyebrow {
    display: block;

    margin-bottom: 7px;

    color:
        var(--amaya-brass);

    font-size: .53rem;

    font-weight: 800;

    letter-spacing: .10em;

    text-transform: uppercase;
}


.amaya-map-popup h3 {
    margin:
        0
        0
        7px;

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

    font-size: 1.55rem;

    line-height: 1;
}


.amaya-map-popup p {
    margin:
        0
        0
        14px;

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

    font-size: .67rem;

    line-height: 1.5;
}


.amaya-map-popup a {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color:
        var(--amaya-forest);

    font-size: .58rem;

    font-weight: 800;

    letter-spacing: .06em;

    text-transform: uppercase;
}


.amaya-areas
.leaflet-popup-tip {
    background:
        var(--amaya-white);
}



/* ============================================================
   12. FLOATING MAP BADGE
   ============================================================ */

.amaya-areas__map-badge {
    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 500;

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        10px
        13px;

    pointer-events: none;

    color:
        var(--amaya-white);

    background:
        rgba(13, 24, 17, .88);

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

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

    box-shadow:
        0 10px 28px
        rgba(16, 23, 19, .18);

    backdrop-filter:
        blur(10px);

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


.amaya-areas__map-badge-dot {
    width: 8px;
    height: 8px;

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

    border:
        2px solid
        rgba(255, 255, 255, .30);

    border-radius: 50%;
}


.amaya-areas__map-badge div {
    display: flex;

    flex-direction: column;
}


.amaya-areas__map-badge strong {
    font-size: .63rem;

    line-height: 1.2;
}


.amaya-areas__map-badge span:last-child {
    color:
        rgba(255, 255, 255, .57);

    font-size: .49rem;
}



/* ============================================================
   13. RESET MAP
   ============================================================ */

.amaya-areas__reset {
    position: absolute;

    right: 18px;
    bottom: 28px;

    z-index: 500;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    min-height: 38px;

    padding:
        0
        13px;

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

    background:
        rgba(254, 254, 254, .94);

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

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

    box-shadow:
        0 8px 24px
        rgba(16, 23, 19, .13);

    font-size: .55rem;

    font-weight: 800;

    letter-spacing: .05em;

    text-transform: uppercase;
}


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

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


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

    stroke: currentColor;

    stroke-width: 1.7;

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



/* ============================================================
   14. MAP FOOTER
   ============================================================ */

.amaya-areas__map-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    min-height: 72px;

    padding:
        13px
        20px;

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


.amaya-areas__map-footer > div:first-child {
    display: flex;

    flex-direction: column;

    gap: 2px;
}


.amaya-areas__map-footer span {
    color:
        rgba(255, 255, 255, .46);

    font-size: .51rem;

    font-weight: 600;

    letter-spacing: .08em;

    text-transform: uppercase;
}


.amaya-areas__map-footer strong {
    color:
        var(--amaya-white);

    font-size: .67rem;

    font-weight: 600;
}


.amaya-areas__map-footer-count {
    display: flex;

    align-items: center;

    gap: 8px;
}


.amaya-areas__map-footer-count strong {
    color:
        var(--amaya-leaf-light);

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

    font-size: 1.75rem;

    font-weight: 500;
}



/* ============================================================
   15. DIRECTORY
   ============================================================ */

.amaya-areas__directory {
    display: flex;

    flex-direction: column;

    min-width: 0;

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


.amaya-areas__directory-head {
    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 57px;

    padding:
        0 21px;

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

    border-bottom:
        1px solid
        rgba(45, 91, 57, .10);

    font-size: .55rem;

    font-weight: 800;

    letter-spacing: .10em;

    text-transform: uppercase;
}


.amaya-areas__directory-head span:last-child {
    color:
        var(--amaya-brass);
}



/* ============================================================
   16. CITY
   ============================================================ */

.amaya-area-city {
    position: relative;

    display: grid;

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

    align-items: center;

    gap: 10px;

    width: 100%;
    min-height: 58px;

    padding:
        8px
        20px;

    color:
        var(--amaya-text);

    text-align: left;

    background:
        transparent;

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


.amaya-area-city::before {
    content: '';

    position: absolute;

    top: 0;
    bottom: 0;
    left: 0;

    width: 3px;

    background:
        var(--amaya-leaf);

    transform:
        scaleY(0);

    transform-origin:
        bottom;

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


.amaya-area-city:hover,
.amaya-area-city.amaya-area-city--active {
    background:
        var(--amaya-background-soft);
}


.amaya-area-city:hover::before,
.amaya-area-city.amaya-area-city--active::before {
    transform:
        scaleY(1);

    transform-origin:
        top;
}


.amaya-area-city__number {
    color:
        var(--amaya-brass);

    font-size: .52rem;

    font-weight: 700;

    letter-spacing: .09em;
}


.amaya-area-city__content {
    display: flex;

    flex-direction: column;

    min-width: 0;

    gap: 1px;
}


.amaya-area-city__content strong {
    overflow: hidden;

    color:
        var(--amaya-charcoal);

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

    font-size: 1.18rem;

    font-weight: 600;

    line-height: 1.05;

    text-overflow: ellipsis;

    white-space: nowrap;
}


.amaya-area-city__content small {
    color:
        var(--amaya-text-muted);

    font-size: .49rem;

    font-weight: 500;
}


.amaya-area-city__arrow {
    color:
        rgba(45, 91, 57, .40);

    font-size: .9rem;

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


.amaya-area-city:hover
.amaya-area-city__arrow,
.amaya-area-city--active
.amaya-area-city__arrow {
    color:
        var(--amaya-forest);

    transform:
        translateX(3px);
}



/* ============================================================
   17. DIRECTORY FOOTER
   ============================================================ */

.amaya-areas__directory-footer {
    margin-top: auto;

    padding:
        21px;

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


.amaya-areas__directory-footer p {
    margin:
        0
        0
        11px;

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

    font-size: .65rem;

    line-height: 1.55;
}


.amaya-areas__directory-footer a {
    display: inline-flex;

    align-items: center;

    gap: 9px;

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

    font-size: .57rem;

    font-weight: 800;

    letter-spacing: .065em;

    text-transform: uppercase;
}


.amaya-areas__directory-footer a span {
    transition:
        transform var(--amaya-transition);
}


.amaya-areas__directory-footer a:hover span {
    transform:
        translateX(4px);
}































/* ============================================================
   09. FOOTER
   AMAYA'S LANDSCAPING LLC
   ============================================================ */


/* ============================================================
   01. FOOTER
   ============================================================ */

.amaya-footer {
    position: relative;

    overflow: hidden;

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

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

    isolation: isolate;
}



/* Green upper line */

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

    position: absolute;

    top: 0;
    right: 0;
    left: 0;

    z-index: 2;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            var(--amaya-brass) 27%,
            var(--amaya-leaf) 52%,
            var(--amaya-brass) 77%,
            transparent 100%
        );

    opacity: .65;

    pointer-events: none;
}



/* ============================================================
   02. AMBIENT ELEMENTS
   ============================================================ */

.amaya-footer__ambient {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.amaya-footer__ambient--one {
    top: -320px;
    right: -240px;

    width: 650px;
    height: 650px;

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


.amaya-footer__ambient--two {
    bottom: -390px;
    left: -290px;

    width: 720px;
    height: 720px;

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



/* ============================================================
   03. MAIN LAYOUT
   ============================================================ */

.amaya-footer__main {
    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        minmax(260px, 1.3fr)
        minmax(160px, .7fr)
        minmax(235px, .9fr)
        minmax(220px, .85fr);

    gap:
        clamp(
            40px,
            5vw,
            85px
        );

    padding-top:
        84px;

    padding-bottom:
        76px;
}



/* ============================================================
   04. BRAND
   ============================================================ */

.amaya-footer__brand {
    max-width: 360px;
}


.amaya-footer__logo {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 23px;
}


.amaya-footer__logo img {
    width: 105px;
    height: 105px;

    object-fit: contain;

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

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

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

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, .17);

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


.amaya-footer__logo:hover img {
    transform:
        translateY(-3px);
}


.amaya-footer__brand-copy {
    max-width: 330px;

    margin:
        0
        0
        27px;

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

    font-size: .78rem;

    line-height: 1.72;
}



/* ============================================================
   05. CONTACT
   ============================================================ */

.amaya-footer__contact {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
}


.amaya-footer__contact-item {
    display: inline-flex;

    align-items: center;

    gap: 10px;

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

    font-size: .68rem;

    font-weight: 500;
}


.amaya-footer__contact-item:hover {
    color:
        var(--amaya-leaf-light);
}


.amaya-footer__contact-icon {
    display: grid;

    flex: 0 0 auto;

    place-items: center;

    width: 30px;
    height: 30px;

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

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

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

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


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

    stroke:
        currentColor;

    stroke-width: 1.5;

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



/* ============================================================
   06. COLUMN
   ============================================================ */

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



/* ============================================================
   07. COLUMN HEADING
   ============================================================ */

.amaya-footer__heading {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

    padding-bottom: 14px;

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


.amaya-footer__heading > span {
    color:
        var(--amaya-brass-light);

    font-size: .5rem;

    font-weight: 700;

    letter-spacing: .10em;
}


.amaya-footer__heading h2 {
    margin: 0;

    color:
        var(--amaya-white);

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

    font-size: .66rem;

    font-weight: 700;

    line-height: 1;

    letter-spacing: .095em;

    text-transform: uppercase;
}



/* ============================================================
   08. QUICK LINKS
   ============================================================ */

.amaya-footer__links {
    display: flex;

    flex-direction: column;
}


.amaya-footer__links a {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    min-height: 35px;

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

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

    font-size: .65rem;

    font-weight: 500;
}


.amaya-footer__links a > span:last-child {
    color:
        rgba(162, 198, 81, .45);

    font-size: .67rem;

    transform:
        translate3d(0, 0, 0);

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


.amaya-footer__links a:hover {
    padding-left: 5px;

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


.amaya-footer__links a:hover
> span:last-child {
    color:
        var(--amaya-leaf-light);

    transform:
        translate3d(3px, -2px, 0);
}



/* ============================================================
   09. BUSINESS HOURS
   ============================================================ */

.amaya-footer__hours {
    display: flex;

    flex-direction: column;
}


.amaya-footer__hours-row {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    min-height: 35px;

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


.amaya-footer__hours-row span {
    color:
        rgba(255, 255, 255, .48);

    font-size: .58rem;

    font-weight: 500;
}


.amaya-footer__hours-row strong {
    color:
        rgba(255, 255, 255, .74);

    font-size: .57rem;

    font-weight: 600;

    white-space: nowrap;
}


.amaya-footer__hours-row--closed strong {
    color:
        var(--amaya-brass-light);
}



/* ============================================================
   10. SOCIAL COPY
   ============================================================ */

.amaya-footer__social-copy {
    margin:
        0
        0
        18px;

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

    font-size: .68rem;

    line-height: 1.6;
}



/* ============================================================
   11. SOCIALS
   ============================================================ */

.amaya-footer__socials {
    display: flex;

    flex-direction: column;

    gap: 8px;

    margin-bottom: 25px;
}


.amaya-footer__social {
    display: grid;

    grid-template-columns:
        31px
        1fr
        auto;

    align-items: center;

    gap: 10px;

    min-height: 44px;

    padding:
        6px
        10px
        6px
        6px;

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

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

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

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

    font-size: .61rem;

    font-weight: 600;
}


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

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

    border-color:
        rgba(162, 198, 81, .20);

    transform:
        translateX(3px);
}


.amaya-footer__social-icon {
    display: grid;

    place-items: center;

    width: 30px;
    height: 30px;

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

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

    border-radius: 4px;
}


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

    stroke:
        currentColor;

    stroke-width: 1.5;
}


.amaya-footer__social:first-child
.amaya-footer__social-icon svg {
    stroke: none;
}



/* ============================================================
   12. FREE ESTIMATE
   ============================================================ */

.amaya-footer__estimate {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    min-height: 48px;

    padding:
        0 11px
        0 16px;

    overflow: hidden;

    color:
        var(--amaya-ink);

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

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

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

    font-size: .6rem;

    font-weight: 800;

    letter-spacing: .045em;

    isolation: isolate;
}


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

    position: absolute;

    inset: 0;

    z-index: -1;

    background:
        var(--amaya-white);

    transform:
        translateX(-102%);

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


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


.amaya-footer__estimate-arrow {
    display: grid;

    place-items: center;

    width: 26px;
    height: 26px;

    color:
        var(--amaya-white);

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

    border-radius: 4px;

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


.amaya-footer__estimate:hover
.amaya-footer__estimate-arrow {
    transform:
        translateX(3px);
}


.amaya-footer__estimate-arrow svg {
    width: 13px;
    height: 13px;

    stroke:
        currentColor;

    stroke-width: 1.8;

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



/* ============================================================
   13. BOTTOM FOOTER
   ============================================================ */

.amaya-footer__bottom {
    position: relative;

    z-index: 3;

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

    background:
        rgba(5, 11, 7, .34);
}


.amaya-footer__bottom-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    min-height: 70px;
}



/* ============================================================
   14. COPYRIGHT
   ============================================================ */

.amaya-footer__copyright {
    margin: 0;

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

    font-size: .57rem;

    line-height: 1.4;

    letter-spacing: .025em;
}



/* ============================================================
   15. POWERED BY
   ============================================================ */

.amaya-footer__powered {
    display: inline-flex;

    align-items: center;

    gap: 5px;

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

    font-size: .55rem;

    line-height: 1;
}


.amaya-footer__powered strong {
    color:
        rgba(255, 255, 255, .79);

    font-weight: 600;

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


.amaya-footer__powered-arrow {
    margin-left: 3px;

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

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


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


.amaya-footer__powered:hover
.amaya-footer__powered-arrow {
    transform:
        translate3d(2px, -2px, 0);
}






























/* ============================================================
   14. COMPUTER
   ============================================================ */

@media (min-width: 1200px) {
       .amaya-footer__main {
        padding-top: 88px;

        padding-bottom: 78px;
    }
    .amaya-areas__map {
        height: 610px;
    }


    .amaya-area-city {
        min-height: 58px;
    }
     .amaya-reviews__widget-slot {
        min-height: 410px;

        padding:
            30px 28px;
    }


    .amaya-reviews__elfsight-placeholder {
        min-height: 348px;
    }
     .amaya-why__image-wrap {
        min-height: 640px;
    }


    .amaya-why__layout {
        gap:
            clamp(
                80px,
                8vw,
                135px
            );
    }

     .amaya-services__grid {
        gap: 20px;
    }


    .amaya-service-card {
        min-height: 470px;
    }


    .amaya-service-card--featured {
        min-height: 520px;
    }
       .amaya-hero__container {
        padding-bottom: 50px;
    }


    .amaya-hero__content {
        width: min(790px, 64%);
    }


    .amaya-hero__title {
        font-size:
            clamp(
                4.1rem,
                5.6vw,
                6.6rem
            );
    }

      .amaya-header__inner {
        grid-template-columns:
            auto
            1fr
            auto;

        gap: 34px;
    }


    .amaya-header__logo img {
        width: 68px;
        height: 68px;
    }


    .amaya-header__menu-button {
        display: none;
    }


    .amaya-header__nav {
        display: flex;
    }


    .amaya-header__estimate {
        min-width: 155px;
    }

     :root {

        --amaya-topbar-height: 38px;

        --amaya-header-height: 82px;

    }


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


    .amaya-topbar__phone-number {
        font-size: .74rem;
    }

    :root {
        --amaya-container-width: 1320px;

        --amaya-inline-space: 6vw;

        --amaya-section-space: 124px;

        --amaya-scroll-offset: 105px;
    }

}



/* ============================================================
   15. TABLET / SMALL LAPTOP
   ============================================================ */

@media (min-width: 768px) and (max-width: 1199px) {
       .amaya-footer__main {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            55px
            65px;

        padding-top: 72px;

        padding-bottom: 65px;
    }


    .amaya-footer__brand {
        max-width: 430px;
    }


    .amaya-footer__bottom-inner {
        min-height: 66px;
    }

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

        gap: 45px;

        margin-bottom: 44px;
    }


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


    .amaya-areas__explorer {
        grid-template-columns:
            minmax(0, 1.3fr)
            minmax(290px, .7fr);
    }


    .amaya-areas__map {
        height: 590px;
    }


    .amaya-area-city {
        min-height: 57px;

        padding-inline: 15px;
    }


    .amaya-area-city__content strong {
        font-size: 1.05rem;
    }
     .amaya-reviews__header {
        grid-template-columns:
            minmax(0, 1.15fr)
            minmax(260px, .85fr);

        gap: 45px;

        margin-bottom: 44px;
    }


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


    .amaya-reviews__trust {
        padding:
            16px
            18px;
    }


    .amaya-reviews__trust-divider {
        margin-inline: 13px;
    }


    .amaya-reviews__widget-slot {
        min-height: 380px;

        padding: 22px;
    }


    .amaya-reviews__elfsight-placeholder {
        min-height: 334px;
    }


    .amaya-reviews__leaf--left,
    .amaya-reviews__leaf--right {
        width: 140px;
    }
     .amaya-why__layout {
        grid-template-columns:
            minmax(290px, .85fr)
            minmax(0, 1.15fr);

        gap: 46px;
    }


    .amaya-why__image-wrap {
        min-height: 560px;
    }


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


    .amaya-why__intro {
        margin-bottom: 31px;

        font-size: .84rem;
    }


    .amaya-why__reason {
        grid-template-columns:
            32px
            minmax(0, 1fr)
            auto;

        gap: 12px;

        padding:
            18px
            0;
    }


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


    .amaya-why__cta {
        flex-wrap: wrap;

        gap: 18px;
    }

     .amaya-services__header {
        grid-template-columns:
            minmax(0, 1.2fr)
            minmax(260px, .8fr);

        gap: 45px;

        margin-bottom: 60px;
    }


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


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

        gap: 16px;
    }


    .amaya-service-card,
    .amaya-service-card--featured {
        grid-column: auto;

        min-height: 430px;
    }


    .amaya-service-card__content h3 {
        font-size:
            clamp(2rem, 4vw, 2.65rem);
    }

        .amaya-hero__media {
        top: -10%;
        bottom: -10%;
    }


    .amaya-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(8, 15, 10, .89) 0%,
                rgba(10, 22, 14, .72) 48%,
                rgba(8, 15, 10, .28) 100%
            ),
            linear-gradient(
                180deg,
                rgba(8, 15, 10, .08),
                rgba(8, 15, 10, .46)
            );
    }


    .amaya-hero__container {
        padding-bottom: 42px;
    }


    .amaya-hero__content {
        width: min(670px, 77%);
    }


    .amaya-hero__title {
        font-size:
            clamp(
                3.5rem,
                7vw,
                5.3rem
            );
    }


    .amaya-hero__bottom {
        bottom: 17px;
    }
     .amaya-header__inner {
        grid-template-columns:
            1fr
            auto
            1fr;

        gap: 18px;
    }


    .amaya-header__menu-button {
        display: inline-flex;

        align-items: center;

        justify-self: start;

        gap: 9px;

        min-width: 44px;
        min-height: 44px;
    }


    .amaya-header__logo {
        justify-self: center;
    }


    .amaya-header__logo img {
        width: 62px;
        height: 62px;
    }


    .amaya-header__nav {
        display: none;
    }


    .amaya-header__estimate {
        justify-self: end;

        min-height: 44px;

        padding:
            0 12px
            0 16px;

        font-size:
            .68rem;
    }


    .amaya-header__estimate-icon {
        width: 24px;
        height: 24px;
    }
      :root {

        --amaya-topbar-height: 36px;

        --amaya-header-height: 76px;

    }


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


    .amaya-topbar__item {
        gap: 6px;

        font-size: .66rem;
    }


    .amaya-topbar__location {
        padding-inline: 18px;
    }


    .amaya-topbar__location-prefix {
        display: none;
    }


    .amaya-topbar__call-label {
        display: none;
    }


    .amaya-topbar__phone-number {
        font-size: .68rem;
    }

    :root {
        --amaya-container-width: 100%;

        --amaya-inline-space: 5vw;

        --amaya-section-space: 96px;

        --amaya-scroll-offset: 92px;
    }

}



/* ============================================================
   16. MOBILE
   ============================================================ */

@media (min-width: 481px) and (max-width: 767px) {
     .amaya-footer__main {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            48px
            30px;

        padding-top: 64px;

        padding-bottom: 57px;
    }


    .amaya-footer__brand {
        grid-column:
            1 / -1;

        max-width: 520px;
    }


    .amaya-footer__column:last-child {
        grid-column:
            1 / -1;
    }


    .amaya-footer__socials {
        display: grid;

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


    .amaya-footer__estimate {
        max-width: 320px;
    }


    .amaya-footer__bottom-inner {
        align-items: flex-start;

        flex-direction: column;

        justify-content: center;

        gap: 8px;

        min-height: 80px;

        padding-block: 15px;
    }

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

        gap: 27px;

        margin-bottom: 38px;
    }


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

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


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


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


    .amaya-areas__map-column {
        border-right: 0;

        border-bottom:
            1px solid
            rgba(45, 91, 57, .10);
    }


    .amaya-areas__map {
        height: 480px;
    }


    .amaya-areas__cities {
        display: grid;

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


    .amaya-area-city:nth-child(odd) {
        border-right:
            1px solid
            rgba(45, 91, 57, .085);
    }


    .amaya-area-city {
        min-height: 66px;
    }


    .amaya-areas__directory-footer {
        margin-top: 0;
    }


    .amaya-areas__ambient {
        display: none;
    }
    .amaya-reviews__header {
        grid-template-columns:
            1fr;

        gap: 28px;

        margin-bottom: 37px;
    }


    .amaya-reviews__title {
        max-width: 580px;

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


    .amaya-reviews__intro {
        max-width: 550px;
    }


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

        gap: 0;

        padding:
            4px
            18px;
    }


    .amaya-reviews__trust-item {
        justify-content: flex-start;

        min-height: 66px;
    }


    .amaya-reviews__trust-divider {
        width: 100%;
        height: 1px;

        margin: 0;

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


    .amaya-reviews__widget-top {
        padding:
            0 19px;
    }


    .amaya-reviews__widget-slot {
        min-height: 360px;

        padding: 18px;
    }


    .amaya-reviews__elfsight-placeholder {
        min-height: 322px;
    }


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

        flex-direction: column;

        gap: 21px;
    }


    .amaya-reviews__leaf {
        opacity: .035;
    }

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

        gap: 54px;
    }


    .amaya-why__visual {
        order: 2;
    }


    .amaya-why__content {
        order: 1;
    }


    .amaya-why__image-wrap {
        min-height: 510px;
    }


    .amaya-why__visual-footer {
        max-width: 560px;
    }


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

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


    .amaya-why__intro {
        max-width: 570px;

        margin-bottom: 31px;

        font-size: .84rem;
    }


    .amaya-why__reason {
        padding:
            19px
            0;
    }


    .amaya-why__reason:hover {
        padding-left: 0;
    }


    .amaya-why__reason::before {
        display: none;
    }


    .amaya-why__reason-content h3 {
        font-size:
            clamp(
                1.65rem,
                5vw,
                2.05rem
            );
    }


    .amaya-why__cta {
        flex-wrap: wrap;

        gap:
            18px
            24px;
    }

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

        gap: 25px;

        margin-bottom: 45px;
    }


    .amaya-services__title {
        max-width: 570px;

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


    .amaya-services__header-copy {
        max-width: 550px;

        padding: 0;
    }


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

        gap: 14px;
    }


    .amaya-service-card,
    .amaya-service-card--featured {
        grid-column: auto;

        min-height: 400px;
    }


    .amaya-service-card__top {
        top: 19px;
        right: 19px;
        left: 19px;
    }


    .amaya-service-card__content {
        right: 21px;
        bottom: 21px;
        left: 21px;

        padding-right: 50px;
    }


    .amaya-service-card__arrow {
        right: 20px;
        bottom: 20px;
    }


    .amaya-service-card__content h3 {
        font-size:
            clamp(2.2rem, 8vw, 3rem);
    }
     .amaya-hero__media {
        top: -8%;
        bottom: -8%;
    }


    .amaya-hero__image {
        object-position:
            58% center;

        transform:
            translate3d(
                0,
                var(--amaya-hero-parallax-y, 0px),
                0
            )
            scale(1.06);
    }


    .amaya-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(7, 14, 9, .88) 0%,
                rgba(8, 16, 10, .66) 65%,
                rgba(7, 14, 9, .32) 100%
            ),
            linear-gradient(
                180deg,
                rgba(7, 14, 9, .06) 0%,
                rgba(7, 14, 9, .26) 55%,
                rgba(7, 14, 9, .72) 100%
            );
    }


    .amaya-hero__container {
        align-items: center;

        padding-bottom: 38px;
    }


    .amaya-hero__content {
        width: 100%;

        max-width: 560px;
    }


    .amaya-hero__eyebrow {
        max-width: 440px;

        margin-bottom: 15px;

        font-size: .59rem;

        letter-spacing: .1em;
    }


    .amaya-hero__eyebrow-line {
        width: 28px;
    }


    .amaya-hero__title {
        max-width: 550px;

        margin-bottom: 17px;

        font-size:
            clamp(
                3rem,
                11vw,
                4.35rem
            );

        line-height: .88;
    }


    .amaya-hero__description {
        max-width: 510px;

        margin-bottom: 21px;

        font-size: .88rem;

        line-height: 1.62;
    }


    .amaya-hero__button {
        min-height: 46px;
    }


    .amaya-hero__button--primary {
        min-width: 178px;
    }


    .amaya-hero__button--secondary {
        min-width: 145px;
    }


    .amaya-hero__bottom {
        bottom: 13px;
    }


    .amaya-hero__local {
        font-size: .53rem;
    }


    .amaya-hero__scroll {
        display: none;
    }
    .amaya-header__inner {
        grid-template-columns:
            1fr
            auto
            1fr;

        gap: 10px;
    }


    .amaya-header__menu-button {
        display: inline-flex;

        align-items: center;

        justify-self: start;

        justify-content: flex-start;

        width: 44px;
        height: 44px;
    }


    .amaya-header__menu-text {
        display: none;
    }


    .amaya-header__logo {
        justify-self: center;
    }


    .amaya-header__logo img {
        width: 60px;
        height: 60px;
    }


    .amaya-header__nav {
        display: none;
    }


    .amaya-header__estimate {
        justify-self: end;

        min-width: 113px;
        min-height: 42px;

        gap: 7px;

        padding:
            0 9px
            0 12px;

        font-size:
            .61rem;

        letter-spacing:
            .025em;
    }


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


    .amaya-header__estimate-icon svg {
        width: 12px;
        height: 12px;
    }


    .amaya-mobile-nav__panel {
        width: min(92%, 450px);
    }

     :root {

        --amaya-topbar-height: 34px;

        --amaya-header-height: 72px;

    }


    .amaya-topbar__inner {
        grid-template-columns:
            1fr
            auto;

        gap: 14px;
    }


    .amaya-topbar__location {
        display: none;
    }


    .amaya-topbar__hours {
        justify-self: start;
    }


    .amaya-topbar__phone {
        justify-self: end;
    }


    .amaya-topbar__item {
        gap: 5px;

        font-size: .62rem;
    }


    .amaya-topbar__label {
        display: none;
    }


    .amaya-topbar__call-label {
        display: none;
    }


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


    .amaya-topbar__icon {
        width: 13px;
        height: 13px;
    }

    :root {
        --amaya-container-width: 100%;

        --amaya-inline-space: 24px;

        --amaya-section-space: 76px;

        --amaya-scroll-offset: 82px;
    }


    body {
        background-attachment: scroll;
    }

}



/* ============================================================
   17. SMALL MOBILE
   ============================================================ */

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

        gap: 42px;

        padding-top: 56px;

        padding-bottom: 50px;
    }


    .amaya-footer__logo img {
        width: 92px;
        height: 92px;
    }


    .amaya-footer__brand-copy {
        max-width: 360px;

        font-size: .72rem;
    }


    .amaya-footer__heading {
        margin-bottom: 20px;
    }


    .amaya-footer__hours-row {
        min-height: 34px;
    }


    .amaya-footer__social-copy {
        font-size: .64rem;
    }


    .amaya-footer__estimate {
        max-width: 310px;
    }


    .amaya-footer__bottom-inner {
        align-items: flex-start;

        flex-direction: column;

        justify-content: center;

        gap: 9px;

        min-height: 90px;

        padding:
            17px
            0;
    }


    .amaya-footer__powered {
        flex-wrap: wrap;

        line-height: 1.35;
    }


    .amaya-footer__ambient--one {
        width: 470px;
        height: 470px;
    }


    .amaya-footer__ambient--two {
        width: 500px;
        height: 500px;
    }
      .amaya-areas__header {
        grid-template-columns: 1fr;

        gap: 23px;

        margin-bottom: 32px;
    }


    .amaya-areas__eyebrow {
        gap: 9px;

        margin-bottom: 16px;

        font-size: .56rem;
    }


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


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


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

        line-height: 1.62;
    }


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

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


    .amaya-areas__map-column {
        border-right: 0;

        border-bottom:
            1px solid
            rgba(45, 91, 57, .10);
    }


    .amaya-areas__map {
        height: 410px;
    }


    .amaya-areas
    .leaflet-control-zoom {
        margin:
            12px
            0
            0
            12px;
    }


    .amaya-areas
    .leaflet-control-zoom a {
        width: 34px;
        height: 34px;
    }


    .amaya-areas__map-badge {
        top: 12px;
        right: 12px;

        padding:
            8px
            10px;
    }


    .amaya-areas__reset {
        right: 12px;
        bottom: 24px;

        min-height: 34px;

        padding-inline: 10px;

        font-size: .48rem;
    }


    .amaya-areas__map-footer {
        min-height: 64px;

        padding:
            11px
            14px;
    }


    .amaya-areas__cities {
        display: block;
    }


    .amaya-area-city {
        min-height: 60px;

        padding:
            8px
            15px;
    }


    .amaya-area-city__content strong {
        font-size: 1.08rem;
    }


    .amaya-areas__directory-footer {
        padding: 18px;
    }


    .amaya-areas__ambient {
        display: none;
    }
     .amaya-reviews__header {
        grid-template-columns:
            1fr;

        gap: 23px;

        margin-bottom: 32px;
    }


    .amaya-reviews__eyebrow {
        gap: 9px;

        margin-bottom: 16px;

        font-size: .56rem;
    }


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


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


    .amaya-reviews__intro {
        padding:
            22px
            0
            0
            23px;
    }


    .amaya-reviews__quote {
        top: -16px;
        left: 12px;

        font-size: 4.4rem;
    }


    .amaya-reviews__intro p {
        font-size: .79rem;

        line-height: 1.62;
    }


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

        padding:
            3px 14px;
    }


    .amaya-reviews__trust-item {
        justify-content: flex-start;

        min-height: 61px;
    }


    .amaya-reviews__trust-divider {
        width: 100%;
        height: 1px;

        margin: 0;
    }


    .amaya-reviews__widget-frame {
        border-radius:
            var(--amaya-radius-md);
    }


    .amaya-reviews__widget-top {
        min-height: 49px;

        padding:
            0 14px;

        font-size: .48rem;
    }


    .amaya-reviews__stars {
        gap: 1px;
    }


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


    .amaya-reviews__widget-slot {
        min-height: 330px;

        padding: 12px;
    }


    .amaya-reviews__elfsight-placeholder {
        min-height: 306px;

        gap: 10px;
    }


    .amaya-reviews__widget-bottom {
        gap: 9px;

        min-height: 42px;

        padding-inline: 12px;

        font-size: .42rem;

        letter-spacing: .08em;
    }


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

        flex-direction: column;

        gap: 18px;

        margin-top: 24px;
    }


    .amaya-reviews__bottom-copy > span {
        font-size: 1.35rem;
    }


    .amaya-reviews__bottom-copy p {
        font-size: .64rem;
    }


    .amaya-reviews__cta {
        min-height: 45px;

        font-size: .58rem;
    }


    .amaya-reviews__leaf {
        display: none;
    }
    .amaya-why__layout {
        grid-template-columns:
            1fr;

        gap: 44px;
    }


    .amaya-why__visual {
        order: 2;
    }


    .amaya-why__content {
        order: 1;
    }


    .amaya-why__eyebrow {
        gap: 9px;

        margin-bottom: 16px;

        font-size: .56rem;
    }


    .amaya-why__eyebrow-line {
        width: 30px;
    }


    .amaya-why__title {
        margin-bottom: 18px;

        font-size:
            clamp(
                2.7rem,
                12vw,
                3.55rem
            );
    }


    .amaya-why__intro {
        margin-bottom: 27px;

        font-size: .79rem;

        line-height: 1.62;
    }


    .amaya-why__reason {
        grid-template-columns:
            28px
            minmax(0, 1fr)
            30px;

        gap: 9px;

        padding:
            17px
            0;
    }


    .amaya-why__reason:hover {
        padding-left: 0;
    }


    .amaya-why__reason::before {
        display: none;
    }


    .amaya-why__reason-content h3 {
        margin-bottom: 6px;

        font-size:
            clamp(
                1.45rem,
                7vw,
                1.8rem
            );
    }


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

        line-height: 1.5;
    }


    .amaya-why__reason-mark {
        width: 29px;
        height: 29px;
    }


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

        flex-direction: column;

        gap: 17px;

        margin-top: 28px;
    }


    .amaya-why__cta-button {
        min-height: 46px;

        font-size: .59rem;
    }


    .amaya-why__image-wrap {
        min-height: 415px;
    }


    .amaya-why__frame {
        inset: 10px;
    }


    .amaya-why__visual-label {
        bottom: 22px;
        left: 21px;

        font-size: .52rem;
    }


    .amaya-why__visual-footer {
        grid-template-columns:
            26px
            1fr;

        gap: 11px;

        margin-top: 17px;

        padding-top: 16px;
    }


    .amaya-why__visual-footer p {
        font-size: .65rem;
    }

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

        gap: 21px;

        margin-bottom: 38px;
    }


    .amaya-services__eyebrow {
        gap: 9px;

        margin-bottom: 17px;

        font-size: .58rem;
    }


    .amaya-services__eyebrow-line {
        width: 26px;
    }


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


    .amaya-services__header-copy p {
        margin-bottom: 19px;

        font-size: .82rem;

        line-height: 1.65;
    }


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

        gap: 12px;
    }


    .amaya-service-card,
    .amaya-service-card--featured {
        grid-column: auto;

        min-height: 365px;
    }


    .amaya-service-card__top {
        top: 16px;
        right: 16px;
        left: 16px;
    }


    .amaya-service-card__category {
        max-width: 160px;

        padding:
            6px 8px;

        overflow: hidden;

        font-size: .47rem;

        text-overflow: ellipsis;

        white-space: nowrap;
    }


    .amaya-service-card__content {
        right: 17px;
        bottom: 17px;
        left: 17px;

        padding-right: 44px;
    }


    .amaya-service-card__content h3 {
        margin-bottom: 9px;

        font-size:
            clamp(2rem, 10vw, 2.65rem);
    }


    .amaya-service-card__content p {
        max-width: 95%;

        font-size: .67rem;

        line-height: 1.52;
    }


    .amaya-service-card__arrow {
        right: 16px;
        bottom: 16px;

        width: 34px;
        height: 34px;
    }
     .amaya-hero__media {
        top: -7%;
        bottom: -7%;
    }


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

        transform:
            translate3d(
                0,
                var(--amaya-hero-parallax-y, 0px),
                0
            )
            scale(1.07);
    }


    .amaya-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(7, 14, 9, .91) 0%,
                rgba(8, 17, 11, .70) 72%,
                rgba(7, 14, 9, .38) 100%
            ),
            linear-gradient(
                180deg,
                rgba(7, 14, 9, .06) 0%,
                rgba(7, 14, 9, .28) 50%,
                rgba(7, 14, 9, .76) 100%
            );
    }


    .amaya-hero__container {
        align-items: center;

        padding-bottom: 34px;
    }


    .amaya-hero__content {
        width: 100%;
    }


    .amaya-hero__eyebrow {
        gap: 8px;

        max-width: 330px;

        margin-bottom: 12px;

        font-size: .51rem;

        letter-spacing: .075em;
    }


    .amaya-hero__eyebrow-line {
        width: 22px;
    }


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

        font-size:
            clamp(
                2.55rem,
                12.4vw,
                3.45rem
            );

        line-height: .89;
    }


    .amaya-hero__description {
        max-width: 420px;

        margin-bottom: 18px;

        font-size: .79rem;

        line-height: 1.55;
    }


    .amaya-hero__actions {
        gap: 8px;
    }


    .amaya-hero__button {
        min-height: 43px;

        padding-inline: 12px;

        font-size: .58rem;

        letter-spacing: .035em;
    }


    .amaya-hero__button--primary {
        min-width: 164px;
    }


    .amaya-hero__button--secondary {
        min-width: 126px;
    }


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


    .amaya-hero__bottom {
        bottom: 10px;
    }


    .amaya-hero__local {
        gap: 6px;

        max-width: 100%;

        font-size: .46rem;

        letter-spacing: .045em;
    }


    .amaya-hero__scroll {
        display: none;
    }

     .amaya-header__inner {
        grid-template-columns:
            1fr
            auto
            1fr;

        gap: 6px;
    }


    .amaya-header__menu-button {
        display: inline-flex;

        align-items: center;

        justify-self: start;

        width: 40px;
        height: 40px;
    }


    .amaya-header__menu-text {
        display: none;
    }


    .amaya-header__menu-lines {
        width: 21px;
    }


    .amaya-header__menu-lines span:first-child {
        width: 21px;
    }


    .amaya-header__menu-lines span:last-child {
        width: 14px;
    }


    .amaya-header__logo {
        justify-self: center;
    }


    .amaya-header__logo img {
        width: 56px;
        height: 56px;
    }


    .amaya-header__nav {
        display: none;
    }


    .amaya-header__estimate {
        justify-self: end;

        min-width: 99px;
        min-height: 39px;

        gap: 5px;

        padding:
            0 7px
            0 10px;

        font-size:
            .55rem;

        letter-spacing:
            .015em;
    }


    .amaya-header__estimate-icon {
        width: 20px;
        height: 20px;
    }


    .amaya-header__estimate-icon svg {
        width: 11px;
        height: 11px;
    }


    .amaya-mobile-nav__panel {
        width: 94%;
    }


    .amaya-mobile-nav__top {
        min-height: 82px;
    }


    .amaya-mobile-nav__logo img {
        width: 61px;
        height: 61px;
    }


    .amaya-mobile-nav__links {
        padding-top: 20px;
    }


    .amaya-mobile-nav__link {
        min-height: 56px;

        font-size:
            clamp(1.55rem, 7vw, 1.9rem);
    }


      :root {

        --amaya-topbar-height: 32px;

        --amaya-header-height: 68px;

    }


    .amaya-topbar__inner {
        grid-template-columns:
            1fr
            auto;

        gap: 10px;
    }


    .amaya-topbar__location {
        display: none;
    }


    .amaya-topbar__label,
    .amaya-topbar__call-label {
        display: none;
    }


    .amaya-topbar__item {
        gap: 4px;

        font-size: .57rem;

        letter-spacing: .015em;
    }


    .amaya-topbar__phone-number {
        font-size: .59rem;

        letter-spacing: .015em;
    }


    .amaya-topbar__icon {
        width: 12px;
        height: 12px;
    }


    :root {
        --amaya-container-width: 100%;

        --amaya-inline-space: 18px;

        --amaya-section-space: 66px;

        --amaya-scroll-offset: 76px;
    }


    body {
        font-size: 15px;

        background-attachment: scroll;
    }


    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
        width: 7px;
    }


    html::-webkit-scrollbar-thumb,
    body::-webkit-scrollbar-thumb {
        border-width: 2px;
    }

}



/* ============================================================
   18. REDUCED MOTION
   Accessibility query — not a layout breakpoint.
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    .amaya-footer__logo img,
    .amaya-footer__links a,
    .amaya-footer__social,
    .amaya-footer__estimate,
    .amaya-footer__estimate::before,
    .amaya-footer__estimate-arrow,
    .amaya-footer__powered-arrow {
        transition: none !important;
    }

     .amaya-map-marker__pin,
    .amaya-area-city,
    .amaya-area-city__arrow {
        transition: none !important;
    }
     .amaya-reviews__cta,
    .amaya-reviews__cta::before,
    .amaya-reviews__cta-icon {
        transition: none !important;
    }
      [data-amaya-why-visual],
    [data-amaya-why-reveal],
    [data-amaya-why-reason] {
        opacity: 1 !important;

        transform: none !important;

        transition: none !important;
    }


    .amaya-why__image {
        transform: none !important;

        transition: none !important;
    }


    .amaya-why__reason {
        transition: none !important;
    }
     [data-amaya-services-reveal],
    [data-amaya-service-card] {
        opacity: 1 !important;

        transform: none !important;

        transition: none !important;
    }


    .amaya-service-card__media img {
        transform: none !important;

        transition: none !important;
    }


    .amaya-service-card:hover,
    .amaya-service-card:focus-visible {
        transform: none !important;
    }

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

        will-change: auto;
    }


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

        transform: none !important;

        transition: none !important;
    }


    .amaya-hero__scroll-line::after {
        animation: none;
    }
     .amaya-header__shell,
    .amaya-header__logo img,
    .amaya-header__estimate,
    .amaya-header__estimate::before,
    .amaya-header__estimate-icon,
    .amaya-mobile-nav__backdrop,
    .amaya-mobile-nav__panel,
    .amaya-mobile-nav__link {
        transition: none !important;
    }

    .amaya-topbar__item,
    .amaya-topbar.amaya-topbar--ready
    .amaya-topbar__item {
        opacity: 1;

        transform: none;

        transition: none;
    }


    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;

        scroll-behavior:
            auto !important;
    }


    body {
        animation: none;
    }


    .amaya-page-transition {
        display: none;
    }

}
















































/* ============================================================
   AMAYA'S LANDSCAPING LLC
   TYPOGRAPHY READABILITY PATCH
   ------------------------------------------------------------
   Purpose:
   Increase overly-small interface and body text while
   preserving the existing editorial hierarchy.
   ============================================================ */


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

@media (min-width: 1200px) {

    /* TOPBAR */

    .amaya-topbar__item {
        font-size: .78rem;
    }

    .amaya-topbar__phone-number {
        font-size: .8rem;
    }


    /* HEADER */

    .amaya-header__nav-link {
        font-size: .82rem;
    }

    .amaya-header__estimate {
        font-size: .78rem;
    }


    /* HERO */

    .amaya-hero__eyebrow {
        font-size: .76rem;
    }

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

    .amaya-hero__button {
        font-size: .78rem;
    }

    .amaya-hero__local,
    .amaya-hero__scroll {
        font-size: .7rem;
    }


    /* SERVICES */

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

    .amaya-services__header-copy p {
        font-size: 1rem;
    }

    .amaya-services__gallery-link {
        font-size: .73rem;
    }

    .amaya-service-card__number {
        font-size: .68rem;
    }

    .amaya-service-card__category {
        font-size: .65rem;
    }

    .amaya-service-card__content p {
        font-size: .86rem;
    }


    /* WHY CHOOSE US */

    .amaya-why__visual-label {
        font-size: .67rem;
    }

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

    .amaya-why__visual-footer p {
        font-size: .82rem;
    }

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

    .amaya-why__intro {
        font-size: .98rem;
    }

    .amaya-why__reason-number {
        font-size: .65rem;
    }

    .amaya-why__reason-content p {
        font-size: .82rem;
    }

    .amaya-why__cta-button {
        font-size: .74rem;
    }

    .amaya-why__phone span {
        font-size: .65rem;
    }

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


    /* REVIEWS */

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

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

    .amaya-reviews__trust-item strong {
        font-size: .78rem;
    }

    .amaya-reviews__trust-item div > span {
        font-size: .7rem;
    }

    .amaya-reviews__widget-top {
        font-size: .68rem;
    }

    .amaya-reviews__elfsight-placeholder strong {
        font-size: .82rem;
    }

    .amaya-reviews__elfsight-placeholder div:last-child span {
        font-size: .7rem;
    }

    .amaya-reviews__widget-bottom {
        font-size: .62rem;
    }

    .amaya-reviews__bottom-copy p {
        font-size: .8rem;
    }

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


    /* SERVICE AREAS */

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

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

    .amaya-areas__map-hint {
        font-size: .68rem;
    }

    .amaya-map-popup__eyebrow {
        font-size: .62rem;
    }

    .amaya-map-popup p {
        font-size: .78rem;
    }

    .amaya-map-popup a {
        font-size: .67rem;
    }

    .amaya-areas__map-badge strong {
        font-size: .72rem;
    }

    .amaya-areas__map-badge span:last-child {
        font-size: .61rem;
    }

    .amaya-areas__reset {
        font-size: .64rem;
    }

    .amaya-areas__map-footer span {
        font-size: .62rem;
    }

    .amaya-areas__map-footer strong {
        font-size: .76rem;
    }

    .amaya-areas__directory-head {
        font-size: .64rem;
    }

    .amaya-area-city__number {
        font-size: .61rem;
    }

    .amaya-area-city__content small {
        font-size: .62rem;
    }

    .amaya-areas__directory-footer p {
        font-size: .76rem;
    }

    .amaya-areas__directory-footer a {
        font-size: .66rem;
    }


    /* FOOTER */

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

    .amaya-footer__contact-item {
        font-size: .77rem;
    }

    .amaya-footer__heading > span {
        font-size: .6rem;
    }

    .amaya-footer__heading h2 {
        font-size: .74rem;
    }

    .amaya-footer__links a {
        font-size: .76rem;
    }

    .amaya-footer__hours-row span {
        font-size: .7rem;
    }

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

    .amaya-footer__social-copy {
        font-size: .78rem;
    }

    .amaya-footer__social {
        font-size: .7rem;
    }

    .amaya-footer__estimate {
        font-size: .7rem;
    }

    .amaya-footer__copyright {
        font-size: .67rem;
    }

    .amaya-footer__powered {
        font-size: .65rem;
    }

}



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

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

    /* TOPBAR / HEADER */

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

    .amaya-topbar__phone-number {
        font-size: .74rem;
    }

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


    /* HERO */

    .amaya-hero__eyebrow {
        font-size: .7rem;
    }

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

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

    .amaya-hero__local {
        font-size: .65rem;
    }


    /* SERVICES */

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

    .amaya-services__header-copy p {
        font-size: .95rem;
    }

    .amaya-services__gallery-link {
        font-size: .72rem;
    }

    .amaya-service-card__number {
        font-size: .66rem;
    }

    .amaya-service-card__category {
        font-size: .63rem;
    }

    .amaya-service-card__content p {
        font-size: .84rem;
    }


    /* WHY */

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

    .amaya-why__intro {
        font-size: .92rem;
    }

    .amaya-why__reason-number {
        font-size: .63rem;
    }

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

    .amaya-why__visual-footer p {
        font-size: .78rem;
    }

    .amaya-why__cta-button {
        font-size: .72rem;
    }


    /* REVIEWS */

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

    .amaya-reviews__intro p {
        font-size: .92rem;
    }

    .amaya-reviews__trust-item strong {
        font-size: .76rem;
    }

    .amaya-reviews__trust-item div > span {
        font-size: .68rem;
    }

    .amaya-reviews__widget-top {
        font-size: .65rem;
    }

    .amaya-reviews__widget-bottom {
        font-size: .6rem;
    }


    /* AREAS */

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

    .amaya-areas__header-copy p {
        font-size: .92rem;
    }

    .amaya-areas__map-hint {
        font-size: .66rem;
    }

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

    .amaya-area-city__content small {
        font-size: .6rem;
    }

    .amaya-areas__directory-footer p {
        font-size: .74rem;
    }


    /* FOOTER */

    .amaya-footer__brand-copy {
        font-size: .84rem;
    }

    .amaya-footer__contact-item {
        font-size: .75rem;
    }

    .amaya-footer__heading h2 {
        font-size: .72rem;
    }

    .amaya-footer__links a {
        font-size: .74rem;
    }

    .amaya-footer__hours-row span,
    .amaya-footer__hours-row strong {
        font-size: .68rem;
    }

    .amaya-footer__social-copy {
        font-size: .76rem;
    }

    .amaya-footer__social {
        font-size: .69rem;
    }

    .amaya-footer__estimate {
        font-size: .69rem;
    }

    .amaya-footer__copyright {
        font-size: .65rem;
    }

    .amaya-footer__powered {
        font-size: .64rem;
    }

}



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

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

    /* TOPBAR */

    .amaya-topbar__item {
        font-size: .7rem;
    }

    .amaya-topbar__phone-number {
        font-size: .72rem;
    }


    /* HEADER */

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


    /* HERO */

    .amaya-hero__eyebrow {
        font-size: .67rem;
    }

    .amaya-hero__description {
        font-size: .94rem;
    }

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

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


    /* SERVICES */

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

    .amaya-services__header-copy p {
        font-size: .93rem;
    }

    .amaya-services__gallery-link {
        font-size: .69rem;
    }

    .amaya-service-card__number {
        font-size: .64rem;
    }

    .amaya-service-card__category {
        font-size: .61rem;
    }

    .amaya-service-card__content p {
        font-size: .84rem;

        line-height: 1.6;
    }


    /* WHY */

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

    .amaya-why__intro {
        font-size: .91rem;
    }

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

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

        line-height: 1.58;
    }

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

    .amaya-why__visual-footer p {
        font-size: .78rem;
    }

    .amaya-why__cta-button {
        font-size: .69rem;
    }


    /* REVIEWS */

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

    .amaya-reviews__intro p {
        font-size: .91rem;
    }

    .amaya-reviews__trust-item strong {
        font-size: .76rem;
    }

    .amaya-reviews__trust-item div > span {
        font-size: .69rem;
    }

    .amaya-reviews__widget-top {
        font-size: .62rem;
    }

    .amaya-reviews__widget-bottom {
        font-size: .58rem;
    }

    .amaya-reviews__bottom-copy p {
        font-size: .76rem;
    }

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


    /* SERVICE AREAS */

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

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

    .amaya-areas__map-hint {
        font-size: .65rem;
    }

    .amaya-areas__map-badge strong {
        font-size: .68rem;
    }

    .amaya-areas__map-badge span:last-child {
        font-size: .59rem;
    }

    .amaya-areas__reset {
        font-size: .6rem;
    }

    .amaya-areas__map-footer span {
        font-size: .58rem;
    }

    .amaya-areas__map-footer strong {
        font-size: .7rem;
    }

    .amaya-areas__directory-head {
        font-size: .62rem;
    }

    .amaya-area-city__number {
        font-size: .6rem;
    }

    .amaya-area-city__content small {
        font-size: .62rem;
    }

    .amaya-areas__directory-footer p {
        font-size: .76rem;
    }

    .amaya-areas__directory-footer a {
        font-size: .64rem;
    }


    /* FOOTER */

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

    .amaya-footer__contact-item {
        font-size: .74rem;
    }

    .amaya-footer__heading > span {
        font-size: .58rem;
    }

    .amaya-footer__heading h2 {
        font-size: .71rem;
    }

    .amaya-footer__links a {
        font-size: .74rem;
    }

    .amaya-footer__hours-row span,
    .amaya-footer__hours-row strong {
        font-size: .68rem;
    }

    .amaya-footer__social-copy {
        font-size: .76rem;
    }

    .amaya-footer__social {
        font-size: .69rem;
    }

    .amaya-footer__estimate {
        font-size: .69rem;
    }

    .amaya-footer__copyright {
        font-size: .64rem;
    }

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

}



/* ============================================================
   04. SMALL MOBILE
   <= 480px
   ============================================================ */

@media (max-width: 480px) {

    /*
       IMPORTANT:
       We do NOT reduce body typography further here.
       Small screens need readable text, not smaller text.
    */

    body {
        font-size: 16px;
    }


    /* TOPBAR */

    .amaya-topbar__item {
        font-size: .66rem;
    }

    .amaya-topbar__phone-number {
        font-size: .69rem;
    }


    /* HEADER */

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


    /* MOBILE MENU */

    .amaya-mobile-nav__eyebrow {
        font-size: .7rem;
    }

    .amaya-mobile-nav__estimate {
        font-size: .76rem;
    }

    .amaya-mobile-nav__phone {
        font-size: .7rem;
    }

    .amaya-mobile-nav__phone strong {
        font-size: .76rem;
    }

    .amaya-mobile-nav__number {
        font-size: .64rem;
    }


    /* HERO */

    .amaya-hero__eyebrow {
        font-size: .64rem;

        letter-spacing: .085em;
    }

    .amaya-hero__description {
        font-size: .9rem;

        line-height: 1.62;
    }

    .amaya-hero__button {
        font-size: .67rem;
    }

    .amaya-hero__local {
        font-size: .59rem;

        line-height: 1.35;
    }


    /* SERVICES */

    .amaya-services__eyebrow {
        font-size: .66rem;
    }

    .amaya-services__header-copy p {
        font-size: .9rem;

        line-height: 1.65;
    }

    .amaya-services__gallery-link {
        font-size: .67rem;
    }

    .amaya-service-card__number {
        font-size: .62rem;
    }

    .amaya-service-card__category {
        font-size: .6rem;
    }

    .amaya-service-card__content p {
        max-width: 100%;

        font-size: .82rem;

        line-height: 1.58;
    }


    /* WHY */

    .amaya-why__eyebrow {
        font-size: .66rem;
    }

    .amaya-why__intro {
        font-size: .88rem;

        line-height: 1.65;
    }

    .amaya-why__reason-number {
        font-size: .6rem;
    }

    .amaya-why__reason-content p {
        font-size: .78rem;

        line-height: 1.58;
    }

    .amaya-why__reason-mark {
        width: 32px;
        height: 32px;
    }

    .amaya-why__cta-button {
        font-size: .67rem;
    }

    .amaya-why__phone span {
        font-size: .62rem;
    }

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

    .amaya-why__visual-label {
        font-size: .6rem;
    }

    .amaya-why__visual-footer p {
        font-size: .76rem;
    }


    /* REVIEWS */

    .amaya-reviews__eyebrow {
        font-size: .66rem;
    }

    .amaya-reviews__intro p {
        font-size: .88rem;

        line-height: 1.65;
    }

    .amaya-reviews__trust-item strong {
        font-size: .75rem;
    }

    .amaya-reviews__trust-item div > span {
        font-size: .68rem;
    }

    .amaya-reviews__widget-top {
        font-size: .6rem;

        letter-spacing: .075em;
    }

    .amaya-reviews__stars span {
        font-size: .75rem;
    }

    .amaya-reviews__elfsight-placeholder strong {
        font-size: .78rem;
    }

    .amaya-reviews__elfsight-placeholder
    div:last-child span {
        font-size: .68rem;
    }

    .amaya-reviews__widget-bottom {
        font-size: .56rem;

        letter-spacing: .06em;
    }

    .amaya-reviews__bottom-copy p {
        font-size: .74rem;
    }

    .amaya-reviews__cta {
        font-size: .66rem;
    }


    /* SERVICE AREAS */

    .amaya-areas__eyebrow {
        font-size: .66rem;
    }

    .amaya-areas__header-copy p {
        font-size: .88rem;

        line-height: 1.65;
    }

    .amaya-areas__map-hint {
        font-size: .63rem;
    }

    .amaya-areas__map-badge strong {
        font-size: .66rem;
    }

    .amaya-areas__map-badge span:last-child {
        font-size: .58rem;
    }

    .amaya-areas__reset {
        font-size: .58rem;
    }

    .amaya-areas__map-footer span {
        font-size: .57rem;
    }

    .amaya-areas__map-footer strong {
        font-size: .69rem;
    }

    .amaya-areas__directory-head {
        font-size: .61rem;
    }

    .amaya-area-city__number {
        font-size: .59rem;
    }

    .amaya-area-city__content small {
        font-size: .61rem;
    }

    .amaya-areas__directory-footer p {
        font-size: .75rem;

        line-height: 1.6;
    }

    .amaya-areas__directory-footer a {
        font-size: .63rem;
    }


    /* FOOTER */

    .amaya-footer__brand-copy {
        font-size: .81rem;
    }

    .amaya-footer__contact-item {
        font-size: .74rem;
    }

    .amaya-footer__heading > span {
        font-size: .58rem;
    }

    .amaya-footer__heading h2 {
        font-size: .71rem;
    }

    .amaya-footer__links a {
        min-height: 40px;

        font-size: .74rem;
    }

    .amaya-footer__hours-row {
        min-height: 40px;
    }

    .amaya-footer__hours-row span,
    .amaya-footer__hours-row strong {
        font-size: .68rem;
    }

    .amaya-footer__social-copy {
        font-size: .76rem;
    }

    .amaya-footer__social {
        font-size: .7rem;
    }

    .amaya-footer__estimate {
        font-size: .7rem;
    }

    .amaya-footer__copyright {
        font-size: .64rem;

        line-height: 1.6;
    }

    .amaya-footer__powered {
        font-size: .63rem;

        line-height: 1.5;
    }

}








































/* ============================================================
   AMAYA'S LANDSCAPING LLC
   SERVICE AREAS — EXPANDED COVERAGE UPDATE
   Add at the END of style.css
   ============================================================ */


/* ============================================================
   MAP COVERAGE OVERLAY
   ============================================================ */

.amaya-service-coverage-shape {
    filter:
        drop-shadow(
            0 4px 9px
            rgba(45, 91, 57, .09)
        );
}


.amaya-service-coverage-halo {
    pointer-events: none;
}



/* ============================================================
   COVERAGE LEGEND
   ============================================================ */

.amaya-areas__coverage-legend {
    position: absolute;

    left: 18px;
    bottom: 18px;

    z-index: 500;

    display: flex;

    align-items: center;

    gap: 10px;

    max-width: 220px;

    padding:
        10px
        13px;

    color:
        var(--amaya-charcoal);

    background:
        rgba(254, 254, 254, .94);

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

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

    box-shadow:
        0 9px 28px
        rgba(16, 23, 19, .13);

    backdrop-filter:
        blur(10px);

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

    pointer-events:
        none;
}


.amaya-areas__coverage-swatch {
    position: relative;

    width: 28px;
    height: 20px;

    flex:
        0 0 auto;

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

    border:
        1px dashed
        rgba(45, 91, 57, .64);

    border-radius:
        4px;
}


.amaya-areas__coverage-swatch::after {
    content: '';

    position: absolute;

    top: 50%;
    left: 50%;

    width: 6px;
    height: 6px;

    background:
        var(--amaya-leaf);

    border-radius:
        50%;

    transform:
        translate(-50%, -50%);
}


.amaya-areas__coverage-legend > div {
    display: flex;

    flex-direction: column;

    gap: 1px;
}


.amaya-areas__coverage-legend strong {
    color:
        var(--amaya-forest-deep);

    font-size:
        .76rem;

    font-weight:
        700;

    line-height:
        1.25;
}


.amaya-areas__coverage-legend
div > span {
    color:
        var(--amaya-text-muted);

    font-size:
        .68rem;

    line-height:
        1.35;
}



/* ============================================================
   MAP BADGE
   ============================================================ */

.amaya-areas__map-badge strong {
    font-size:
        .76rem;
}


.amaya-areas__map-badge
div > span {
    font-size:
        .68rem;
}



/* ============================================================
   RESET BUTTON
   ============================================================ */

.amaya-areas__reset {
    z-index:
        510;

    font-size:
        .72rem;
}



/* ============================================================
   MAP FOOTER
   ============================================================ */

.amaya-areas__map-footer {
    display: grid;

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

    gap:
        22px;
}


.amaya-areas__map-footer > div {
    display: flex;

    flex-direction: column;

    gap: 2px;
}


.amaya-areas__map-footer span {
    font-size:
        .68rem;

    line-height:
        1.35;
}


.amaya-areas__map-footer strong {
    font-size:
        .78rem;

    line-height:
        1.4;
}



/* ============================================================
   DIRECTORY
   ============================================================ */

.amaya-areas__directory {
    display: grid;

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

    min-width: 0;
    min-height: 0;
}


.amaya-areas__directory-count {
    color:
        var(--amaya-brass) !important;

    font-size:
        .7rem;

    font-weight:
        700;
}



/* ============================================================
   CITY LIST

   13 locations no longer make the complete card taller
   than the map on desktop. Only the directory scrolls.
   ============================================================ */

.amaya-areas__cities {
    min-height: 0;

    overflow-x: hidden;
    overflow-y: auto;

    overscroll-behavior:
        contain;

    scrollbar-width:
        thin;

    scrollbar-color:
        rgba(45, 91, 57, .38)
        transparent;
}


.amaya-areas__cities::-webkit-scrollbar {
    width: 6px;
}


.amaya-areas__cities::-webkit-scrollbar-track {
    background:
        transparent;
}


.amaya-areas__cities::-webkit-scrollbar-thumb {
    background:
        rgba(45, 91, 57, .30);

    border-radius:
        6px;
}


.amaya-areas__cities::-webkit-scrollbar-thumb:hover {
    background:
        rgba(45, 91, 57, .52);
}



/* ============================================================
   CITY TYPOGRAPHY
   ============================================================ */

.amaya-area-city__number {
    font-size:
        .66rem;
}


.amaya-area-city__content strong {
    font-size:
        1.17rem;
}


.amaya-area-city__content small {
    font-size:
        .68rem;

    line-height:
        1.35;
}


.amaya-area-city__arrow {
    font-size:
        .95rem;
}



/* ============================================================
   POPUP READABILITY
   ============================================================ */

.amaya-map-popup__eyebrow {
    font-size:
        .68rem;
}


.amaya-map-popup h3 {
    font-size:
        1.55rem;
}


.amaya-map-popup p {
    font-size:
        .82rem;

    line-height:
        1.55;
}


.amaya-map-popup a {
    font-size:
        .72rem;
}



/* ============================================================
   01. COMPUTER
   1200px+
   ============================================================ */

@media (min-width: 1200px) {

    .amaya-areas__map {
        height:
            620px;
    }


    .amaya-areas__cities {
        max-height:
            550px;
    }


    .amaya-area-city {
        min-height:
            64px;

        padding:
            9px
            18px;
    }


    .amaya-areas__coverage-legend {
        left:
            18px;

        bottom:
            18px;
    }

}



/* ============================================================
   02. TABLET / SMALL LAPTOP
   768px - 1199px
   ============================================================ */

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

    .amaya-areas__explorer {
        grid-template-columns:
            minmax(0, 1.35fr)
            minmax(300px, .65fr);
    }


    .amaya-areas__map {
        height:
            560px;
    }


    .amaya-areas__cities {
        max-height:
            485px;
    }


    .amaya-area-city {
        min-height:
            61px;

        padding:
            8px
            15px;
    }


    .amaya-area-city__content strong {
        font-size:
            1.08rem;
    }


    .amaya-area-city__content small {
        font-size:
            .66rem;
    }


    .amaya-areas__coverage-legend {
        left:
            14px;

        bottom:
            14px;

        max-width:
            200px;

        padding:
            9px
            11px;
    }


    .amaya-areas__coverage-legend strong {
        font-size:
            .72rem;
    }


    .amaya-areas__coverage-legend
    div > span {
        font-size:
            .65rem;
    }


    .amaya-areas__map-footer {
        gap:
            15px;
    }

}



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

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

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


    .amaya-areas__map-column {
        border-right:
            0;
    }


    .amaya-areas__map {
        height:
            470px;
    }


    .amaya-areas__coverage-legend {
        left:
            12px;

        bottom:
            12px;

        max-width:
            190px;

        padding:
            8px
            10px;
    }


    .amaya-areas__coverage-swatch {
        width:
            24px;

        height:
            18px;
    }


    .amaya-areas__coverage-legend strong {
        font-size:
            .7rem;
    }


    .amaya-areas__coverage-legend
    div > span {
        font-size:
            .63rem;
    }


    .amaya-areas__cities {
        display: grid;

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

        max-height:
            none;

        overflow:
            visible;
    }


    .amaya-area-city {
        min-height:
            67px;

        padding:
            9px
            14px;
    }


    .amaya-area-city:nth-child(odd) {
        border-right:
            1px solid
            rgba(45, 91, 57, .08);
    }


    .amaya-area-city__content strong {
        font-size:
            1.05rem;
    }


    .amaya-area-city__content small {
        font-size:
            .67rem;
    }


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

        padding:
            13px
            15px;
    }


    .amaya-areas__map-footer span {
        font-size:
            .65rem;
    }


    .amaya-areas__map-footer strong {
        font-size:
            .72rem;
    }

}



/* ============================================================
   04. SMALL MOBILE
   <=480px
   ============================================================ */

@media (max-width: 480px) {

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


    .amaya-areas__map-column {
        border-right:
            0;
    }


    .amaya-areas__map {
        height:
            430px;
    }


    /*
       Keep small screens visually clean.
       The same information remains visible in the map footer.
    */

    .amaya-areas__coverage-legend {
        display:
            none;
    }


    .amaya-areas__map-badge {
        top:
            12px;

        right:
            12px;

        padding:
            9px
            11px;
    }


    .amaya-areas__map-badge strong {
        font-size:
            .7rem;
    }


    .amaya-areas__map-badge
    div > span {
        font-size:
            .63rem;
    }


    .amaya-areas__reset {
        right:
            12px;

        bottom:
            14px;

        min-height:
            40px;

        padding-inline:
            12px;

        font-size:
            .67rem;
    }


    .amaya-areas__cities {
        display:
            block;

        max-height:
            none;

        overflow:
            visible;
    }


    .amaya-area-city {
        min-height:
            64px;

        padding:
            9px
            15px;
    }


    .amaya-area-city__number {
        font-size:
            .64rem;
    }


    .amaya-area-city__content strong {
        font-size:
            1.08rem;
    }


    .amaya-area-city__content small {
        font-size:
            .68rem;
    }


    .amaya-areas__map-footer {
        grid-template-columns:
            1fr;

        gap:
            7px;

        padding:
            13px
            14px;
    }


    .amaya-areas__map-footer > div:last-child {
        padding-top:
            7px;

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


    .amaya-areas__map-footer span {
        font-size:
            .65rem;
    }


    .amaya-areas__map-footer strong {
        font-size:
            .72rem;
    }


    .amaya-areas__directory-count {
        font-size:
            .66rem;
    }

}



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

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

    .amaya-service-coverage-shape,
    .amaya-service-coverage-halo,
    .amaya-area-city,
    .amaya-map-marker__pin,
    .amaya-area-city__arrow {
        transition:
            none !important;

        animation:
            none !important;
    }

}













































/* ============================================================
   AMAYA'S LANDSCAPING LLC
   SERVICE AREAS — 15 AREA DIRECTORY UPDATE
   ============================================================ */


/* ============================================================
   COMPUTER
   ============================================================ */

@media (min-width: 1200px) {

    .amaya-areas__cities {
        max-height: 550px;

        overflow-x: hidden;
        overflow-y: auto;

        overscroll-behavior: contain;
    }


    .amaya-area-city {
        min-height: 62px;
    }

}



/* ============================================================
   TABLET / SMALL LAPTOP
   ============================================================ */

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

    .amaya-areas__cities {
        max-height: 500px;

        overflow-x: hidden;
        overflow-y: auto;

        overscroll-behavior: contain;
    }


    .amaya-area-city {
        min-height: 61px;
    }

}



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

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

    .amaya-areas__cities {
        display: grid;

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

        max-height: none;

        overflow: visible;
    }


    .amaya-area-city {
        min-height: 68px;
    }

}



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

@media (max-width: 480px) {

    .amaya-areas__cities {
        display: block;

        max-height: none;

        overflow: visible;
    }


    .amaya-area-city {
        min-height: 66px;
    }

}