/* =========================================================
   JC LANDSCAPE DESIGN AND MORE LLC
   GLOBAL ELEGANT DESIGN SYSTEM
========================================================= */

:root {

    /* =====================================================
       BRAND COLORS
       Basados en el logotipo
    ===================================================== */

    --jc-forest-950: #13190B;
    --jc-forest-900: #1E2810;
    --jc-forest-850: #293512;
    --jc-forest-800: #354116;
    --jc-forest-700: #465227;

    --jc-olive-700: #566038;
    --jc-olive-600: #687148;
    --jc-olive-500: #7C8560;

    --jc-sage-500: #929979;
    --jc-sage-400: #A8AE8D;
    --jc-sage-300: #BEC3A7;
    --jc-sage-200: #D3D6C2;
    --jc-sage-100: #E8EADF;

    --jc-flower-cream: #CED1B9;

    /* =====================================================
       ELEGANT ACCENT COLORS
    ===================================================== */

    --jc-clay-700: #8A4E33;
    --jc-clay-600: #9F5E3E;
    --jc-clay-500: #B06D4A;
    --jc-clay-400: #C48766;

    --jc-gold-700: #8C6C35;
    --jc-gold-600: #A98546;
    --jc-gold-500: #BE9B5D;
    --jc-gold-400: #D0B47E;
    --jc-gold-300: #E2CDA5;

    --jc-brown-900: #2D211A;
    --jc-brown-800: #3B2C22;
    --jc-brown-700: #4A382B;

    /* =====================================================
       ELEGANT NEUTRALS
    ===================================================== */

    --jc-ink-950: #11140F;
    --jc-ink-900: #181C16;
    --jc-ink-800: #272C24;

    --jc-text-primary: #2C3128;
    --jc-text-secondary: #5E6558;
    --jc-text-soft: #7A8074;

    --jc-ivory-50: #FAF9F5;
    --jc-ivory-100: #F5F3EC;
    --jc-ivory-200: #ECE8DE;

    --jc-stone-100: #F0ECE3;
    --jc-stone-200: #E1DBCF;
    --jc-stone-300: #CEC5B7;

    --jc-white: #FFFFFF;
    --jc-black: #080A07;

    /* =====================================================
       SEMANTIC COLORS
    ===================================================== */

    --jc-primary: var(--jc-forest-800);
    --jc-primary-dark: var(--jc-forest-950);
    --jc-primary-light: var(--jc-olive-600);

    --jc-accent: var(--jc-clay-500);
    --jc-accent-dark: var(--jc-clay-700);

    --jc-highlight: var(--jc-gold-500);

    --jc-background: var(--jc-ivory-50);
    --jc-background-alt: var(--jc-ivory-100);

    --jc-surface: rgba(255, 255, 255, 0.88);
    --jc-surface-solid: var(--jc-white);
    --jc-surface-soft: rgba(236, 232, 222, 0.76);
    --jc-surface-dark: var(--jc-forest-950);

    --jc-border: rgba(53, 65, 22, 0.13);
    --jc-border-strong: rgba(53, 65, 22, 0.23);
    --jc-border-light: rgba(255, 255, 255, 0.18);
    --jc-divider: rgba(53, 65, 22, 0.10);

    /* =====================================================
       TYPOGRAPHY
    ===================================================== */

    --jc-font-display:
        "Cormorant Garamond",
        Georgia,
        "Times New Roman",
        serif;

    --jc-font-body:
        "Manrope",
        Arial,
        sans-serif;

    --jc-font-size-base: 16px;

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

    --jc-container-width: 1360px;
    --jc-container-narrow: 1110px;

    --jc-page-gutter: clamp(24px, 5vw, 78px);
    --jc-section-space: clamp(96px, 9vw, 150px);

    /*
       Se actualizará cuando diseñemos el header.
    */
    --jc-scroll-offset: 112px;

    /* =====================================================
       RADII
       Elegantes y moderados
    ===================================================== */

    --jc-radius-xs: 6px;
    --jc-radius-sm: 10px;
    --jc-radius-md: 15px;
    --jc-radius-lg: 20px;
    --jc-radius-xl: 28px;

    --jc-radius-organic:
        42% 58% 52% 48% /
        48% 42% 58% 52%;

    /* =====================================================
       SHADOWS
    ===================================================== */

    --jc-shadow-xs:
        0 5px 18px rgba(24, 32, 14, 0.045);

    --jc-shadow-sm:
        0 14px 38px rgba(24, 32, 14, 0.075);

    --jc-shadow-md:
        0 24px 62px rgba(24, 32, 14, 0.11);

    --jc-shadow-lg:
        0 38px 100px rgba(17, 24, 10, 0.16);

    --jc-shadow-accent:
        0 18px 46px rgba(159, 94, 62, 0.18);

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

    --jc-duration-fast: 180ms;
    --jc-duration-normal: 360ms;
    --jc-duration-slow: 720ms;
    --jc-duration-page: 820ms;

    --jc-ease-soft:
        cubic-bezier(0.22, 1, 0.36, 1);

    --jc-ease-editorial:
        cubic-bezier(0.76, 0, 0.24, 1);

    --jc-ease-luxury:
        cubic-bezier(0.65, 0, 0.12, 1);

    /* =====================================================
       Z-INDEX
    ===================================================== */

    --jc-z-background: -1;
    --jc-z-content: 1;
    --jc-z-header: 1000;
    --jc-z-floating: 3000;
    --jc-z-transition: 99999;
}


/* =========================================================
   RESET
========================================================= */

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

html {
    min-height: 100%;

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

    scrollbar-width: thin;
    scrollbar-color:
        var(--jc-olive-600)
        var(--jc-ivory-100);

    scrollbar-gutter: stable;
}

body {
    position: relative;

    min-width: 320px;
    min-height: 100vh;
    margin: 0;

    overflow-x: hidden;
    overflow-x: clip;

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

    font-family: var(--jc-font-body);
    font-size: var(--jc-font-size-base);
    font-weight: 400;
    line-height: 1.72;

    background:
        radial-gradient(
            circle at 8% 6%,
            rgba(190, 195, 167, 0.27),
            transparent 28rem
        ),
        radial-gradient(
            circle at 95% 19%,
            rgba(176, 109, 74, 0.07),
            transparent 25rem
        ),
        radial-gradient(
            circle at 74% 94%,
            rgba(104, 113, 72, 0.10),
            transparent 32rem
        ),
        linear-gradient(
            145deg,
            #FBFAF6 0%,
            #F6F4ED 45%,
            #F1EFE7 100%
        );

    text-rendering: optimizeLegibility;

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

    isolation: isolate;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -2;

    content: "";

    pointer-events: none;

    opacity: 0.32;

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

    background-size: 31px 31px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.8),
            transparent 92%
        );
}

body::after {
    position: fixed;
    inset: 0;
    z-index: -1;

    content: "";

    pointer-events: none;

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

    background:
        linear-gradient(
            90deg,
            transparent 49.9%,
            rgba(53, 65, 22, 0.025) 50%,
            transparent 50.1%
        );
}

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

img,
picture,
svg,
video,
canvas {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

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

button {
    padding: 0;

    color: inherit;

    border: 0;
    background: none;

    cursor: pointer;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;

    list-style: none;
}

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

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

address {
    font-style: normal;
}

::selection {
    color: var(--jc-white);
    background: var(--jc-forest-800);
}


/* =========================================================
   CUSTOM SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background:
        linear-gradient(
            180deg,
            var(--jc-ivory-50),
            var(--jc-sage-100)
        );
}

::-webkit-scrollbar-thumb {
    min-height: 58px;

    border:
        3px solid
        var(--jc-ivory-100);

    border-radius: 20px;

    background:
        linear-gradient(
            180deg,
            var(--jc-olive-500),
            var(--jc-forest-800)
        );

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

::-webkit-scrollbar-thumb:hover {
    background:
        linear-gradient(
            180deg,
            var(--jc-gold-600),
            var(--jc-forest-800)
        );
}

::-webkit-scrollbar-corner {
    background: var(--jc-ivory-100);
}


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

:focus-visible {
    outline:
        2px solid
        var(--jc-gold-600);

    outline-offset: 4px;
}

.jc-skip-link {
    position: fixed;
    top: 18px;
    left: 18px;
    z-index:
        calc(var(--jc-z-transition) + 1);

    padding: 13px 20px;

    color: var(--jc-white);

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

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

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

    box-shadow: var(--jc-shadow-md);

    transform: translateY(-180%);

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

.jc-skip-link:focus {
    transform: translateY(0);
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;

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

    text-wrap: balance;
}

h1,
h2,
h3 {
    font-family: var(--jc-font-display);
    font-weight: 600;
}

h1 {
    font-size:
        clamp(3.7rem, 7.6vw, 7.8rem);

    line-height: 0.88;
    letter-spacing: -0.047em;
}

h2 {
    font-size:
        clamp(3rem, 5.4vw, 5.6rem);

    line-height: 0.94;
    letter-spacing: -0.041em;
}

h3 {
    font-size:
        clamp(1.75rem, 2.8vw, 2.65rem);

    line-height: 1.02;
    letter-spacing: -0.025em;
}

h4 {
    font-size:
        clamp(1.15rem, 1.5vw, 1.4rem);

    font-weight: 700;
    line-height: 1.25;
}

p {
    color: var(--jc-text-secondary);
}

strong {
    color: var(--jc-text-primary);
    font-weight: 700;
}

small {
    color: var(--jc-text-soft);
}


/* =========================================================
   PAGE STRUCTURE
========================================================= */

.jc-page-shell {
    position: relative;
    z-index: var(--jc-z-content);

    min-height: 100vh;

    animation:
        jc-page-enter
        900ms
        var(--jc-ease-soft)
        both;
}

.jc-container {
    width:
        min(
            calc(
                100% -
                (var(--jc-page-gutter) * 2)
            ),
            var(--jc-container-width)
        );

    margin-inline: auto;
}

.jc-container--narrow {
    width:
        min(
            calc(
                100% -
                (var(--jc-page-gutter) * 2)
            ),
            var(--jc-container-narrow)
        );

    margin-inline: auto;
}

.jc-section {
    position: relative;

    padding-block: var(--jc-section-space);
}

.jc-section[id] {
    scroll-margin-top: var(--jc-scroll-offset);
}

.jc-section--light {
    background:
        rgba(255, 255, 255, 0.58);

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

.jc-section--ivory {
    background:
        rgba(245, 243, 236, 0.82);
}

.jc-section--dark {
    color: var(--jc-white);

    background:
        linear-gradient(
            145deg,
            var(--jc-forest-950),
            #222C13
        );
}

.jc-section--dark h1,
.jc-section--dark h2,
.jc-section--dark h3,
.jc-section--dark h4 {
    color: var(--jc-white);
}

.jc-section--dark p {
    color: rgba(255, 255, 255, 0.68);
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.jc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 20px;

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

    font-size: 0.71rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.jc-eyebrow::before {
    width: 42px;
    height: 1px;

    content: "";

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

.jc-eyebrow::after {
    width: 4px;
    height: 4px;

    content: "";

    border-radius: 50%;

    background: var(--jc-gold-500);
}

.jc-section-title {
    max-width: 900px;
    margin-bottom: 26px;
}

.jc-section-description {
    max-width: 720px;

    font-size:
        clamp(1rem, 1.3vw, 1.13rem);

    line-height: 1.9;
}

.jc-editorial-line {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-top: 32px;
}

.jc-editorial-line::before {
    width: 72px;
    height: 1px;

    content: "";

    background: var(--jc-gold-500);
}

.jc-editorial-line::after {
    width: 6px;
    height: 6px;

    content: "";

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

    border-radius: 50%;
}


/* =========================================================
   GLOBAL CARDS
========================================================= */

.jc-card {
    position: relative;

    overflow: hidden;

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

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

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.94),
            rgba(248, 247, 241, 0.87)
        );

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

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

.jc-card::before {
    position: absolute;
    top: 0;
    left: 30px;

    width: 68px;
    height: 1px;

    content: "";

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

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

.jc-card::after {
    position: absolute;
    top: -60px;
    right: -60px;

    width: 150px;
    height: 150px;

    content: "";

    pointer-events: none;

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

    border-radius: 50%;

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

.jc-card:hover {
    border-color:
        rgba(190, 155, 93, 0.34);

    box-shadow: var(--jc-shadow-md);

    transform: translateY(-7px);
}

.jc-card:hover::before {
    width: 130px;
}

.jc-card:hover::after {
    transform: scale(1.16);
}


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

.jc-button {
    position: relative;

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

    min-height: 57px;
    padding: 16px 27px;

    overflow: hidden;

    border:
        1px solid
        transparent;

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

    font-size: 0.79rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.095em;
    text-transform: uppercase;

    isolation: isolate;

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

.jc-button::before {
    position: absolute;
    inset: 0;
    z-index: -1;

    content: "";

    background:
        linear-gradient(
            100deg,
            transparent 10%,
            rgba(255, 255, 255, 0.18) 48%,
            transparent 86%
        );

    transform:
        translateX(-140%)
        skewX(-18deg);

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

.jc-button::after {
    width: 18px;
    height: 1px;

    content: "";

    background: currentColor;

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

.jc-button:hover {
    transform: translateY(-3px);
}

.jc-button:hover::before {
    transform:
        translateX(140%)
        skewX(-18deg);
}

.jc-button:hover::after {
    width: 28px;
}

.jc-button:active {
    transform: translateY(-1px);
}

.jc-button--primary {
    color: var(--jc-white);

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

    background:
        linear-gradient(
            145deg,
            var(--jc-forest-800),
            var(--jc-forest-950)
        );

    box-shadow:
        0 15px 36px
        rgba(30, 40, 16, 0.19);
}

.jc-button--primary:hover {
    border-color: var(--jc-forest-950);

    box-shadow:
        0 21px 48px
        rgba(30, 40, 16, 0.27);
}

.jc-button--accent {
    color: var(--jc-white);

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

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

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

.jc-button--outline {
    color: var(--jc-forest-800);

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

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

    backdrop-filter: blur(12px);
}

.jc-button--outline:hover {
    color: var(--jc-white);

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

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

.jc-button--light {
    color: var(--jc-forest-950);

    border-color:
        rgba(255, 255, 255, 0.52);

    background: var(--jc-ivory-50);
}


/* =========================================================
   GLOBAL LINKS
========================================================= */

.jc-text-link {
    position: relative;

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

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

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

.jc-text-link::after {
    width: 24px;
    height: 1px;

    content: "";

    background: var(--jc-clay-500);

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

.jc-text-link:hover::after {
    width: 44px;
}


/* =========================================================
   GLOBAL FORM ELEMENTS
========================================================= */

.jc-field {
    display: grid;
    gap: 9px;
}

.jc-field label {
    color: var(--jc-forest-900);

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

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

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

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

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

    outline: none;

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

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

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

.jc-field input,
.jc-field select {
    min-height: 56px;
    padding: 14px 17px;
}

.jc-field textarea {
    min-height: 145px;
    padding: 16px 17px;

    resize: vertical;
}

.jc-field input:focus,
.jc-field textarea:focus,
.jc-field select:focus {
    border-color: var(--jc-gold-600);

    background: var(--jc-white);

    box-shadow:
        0 0 0 4px
        rgba(190, 155, 93, 0.12);
}

.jc-field input::placeholder,
.jc-field textarea::placeholder {
    color: #92978D;
}


/* =========================================================
   UNIQUE LANDSCAPE BACKGROUND
========================================================= */

.jc-site-background {
    position: fixed;
    inset: 0;
    z-index: var(--jc-z-background);

    overflow: hidden;

    pointer-events: none;
}

.jc-site-background::before {
    position: absolute;
    top: 11%;
    left: 5%;

    width: 54%;
    height: 1px;

    content: "";

    opacity: 0.44;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(190, 155, 93, 0.23),
            transparent
        );
}

.jc-site-background::after {
    position: absolute;
    right: 8%;
    bottom: 11%;

    width: 1px;
    height: 42%;

    content: "";

    opacity: 0.36;

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

.jc-bg-shape {
    position: absolute;
    display: block;
}


/* Hortensia elegante inspirada en el logo */

.jc-bg-shape--flower {
    top: 5%;
    right: -95px;

    width: 430px;
    aspect-ratio: 1;

    opacity: 0.12;

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

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(104, 113, 72, 0.74) 0 11%,
            transparent 11.8%
        ),
        radial-gradient(
            circle at 73% 33%,
            rgba(168, 174, 141, 0.72) 0 12%,
            transparent 12.8%
        ),
        radial-gradient(
            circle at 75% 62%,
            rgba(86, 96, 56, 0.63) 0 13%,
            transparent 13.8%
        ),
        radial-gradient(
            circle at 53% 78%,
            rgba(190, 195, 167, 0.74) 0 12%,
            transparent 12.8%
        ),
        radial-gradient(
            circle at 27% 67%,
            rgba(146, 153, 121, 0.72) 0 12%,
            transparent 12.8%
        ),
        radial-gradient(
            circle at 24% 34%,
            rgba(104, 113, 72, 0.58) 0 13%,
            transparent 13.8%
        ),
        radial-gradient(
            circle at 50% 49%,
            rgba(53, 65, 22, 0.48) 0 15%,
            transparent 15.8%
        );

    filter: blur(0.2px);

    transform: rotate(-12deg);

    animation:
        jc-flower-drift
        22s
        ease-in-out
        infinite alternate;
}


/* Arcos inspirados en irrigación */

.jc-bg-shape--irrigation {
    top: 41%;
    left: -310px;

    width: 650px;
    height: 650px;

    opacity: 0.11;

    border:
        1px solid
        rgba(86, 96, 56, 0.56);

    border-right-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;

    transform: rotate(30deg);
}

.jc-bg-shape--irrigation::before,
.jc-bg-shape--irrigation::after {
    position: absolute;

    content: "";

    border:
        1px solid
        rgba(86, 96, 56, 0.46);

    border-right-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
}

.jc-bg-shape--irrigation::before {
    inset: 82px;
}

.jc-bg-shape--irrigation::after {
    inset: 174px;
}


/* Patrón elegante de pavers */

.jc-bg-shape--pavers {
    right: 2%;
    bottom: 4%;

    width: 410px;
    height: 260px;

    opacity: 0.075;

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

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

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

    background-size: 62px 42px;

    clip-path:
        polygon(
            7% 11%,
            91% 0,
            100% 82%,
            15% 100%,
            0 48%
        );

    transform: rotate(-7deg);
}


/* Piedras naturales */

.jc-bg-shape--stones {
    top: 27%;
    left: 12%;

    width: 132px;
    height: 88px;

    opacity: 0.10;

    border:
        1px solid
        rgba(74, 56, 43, 0.62);

    border-radius:
        58% 42% 53% 47% /
        45% 58% 42% 55%;

    transform: rotate(13deg);
}

.jc-bg-shape--stones::before,
.jc-bg-shape--stones::after {
    position: absolute;

    content: "";

    border:
        1px solid
        rgba(74, 56, 43, 0.52);
}

.jc-bg-shape--stones::before {
    top: 61px;
    left: 87px;

    width: 96px;
    height: 66px;

    border-radius:
        48% 52% 62% 38% /
        45% 39% 61% 55%;
}

.jc-bg-shape--stones::after {
    top: -42px;
    left: 82px;

    width: 77px;
    height: 54px;

    border-radius:
        55% 45% 40% 60% /
        42% 57% 43% 58%;
}


/* Sendero curvo */

.jc-bg-shape--path {
    right: 21%;
    bottom: 24%;

    width: 520px;
    height: 230px;

    opacity: 0.11;

    border-top:
        1px solid
        rgba(176, 109, 74, 0.66);

    border-radius: 50%;

    transform: rotate(13deg);
}

.jc-bg-shape--path::before {
    position: absolute;
    top: 14px;
    left: 20px;

    width: 94%;
    height: 86%;

    content: "";

    border-top:
        1px dashed
        rgba(190, 155, 93, 0.52);

    border-radius: 50%;
}


/* =========================================================
   PAGE TRANSITION
========================================================= */

.jc-page-transition {
    position: fixed;
    inset: 0;
    z-index: var(--jc-z-transition);

    display: grid;
    place-items: center;

    visibility: hidden;
    opacity: 0;

    pointer-events: none;
}

.jc-page-transition__panel {
    position: absolute;
    inset: 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 22% 20%,
            rgba(190, 195, 167, 0.12),
            transparent 25rem
        ),
        linear-gradient(
            145deg,
            #17200D,
            var(--jc-forest-950)
        );

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

    transition:
        clip-path
        740ms
        var(--jc-ease-editorial);
}

.jc-page-transition__panel::before {
    position: absolute;
    top: 0;
    left: 50%;

    width: 1px;
    height: 100%;

    content: "";

    opacity: 0.4;

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

    transform: scaleY(0);
    transform-origin: top;

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

.jc-page-transition__panel::after {
    position: absolute;
    inset: 24px;

    content: "";

    opacity: 0;

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

    transition:
        opacity
        500ms
        ease
        260ms;
}

.jc-page-transition__content {
    position: relative;
    z-index: 2;

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

    color: var(--jc-white);
    text-align: center;

    opacity: 0;

    transform:
        translateY(20px)
        scale(0.98);

    transition:
        opacity
        380ms
        ease
        260ms,
        transform
        620ms
        var(--jc-ease-soft)
        220ms;
}

.jc-page-transition__mark {
    display: grid;
    place-items: center;

    width: 92px;
    height: 92px;
    margin-bottom: 20px;

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

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

    border-radius:
        46% 54% 45% 55% /
        56% 44% 56% 44%;

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

    backdrop-filter: blur(12px);

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

    box-shadow:
        0 18px 46px
        rgba(0, 0, 0, 0.15);
}

.jc-page-transition__name {
    color:
        rgba(255, 255, 255, 0.76);

    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.23em;
    text-transform: uppercase;
}

.jc-page-transition__line {
    position: relative;

    width: 72px;
    height: 1px;
    margin-top: 22px;

    overflow: hidden;

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

.jc-page-transition__line::after {
    position: absolute;
    inset: 0;

    content: "";

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

    transform: translateX(-110%);
}

html.jc-is-leaving,
html.jc-is-leaving body {
    overflow: hidden;
}

html.jc-is-leaving
.jc-page-transition {
    visibility: visible;
    opacity: 1;

    pointer-events: auto;
}

html.jc-is-leaving
.jc-page-transition__panel {
    clip-path:
        inset(0 0 0 0);
}

html.jc-is-leaving
.jc-page-transition__panel::before {
    transform: scaleY(1);
}

html.jc-is-leaving
.jc-page-transition__panel::after {
    opacity: 1;
}

html.jc-is-leaving
.jc-page-transition__content {
    opacity: 1;

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

html.jc-is-leaving
.jc-page-transition__line::after {
    animation:
        jc-transition-line
        1150ms
        var(--jc-ease-soft)
        infinite;
}


/*
   Protección visual adicional:
   cuando JavaScript remueve jc-is-leaving,
   el overlay deja de bloquear inmediatamente.
*/

html:not(.jc-is-leaving)
.jc-page-transition {
    pointer-events: none;
}


/* =========================================================
   SECTION NAVIGATION TRANSITION
========================================================= */

.jc-section-transition {
    position: fixed;
    top: 0;
    left: 0;
    z-index:
        calc(var(--jc-z-header) + 20);

    width: 100%;
    height: 3px;

    overflow: hidden;

    pointer-events: none;
}

.jc-section-transition__line {
    display: block;

    width: 100%;
    height: 100%;

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

    transform: scaleX(0);
    transform-origin: left;
}

html.jc-anchor-nav-active
.jc-section-transition__line {
    animation:
        jc-anchor-line
        920ms
        var(--jc-ease-soft)
        both;
}


/* =========================================================
   ELEGANT REVEAL UTILITIES
   Para usar en futuras secciones
========================================================= */

.jc-reveal {
    opacity: 1;
    transform: none;
}

html.jc-js
.jc-reveal:not(.is-visible) {
    opacity: 0;

    transform:
        translateY(28px);
}

html.jc-js
.jc-reveal.is-visible {
    opacity: 1;

    transform:
        translateY(0);

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

html.jc-js
.jc-reveal--left:not(.is-visible) {
    opacity: 0;

    transform:
        translateX(-38px);
}

html.jc-js
.jc-reveal--right:not(.is-visible) {
    opacity: 0;

    transform:
        translateX(38px);
}

html.jc-js
.jc-reveal--scale:not(.is-visible) {
    opacity: 0;

    transform:
        scale(0.96);
}

html.jc-js
.jc-reveal--left.is-visible,
html.jc-js
.jc-reveal--right.is-visible,
html.jc-js
.jc-reveal--scale.is-visible {
    opacity: 1;
    transform: none;

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


/* =========================================================
   REDUCED MOTION
   Controlado por la clase agregada en JavaScript
========================================================= */

html.jc-reduced-motion {
    scroll-behavior: auto;
}

html.jc-reduced-motion *,
html.jc-reduced-motion *::before,
html.jc-reduced-motion *::after {
    scroll-behavior: auto !important;

    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
}


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

@keyframes jc-page-enter {

    0% {
        opacity: 0;

        transform:
            translateY(12px);
    }

    100% {
        opacity: 1;

        transform:
            translateY(0);
    }

}

@keyframes jc-flower-drift {

    0% {
        transform:
            rotate(-12deg)
            translate3d(0, 0, 0);
    }

    100% {
        transform:
            rotate(-8deg)
            translate3d(-10px, 15px, 0);
    }

}

@keyframes jc-transition-line {

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

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

}

@keyframes jc-anchor-line {

    0% {
        transform: scaleX(0);
        transform-origin: left;
    }

    48% {
        transform: scaleX(1);
        transform-origin: left;
    }

    52% {
        transform: scaleX(1);
        transform-origin: right;
    }

    100% {
        transform: scaleX(0);
        transform-origin: right;
    }

}





































/* =========================================================
   JC LANDSCAPE
   STABLE HEADER AND VIEWPORT MOBILE NAVIGATION
========================================================= */

:root {
    --jc-topbar-height: 38px;
    --jc-header-height: 88px;

    --jc-first-screen-offset:
        calc(
            var(--jc-topbar-height) +
            var(--jc-header-height)
        );

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

    --jc-scroll-offset:
        calc(
            var(--jc-header-height) +
            22px
        );

    --jc-nav-viewport-height: 100dvh;

    --jc-nav-header-z: 1200;
    --jc-nav-modal-z: 2147482000;
}


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

.jc-nav-visually-hidden {
    position: absolute;

    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0 0 0 0);
    clip-path: inset(50%);

    border: 0;

    white-space: nowrap;
}


/* =========================================================
   TOP INFORMATION BAR
========================================================= */

.jc-nav-topbar {
    position: relative;
    z-index:
        calc(var(--jc-nav-header-z) + 1);

    display: block;

    width: 100%;

    /*
     * Altura exacta controlada exclusivamente por CSS.
     * No debe depender de una medición JavaScript.
     */
    height:
        var(--jc-topbar-height);

    min-height: 0;
    max-height:
        var(--jc-topbar-height);

    flex: 0 0
        var(--jc-topbar-height);

    overflow: visible;

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

    border-bottom:
        1px solid
        rgba(226, 205, 165, 0.15);

    background:
        linear-gradient(
            105deg,
            var(--jc-forest-950, #13190b),
            var(--jc-forest-900, #1e2810)
        );

    /*
     * El topbar no debe tener animaciones de posición
     * ni transiciones de altura.
     */
    animation: none;
    transition: none;
}

.jc-nav-topbar::before {
    position: absolute;
    top: 0;
    left: 8%;

    width: 180px;
    height: 1px;

    content: "";

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

.jc-nav-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;

    width:
        min(
            calc(
                100% -
                (var(--jc-page-gutter) * 2)
            ),
            var(--jc-container-width)
        );

    height: 100%;
    min-height: 0;
    max-height: 100%;

    margin-inline: auto;

    animation: none;
    transition: none;
}

.jc-nav-topbar__contact,
.jc-nav-topbar__service,
.jc-nav-topbar__phone,
.jc-nav-topbar__hours,
.jc-nav-topbar__location,
.jc-nav-topbar__estimate {
    display: flex;
    align-items: center;
}

.jc-nav-topbar__contact,
.jc-nav-topbar__service {
    gap: 17px;

    min-width: 0;
}

.jc-nav-topbar__phone,
.jc-nav-topbar__hours,
.jc-nav-topbar__location {
    gap: 8px;

    min-width: 0;

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

    font-size: 0.67rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.035em;

    white-space: nowrap;
}

.jc-nav-topbar__phone strong {
    color:
        var(--jc-white, #ffffff);

    font-size: 0.69rem;
    letter-spacing: 0.05em;
}

.jc-nav-topbar__phone-label {
    color:
        rgba(255, 255, 255, 0.49);
}

.jc-nav-topbar svg {
    flex: 0 0 auto;

    width: 15px;
    height: 15px;

    color:
        var(--jc-gold-400, #d0b47e);
}

.jc-nav-topbar__divider {
    flex: 0 0 auto;

    width: 1px;
    height: 13px;

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

.jc-nav-topbar__hours-short {
    display: none;
}

.jc-nav-topbar__estimate {
    position: relative;

    gap: 8px;

    color:
        var(--jc-gold-300, #e2cda5);

    font-size: 0.64rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.jc-nav-topbar__estimate::after {
    position: absolute;
    right: 0;
    bottom: -4px;
    left: 0;

    height: 1px;

    content: "";

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

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

    transition:
        transform
        360ms
        cubic-bezier(0.22, 1, 0.36, 1);
}

.jc-nav-topbar__estimate:hover::after,
.jc-nav-topbar__estimate:focus-visible::after {
    transform: scaleX(1);
}


/* =========================================================
   STICKY HEADER
========================================================= */

.jc-site-header {
    position: sticky;
    top: 0;
    z-index:
        var(--jc-nav-header-z);

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

    color:
        var(--jc-text-primary, #2c3128);

    border-bottom:
        1px solid
        rgba(53, 65, 22, 0.12);

    background:
        rgba(250, 249, 245, 0.95);

    box-shadow:
        0 8px 28px
        rgba(24, 32, 14, 0.05);

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

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

.jc-site-header::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;

    height: 1px;

    content: "";

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(190, 155, 93, 0.34),
            rgba(53, 65, 22, 0.10),
            rgba(190, 155, 93, 0.34),
            transparent
        );
}

.jc-site-header.is-scrolled {
    border-bottom-color:
        rgba(53, 65, 22, 0.19);

    background:
        rgba(250, 249, 245, 0.985);

    box-shadow:
        0 15px 42px
        rgba(24, 32, 14, 0.12);
}

.jc-site-header__inner {
    position: relative;

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

    height: 100%;
}

.jc-site-header__brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 112px;
    height: 100%;
}

.jc-site-header__logo {
    width: auto;
    max-width: 126px;
    max-height:
        calc(
            var(--jc-header-height) -
            14px
        );

    object-fit: contain;

    filter:
        drop-shadow(
            0 7px 12px
            rgba(30, 40, 16, 0.08)
        );
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.jc-site-header__navigation {
    min-width: 0;
}

.jc-site-header__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap:
        clamp(17px, 1.9vw, 33px);
}

.jc-site-header__link {
    position: relative;

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

    min-height: 42px;

    color:
        var(--jc-text-secondary, #5e6558);

    font-size: 0.69rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.085em;
    text-transform: uppercase;

    transition:
        color 280ms ease;
}

.jc-site-header__link::before {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;

    height: 1px;

    content: "";

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

    transform: scaleX(0);
    transform-origin: right;

    transition:
        transform
        340ms
        cubic-bezier(0.22, 1, 0.36, 1);
}

.jc-site-header__link:hover,
.jc-site-header__link:focus-visible,
.jc-site-header__link.is-current {
    color:
        var(--jc-forest-900, #1e2810);
}

.jc-site-header__link:hover::before,
.jc-site-header__link:focus-visible::before,
.jc-site-header__link.is-current::before {
    transform: scaleX(1);
    transform-origin: left;
}


/* =========================================================
   HEADER CTA
========================================================= */

.jc-site-header__estimate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 48px;
    padding:
        13px
        18px;

    color:
        var(--jc-white, #ffffff);

    border:
        1px solid
        var(--jc-forest-800, #354116);

    border-radius:
        var(--jc-radius-sm, 10px);

    background:
        linear-gradient(
            145deg,
            var(--jc-forest-800, #354116),
            var(--jc-forest-950, #13190b)
        );

    box-shadow:
        0 14px 32px
        rgba(30, 40, 16, 0.17);

    font-size: 0.67rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.075em;
    text-transform: uppercase;

    white-space: nowrap;

    transition:
        transform 280ms
        cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 280ms ease;
}

.jc-site-header__estimate svg {
    width: 17px;
    height: 17px;

    color:
        var(--jc-gold-300, #e2cda5);
}

.jc-site-header__estimate:hover,
.jc-site-header__estimate:focus-visible {
    box-shadow:
        0 19px 42px
        rgba(30, 40, 16, 0.25);

    transform: translateY(-2px);
}


/* =========================================================
   HAMBURGER
========================================================= */

.jc-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;
    padding: 0;

    appearance: none;

    color:
        var(--jc-forest-900, #1e2810);

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

    border-radius:
        var(--jc-radius-sm, 10px);

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

    box-shadow:
        0 8px 20px
        rgba(24, 32, 14, 0.06);

    cursor: pointer;
}

.jc-nav-toggle__lines {
    display: flex;
    flex-direction: column;
    gap: 5px;

    width: 20px;
}

.jc-nav-toggle__lines span {
    display: block;

    width: 100%;
    height: 1.5px;

    border-radius: 10px;

    background: currentColor;
}

.jc-nav-toggle__lines span:nth-child(2) {
    width: 14px;
}


/* =========================================================
   SCROLL LOCK
   BODY IS NEVER REPOSITIONED
========================================================= */

html.jc-nav-open,
body.jc-nav-open {
    overflow: hidden !important;

    overscroll-behavior: none !important;
}


/* =========================================================
   FULL VIEWPORT MOBILE MODAL
========================================================= */

.jc-nav-modal {
    position: fixed;
    inset: 0;
    z-index:
        var(--jc-nav-modal-z);

    width: 100vw;

    height: 100vh;
    height: 100svh;
    height:
        var(
            --jc-nav-viewport-height,
            100dvh
        );

    max-width: none;
    max-height: none;

    margin: 0;
    padding: 0;

    overflow: hidden;

    visibility: hidden;
    opacity: 0;

    pointer-events: none;

    isolation: isolate;

    transition:
        opacity 320ms ease,
        visibility 0s linear 320ms;
}

.jc-nav-modal[hidden] {
    display: none !important;
}

.jc-nav-modal.is-open {
    visibility: visible;
    opacity: 1;

    pointer-events: auto;

    transition-delay: 0s;
}

.jc-nav-modal__backdrop {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        rgba(11, 15, 8, 0.62);

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

    cursor: pointer;

    touch-action: none;
}


/* =========================================================
   DRAWER
========================================================= */

.jc-nav-drawer {
    position: relative;
    z-index: 2;

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

    width:
        min(460px, 92vw);
    height: 100%;
    min-height: 0;
    max-height: 100%;

    overflow: hidden;

    color:
        var(--jc-text-primary, #2c3128);

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

    background:
        radial-gradient(
            circle at 12% 8%,
            rgba(190, 195, 167, 0.30),
            transparent 18rem
        ),
        linear-gradient(
            145deg,
            #fbfaf6,
            #f1efe6
        );

    box-shadow:
        25px 0 80px
        rgba(17, 24, 10, 0.22);

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

    transition:
        transform
        560ms
        cubic-bezier(0.76, 0, 0.24, 1);

    contain: layout;
}

.jc-nav-modal.is-open
.jc-nav-drawer {
    transform: translate3d(0, 0, 0);
}


/* =========================================================
   DRAWER TOP
========================================================= */

.jc-nav-drawer__top {
    position: relative;
    z-index: 3;

    display: grid;
    grid-template-columns:
        48px
        minmax(0, 1fr)
        auto;
    align-items: center;
    gap: 14px;

    min-height: 78px;
    padding:
        max(10px, env(safe-area-inset-top))
        max(18px, env(safe-area-inset-right))
        10px
        max(18px, env(safe-area-inset-left));

    border-bottom:
        1px solid
        rgba(53, 65, 22, 0.12);

    background:
        rgba(250, 249, 245, 0.91);

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

.jc-nav-drawer__close {
    display: grid;
    place-items: center;

    width: 46px;
    height: 46px;
    padding: 0;

    appearance: none;

    color:
        var(--jc-forest-900, #1e2810);

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

    border-radius:
        var(--jc-radius-sm, 10px);

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

    cursor: pointer;
}

.jc-nav-drawer__close svg {
    width: 20px;
    height: 20px;
}

.jc-nav-drawer__brand {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 0;
}

.jc-nav-drawer__brand img {
    width: auto;
    max-width: 112px;
    max-height: 63px;

    object-fit: contain;
}

.jc-nav-drawer__top-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 43px;
    padding:
        11px
        13px;

    color:
        var(--jc-white, #ffffff);

    border-radius:
        var(--jc-radius-sm, 10px);

    background:
        var(--jc-forest-900, #1e2810);

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


/* =========================================================
   INTERNAL SCROLL REGION
========================================================= */

.jc-nav-drawer__scroll {
    min-width: 0;
    min-height: 0;
    height: 100%;

    padding:
        clamp(28px, 4.8vh, 46px)
        clamp(24px, 5vw, 42px)
        32px;

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

    overscroll-behavior:
        contain;

    touch-action: pan-y;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: thin;
    scrollbar-color:
        var(--jc-olive-600, #687148)
        transparent;
}

.jc-nav-drawer__scroll::-webkit-scrollbar {
    width: 5px;
}

.jc-nav-drawer__scroll::-webkit-scrollbar-track {
    background: transparent;
}

.jc-nav-drawer__scroll::-webkit-scrollbar-thumb {
    border: 0;
    border-radius: 10px;

    background:
        var(--jc-olive-600, #687148);
}


/* =========================================================
   DRAWER INTRODUCTION
========================================================= */

.jc-nav-drawer__intro {
    position: relative;

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

    border-bottom:
        1px solid
        rgba(53, 65, 22, 0.12);
}

.jc-nav-drawer__intro::after {
    position: absolute;
    bottom: -1px;
    left: 0;

    width: 78px;
    height: 1px;

    content: "";

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

.jc-nav-drawer__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 12px;

    color:
        var(--jc-olive-700, #566038);

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

.jc-nav-drawer__eyebrow::before {
    width: 31px;
    height: 1px;

    content: "";

    background:
        var(--jc-gold-600, #a98546);
}

.jc-nav-drawer__intro h2 {
    margin-bottom: 14px;

    color:
        var(--jc-forest-950, #13190b);

    font-size:
        clamp(2.15rem, 7vw, 3.1rem);

    line-height: 0.95;
}

.jc-nav-drawer__intro h2 em {
    display: block;

    color:
        var(--jc-olive-600, #687148);

    font-weight: 500;
}

.jc-nav-drawer__intro p {
    max-width: 355px;

    color:
        var(--jc-text-secondary, #5e6558);

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


/* =========================================================
   DRAWER LINKS
========================================================= */

.jc-nav-drawer__list {
    border-top:
        1px solid
        rgba(53, 65, 22, 0.09);
}

.jc-nav-drawer__list li {
    border-bottom:
        1px solid
        rgba(53, 65, 22, 0.09);
}

.jc-nav-drawer__link {
    display: grid;
    grid-template-columns:
        34px
        minmax(0, 1fr)
        22px;
    align-items: center;
    gap: 13px;

    min-height: 66px;

    color:
        var(--jc-forest-950, #13190b);

    transition:
        color 280ms ease,
        padding-left 340ms
        cubic-bezier(0.22, 1, 0.36, 1);
}

.jc-nav-drawer__link > span:nth-child(2) {
    font-family:
        var(
            --jc-font-display,
            Georgia,
            serif
        );

    font-size:
        clamp(1.45rem, 4vw, 1.9rem);

    font-weight: 600;
    line-height: 1;
}

.jc-nav-drawer__number {
    color:
        var(--jc-gold-700, #8c6c35);

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

.jc-nav-drawer__arrow {
    color:
        var(--jc-clay-500, #b06d4a);

    font-size: 0.95rem;

    transition:
        transform 320ms
        cubic-bezier(0.22, 1, 0.36, 1);
}

.jc-nav-drawer__link:hover,
.jc-nav-drawer__link:focus-visible,
.jc-nav-drawer__link.is-current {
    color:
        var(--jc-clay-700, #8a4e33);

    padding-left: 7px;
}

.jc-nav-drawer__link:hover
.jc-nav-drawer__arrow,
.jc-nav-drawer__link:focus-visible
.jc-nav-drawer__arrow,
.jc-nav-drawer__link.is-current
.jc-nav-drawer__arrow {
    transform: translate(3px, -3px);
}


/* =========================================================
   DRAWER FOOTER
========================================================= */

.jc-nav-drawer__footer {
    position: relative;
    z-index: 3;

    display: grid;
    gap: 17px;

    padding:
        18px
        max(24px, env(safe-area-inset-right))
        max(18px, env(safe-area-inset-bottom))
        max(24px, env(safe-area-inset-left));

    border-top:
        1px solid
        rgba(53, 65, 22, 0.13);

    background:
        rgba(250, 249, 245, 0.95);

    box-shadow:
        0 -15px 35px
        rgba(24, 32, 14, 0.06);

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

.jc-nav-drawer__estimate {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    min-height: 55px;
    padding:
        14px
        17px;

    color:
        var(--jc-white, #ffffff);

    border-radius:
        var(--jc-radius-sm, 10px);

    background:
        linear-gradient(
            145deg,
            var(--jc-forest-800, #354116),
            var(--jc-forest-950, #13190b)
        );

    box-shadow:
        0 16px 34px
        rgba(30, 40, 16, 0.19);

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

.jc-nav-drawer__estimate svg {
    width: 18px;
    height: 18px;

    color:
        var(--jc-gold-300, #e2cda5);
}

.jc-nav-drawer__contact {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.jc-nav-drawer__contact a {
    display: grid;
    gap: 2px;
}

.jc-nav-drawer__contact small {
    color:
        var(--jc-text-soft, #7a8074);

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

.jc-nav-drawer__contact strong {
    color:
        var(--jc-forest-950, #13190b);

    font-size: 0.84rem;
}

.jc-nav-drawer__contact p {
    margin: 0;

    color:
        var(--jc-text-secondary, #5e6558);

    font-size: 0.64rem;
    line-height: 1.5;
    text-align: right;
}


/* =========================================================
   FOCUS
========================================================= */

.jc-nav-toggle:focus-visible,
.jc-nav-drawer__close:focus-visible,
.jc-nav-drawer__top-cta:focus-visible,
.jc-nav-drawer__link:focus-visible,
.jc-nav-drawer__estimate:focus-visible {
    outline:
        3px solid
        var(--jc-gold-600, #a98546);

    outline-offset: 3px;
}


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

html.jc-reduced-motion
.jc-site-header,
html.jc-reduced-motion
.jc-site-header *,
html.jc-reduced-motion
.jc-nav-modal,
html.jc-reduced-motion
.jc-nav-modal * {
    animation: none !important;
    transition: none !important;
}





































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

.jc-hero {
    position: relative;

    width: 100%;

    /*
       Fallback para navegadores anteriores.
    */
    height:
        calc(
            100vh -
            var(--jc-first-screen-offset)
        );

    /*
       Medida principal actualizada por site-shell.js.
    */
    height: var(--jc-first-screen-height);

    min-height: 0;

    overflow: hidden;

    color: var(--jc-white);

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

    isolation: isolate;
}


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

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

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

    will-change: transform;
}

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

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

    filter:
        saturate(0.88)
        contrast(1.04)
        brightness(0.87);

    transform: scale(1.065);

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

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


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

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

    background:
        linear-gradient(
            90deg,
            rgba(14, 19, 8, 0.94) 0%,
            rgba(20, 27, 11, 0.84) 34%,
            rgba(20, 27, 11, 0.54) 63%,
            rgba(20, 27, 11, 0.34) 100%
        ),
        linear-gradient(
            180deg,
            rgba(10, 14, 7, 0.19) 0%,
            transparent 44%,
            rgba(10, 14, 7, 0.60) 100%
        );
}

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

    pointer-events: none;

    opacity: 0.26;

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

    background-size: 5px 5px;

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

.jc-hero__texture::before {
    position: absolute;
    top: 8%;
    left: 6%;

    width: 42%;
    height: 1px;

    content: "";

    background:
        linear-gradient(
            90deg,
            rgba(226, 205, 165, 0.56),
            transparent
        );
}

.jc-hero__texture::after {
    position: absolute;
    top: 9%;
    left: 6%;

    width: 5px;
    height: 5px;

    content: "";

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

    border-radius: 50%;
}

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

    pointer-events: none;

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

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


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

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

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(280px, 350px);
    align-items: center;
    gap: clamp(52px, 6vw, 96px);

    height: 100%;

    padding-top:
        clamp(42px, 6vh, 74px);

    padding-bottom:
        clamp(112px, 15vh, 148px);
}


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

.jc-hero__content {
    position: relative;

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

.jc-hero__content::before {
    position: absolute;
    top: 4px;
    left: -32px;

    width: 1px;
    height: 72%;

    content: "";

    opacity: 0.52;

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


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

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

    margin-bottom:
        clamp(18px, 2.8vh, 29px);

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

    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.19em;
    text-transform: uppercase;

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

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

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

.jc-hero__eyebrow-dot {
    width: 5px;
    height: 5px;

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

    border-radius: 50%;
}


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

.jc-hero__title {
    max-width: 840px;
    margin-bottom:
        clamp(21px, 3.2vh, 31px);

    color: var(--jc-white);

    font-size:
        clamp(3.8rem, 6.45vw, 7rem);

    font-weight: 600;
    line-height: 0.84;
    letter-spacing: -0.052em;
}

.jc-hero__title-line {
    display: block;

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

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

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

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

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

    font-weight: 500;

    text-shadow:
        0 12px 36px
        rgba(0, 0, 0, 0.16);
}


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

.jc-hero__description {
    max-width: 650px;
    margin-bottom:
        clamp(27px, 4vh, 39px);

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

    font-size:
        clamp(0.98rem, 1.25vw, 1.12rem);

    line-height: 1.83;

    animation:
        jc-hero-content-enter
        950ms
        var(--jc-ease-soft)
        520ms
        both;
}


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

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

    animation:
        jc-hero-content-enter
        950ms
        var(--jc-ease-soft)
        610ms
        both;
}

.jc-hero__primary {
    min-height: 58px;
}

.jc-hero__secondary {
    position: relative;

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

    min-height: 48px;

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

    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.095em;
    text-transform: uppercase;

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

.jc-hero__secondary::after {
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;

    height: 1px;

    content: "";

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

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

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

.jc-hero__secondary:hover {
    color: var(--jc-gold-300);
}

.jc-hero__secondary:hover::after {
    transform: scaleX(1);
}

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

    width: 18px;
    height: 18px;

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

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

.jc-hero__secondary-icon svg {
    width: 100%;
    height: 100%;
}

.jc-hero__secondary:hover
.jc-hero__secondary-icon {
    transform: translateX(4px);
}


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

.jc-hero__availability {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-top:
        clamp(22px, 3.5vh, 34px);

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

    font-size: 0.67rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.035em;

    animation:
        jc-hero-content-enter
        950ms
        var(--jc-ease-soft)
        690ms
        both;
}

.jc-hero__availability-status {
    position: relative;

    flex: 0 0 auto;

    width: 7px;
    height: 7px;

    border-radius: 50%;

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

    box-shadow:
        0 0 0 4px
        rgba(208, 180, 126, 0.12);
}

.jc-hero__availability-status::after {
    position: absolute;
    inset: -5px;

    content: "";

    border:
        1px solid
        rgba(208, 180, 126, 0.32);

    border-radius: 50%;

    animation:
        jc-hero-status-pulse
        2600ms
        ease-out
        infinite;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.jc-hero__service-card {
    position: relative;

    width: 100%;
    padding: 30px 28px 24px;

    overflow: hidden;

    color: var(--jc-white);

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

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

    background:
        linear-gradient(
            145deg,
            rgba(20, 27, 11, 0.70),
            rgba(26, 34, 15, 0.48)
        );

    box-shadow:
        0 28px 70px
        rgba(8, 11, 6, 0.25);

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

    animation:
        jc-hero-card-enter
        1100ms
        var(--jc-ease-soft)
        520ms
        both;
}

.jc-hero__service-card::before {
    position: absolute;
    top: 0;
    left: 28px;

    width: 82px;
    height: 1px;

    content: "";

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

.jc-hero__service-card::after {
    position: absolute;
    top: -82px;
    right: -70px;

    width: 190px;
    height: 190px;

    content: "";

    pointer-events: none;

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

    border-radius:
        43% 57% 51% 49% /
        57% 43% 57% 43%;

    transform: rotate(-16deg);
}

.jc-hero__service-heading {
    position: relative;
    z-index: 1;

    margin-bottom: 22px;
}

.jc-hero__service-kicker {
    display: block;

    margin-bottom: 10px;

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

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

.jc-hero__service-heading p {
    color:
        rgba(255, 255, 255, 0.65);

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

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

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

.jc-hero__service-list li {
    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.11);
}

.jc-hero__service-list a {
    display: grid;
    grid-template-columns: 28px 1fr 18px;
    align-items: center;
    gap: 11px;

    min-height: 54px;

    transition:
        padding-left
        var(--jc-duration-normal)
        var(--jc-ease-soft),
        color
        var(--jc-duration-normal)
        ease;
}

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

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

.jc-hero__service-name {
    color:
        rgba(255, 255, 255, 0.84);

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

.jc-hero__service-arrow {
    color: var(--jc-clay-400);

    font-size: 0.9rem;

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

.jc-hero__service-list a:hover {
    padding-left: 6px;
}

.jc-hero__service-list a:hover
.jc-hero__service-arrow {
    transform:
        translate(3px, -3px);
}

.jc-hero__service-phone {
    position: relative;
    z-index: 1;

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

    padding-top: 21px;
}

.jc-hero__service-phone span {
    color:
        rgba(255, 255, 255, 0.51);

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

.jc-hero__service-phone strong {
    color: var(--jc-white);

    font-size: 0.78rem;
    letter-spacing: 0.035em;
}


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

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

    min-height: 78px;

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

    background:
        linear-gradient(
            90deg,
            rgba(13, 18, 8, 0.88),
            rgba(20, 27, 11, 0.72)
        );

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

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

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

    min-height: 78px;
}

.jc-hero__footer-item {
    display: flex;
    align-items: center;
    gap: 10px;

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

    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.065em;
    text-transform: uppercase;
}

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

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

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

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

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

    margin-left: auto;

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

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

.jc-hero__scroll-line {
    position: relative;

    display: block;

    width: 42px;
    height: 1px;

    overflow: hidden;

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

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

    content: "";

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

    animation:
        jc-hero-scroll-line
        1900ms
        var(--jc-ease-soft)
        infinite;
}


/* =========================================================
   SHORT-VIEWPORT PROTECTION
   Applied by hero.js
========================================================= */

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

    padding-top: 24px;
    padding-bottom: 94px;
}

.jc-hero.is-short
.jc-hero__content {
    width: min(100%, 760px);
}

.jc-hero.is-short
.jc-hero__service-card {
    display: none;
}

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

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

.jc-hero.is-short
.jc-hero__availability {
    margin-top: 18px;
}

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

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

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

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

    font-size:
        clamp(2.7rem, 7.4vh, 4.4rem);
}

.jc-hero.is-very-short
.jc-hero__description {
    max-width: 590px;
    margin-bottom: 17px;

    font-size: 0.9rem;
    line-height: 1.58;
}

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


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

@keyframes jc-hero-eyebrow-enter {

    from {
        opacity: 0;

        transform:
            translateX(-24px);
    }

    to {
        opacity: 1;

        transform:
            translateX(0);
    }

}

@keyframes jc-hero-title-enter {

    from {
        opacity: 0;

        transform:
            translateY(42px);

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

    to {
        opacity: 1;

        transform:
            translateY(0);

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

}

@keyframes jc-hero-content-enter {

    from {
        opacity: 0;

        transform:
            translateY(24px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}

@keyframes jc-hero-card-enter {

    from {
        opacity: 0;

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

    to {
        opacity: 1;

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

}

@keyframes jc-hero-footer-enter {

    from {
        opacity: 0;

        transform:
            translateY(100%);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}

@keyframes jc-hero-status-pulse {

    0% {
        opacity: 0.7;
        transform: scale(0.65);
    }

    75%,
    100% {
        opacity: 0;
        transform: scale(1.7);
    }

}

@keyframes jc-hero-scroll-line {

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

    to {
        transform:
            translateX(110%);
    }

}



































/* =========================================================
   TRUST AND SERVICE SUMMARY
========================================================= */

.jc-trust-summary {
    position: relative;

    padding:
        clamp(92px, 9vw, 148px)
        0
        clamp(86px, 8vw, 132px);

    overflow: hidden;

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

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

    background:
        radial-gradient(
            circle at 7% 14%,
            rgba(190, 195, 167, 0.21),
            transparent 24rem
        ),
        radial-gradient(
            circle at 94% 84%,
            rgba(176, 109, 74, 0.065),
            transparent 25rem
        ),
        linear-gradient(
            145deg,
            rgba(250, 249, 245, 0.98),
            rgba(245, 243, 236, 0.96)
        );

    isolation: isolate;
}


/* =========================================================
   DECORATIVE BACKGROUND
========================================================= */

.jc-trust-summary__decor {
    position: absolute;
    inset: 0;
    z-index: -1;

    overflow: hidden;

    pointer-events: none;
}

.jc-trust-summary__decor-arc {
    position: absolute;
    top: -310px;
    right: -270px;

    width: 650px;
    height: 650px;

    opacity: 0.11;

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

    border-radius: 50%;
}

.jc-trust-summary__decor-arc::before,
.jc-trust-summary__decor-arc::after {
    position: absolute;

    content: "";

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

    border-radius: 50%;
}

.jc-trust-summary__decor-arc::before {
    inset: 74px;
}

.jc-trust-summary__decor-arc::after {
    inset: 156px;
}

.jc-trust-summary__decor-leaf {
    position: absolute;
    bottom: 6%;
    left: -72px;

    width: 225px;
    height: 330px;

    opacity: 0.075;

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

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

    transform: rotate(28deg);
}

.jc-trust-summary__decor-leaf::before {
    position: absolute;
    top: 26px;
    left: 50%;

    width: 1px;
    height: 260px;

    content: "";

    background:
        linear-gradient(
            180deg,
            transparent,
            var(--jc-forest-800),
            transparent
        );

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

.jc-trust-summary__decor-grid {
    position: absolute;
    right: 3%;
    bottom: 8%;

    width: 250px;
    height: 170px;

    opacity: 0.045;

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

    background-size: 42px 32px;

    transform: rotate(-6deg);
}


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

.jc-trust-summary__header {
    display: grid;
    grid-template-columns:
        minmax(0, 1.28fr)
        minmax(320px, 0.72fr);
    align-items: end;
    gap: clamp(60px, 8vw, 130px);

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

.jc-trust-summary__heading {
    position: relative;
}

.jc-trust-summary__heading::after {
    position: absolute;
    right: 0;
    bottom: -26px;

    width: 100%;
    height: 1px;

    content: "";

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

.jc-trust-summary__title {
    max-width: 850px;
    margin: 0;

    font-size:
        clamp(3.1rem, 5.2vw, 5.55rem);

    line-height: 0.96;
}

.jc-trust-summary__title em {
    display: block;

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

    font-weight: 500;
}

.jc-trust-summary__introduction {
    max-width: 500px;
    padding-bottom: 4px;
}

.jc-trust-summary__introduction p {
    margin-bottom: 25px;

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

    line-height: 1.88;
}


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

.jc-trust-summary__layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.91fr)
        minmax(420px, 1.09fr);
    align-items: stretch;
    gap: clamp(42px, 6vw, 86px);
}


/* =========================================================
   COMMITMENTS
========================================================= */

.jc-trust-summary__commitments {
    display: grid;
    align-content: start;
}

.jc-trust-summary__commitment {
    position: relative;

    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 25px;

    padding:
        30px
        0
        32px;

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

.jc-trust-summary__commitment:first-child {
    padding-top: 4px;
}

.jc-trust-summary__commitment::after {
    position: absolute;
    right: 0;
    bottom: -1px;

    width: 0;
    height: 1px;

    content: "";

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

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

.jc-trust-summary__commitment:hover::after {
    width: 100%;
}

.jc-trust-summary__commitment-icon {
    display: grid;
    place-items: center;

    width: 56px;
    height: 56px;

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

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

    border-radius:
        44% 56% 49% 51% /
        56% 44% 56% 44%;

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

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

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

.jc-trust-summary__commitment-icon svg {
    width: 25px;
    height: 25px;
}

.jc-trust-summary__commitment:hover
.jc-trust-summary__commitment-icon {
    color: var(--jc-white);

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

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

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

.jc-trust-summary__commitment-number {
    display: block;

    margin-bottom: 8px;

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

    font-size: 0.61rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.12em;
}

.jc-trust-summary__commitment h3 {
    margin-bottom: 11px;

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

    line-height: 1.03;
}

.jc-trust-summary__commitment p {
    max-width: 525px;

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


/* =========================================================
   SERVICE SUMMARY PANEL
========================================================= */

.jc-trust-summary__services {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 100%;
    padding:
        clamp(36px, 4.2vw, 58px);

    overflow: hidden;

    color: var(--jc-white);

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

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

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

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

    isolation: isolate;
}

.jc-trust-summary__services::before {
    position: absolute;
    top: 0;
    left: clamp(36px, 4.2vw, 58px);

    width: 104px;
    height: 1px;

    content: "";

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

.jc-trust-summary__services::after {
    position: absolute;
    top: -125px;
    right: -105px;
    z-index: -1;

    width: 300px;
    height: 300px;

    content: "";

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

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

    transform: rotate(-17deg);
}

.jc-trust-summary__services-header {
    position: relative;
    z-index: 1;

    max-width: 570px;
    margin-bottom: 31px;
}

.jc-trust-summary__services-label {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 17px;

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

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

.jc-trust-summary__services-label::before {
    width: 35px;
    height: 1px;

    content: "";

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

.jc-trust-summary__services-header h3 {
    max-width: 520px;
    margin-bottom: 17px;

    color: var(--jc-white);

    font-size:
        clamp(2.15rem, 3.2vw, 3.45rem);

    line-height: 0.98;
}

.jc-trust-summary__services-header h3 em {
    display: block;

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

    font-weight: 500;
}

.jc-trust-summary__services-header p {
    color:
        rgba(255, 255, 255, 0.62);

    font-size: 0.82rem;
    line-height: 1.78;
}


/* =========================================================
   SERVICE LIST
========================================================= */

.jc-trust-summary__service-list {
    position: relative;
    z-index: 1;

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

.jc-trust-summary__service-list li {
    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.12);
}

.jc-trust-summary__service-list a {
    display: grid;
    grid-template-columns:
        34px
        minmax(0, 1fr)
        21px;
    align-items: center;
    gap: 15px;

    min-height: 61px;

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

.jc-trust-summary__service-list a:hover {
    padding-left: 9px;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.045),
            transparent
        );
}

.jc-trust-summary__service-index {
    color: var(--jc-gold-400);

    font-size: 0.57rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.jc-trust-summary__service-name {
    color:
        rgba(255, 255, 255, 0.87);

    font-family: var(--jc-font-display);
    font-size:
        clamp(1.06rem, 1.5vw, 1.28rem);

    font-weight: 600;
    line-height: 1.13;
}

.jc-trust-summary__service-arrow {
    color: var(--jc-clay-400);

    font-size: 0.9rem;

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

.jc-trust-summary__service-list a:hover
.jc-trust-summary__service-arrow {
    transform:
        translate(4px, -4px);
}


/* =========================================================
   SERVICE PANEL LINK
========================================================= */

.jc-trust-summary__services-link {
    position: relative;
    z-index: 1;

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

    width: 100%;
    min-height: 57px;
    margin-top: 29px;
    padding:
        14px
        17px;

    color: var(--jc-white);

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

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

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

    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.105em;
    text-transform: uppercase;

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

.jc-trust-summary__services-link svg {
    width: 19px;
    height: 19px;

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

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

.jc-trust-summary__services-link:hover {
    color: var(--jc-forest-950);

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

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

.jc-trust-summary__services-link:hover svg {
    color: var(--jc-forest-950);

    transform: translateX(4px);
}


/* =========================================================
   FACTS STRIP
========================================================= */

.jc-trust-summary__facts {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(190px, 1fr)
        1px
        minmax(190px, 1fr)
        1px
        minmax(190px, 1fr)
        auto;
    align-items: center;
    gap: clamp(24px, 3vw, 44px);

    margin-top:
        clamp(52px, 6vw, 82px);
    padding:
        27px
        31px;

    overflow: hidden;

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

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

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

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

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

.jc-trust-summary__facts::before {
    position: absolute;
    top: 0;
    left: 31px;

    width: 76px;
    height: 1px;

    content: "";

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

.jc-trust-summary__fact {
    display: flex;
    align-items: center;
    gap: 17px;
}

.jc-trust-summary__fact-value,
.jc-trust-summary__fact-symbol {
    flex: 0 0 auto;

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

    font-family: var(--jc-font-display);
    font-size:
        clamp(2.25rem, 3.2vw, 3.25rem);

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

.jc-trust-summary__fact-symbol {
    font-size:
        clamp(1.75rem, 2.3vw, 2.4rem);
}

.jc-trust-summary__fact div {
    display: grid;
    gap: 4px;
}

.jc-trust-summary__fact strong {
    font-size: 0.73rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.065em;
    text-transform: uppercase;
}

.jc-trust-summary__fact div span {
    color: var(--jc-text-soft);

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

.jc-trust-summary__fact-divider {
    width: 1px;
    height: 43px;

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

.jc-trust-summary__fact-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    min-height: 52px;
    padding:
        13px
        17px;

    color: var(--jc-white);

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

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

    box-shadow: var(--jc-shadow-accent);

    font-size: 0.66rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.075em;
    text-transform: uppercase;

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

.jc-trust-summary__fact-action:hover {
    box-shadow:
        0 20px 46px
        rgba(159, 94, 62, 0.26);

    transform: translateY(-3px);
}

.jc-trust-summary__fact-action-icon {
    display: grid;
    place-items: center;

    width: 17px;
    height: 17px;

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

.jc-trust-summary__fact-action-icon svg {
    width: 100%;
    height: 100%;
}

.jc-trust-summary__fact-action:hover
.jc-trust-summary__fact-action-icon {
    transform: translateX(3px);
}


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

html.jc-js
.jc-trust-summary
[data-jc-trust-reveal] {
    opacity: 0;

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

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

html.jc-js
.jc-trust-summary
[data-jc-trust-reveal="up"] {
    transform: translateY(34px);
}

html.jc-js
.jc-trust-summary
[data-jc-trust-reveal="left"] {
    transform: translateX(-38px);
}

html.jc-js
.jc-trust-summary
[data-jc-trust-reveal="right"] {
    transform: translateX(38px);
}

html.jc-js
.jc-trust-summary
[data-jc-trust-reveal="scale"] {
    transform:
        translateY(18px)
        scale(0.975);
}

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








































/* =========================================================
   SIX MAIN SERVICES
========================================================= */

.jc-services {
    position: relative;

    padding:
        clamp(98px, 9vw, 154px)
        0
        clamp(94px, 9vw, 146px);

    overflow: hidden;

    color: var(--jc-white);

    background:
        radial-gradient(
            circle at 12% 4%,
            rgba(190, 195, 167, 0.11),
            transparent 30rem
        ),
        radial-gradient(
            circle at 92% 88%,
            rgba(176, 109, 74, 0.09),
            transparent 30rem
        ),
        linear-gradient(
            145deg,
            #1B2410 0%,
            var(--jc-forest-950) 46%,
            #101608 100%
        );

    isolation: isolate;
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

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

    overflow: hidden;

    pointer-events: none;
}

.jc-services__decoration::before {
    position: absolute;
    inset: 0;

    content: "";

    opacity: 0.13;

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

    background-size: 30px 30px;

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

.jc-services__decor-line {
    position: absolute;
    top: 8%;
    left: 5%;

    width: 48%;
    height: 1px;

    opacity: 0.42;

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

.jc-services__decor-circle {
    position: absolute;
    top: -230px;
    right: -225px;

    width: 570px;
    height: 570px;

    opacity: 0.09;

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

    border-radius: 50%;
}

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

    content: "";

    border:
        1px solid
        rgba(208, 180, 126, 0.55);

    border-radius: 50%;
}

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

.jc-services__decor-circle::after {
    inset: 152px;
}

.jc-services__decor-path {
    position: absolute;
    bottom: 6%;
    left: -115px;

    width: 550px;
    height: 250px;

    opacity: 0.11;

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

    border-radius: 50%;

    transform: rotate(13deg);
}

.jc-services__decor-path::before {
    position: absolute;
    top: 15px;
    left: 15px;

    width: 92%;
    height: 86%;

    content: "";

    border-top:
        1px dashed
        rgba(226, 205, 165, 0.55);

    border-radius: 50%;
}


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

.jc-services__header {
    display: grid;
    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(320px, 0.65fr);
    align-items: end;
    gap: clamp(56px, 8vw, 120px);

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

.jc-services__heading {
    position: relative;
}

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

    height: 1px;

    content: "";

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

.jc-services__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 21px;

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

    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.jc-services__eyebrow::before {
    width: 44px;
    height: 1px;

    content: "";

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

.jc-services__eyebrow::after {
    width: 5px;
    height: 5px;

    content: "";

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

    border-radius: 50%;
}

.jc-services__title {
    max-width: 880px;
    margin: 0;

    color: var(--jc-white);

    font-size:
        clamp(3.25rem, 5.4vw, 5.8rem);

    line-height: 0.94;
}

.jc-services__title em {
    display: block;

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

    font-weight: 500;
}

.jc-services__introduction {
    max-width: 480px;
}

.jc-services__introduction p {
    margin-bottom: 26px;

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

    font-size:
        clamp(0.94rem, 1.15vw, 1.05rem);

    line-height: 1.87;
}

.jc-services__header-link {
    position: relative;

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

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

    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.095em;
    text-transform: uppercase;
}

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

    height: 1px;

    content: "";

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

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

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

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

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

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

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


/* =========================================================
   SERVICE GRID
========================================================= */

.jc-services__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
}

.jc-service-card {
    --jc-card-pointer-x: 50%;
    --jc-card-pointer-y: 50%;
    --jc-card-image-x: 0px;
    --jc-card-image-y: 0px;

    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;

    overflow: hidden;

    color: var(--jc-white);

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

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

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

    box-shadow:
        0 26px 62px
        rgba(5, 8, 4, 0.19);

    isolation: isolate;

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

.jc-service-card::before {
    position: absolute;
    inset: 0;
    z-index: 4;

    content: "";

    opacity: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at
            var(--jc-card-pointer-x)
            var(--jc-card-pointer-y),
            rgba(226, 205, 165, 0.13),
            transparent 34%
        );

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

.jc-service-card::after {
    position: absolute;
    top: 0;
    left: 30px;
    z-index: 5;

    width: 76px;
    height: 1px;

    content: "";

    pointer-events: none;

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

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

.jc-service-card:hover {
    border-color:
        rgba(226, 205, 165, 0.30);

    box-shadow:
        0 36px 88px
        rgba(4, 7, 3, 0.29);

    transform: translateY(-8px);
}

.jc-service-card:hover::before {
    opacity: 1;
}

.jc-service-card:hover::after {
    width: 142px;
}


/* =========================================================
   GRID SIZES
========================================================= */

.jc-service-card--featured {
    grid-column: span 7;
    grid-row: span 2;

    min-height: 810px;
}

.jc-service-card--technical {
    grid-column: span 5;

    min-height: 393px;
}

.jc-service-card--compact {
    grid-column: span 4;

    min-height: 600px;
}


/* =========================================================
   CARD MEDIA
========================================================= */

.jc-service-card__media {
    position: relative;

    min-height: 255px;

    overflow: hidden;

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

.jc-service-card--featured
.jc-service-card__media {
    min-height: 430px;
}

.jc-service-card--technical
.jc-service-card__media {
    position: absolute;
    inset: 0;
    z-index: -2;

    min-height: 100%;
}

.jc-service-card--compact
.jc-service-card__media {
    min-height: 260px;
}

.jc-service-card__image {
    width: calc(100% + 24px);
    height: calc(100% + 24px);
    margin: -12px;

    object-fit: cover;

    transform:
        translate3d(
            var(--jc-card-image-x),
            var(--jc-card-image-y),
            0
        )
        scale(1.045);

    filter:
        saturate(0.86)
        contrast(1.04)
        brightness(0.91);

    transition:
        transform
        900ms
        var(--jc-ease-soft),
        filter
        800ms
        ease;
}

.jc-service-card:hover
.jc-service-card__image {
    transform:
        translate3d(
            var(--jc-card-image-x),
            var(--jc-card-image-y),
            0
        )
        scale(1.09);

    filter:
        saturate(0.94)
        contrast(1.03)
        brightness(0.96);
}

.jc-service-card__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(12, 17, 7, 0.08),
            rgba(12, 17, 7, 0.70)
        );
}

.jc-service-card--technical
.jc-service-card__overlay {
    background:
        linear-gradient(
            90deg,
            rgba(13, 18, 8, 0.94) 0%,
            rgba(13, 18, 8, 0.77) 57%,
            rgba(13, 18, 8, 0.42) 100%
        ),
        linear-gradient(
            180deg,
            transparent,
            rgba(8, 12, 5, 0.72)
        );
}

.jc-service-card__number {
    position: absolute;
    top: 24px;
    left: 25px;

    display: grid;
    place-items: center;

    width: 44px;
    height: 44px;

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

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

    border-radius: 50%;

    background:
        rgba(14, 19, 8, 0.50);

    backdrop-filter: blur(10px);

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

.jc-service-card__category {
    position: absolute;
    right: 24px;
    bottom: 23px;

    max-width: calc(100% - 105px);

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

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


/* =========================================================
   CARD BODY
========================================================= */

.jc-service-card__body {
    position: relative;
    z-index: 2;

    display: flex;
    flex: 1;
    flex-direction: column;

    padding:
        clamp(29px, 3vw, 43px);
}

.jc-service-card--technical
.jc-service-card__body {
    justify-content: flex-end;

    max-width: 82%;
    min-height: 393px;
}

.jc-service-card__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.jc-service-card__kicker {
    display: block;

    margin-bottom: 13px;

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

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

.jc-service-card h3 {
    margin-bottom: 18px;

    color: var(--jc-white);

    font-size:
        clamp(2.05rem, 3vw, 3.5rem);

    line-height: 0.97;
}

.jc-service-card--technical h3 {
    max-width: 430px;

    font-size:
        clamp(1.9rem, 2.65vw, 3rem);
}

.jc-service-card--compact h3 {
    font-size:
        clamp(1.9rem, 2.5vw, 2.8rem);
}

.jc-service-card h3 em {
    display: block;

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

    font-weight: 500;
}

.jc-service-card__description {
    max-width: 650px;
    margin-bottom: 23px;

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

    font-size: 0.84rem;
    line-height: 1.77;
}

.jc-service-card--technical
.jc-service-card__description {
    max-width: 470px;
}


/* =========================================================
   FEATURE LIST
========================================================= */

.jc-service-card__features {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap:
        9px
        22px;

    margin-bottom: 30px;
}

.jc-service-card--technical
.jc-service-card__features,
.jc-service-card--compact
.jc-service-card__features {
    grid-template-columns: 1fr;
    gap: 8px;
}

.jc-service-card__features li {
    position: relative;

    padding-left: 16px;

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

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

.jc-service-card__features li::before {
    position: absolute;
    top: 0.62em;
    left: 0;

    width: 6px;
    height: 1px;

    content: "";

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


/* =========================================================
   CARD LINK
========================================================= */

.jc-service-card__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    width: 100%;
    min-height: 50px;
    margin-top: auto;
    padding-top: 18px;

    color: var(--jc-white);

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

    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.095em;
    text-transform: uppercase;

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

.jc-service-card__link-icon {
    display: grid;
    place-items: center;

    width: 34px;
    height: 34px;

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

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

    border-radius: 50%;

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

.jc-service-card__link-icon svg {
    width: 16px;
    height: 16px;
}

.jc-service-card__link:hover {
    color: var(--jc-gold-300);
}

.jc-service-card__link:hover
.jc-service-card__link-icon {
    color: var(--jc-forest-950);

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

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

    transform: translateX(4px);
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.jc-services__footer {
    position: relative;

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

    margin-top:
        clamp(54px, 6vw, 82px);
    padding:
        31px
        34px;

    overflow: hidden;

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

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

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

    box-shadow:
        0 20px 50px
        rgba(4, 7, 3, 0.17);

    backdrop-filter: blur(14px);
}

.jc-services__footer::before {
    position: absolute;
    top: 0;
    left: 34px;

    width: 92px;
    height: 1px;

    content: "";

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

.jc-services__footer-content {
    max-width: 670px;
}

.jc-services__footer-kicker {
    display: block;

    margin-bottom: 8px;

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

    font-family: var(--jc-font-display);
    font-size:
        clamp(1.45rem, 2vw, 1.9rem);

    font-weight: 600;
    line-height: 1.1;
}

.jc-services__footer-content p {
    color:
        rgba(255, 255, 255, 0.60);

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

.jc-services__footer-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.jc-services__phone {
    display: grid;
    gap: 4px;

    min-width: 130px;
}

.jc-services__phone span {
    color:
        rgba(255, 255, 255, 0.53);

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

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

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


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

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

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

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

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

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

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

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







































/* =========================================================
   WHY CHOOSE JC LANDSCAPE
========================================================= */

.jc-why {
    position: relative;

    padding:
        clamp(102px, 9vw, 156px)
        0
        clamp(92px, 8vw, 132px);

    overflow: hidden;

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

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

    background:
        radial-gradient(
            circle at 6% 8%,
            rgba(190, 195, 167, 0.24),
            transparent 27rem
        ),
        radial-gradient(
            circle at 94% 72%,
            rgba(176, 109, 74, 0.065),
            transparent 28rem
        ),
        linear-gradient(
            145deg,
            var(--jc-ivory-50),
            var(--jc-ivory-100)
        );

    isolation: isolate;
}


/* =========================================================
   DECORATIVE BACKGROUND
========================================================= */

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

    overflow: hidden;

    pointer-events: none;
}

.jc-why__decor-circle {
    position: absolute;
    top: -245px;
    left: -225px;

    width: 560px;
    height: 560px;

    opacity: 0.085;

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

    border-radius: 50%;
}

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

    content: "";

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

    border-radius: 50%;
}

.jc-why__decor-circle::before {
    inset: 70px;
}

.jc-why__decor-circle::after {
    inset: 150px;
}

.jc-why__decor-leaf {
    position: absolute;
    right: -72px;
    bottom: 5%;

    width: 215px;
    height: 330px;

    opacity: 0.07;

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

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

    transform: rotate(-26deg);
}

.jc-why__decor-leaf::before {
    position: absolute;
    top: 28px;
    left: 50%;

    width: 1px;
    height: 260px;

    content: "";

    background:
        linear-gradient(
            180deg,
            transparent,
            var(--jc-forest-800),
            transparent
        );

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

.jc-why__decor-line {
    position: absolute;
    top: 11%;
    right: 5%;

    width: 32%;
    height: 1px;

    opacity: 0.44;

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


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

.jc-why__layout {
    display: grid;
    grid-template-columns:
        minmax(420px, 0.92fr)
        minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(65px, 8vw, 126px);
}


/* =========================================================
   VISUAL COMPOSITION
========================================================= */

.jc-why__visual {
    --jc-why-image-x: 0px;
    --jc-why-image-y: 0px;

    position: relative;

    width: min(100%, 610px);
    min-height: 710px;
}

.jc-why__main-figure {
    position: relative;

    width: 79%;
    height: 650px;
    margin: 0;

    overflow: hidden;

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

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

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

.jc-why__main-figure::before {
    position: absolute;
    inset: 17px;
    z-index: 3;

    content: "";

    pointer-events: none;

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

    border-radius:
        calc(var(--jc-radius-xl) - 9px)
        calc(var(--jc-radius-sm) - 3px)
        calc(var(--jc-radius-xl) - 9px)
        calc(var(--jc-radius-sm) - 3px);
}

.jc-why__main-image {
    width: calc(100% + 22px);
    height: calc(100% + 22px);
    margin: -11px;

    object-fit: cover;

    filter:
        saturate(0.88)
        contrast(1.03)
        brightness(0.92);

    transform:
        translate3d(
            var(--jc-why-image-x),
            var(--jc-why-image-y),
            0
        )
        scale(1.035);

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

.jc-why__visual:hover
.jc-why__main-image {
    filter:
        saturate(0.96)
        contrast(1.02)
        brightness(0.96);

    transform:
        translate3d(
            var(--jc-why-image-x),
            var(--jc-why-image-y),
            0
        )
        scale(1.075);
}

.jc-why__image-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            180deg,
            transparent 42%,
            rgba(13, 18, 8, 0.77) 100%
        );
}

.jc-why__image-caption {
    position: absolute;
    right: 31px;
    bottom: 30px;
    left: 31px;
    z-index: 4;

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

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

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

    flex: 0 0 auto;

    width: 39px;
    height: 39px;

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

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

    border-radius: 50%;

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

.jc-why__image-caption div {
    display: grid;
    gap: 4px;
}

.jc-why__image-caption strong {
    color: var(--jc-white);

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

.jc-why__image-caption div span {
    color:
        rgba(255, 255, 255, 0.62);

    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}


/* =========================================================
   DETAIL IMAGE
========================================================= */

.jc-why__detail-figure {
    position: absolute;
    top: 72px;
    right: 0;
    z-index: 5;

    width: 42%;
    aspect-ratio: 1;

    margin: 0;
    padding: 10px;

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

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

    background:
        rgba(250, 249, 245, 0.88);

    box-shadow: var(--jc-shadow-md);

    backdrop-filter: blur(13px);
}

.jc-why__detail-figure img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius:
        6px
        calc(var(--jc-radius-xl) - 8px)
        6px
        calc(var(--jc-radius-xl) - 8px);

    filter:
        saturate(0.88)
        contrast(1.03);
}

.jc-why__detail-frame {
    position: absolute;
    inset: -12px 12px 12px -12px;
    z-index: -1;

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

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


/* =========================================================
   SERVICE BADGE
========================================================= */

.jc-why__service-badge {
    position: absolute;
    right: 1%;
    bottom: 61px;
    z-index: 6;

    display: grid;

    width: 195px;
    min-height: 173px;
    padding: 25px;

    color: var(--jc-white);

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

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

    background:
        radial-gradient(
            circle at 90% 8%,
            rgba(190, 195, 167, 0.14),
            transparent 9rem
        ),
        linear-gradient(
            145deg,
            var(--jc-forest-800),
            var(--jc-forest-950)
        );

    box-shadow:
        0 25px 60px
        rgba(17, 24, 10, 0.23);
}

.jc-why__service-badge::before {
    position: absolute;
    top: 0;
    left: 24px;

    width: 54px;
    height: 1px;

    content: "";

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

.jc-why__service-badge-label {
    color: var(--jc-gold-300);

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

.jc-why__service-badge strong {
    align-self: end;

    margin: 13px 0 5px;

    color: var(--jc-white);

    font-family: var(--jc-font-display);
    font-size: 4.1rem;
    font-weight: 600;
    line-height: 0.75;
    letter-spacing: -0.06em;
}

.jc-why__service-badge > span:last-child {
    color:
        rgba(255, 255, 255, 0.62);

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


/* =========================================================
   DECORATIVE MARK
========================================================= */

.jc-why__visual-mark {
    position: absolute;
    bottom: 2px;
    left: 17%;
    z-index: 2;

    display: grid;
    place-items: center;

    width: 88px;
    height: 88px;

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

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

    border-radius:
        46% 54% 43% 57% /
        56% 44% 56% 44%;

    background:
        rgba(250, 249, 245, 0.82);

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

    backdrop-filter: blur(10px);

    transform: rotate(-7deg);
}

.jc-why__visual-mark span {
    font-family: var(--jc-font-display);
    font-size: 2.55rem;
    font-weight: 600;
}


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

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

.jc-why__header {
    position: relative;

    max-width: 720px;
    margin-bottom:
        clamp(43px, 5vw, 68px);
}

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

    height: 1px;

    content: "";

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

.jc-why__title {
    margin-bottom: 27px;

    font-size:
        clamp(3.05rem, 4.6vw, 5.1rem);

    line-height: 0.95;
}

.jc-why__title em {
    display: block;

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

    font-weight: 500;
}

.jc-why__introduction {
    max-width: 660px;

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

    line-height: 1.86;
}


/* =========================================================
   REASONS
========================================================= */

.jc-why__reasons {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 1px;

    overflow: hidden;

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

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

    background: var(--jc-border);
}

.jc-why__reason {
    position: relative;

    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 18px;

    min-height: 225px;
    padding:
        27px
        25px;

    overflow: hidden;

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

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

.jc-why__reason::before {
    position: absolute;
    top: 0;
    left: 25px;

    width: 0;
    height: 1px;

    content: "";

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

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

.jc-why__reason::after {
    position: absolute;
    right: -55px;
    bottom: -65px;

    width: 130px;
    height: 130px;

    content: "";

    pointer-events: none;

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

    border-radius: 50%;

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

.jc-why__reason:hover {
    background:
        rgba(255, 255, 255, 0.94);

    box-shadow:
        inset 0 0 0 1px
        rgba(190, 155, 93, 0.11);
}

.jc-why__reason:hover::before {
    width: 92px;
}

.jc-why__reason:hover::after {
    transform: scale(1.2);
}

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

    width: 48px;
    height: 48px;

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

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

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

    background:
        var(--jc-ivory-50);

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

.jc-why__reason-icon svg {
    width: 23px;
    height: 23px;
}

.jc-why__reason:hover
.jc-why__reason-icon {
    color: var(--jc-white);

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

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

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

.jc-why__reason-number {
    display: block;

    margin-bottom: 9px;

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

    font-size: 0.57rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.12em;
}

.jc-why__reason h3 {
    margin-bottom: 10px;

    font-size:
        clamp(1.35rem, 1.7vw, 1.72rem);

    line-height: 1.06;
}

.jc-why__reason p {
    font-size: 0.76rem;
    line-height: 1.7;
}


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

.jc-why__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 27px;

    margin-top: 37px;
}

.jc-why__phone {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    min-height: 54px;
}

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

    width: 45px;
    height: 45px;

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

    border:
        1px solid
        rgba(176, 109, 74, 0.25);

    border-radius: 50%;

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

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

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

.jc-why__phone:hover
.jc-why__phone-icon {
    color: var(--jc-white);

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

    transform: rotate(-5deg);
}

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

.jc-why__phone-content small {
    font-size: 0.59rem;
    font-weight: 800;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.jc-why__phone-content strong {
    font-size: 0.88rem;
    letter-spacing: 0.025em;
}


/* =========================================================
   SERVICE PRINCIPLES
========================================================= */

.jc-why__principles {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        1px
        minmax(0, 1fr)
        1px
        minmax(0, 1fr)
        1px
        minmax(0, 1fr);
    align-items: center;
    gap: clamp(22px, 3vw, 42px);

    margin-top:
        clamp(68px, 7vw, 100px);
    padding:
        28px
        31px;

    overflow: hidden;

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

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

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

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

    backdrop-filter: blur(14px);
}

.jc-why__principles::before {
    position: absolute;
    top: 0;
    left: 31px;

    width: 84px;
    height: 1px;

    content: "";

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

.jc-why__principle {
    display: flex;
    align-items: center;
    gap: 14px;
}

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

    flex: 0 0 auto;

    width: 38px;
    height: 38px;

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

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

    border-radius: 50%;

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

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

.jc-why__principle strong {
    font-family: var(--jc-font-display);
    font-size: 1.17rem;
    font-weight: 600;
    line-height: 1;
}

.jc-why__principle div span {
    color: var(--jc-text-soft);

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

.jc-why__principle-divider {
    width: 1px;
    height: 42px;

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


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

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

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

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

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

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

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

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







































/* =========================================================
   CUSTOMER REVIEWS · ELFSIGHT
========================================================= */

.jc-reviews {
    position: relative;

    padding:
        clamp(102px, 9vw, 158px)
        0
        clamp(92px, 8vw, 136px);

    overflow: hidden;

    color: var(--jc-white);

    background:
        radial-gradient(
            circle at 8% 9%,
            rgba(190, 195, 167, 0.13),
            transparent 30rem
        ),
        radial-gradient(
            circle at 92% 83%,
            rgba(176, 109, 74, 0.10),
            transparent 31rem
        ),
        linear-gradient(
            145deg,
            #1C2511 0%,
            var(--jc-forest-950) 52%,
            #0E1308 100%
        );

    isolation: isolate;
}


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

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

    overflow: hidden;

    pointer-events: none;
}

.jc-reviews__decorations::before {
    position: absolute;
    inset: 0;

    content: "";

    opacity: 0.15;

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

    background-size: 31px 31px;

    mask-image:
        linear-gradient(
            90deg,
            transparent 2%,
            rgba(0, 0, 0, 0.75) 50%,
            transparent 98%
        );
}

.jc-reviews__decor-arc {
    position: absolute;

    border:
        1px solid
        rgba(208, 180, 126, 0.25);

    border-radius: 50%;
}

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

    content: "";

    border:
        1px solid
        rgba(208, 180, 126, 0.18);

    border-radius: 50%;
}

.jc-reviews__decor-arc::before {
    inset: 72px;
}

.jc-reviews__decor-arc::after {
    inset: 152px;
}

.jc-reviews__decor-arc--one {
    top: -320px;
    right: -245px;

    width: 640px;
    height: 640px;

    opacity: 0.48;
}

.jc-reviews__decor-arc--two {
    bottom: -400px;
    left: -360px;

    width: 720px;
    height: 720px;

    opacity: 0.21;
}

.jc-reviews__decor-leaf {
    position: absolute;

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

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

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

    width: 1px;
    height: 82%;

    content: "";

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

.jc-reviews__decor-leaf--one {
    top: 26%;
    left: -72px;

    width: 190px;
    height: 285px;

    opacity: 0.43;

    transform: rotate(27deg);
}

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

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

    width: 135px;
    height: 205px;

    opacity: 0.27;

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

.jc-reviews__decor-leaf--two::before {
    transform: rotate(-22deg);
    transform-origin: top;
}

.jc-reviews__decor-grid {
    position: absolute;
    top: 20%;
    right: 5%;

    width: 270px;
    height: 185px;

    opacity: 0.055;

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

    background-size: 44px 34px;

    clip-path:
        polygon(
            8% 7%,
            94% 0,
            100% 83%,
            12% 100%,
            0 44%
        );

    transform: rotate(-6deg);
}

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

    width: 44%;
    height: 1px;

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

.jc-reviews__decor-star {
    position: absolute;

    color: rgba(226, 205, 165, 0.34);

    font-size: 1rem;
    line-height: 1;

    animation:
        jc-reviews-star-float
        8s
        ease-in-out
        infinite alternate;
}

.jc-reviews__decor-star--one {
    top: 17%;
    left: 7%;
}

.jc-reviews__decor-star--two {
    top: 36%;
    right: 9%;

    font-size: 0.72rem;

    animation-delay: -2s;
}

.jc-reviews__decor-star--three {
    right: 18%;
    bottom: 15%;

    font-size: 1.25rem;

    animation-delay: -4s;
}

.jc-reviews__decor-star--four {
    bottom: 28%;
    left: 4%;

    font-size: 0.64rem;

    animation-delay: -6s;
}


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

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

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

.jc-reviews__heading {
    position: relative;
}

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

    height: 1px;

    content: "";

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

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

.jc-reviews .jc-eyebrow::before {
    background:
        linear-gradient(
            90deg,
            var(--jc-gold-400),
            var(--jc-clay-400)
        );
}

.jc-reviews .jc-eyebrow::after {
    background: var(--jc-gold-400);
}

.jc-reviews__title {
    max-width: 880px;
    margin: 0;

    color: var(--jc-white);

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

    line-height: 0.94;
}

.jc-reviews__title em {
    display: block;

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

    font-weight: 500;
}

.jc-reviews__introduction {
    max-width: 490px;
}

.jc-reviews__introduction p {
    margin-bottom: 26px;

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

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

    line-height: 1.86;
}

.jc-reviews__header-link {
    position: relative;

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

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

    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.095em;
    text-transform: uppercase;
}

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

    height: 1px;

    content: "";

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

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

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

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

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

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

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


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

.jc-reviews__layout {
    display: grid;
    grid-template-columns:
        minmax(310px, 0.71fr)
        minmax(0, 1.29fr);
    align-items: stretch;
    gap: clamp(30px, 4vw, 54px);
}


/* =========================================================
   EDITORIAL STORY PANEL
========================================================= */

.jc-reviews__story {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 690px;
    padding:
        clamp(35px, 4vw, 52px);

    overflow: hidden;

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

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

    background:
        radial-gradient(
            circle at 92% 7%,
            rgba(190, 195, 167, 0.13),
            transparent 15rem
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 30px 76px
        rgba(5, 8, 4, 0.20);

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

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

    width: 86px;
    height: 1px;

    content: "";

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

.jc-reviews__story::after {
    position: absolute;
    top: -96px;
    right: -92px;

    width: 240px;
    height: 240px;

    content: "";

    pointer-events: none;

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

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

    transform: rotate(-17deg);
}

.jc-reviews__quote-mark {
    position: relative;
    z-index: 1;

    width: 68px;
    margin-bottom: 29px;

    color:
        rgba(226, 205, 165, 0.42);
}

.jc-reviews__quote-mark svg {
    width: 100%;
    height: auto;
}

.jc-reviews__story-kicker {
    position: relative;
    z-index: 1;

    display: block;

    margin-bottom: 15px;

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

    font-size: 0.63rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

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

    margin-bottom: 20px;

    color: var(--jc-white);

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

    line-height: 0.98;
}

.jc-reviews__story h3 em {
    display: block;

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

    font-weight: 500;
}

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

    margin-bottom: 31px;

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

    font-size: 0.83rem;
    line-height: 1.78;
}


/* =========================================================
   PRINCIPLES
========================================================= */

.jc-reviews__principles {
    position: relative;
    z-index: 1;

    display: grid;

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

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

    min-height: 91px;

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

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

    width: 43px;
    height: 43px;

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

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

    border-radius:
        45% 55% 48% 52% /
        55% 45% 55% 45%;

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

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

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

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

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

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

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

.jc-reviews__principle div {
    display: grid;
    gap: 4px;
}

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

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

.jc-reviews__principle div span {
    color:
        rgba(255, 255, 255, 0.52);

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


/* =========================================================
   PHONE LINK
========================================================= */

.jc-reviews__phone {
    position: relative;
    z-index: 1;

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

    margin-top: auto;
    padding-top: 29px;
}

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

    width: 46px;
    height: 46px;

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

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

    border-radius: 50%;

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

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

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

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

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

    transform: rotate(-5deg);
}

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

.jc-reviews__phone-content small {
    color:
        rgba(255, 255, 255, 0.48);

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

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

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


/* =========================================================
   ELFSIGHT WIDGET PANEL
========================================================= */

.jc-reviews__widget-panel {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 690px;
    padding:
        clamp(30px, 3.5vw, 46px);

    overflow: hidden;

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

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

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

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

    box-shadow:
        0 35px 90px
        rgba(4, 7, 3, 0.31);
}

.jc-reviews__widget-panel::before {
    position: absolute;
    top: 0;
    left: clamp(30px, 3.5vw, 46px);

    width: 104px;
    height: 1px;

    content: "";

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

.jc-reviews__widget-panel::after {
    position: absolute;
    top: -115px;
    right: -100px;

    width: 280px;
    height: 280px;

    content: "";

    pointer-events: none;

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

    border-radius: 50%;
}

.jc-reviews__widget-header {
    position: relative;
    z-index: 2;

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

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

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

.jc-reviews__widget-eyebrow {
    display: block;

    margin-bottom: 10px;

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

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

.jc-reviews__widget-header h3 {
    margin: 0;

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

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

    line-height: 0.98;
}

.jc-reviews__widget-header h3 em {
    display: block;

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

    font-weight: 500;
}

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

    flex: 0 0 auto;

    padding:
        9px
        12px;

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

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

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

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

    font-size: 0.56rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.jc-reviews__widget-status span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

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

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


/* =========================================================
   ELFSIGHT MOUNT
========================================================= */

.jc-reviews__widget-shell {
    position: relative;
    z-index: 2;

    flex: 1;

    min-height: 440px;
    padding:
        18px
        14px;

    overflow: hidden;

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

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

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

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

.jc-reviews__elfsight {
    position: relative;
    z-index: 2;

    min-height: 400px;
}


/* =========================================================
   LOADING STATE
========================================================= */

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

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

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

    background:
        radial-gradient(
            circle at 50% 42%,
            rgba(190, 195, 167, 0.19),
            transparent 15rem
        ),
        linear-gradient(
            145deg,
            rgba(250, 249, 245, 0.98),
            rgba(241, 239, 231, 0.98)
        );

    pointer-events: none;

    transition:
        opacity
        500ms
        ease,
        visibility
        500ms
        ease;
}

.jc-reviews__widget-shell.is-loaded
.jc-reviews__loading {
    visibility: hidden;
    opacity: 0;
}

.jc-reviews__loading-mark {
    display: grid;
    place-items: center;

    width: 72px;
    height: 72px;
    margin-bottom: 17px;

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

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

    border-radius:
        46% 54% 44% 56% /
        56% 44% 56% 44%;

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

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

    animation:
        jc-reviews-loading-mark
        2600ms
        ease-in-out
        infinite alternate;
}

.jc-reviews__loading-text {
    margin-bottom: 17px;

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

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

.jc-reviews__loading-line {
    position: relative;

    width: 100px;
    height: 1px;

    overflow: hidden;

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

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

    content: "";

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

    animation:
        jc-reviews-loading-line
        1500ms
        var(--jc-ease-soft)
        infinite;
}


/* =========================================================
   WIDGET FOOTER
========================================================= */

.jc-reviews__widget-footer {
    position: relative;
    z-index: 2;

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

    padding-top: 24px;
}

.jc-reviews__widget-footer > span {
    color: var(--jc-text-soft);

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

.jc-reviews__widget-footer a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

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

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

.jc-reviews__widget-footer a svg {
    width: 17px;
    height: 17px;

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

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

.jc-reviews__widget-footer a:hover svg {
    transform: translateX(4px);
}


/* =========================================================
   SUMMARY STRIP
========================================================= */

.jc-reviews__summary {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(180px, 1fr)
        1px
        minmax(180px, 1fr)
        1px
        minmax(180px, 1fr)
        auto;
    align-items: center;
    gap: clamp(22px, 3vw, 40px);

    margin-top:
        clamp(54px, 6vw, 82px);
    padding:
        28px
        31px;

    overflow: hidden;

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

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

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

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

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

.jc-reviews__summary::before {
    position: absolute;
    top: 0;
    left: 31px;

    width: 86px;
    height: 1px;

    content: "";

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

.jc-reviews__summary-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

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

    flex: 0 0 auto;

    width: 38px;
    height: 38px;

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

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

    border-radius: 50%;

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

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

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

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

.jc-reviews__summary-item div span {
    color:
        rgba(255, 255, 255, 0.49);

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

.jc-reviews__summary-divider {
    width: 1px;
    height: 42px;

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

.jc-reviews__summary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 51px;
    padding:
        13px
        17px;

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

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

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

    box-shadow:
        0 15px 34px
        rgba(0, 0, 0, 0.14);

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

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

.jc-reviews__summary-action svg {
    width: 17px;
    height: 17px;

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

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

    transform: translateY(-3px);
}

.jc-reviews__summary-action:hover svg {
    transform: translateX(3px);
}


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

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

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

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

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

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

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

html.jc-js
.jc-reviews
[data-jc-reviews-reveal].is-visible {
    opacity: 1;
    transform: none;
}
/* =========================================================
   KEYFRAMES
========================================================= */

@keyframes jc-reviews-star-float {

    from {
        opacity: 0.35;

        transform:
            translateY(0)
            rotate(0deg);
    }

    to {
        opacity: 0.75;

        transform:
            translateY(-13px)
            rotate(16deg);
    }

}

@keyframes jc-reviews-loading-mark {

    from {
        transform:
            translateY(0)
            rotate(-2deg);
    }

    to {
        transform:
            translateY(-6px)
            rotate(2deg);
    }

}

@keyframes jc-reviews-loading-line {

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

    to {
        transform: translateX(110%);
    }

}





































/* =========================================================
   SERVICE AREAS
========================================================= */

.jc-service-areas {
    position: relative;

    padding:
        clamp(102px, 9vw, 156px)
        0
        clamp(92px, 8vw, 134px);

    overflow: hidden;

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

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

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

    isolation: isolate;
}


/* =========================================================
   DECORATIVE BACKGROUND
========================================================= */

.jc-service-areas__decorations {
    position: absolute;
    inset: 0;
    z-index: -1;

    overflow: hidden;

    pointer-events: none;
}

.jc-service-areas__decorations::before {
    position: absolute;
    inset: 0;

    content: "";

    opacity: 0.22;

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

    background-size: 32px 32px;

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

.jc-service-areas__decor-contour {
    position: absolute;

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

    border-radius:
        48% 52% 45% 55% /
        55% 42% 58% 45%;
}

.jc-service-areas__decor-contour::before,
.jc-service-areas__decor-contour::after {
    position: absolute;

    content: "";

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

    border-radius: inherit;
}

.jc-service-areas__decor-contour::before {
    inset: 55px;
}

.jc-service-areas__decor-contour::after {
    inset: 115px;
}

.jc-service-areas__decor-contour--one {
    top: -245px;
    right: -235px;

    width: 590px;
    height: 510px;

    transform: rotate(-12deg);
}

.jc-service-areas__decor-contour--two {
    bottom: -330px;
    left: -330px;

    width: 660px;
    height: 580px;

    opacity: 0.65;

    transform: rotate(21deg);
}

.jc-service-areas__decor-leaf {
    position: absolute;
    top: 39%;
    left: -75px;

    width: 190px;
    height: 295px;

    opacity: 0.065;

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

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

    transform: rotate(27deg);
}

.jc-service-areas__decor-leaf::before {
    position: absolute;
    top: 26px;
    left: 50%;

    width: 1px;
    height: 235px;

    content: "";

    background:
        linear-gradient(
            180deg,
            transparent,
            var(--jc-forest-800),
            transparent
        );

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

.jc-service-areas__decor-grid {
    position: absolute;
    right: 4%;
    bottom: 7%;

    width: 250px;
    height: 175px;

    opacity: 0.045;

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

    background-size: 42px 32px;

    clip-path:
        polygon(
            8% 9%,
            92% 0,
            100% 82%,
            14% 100%,
            0 45%
        );

    transform: rotate(-7deg);
}

.jc-service-areas__decor-route {
    position: absolute;
    top: 15%;
    left: 8%;

    width: 42%;
    height: 100px;

    opacity: 0.18;

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

    border-radius: 50%;

    transform: rotate(4deg);
}

.jc-service-areas__decor-point {
    position: absolute;

    width: 7px;
    height: 7px;

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

    border-radius: 50%;

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

.jc-service-areas__decor-point--one {
    top: 14%;
    left: 12%;
}

.jc-service-areas__decor-point--two {
    top: 20%;
    left: 32%;
}

.jc-service-areas__decor-point--three {
    right: 11%;
    bottom: 17%;
}


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

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

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

.jc-service-areas__heading {
    position: relative;
}

.jc-service-areas__heading::after {
    position: absolute;
    right: 0;
    bottom: -27px;
    left: 0;

    height: 1px;

    content: "";

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

.jc-service-areas__title {
    max-width: 900px;
    margin: 0;

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

    line-height: 0.94;
}

.jc-service-areas__title em {
    display: block;

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

    font-weight: 500;
}

.jc-service-areas__introduction {
    max-width: 490px;
}

.jc-service-areas__introduction p {
    margin-bottom: 26px;

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

    line-height: 1.87;
}

.jc-service-areas__header-link {
    position: relative;

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

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

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

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

    height: 1px;

    content: "";

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

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

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

.jc-service-areas__header-link svg {
    width: 18px;
    height: 18px;

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

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

.jc-service-areas__header-link:hover::after {
    transform: scaleX(1);
}

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


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

.jc-service-areas__layout {
    display: grid;
    grid-template-columns:
        minmax(310px, 0.68fr)
        minmax(0, 1.32fr);
    align-items: stretch;
    gap: clamp(30px, 4vw, 54px);
}


/* =========================================================
   CITY DIRECTORY
========================================================= */

.jc-service-areas__directory {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 720px;
    padding:
        clamp(34px, 3.7vw, 48px);

    overflow: hidden;

    color: var(--jc-white);

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

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

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

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

.jc-service-areas__directory::before {
    position: absolute;
    top: 0;
    left: clamp(34px, 3.7vw, 48px);

    width: 91px;
    height: 1px;

    content: "";

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

.jc-service-areas__directory::after {
    position: absolute;
    top: -100px;
    right: -90px;

    width: 245px;
    height: 245px;

    content: "";

    pointer-events: none;

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

    border-radius: 50%;
}

.jc-service-areas__directory-header {
    position: relative;
    z-index: 1;

    margin-bottom: 27px;
    padding-bottom: 24px;

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

.jc-service-areas__directory-kicker {
    display: block;

    margin-bottom: 14px;

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

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

.jc-service-areas__directory-header h3 {
    margin-bottom: 16px;

    color: var(--jc-white);

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

    line-height: 0.98;
}

.jc-service-areas__directory-header h3 em {
    display: block;

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

    font-weight: 500;
}

.jc-service-areas__directory-header p {
    color:
        rgba(255, 255, 255, 0.59);

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


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

.jc-service-areas__city-list {
    position: relative;
    z-index: 1;

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

    margin-bottom: 28px;
}

.jc-service-areas__city {
    position: relative;

    display: grid;
    grid-template-columns:
        25px
        minmax(0, 1fr)
        16px;
    align-items: center;
    gap: 9px;

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

    overflow: hidden;

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

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

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

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

    text-align: left;

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

.jc-service-areas__city::before {
    position: absolute;
    inset: 0;

    content: "";

    pointer-events: none;

    background:
        linear-gradient(
            100deg,
            transparent,
            rgba(226, 205, 165, 0.11),
            transparent
        );

    transform: translateX(-120%);

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

.jc-service-areas__city:hover::before,
.jc-service-areas__city.is-active::before {
    transform: translateX(120%);
}

.jc-service-areas__city:hover {
    color: var(--jc-white);

    border-color:
        rgba(226, 205, 165, 0.27);

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

    transform: translateY(-2px);
}

.jc-service-areas__city.is-active {
    color: var(--jc-forest-950);

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

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

    box-shadow:
        0 12px 25px
        rgba(0, 0, 0, 0.14);
}

.jc-service-areas__city-number {
    color: var(--jc-gold-400);

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

.jc-service-areas__city.is-active
.jc-service-areas__city-number {
    color: var(--jc-clay-700);
}

.jc-service-areas__city-name {
    font-family: var(--jc-font-display);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
}

.jc-service-areas__city-arrow {
    color: var(--jc-clay-400);

    font-size: 0.74rem;

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

.jc-service-areas__city.is-active
.jc-service-areas__city-arrow {
    color: var(--jc-clay-700);
}

.jc-service-areas__city:hover
.jc-service-areas__city-arrow {
    transform:
        translate(3px, -3px);
}


/* =========================================================
   DIRECTORY FOOTER
========================================================= */

.jc-service-areas__directory-footer {
    position: relative;
    z-index: 1;

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

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

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

.jc-service-areas__directory-icon {
    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;

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

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

    border-radius: 50%;
}

.jc-service-areas__directory-icon svg {
    width: 20px;
    height: 20px;
}

.jc-service-areas__directory-footer p {
    color:
        rgba(255, 255, 255, 0.55);

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


/* =========================================================
   MAP PANEL
========================================================= */

.jc-service-areas__map-panel {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 720px;
    padding:
        clamp(30px, 3.5vw, 46px);

    overflow: hidden;

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

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

    background:
        radial-gradient(
            circle at 93% 5%,
            rgba(190, 195, 167, 0.22),
            transparent 18rem
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.96),
            rgba(241, 239, 231, 0.95)
        );

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

.jc-service-areas__map-panel::before {
    position: absolute;
    top: 0;
    left: clamp(30px, 3.5vw, 46px);

    width: 104px;
    height: 1px;

    content: "";

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

.jc-service-areas__map-panel::after {
    position: absolute;
    top: -120px;
    right: -105px;

    width: 285px;
    height: 285px;

    content: "";

    pointer-events: none;

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

    border-radius: 50%;
}


/* =========================================================
   MAP HEADER
========================================================= */

.jc-service-areas__map-header {
    position: relative;
    z-index: 2;

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

    margin-bottom: 27px;
    padding-bottom: 24px;

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

.jc-service-areas__map-kicker {
    display: block;

    margin-bottom: 10px;

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

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

.jc-service-areas__map-header h3 {
    margin: 0;

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

    line-height: 0.98;
}

.jc-service-areas__map-header h3 em {
    display: block;

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

    font-weight: 500;
}

.jc-service-areas__map-count {
    display: flex;
    align-items: center;
    gap: 11px;

    flex: 0 0 auto;
}

.jc-service-areas__map-count strong {
    color: var(--jc-forest-800);

    font-family: var(--jc-font-display);
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 0.8;
    letter-spacing: -0.05em;
}

.jc-service-areas__map-count span {
    color: var(--jc-text-soft);

    font-size: 0.57rem;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}


/* =========================================================
   MAP SHELL
========================================================= */

.jc-service-areas__map-shell {
    position: relative;
    z-index: 2;

    flex: 1;

    min-height: 500px;

    overflow: hidden;

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

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

    background:
        var(--jc-sage-100);

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

.jc-service-areas__map {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            145deg,
            var(--jc-sage-100),
            var(--jc-stone-100)
        );
}


/* =========================================================
   LEAFLET APPEARANCE
========================================================= */

.jc-service-areas__map
.leaflet-tile-pane {
    filter:
        saturate(0.58)
        sepia(0.10)
        brightness(1.03)
        contrast(0.91);
}

.jc-service-areas__map
.leaflet-control-zoom {
    overflow: hidden;

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

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

    box-shadow:
        0 10px 25px
        rgba(24, 32, 14, 0.12);
}

.jc-service-areas__map
.leaflet-control-zoom a {
    display: grid;
    place-items: center;

    width: 38px;
    height: 38px;

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

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

    background:
        rgba(250, 249, 245, 0.94);

    font-family: var(--jc-font-body);
    font-size: 1.15rem;
    line-height: 1;
}

.jc-service-areas__map
.leaflet-control-zoom a:hover {
    color: var(--jc-white);

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

.jc-service-areas__map
.leaflet-control-attribution {
    padding:
        4px
        7px;

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

    background:
        rgba(250, 249, 245, 0.91);

    font-size: 9px;
    line-height: 1.35;
}

.jc-service-areas__map
.leaflet-control-attribution a {
    color: var(--jc-forest-800);
    text-decoration: underline;
}

.jc-service-areas__marker {
    background: transparent;
    border: 0;
}

.jc-service-areas__marker-pin {
    position: relative;

    display: grid;
    place-items: center;

    width: 38px;
    height: 38px;

    color: var(--jc-white);

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

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

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

    box-shadow:
        0 10px 24px
        rgba(58, 42, 33, 0.27);

    font-family: var(--jc-font-body);
    font-size: 0.58rem;
    font-weight: 800;

    transform: rotate(-45deg);
}

.jc-service-areas__marker-pin span {
    transform: rotate(45deg);
}

.jc-service-areas__marker-pin::after {
    position: absolute;
    inset: -7px;

    content: "";

    border:
        1px solid
        rgba(176, 109, 74, 0.28);

    border-radius: 50%;

    animation:
        jc-area-marker-pulse
        2700ms
        ease-out
        infinite;
}

.jc-service-areas__map
.leaflet-popup-content-wrapper {
    overflow: hidden;

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

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

    background:
        rgba(250, 249, 245, 0.98);

    box-shadow:
        0 18px 45px
        rgba(24, 32, 14, 0.20);
}

.jc-service-areas__map
.leaflet-popup-content {
    width: 210px !important;
    margin:
        18px
        20px;
}

.jc-service-areas__map
.leaflet-popup-tip {
    background: var(--jc-ivory-50);
}

.jc-service-areas__map
.leaflet-popup-close-button {
    top: 6px;
    right: 7px;

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

    font-size: 20px;
}

.jc-area-popup {
    display: grid;
    gap: 6px;
}

.jc-area-popup__number {
    color: var(--jc-gold-700);

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

.jc-area-popup strong {
    color: var(--jc-forest-900);

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

.jc-area-popup p {
    margin: 0;

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

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


/* =========================================================
   MAP LOADING AND FALLBACK
========================================================= */

.jc-service-areas__map-loading {
    position: absolute;
    inset: 0;
    z-index: 700;

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

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

    background:
        radial-gradient(
            circle at 50% 43%,
            rgba(190, 195, 167, 0.27),
            transparent 15rem
        ),
        linear-gradient(
            145deg,
            var(--jc-ivory-50),
            var(--jc-ivory-100)
        );

    pointer-events: none;

    transition:
        opacity
        500ms
        ease,
        visibility
        500ms
        ease;
}

.jc-service-areas__map-shell.is-loaded
.jc-service-areas__map-loading {
    visibility: hidden;
    opacity: 0;
}

.jc-service-areas__map-loading-mark,
.jc-service-areas__map-fallback-icon {
    display: grid;
    place-items: center;

    width: 68px;
    height: 68px;
    margin-bottom: 17px;

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

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

    border-radius:
        45% 55% 47% 53% /
        55% 45% 55% 45%;

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

.jc-service-areas__map-loading-mark svg,
.jc-service-areas__map-fallback-icon svg {
    width: 29px;
    height: 29px;
}

.jc-service-areas__map-loading > span:nth-child(2) {
    margin-bottom: 17px;

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

.jc-service-areas__map-loading-line {
    position: relative;

    width: 105px;
    height: 1px;

    overflow: hidden;

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

.jc-service-areas__map-loading-line::after {
    position: absolute;
    inset: 0;

    content: "";

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

    animation:
        jc-area-loading-line
        1500ms
        var(--jc-ease-soft)
        infinite;
}

.jc-service-areas__map-fallback {
    position: absolute;
    inset: 0;
    z-index: 710;

    display: none;
    place-items: center;
    align-content: center;

    padding: 30px;

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

    background:
        linear-gradient(
            145deg,
            var(--jc-ivory-50),
            var(--jc-ivory-100)
        );
}

.jc-service-areas__map-shell.is-unavailable
.jc-service-areas__map-fallback {
    display: grid;
}

.jc-service-areas__map-fallback strong {
    margin-bottom: 8px;

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

.jc-service-areas__map-fallback p {
    max-width: 290px;

    font-size: 0.75rem;
    line-height: 1.65;
}


/* =========================================================
   MAP COMPASS
========================================================= */

.jc-service-areas__map-compass {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 650;

    display: grid;
    justify-items: center;
    gap: 3px;

    width: 49px;
    padding:
        7px
        5px;

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

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

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

    background:
        rgba(250, 249, 245, 0.91);

    box-shadow:
        0 10px 24px
        rgba(24, 32, 14, 0.11);

    pointer-events: none;
}

.jc-service-areas__map-compass span {
    font-size: 0.49rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.jc-service-areas__map-compass svg {
    width: 33px;
    height: 33px;
}


/* =========================================================
   MAP FOOTER
========================================================= */

.jc-service-areas__map-footer {
    position: relative;
    z-index: 2;

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

    padding-top: 24px;
}

.jc-service-areas__selected-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.jc-service-areas__selected-dot {
    position: relative;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: var(--jc-clay-500);

    box-shadow:
        0 0 0 5px
        rgba(176, 109, 74, 0.11);
}

.jc-service-areas__selected-dot::after {
    position: absolute;
    inset: -6px;

    content: "";

    border:
        1px solid
        rgba(176, 109, 74, 0.26);

    border-radius: 50%;
}

.jc-service-areas__selected-area div {
    display: grid;
    gap: 3px;
}

.jc-service-areas__selected-area small {
    color: var(--jc-text-soft);

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

.jc-service-areas__selected-area strong {
    color: var(--jc-forest-900);

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

.jc-service-areas__reset-map {
    display: inline-flex;
    align-items: center;
    gap: 9px;

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

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

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

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

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

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

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

.jc-service-areas__reset-map svg {
    width: 15px;
    height: 15px;

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

.jc-service-areas__reset-map:hover {
    color: var(--jc-white);

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

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

.jc-service-areas__reset-map:hover svg {
    transform: rotate(-180deg);
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.jc-service-areas__cta {
    position: relative;

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

    margin-top:
        clamp(54px, 6vw, 82px);
    padding:
        31px
        34px;

    overflow: hidden;

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

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

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

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

    backdrop-filter: blur(14px);
}

.jc-service-areas__cta::before {
    position: absolute;
    top: 0;
    left: 34px;

    width: 90px;
    height: 1px;

    content: "";

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

.jc-service-areas__cta-content {
    max-width: 680px;
}

.jc-service-areas__cta-kicker {
    display: block;

    margin-bottom: 8px;

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

    font-family: var(--jc-font-display);
    font-size:
        clamp(1.45rem, 2vw, 1.95rem);

    font-weight: 600;
    line-height: 1.1;
}

.jc-service-areas__cta-content p {
    font-size: 0.81rem;
    line-height: 1.72;
}

.jc-service-areas__cta-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.jc-service-areas__phone {
    display: grid;
    gap: 4px;

    min-width: 132px;
}

.jc-service-areas__phone span {
    color: var(--jc-text-soft);

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

.jc-service-areas__phone strong {
    font-size: 0.84rem;
    letter-spacing: 0.025em;
}


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

html.jc-js
.jc-service-areas
[data-jc-areas-reveal] {
    opacity: 0;

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

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

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

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

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

html.jc-js
.jc-service-areas
[data-jc-areas-reveal].is-visible {
    opacity: 1;
    transform: none;
}
/* =========================================================
   KEYFRAMES
========================================================= */

@keyframes jc-area-marker-pulse {

    0% {
        opacity: 0.65;
        transform: scale(0.72);
    }

    75%,
    100% {
        opacity: 0;
        transform: scale(1.45);
    }

}

@keyframes jc-area-loading-line {

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

    to {
        transform: translateX(110%);
    }

}



































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

.jc-footer {
    position: relative;

    overflow: hidden;

    color: var(--jc-white);

    background:
        radial-gradient(
            circle at 9% 4%,
            rgba(190, 195, 167, 0.13),
            transparent 31rem
        ),
        radial-gradient(
            circle at 93% 76%,
            rgba(176, 109, 74, 0.09),
            transparent 28rem
        ),
        linear-gradient(
            145deg,
            #1B2410 0%,
            var(--jc-forest-950) 51%,
            #0D1207 100%
        );

    isolation: isolate;
}


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

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

    overflow: hidden;

    pointer-events: none;
}

.jc-footer__decorations::before {
    position: absolute;
    inset: 0;

    content: "";

    opacity: 0.13;

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

    background-size: 31px 31px;

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

.jc-footer__decor-flower {
    position: absolute;
    top: 8%;
    right: -105px;

    width: 390px;
    aspect-ratio: 1;

    opacity: 0.07;

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

    background:
        radial-gradient(
            circle at 50% 19%,
            var(--jc-sage-300) 0 11%,
            transparent 12%
        ),
        radial-gradient(
            circle at 74% 35%,
            var(--jc-sage-400) 0 12%,
            transparent 13%
        ),
        radial-gradient(
            circle at 74% 65%,
            var(--jc-olive-600) 0 13%,
            transparent 14%
        ),
        radial-gradient(
            circle at 50% 79%,
            var(--jc-sage-300) 0 12%,
            transparent 13%
        ),
        radial-gradient(
            circle at 25% 65%,
            var(--jc-sage-400) 0 12%,
            transparent 13%
        ),
        radial-gradient(
            circle at 25% 34%,
            var(--jc-olive-600) 0 13%,
            transparent 14%
        ),
        radial-gradient(
            circle at 50% 49%,
            var(--jc-flower-cream) 0 15%,
            transparent 16%
        );

    transform: rotate(-13deg);
}

.jc-footer__decor-leaf {
    position: absolute;

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

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

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

    width: 1px;
    height: 81%;

    content: "";

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

.jc-footer__decor-leaf--one {
    bottom: 13%;
    left: -72px;

    width: 190px;
    height: 295px;

    transform: rotate(28deg);
}

.jc-footer__decor-leaf--one::before {
    transform: rotate(-25deg);
    transform-origin: top;
}

.jc-footer__decor-leaf--two {
    top: 38%;
    right: 4%;

    width: 110px;
    height: 175px;

    opacity: 0.65;

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

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

.jc-footer__decor-arc {
    position: absolute;
    bottom: -390px;
    left: -345px;

    width: 730px;
    height: 730px;

    opacity: 0.07;

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

    border-radius: 50%;
}

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

    content: "";

    border:
        1px solid
        rgba(208, 180, 126, 0.60);

    border-radius: 50%;
}

.jc-footer__decor-arc::before {
    inset: 82px;
}

.jc-footer__decor-arc::after {
    inset: 176px;
}

.jc-footer__decor-path {
    position: absolute;
    top: 21%;
    left: 8%;

    width: 43%;
    height: 115px;

    opacity: 0.14;

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

    border-radius: 50%;

    transform: rotate(4deg);
}

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

    width: 245px;
    height: 165px;

    opacity: 0.035;

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

    background-size: 42px 32px;

    transform: rotate(-7deg);
}


/* =========================================================
   FOOTER CTA
========================================================= */

.jc-footer__cta {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto;
    align-items: center;
    gap: clamp(45px, 7vw, 100px);

    margin-top:
        clamp(72px, 7vw, 108px);
    margin-bottom:
        clamp(72px, 7vw, 108px);
    padding:
        clamp(37px, 5vw, 64px);

    overflow: hidden;

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

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

    background:
        radial-gradient(
            circle at 91% 8%,
            rgba(190, 195, 167, 0.13),
            transparent 18rem
        ),
        linear-gradient(
            115deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 32px 78px
        rgba(4, 7, 3, 0.22);

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

.jc-footer__cta::before {
    position: absolute;
    top: 0;
    left: clamp(37px, 5vw, 64px);

    width: 112px;
    height: 1px;

    content: "";

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

.jc-footer__cta::after {
    position: absolute;
    top: -110px;
    right: -90px;

    width: 270px;
    height: 270px;

    content: "";

    pointer-events: none;

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

    border-radius:
        43% 57% 49% 51% /
        57% 43% 57% 43%;

    transform: rotate(-17deg);
}

.jc-footer__cta-content {
    position: relative;
    z-index: 1;

    max-width: 800px;
}

.jc-footer__cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 17px;

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

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

.jc-footer__cta-eyebrow::before {
    width: 40px;
    height: 1px;

    content: "";

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

.jc-footer__cta h2 {
    margin-bottom: 21px;

    color: var(--jc-white);

    font-size:
        clamp(2.6rem, 4.4vw, 4.7rem);

    line-height: 0.96;
}

.jc-footer__cta h2 em {
    display: block;

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

    font-weight: 500;
}

.jc-footer__cta-content p {
    max-width: 670px;

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

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

.jc-footer__cta-actions {
    position: relative;
    z-index: 1;

    display: grid;
    gap: 20px;

    min-width: 235px;
}

.jc-footer__cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 52px;
}

.jc-footer__cta-phone-icon {
    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;

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

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

    border-radius: 50%;

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

.jc-footer__cta-phone-icon svg {
    width: 19px;
    height: 19px;
}

.jc-footer__cta-phone > span:last-child {
    display: grid;
    gap: 3px;
}

.jc-footer__cta-phone small {
    color:
        rgba(255, 255, 255, 0.47);

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

.jc-footer__cta-phone strong {
    color: var(--jc-white);

    font-size: 0.82rem;
}

.jc-footer__cta-phone:hover
.jc-footer__cta-phone-icon {
    color: var(--jc-forest-950);

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

    transform: rotate(-5deg);
}


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

.jc-footer__main {
    position: relative;

    padding:
        clamp(68px, 7vw, 104px)
        0;

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

.jc-footer__grid {
    display: grid;
    grid-template-columns:
        minmax(280px, 1.25fr)
        minmax(165px, 0.65fr)
        minmax(220px, 0.85fr)
        minmax(245px, 0.95fr);
    gap: clamp(42px, 5vw, 76px);
}


/* =========================================================
   BRAND COLUMN
========================================================= */

.jc-footer__brand-column {
    max-width: 390px;
}

.jc-footer__brand {
    display: inline-flex;
    align-items: center;

    margin-bottom: 24px;
}

.jc-footer__logo {
    width: auto;
    max-width: 180px;
    max-height: 112px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 10px 22px
            rgba(0, 0, 0, 0.18)
        );
}

.jc-footer__description {
    margin-bottom: 25px;

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

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

.jc-footer__brand-location {
    display: grid;
    grid-template-columns:
        39px
        minmax(0, 1fr);
    align-items: center;
    gap: 12px;

    max-width: 335px;
}

.jc-footer__brand-location-icon {
    display: grid;
    place-items: center;

    width: 38px;
    height: 38px;

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

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

    border-radius: 50%;
}

.jc-footer__brand-location-icon svg {
    width: 18px;
    height: 18px;
}

.jc-footer__brand-location > span:last-child {
    color:
        rgba(255, 255, 255, 0.52);

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


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.jc-footer__column {
    position: relative;

    min-width: 0;
}

.jc-footer__column-number {
    display: block;

    margin-bottom: 13px;

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

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

.jc-footer__column h3 {
    position: relative;

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

    color: var(--jc-white);

    font-size: 1.6rem;
    line-height: 1;
}

.jc-footer__column h3::after {
    position: absolute;
    bottom: 0;
    left: 0;

    width: 56px;
    height: 1px;

    content: "";

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

.jc-footer__column-description {
    margin-bottom: 22px;

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

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


/* =========================================================
   QUICK LINKS
========================================================= */

.jc-footer__link-list {
    display: grid;
}

.jc-footer__link-list li {
    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.09);
}

.jc-footer__link-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    min-height: 45px;

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

    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.025em;

    transition:
        color
        var(--jc-duration-normal)
        ease,
        padding-left
        var(--jc-duration-normal)
        var(--jc-ease-soft);
}

.jc-footer__link-list a span:last-child {
    color: var(--jc-clay-400);

    font-size: 0.73rem;

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

.jc-footer__link-list a:hover {
    padding-left: 6px;

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

.jc-footer__link-list a:hover
span:last-child {
    transform:
        translate(3px, -3px);
}


/* =========================================================
   SOCIAL MEDIA
========================================================= */

.jc-footer__social-list {
    display: grid;
    gap: 10px;
}

.jc-footer__social-link {
    display: grid;
    grid-template-columns:
        43px
        minmax(0, 1fr)
        18px;
    align-items: center;
    gap: 12px;

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

    color: var(--jc-white);

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

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

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

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

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

    width: 41px;
    height: 41px;

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

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

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

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

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

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

.jc-footer__social-content small {
    color:
        rgba(255, 255, 255, 0.43);

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

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

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

.jc-footer__social-arrow {
    color: var(--jc-clay-400);

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

.jc-footer__social-link:not([aria-disabled="true"]):hover {
    border-color:
        rgba(226, 205, 165, 0.25);

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

    transform: translateY(-2px);
}

.jc-footer__social-link:not([aria-disabled="true"]):hover
.jc-footer__social-icon {
    color: var(--jc-forest-950);

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

.jc-footer__social-link:not([aria-disabled="true"]):hover
.jc-footer__social-arrow {
    transform:
        translate(3px, -3px);
}

.jc-footer__social-link[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: 0.58;
}

.jc-footer__social-note {
    margin-top: 14px;

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

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


/* =========================================================
   CONTACT AND HOURS
========================================================= */

.jc-footer__contact {
    margin-bottom: 27px;
}

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

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

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

    width: 42px;
    height: 42px;

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

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

    border-radius: 50%;

    transition:
        color
        var(--jc-duration-normal)
        ease,
        background-color
        var(--jc-duration-normal)
        ease;
}

.jc-footer__contact-icon svg {
    width: 19px;
    height: 19px;
}

.jc-footer__contact-item > span:last-child {
    display: grid;
    gap: 3px;
}

.jc-footer__contact-item small {
    color:
        rgba(255, 255, 255, 0.42);

    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.jc-footer__contact-item strong {
    color: var(--jc-white);

    font-size: 0.85rem;
}

.jc-footer__contact-item:hover
.jc-footer__contact-icon {
    color: var(--jc-forest-950);

    background: var(--jc-gold-300);
}

.jc-footer__hours {
    padding-top: 25px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.10);
}

.jc-footer__hours-heading {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 15px;

    color: var(--jc-gold-300);

    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.jc-footer__hours-icon {
    display: grid;
    place-items: center;

    width: 21px;
    height: 21px;
}

.jc-footer__hours-icon svg {
    width: 100%;
    height: 100%;
}

.jc-footer__hours-list {
    display: grid;
    gap: 0;

    margin: 0;
}

.jc-footer__hours-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    min-height: 34px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.075);
}

.jc-footer__hours-list dt,
.jc-footer__hours-list dd {
    margin: 0;

    font-size: 0.62rem;
    line-height: 1.4;
}

.jc-footer__hours-list dt {
    color:
        rgba(255, 255, 255, 0.53);
}

.jc-footer__hours-list dd {
    color:
        rgba(255, 255, 255, 0.77);

    font-weight: 700;
    text-align: right;
}

.jc-footer__hours-closed dd {
    color: var(--jc-clay-400);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.jc-footer__bottom {
    position: relative;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.10);

    background:
        rgba(4, 7, 3, 0.24);
}

.jc-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;

    min-height: 76px;
}

.jc-footer__copyright {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.43);

    font-size: 0.61rem;
    line-height: 1.5;
    letter-spacing: 0.025em;
}

.jc-footer__developer {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color:
        rgba(255, 255, 255, 0.51);

    font-size: 0.61rem;
    line-height: 1.4;

    transition:
        color
        var(--jc-duration-normal)
        ease;
}

.jc-footer__developer strong {
    color: var(--jc-gold-300);

    font-weight: 800;
}

.jc-footer__developer svg {
    width: 15px;
    height: 15px;

    color: var(--jc-clay-400);

    transition:
        transform
        var(--jc-duration-normal)
        var(--jc-ease-soft);
}

.jc-footer__developer:hover {
    color: var(--jc-white);
}

.jc-footer__developer:hover svg {
    transform:
        translate(3px, -3px);
}


/* =========================================================
   FOOTER REVEAL ANIMATIONS
========================================================= */

html.jc-js
.jc-footer
[data-jc-footer-reveal] {
    opacity: 0;

    transform: translateY(34px);

    transition:
        opacity
        900ms
        ease,
        transform
        1050ms
        var(--jc-ease-soft);

    transition-delay:
        var(--jc-footer-delay, 0ms);
}

html.jc-js
.jc-footer
[data-jc-footer-reveal].is-visible {
    opacity: 1;
    transform: none;
}










































/* =========================================================
   RESPONSIVE
   EXACTAMENTE CUATRO MEDIA QUERIES
========================================================= */

/* 1. COMPUTER */
@media (min-width: 1200px) {
    .jc-footer__grid {
        grid-template-columns:
            minmax(290px, 1.3fr)
            minmax(165px, 0.64fr)
            minmax(225px, 0.84fr)
            minmax(250px, 0.96fr);
    }

    .jc-footer__cta {
        min-height: 355px;
    }

    .jc-footer__main {
        min-height: 540px;
    }
       .jc-service-areas__directory,
    .jc-service-areas__map-panel {
        min-height: 730px;
    }

    .jc-service-areas__map-shell {
        min-height: 510px;
    }


    .jc-reviews__story,
    .jc-reviews__widget-panel {
        min-height: 700px;
    }

    .jc-reviews__widget-shell {
        min-height: 450px;
    }
      .jc-why__visual {
        min-height: 720px;
    }

    .jc-why__reason {
        min-height: 225px;
    }

    .jc-why__principles {
        min-height: 105px;
    }
       .jc-services__grid {
        gap: 25px;
    }

    .jc-service-card--featured {
        min-height: 815px;
    }

    .jc-service-card--technical {
        min-height: 395px;
    }

    .jc-service-card--compact {
        min-height: 595px;
    }
     .jc-trust-summary__services {
        min-height: 100%;
    }

    .jc-trust-summary__commitment {
        min-height: 166px;
    }

    .jc-trust-summary__facts {
        min-height: 112px;
    }
     .jc-hero__layout {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(300px, 350px);
    }

    .jc-hero__title {
        font-size:
            clamp(4.1rem, 6vw, 6.8rem);
    }

    .jc-hero__service-card {
        max-width: 350px;
        justify-self: end;
    }

     :root {
        --jc-topbar-height: 38px;
        --jc-header-height: 88px;
    }

    .jc-site-header__navigation {
        display: block;
    }

    .jc-nav-toggle {
        display: none;
    }

    .jc-nav-modal {
        display: none !important;
    }



    :root {
        --jc-scroll-offset: 118px;
    }

    .jc-bg-shape--flower {
        width: 455px;
    }

    .jc-bg-shape--irrigation {
        width: 680px;
        height: 680px;
    }

    .jc-card:hover {
        transform: translateY(-8px);
    }

}


/* 2. TABLET AND SMALL LAPTOP */
@media (min-width: 768px) and (max-width: 1199px) {
      .jc-footer__cta {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(210px, 0.42fr);
        gap: 45px;

        margin-top: 82px;
        margin-bottom: 82px;
        padding: 44px;
    }

    .jc-footer__cta h2 {
        font-size:
            clamp(2.7rem, 4.8vw, 4.1rem);
    }

    .jc-footer__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap:
            58px
            65px;
    }

    .jc-footer__brand-column {
        max-width: 440px;
    }

    .jc-footer__column--contact {
        max-width: 430px;
    }

    .jc-footer__bottom-inner {
        min-height: 73px;
    }
     .jc-service-areas {
        padding:
            clamp(90px, 9vw, 122px)
            0;
    }

    .jc-service-areas__header {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(280px, 0.68fr);
        gap: 46px;

        margin-bottom: 66px;
    }

    .jc-service-areas__title {
        font-size:
            clamp(2.9rem, 5.8vw, 4.7rem);
    }

    .jc-service-areas__layout {
        grid-template-columns:
            minmax(285px, 0.68fr)
            minmax(0, 1.32fr);
        gap: 28px;
    }

    .jc-service-areas__directory {
        min-height: 670px;
        padding: 34px 29px;
    }

    .jc-service-areas__directory-header h3 {
        font-size:
            clamp(2rem, 3.5vw, 2.8rem);
    }

    .jc-service-areas__city-list {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .jc-service-areas__city {
        min-height: 48px;
    }

    .jc-service-areas__map-panel {
        min-height: 670px;
        padding: 34px 29px;
    }

    .jc-service-areas__map-header {
        gap: 20px;
    }

    .jc-service-areas__map-count strong {
        font-size: 3rem;
    }

    .jc-service-areas__map-shell {
        min-height: 460px;
    }

    .jc-service-areas__cta {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .jc-service-areas__cta-actions {
        justify-content: space-between;
    }

     .jc-reviews {
        padding:
            clamp(90px, 9vw, 122px)
            0;
    }

    .jc-reviews__header {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(280px, 0.68fr);
        gap: 46px;

        margin-bottom: 66px;
    }

    .jc-reviews__title {
        font-size:
            clamp(2.9rem, 5.8vw, 4.7rem);
    }

    .jc-reviews__layout {
        grid-template-columns:
            minmax(280px, 0.68fr)
            minmax(0, 1.32fr);
        gap: 28px;
    }

    .jc-reviews__story {
        min-height: 650px;
        padding: 34px 29px;
    }

    .jc-reviews__story h3 {
        font-size:
            clamp(2rem, 3.6vw, 2.85rem);
    }

    .jc-reviews__principle {
        grid-template-columns:
            42px
            minmax(0, 1fr);
        gap: 12px;

        min-height: 87px;
    }

    .jc-reviews__principle-icon {
        width: 40px;
        height: 40px;
    }

    .jc-reviews__widget-panel {
        min-height: 650px;
        padding: 34px 29px;
    }

    .jc-reviews__widget-header {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .jc-reviews__widget-status {
        width: fit-content;
    }

    .jc-reviews__summary {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
        gap: 27px;
    }

    .jc-reviews__summary-divider {
        display: none;
    }

    .jc-reviews__summary-action {
        grid-column: 1 / -1;

        width: fit-content;
        justify-self: end;
    }
     .jc-why {
        padding:
            clamp(90px, 9vw, 122px)
            0;
    }

    .jc-why__layout {
        grid-template-columns:
            minmax(330px, 0.8fr)
            minmax(0, 1.2fr);
        gap: 52px;
    }

    .jc-why__visual {
        min-height: 645px;
    }

    .jc-why__main-figure {
        width: 83%;
        height: 575px;
    }

    .jc-why__detail-figure {
        top: 60px;

        width: 44%;
    }

    .jc-why__service-badge {
        right: 0;
        bottom: 55px;

        width: 175px;
        min-height: 158px;
        padding: 21px;
    }

    .jc-why__service-badge strong {
        font-size: 3.6rem;
    }

    .jc-why__visual-mark {
        left: 10%;

        width: 76px;
        height: 76px;
    }

    .jc-why__title {
        font-size:
            clamp(2.8rem, 4.8vw, 4.25rem);
    }

    .jc-why__reasons {
        grid-template-columns: 1fr;
    }

    .jc-why__reason {
        min-height: auto;
        padding:
            24px
            22px;
    }

    .jc-why__principles {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 27px;
    }

    .jc-why__principle-divider {
        display: none;
    }

     .jc-services {
        padding:
            clamp(88px, 9vw, 120px)
            0;
    }

    .jc-services__header {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(280px, 0.68fr);
        gap: 46px;

        margin-bottom: 65px;
    }

    .jc-services__title {
        font-size:
            clamp(2.9rem, 5.8vw, 4.7rem);
    }

    .jc-services__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .jc-service-card--featured,
    .jc-service-card--technical,
    .jc-service-card--compact {
        grid-column: span 1;
        grid-row: auto;

        min-height: 630px;
    }

    .jc-service-card--featured {
        grid-column: 1 / -1;

        display: grid;
        grid-template-columns:
            minmax(0, 1.08fr)
            minmax(340px, 0.92fr);

        min-height: 530px;
    }

    .jc-service-card--featured
    .jc-service-card__media {
        min-height: 100%;
    }

    .jc-service-card--technical
    .jc-service-card__media {
        position: relative;
        inset: auto;
        z-index: auto;

        min-height: 280px;
    }

    .jc-service-card--technical
    .jc-service-card__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(12, 17, 7, 0.08),
                rgba(12, 17, 7, 0.72)
            );
    }

    .jc-service-card--technical
    .jc-service-card__body {
        justify-content: flex-start;

        max-width: none;
        min-height: auto;
    }

    .jc-service-card__features {
        grid-template-columns: 1fr;
    }

    .jc-services__footer {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .jc-services__footer-actions {
        justify-content: space-between;
    }
        .jc-trust-summary {
        padding:
            clamp(88px, 9vw, 118px)
            0;
    }

    .jc-trust-summary__header {
        grid-template-columns:
            minmax(0, 1.05fr)
            minmax(280px, 0.75fr);
        gap: 48px;

        margin-bottom: 64px;
    }

    .jc-trust-summary__title {
        font-size:
            clamp(2.9rem, 5.8vw, 4.6rem);
    }

    .jc-trust-summary__layout {
        grid-template-columns:
            minmax(0, 0.82fr)
            minmax(370px, 1.18fr);
        gap: 40px;
    }

    .jc-trust-summary__commitment {
        grid-template-columns:
            50px
            minmax(0, 1fr);
        gap: 18px;

        padding:
            25px
            0;
    }

    .jc-trust-summary__commitment-icon {
        width: 49px;
        height: 49px;
    }

    .jc-trust-summary__commitment-icon svg {
        width: 22px;
        height: 22px;
    }

    .jc-trust-summary__commitment h3 {
        font-size: 1.55rem;
    }

    .jc-trust-summary__commitment p {
        font-size: 0.81rem;
    }

    .jc-trust-summary__services {
        padding: 37px 33px;
    }

    .jc-trust-summary__service-list a {
        min-height: 57px;
    }

    .jc-trust-summary__facts {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
        gap: 28px;

        padding: 27px;
    }

    .jc-trust-summary__fact-divider {
        display: none;
    }

    .jc-trust-summary__fact-action {
        grid-column: 1 / -1;

        width: fit-content;
        justify-self: end;
    }
      .jc-hero__frame {
        inset: 14px;
    }

    .jc-hero__layout {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(245px, 290px);

        gap: 34px;

        padding-top:
            clamp(34px, 5vh, 55px);

        padding-bottom: 104px;
    }

    .jc-hero__content::before {
        left: -20px;
    }

    .jc-hero__title {
        font-size:
            clamp(3.5rem, 6.8vw, 5.3rem);
    }

    .jc-hero__description {
        max-width: 590px;

        font-size: 0.96rem;
        line-height: 1.72;
    }

    .jc-hero__service-card {
        padding: 25px 22px 21px;
    }

    .jc-hero__service-heading p {
        font-size: 0.7rem;
    }

    .jc-hero__service-list a {
        min-height: 49px;
    }

    .jc-hero__service-name {
        font-size: 0.94rem;
    }

    .jc-hero__footer-item:nth-of-type(3),
    .jc-hero__footer-divider:nth-of-type(2) {
        display: none;
    }

         :root {
        --jc-topbar-height: 36px;
        --jc-header-height: 78px;
    }

    .jc-nav-topbar__hours-long {
        display: none;
    }

    .jc-nav-topbar__hours-short {
        display: inline;
    }

    .jc-nav-topbar__location {
        display: none;
    }

    .jc-nav-topbar__service
    .jc-nav-topbar__divider {
        display: none;
    }

    .jc-site-header__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .jc-site-header__navigation {
        display: none;
    }

    .jc-nav-toggle {
        display: inline-flex;
    }

    .jc-site-header__brand {
        position: absolute;
        left: 50%;

        min-width: 0;

        transform: translateX(-50%);
    }

    .jc-site-header__logo {
        max-width: 116px;
    }

    .jc-site-header__estimate {
        min-height: 46px;
        padding:
            12px
            16px;
    }

    .jc-nav-drawer {
        width:
            min(460px, 92vw);
    }


    :root {
        --jc-page-gutter:
            clamp(30px, 5vw, 58px);

        --jc-section-space:
            clamp(88px, 9vw, 120px);

        --jc-scroll-offset: 104px;
    }

    .jc-bg-shape--flower {
        right: -150px;

        width: 370px;
    }

    .jc-bg-shape--irrigation {
        left: -420px;

        width: 620px;
        height: 620px;
    }

    .jc-bg-shape--pavers {
        right: -75px;

        width: 340px;
    }

    .jc-bg-shape--path {
        right: 2%;

        width: 430px;
    }

}


/* 3. MOBILE */
@media (min-width: 481px) and (max-width: 767px) {
      .jc-footer__decor-flower {
        right: -180px;

        width: 330px;
    }

    .jc-footer__decor-path {
        width: 70%;
    }

    .jc-footer__cta {
        grid-template-columns: 1fr;
        gap: 35px;

        margin-top: 74px;
        margin-bottom: 74px;
        padding: 39px;
    }

    .jc-footer__cta h2 {
        font-size:
            clamp(2.7rem, 8vw, 3.9rem);
    }

    .jc-footer__cta-actions {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        align-items: center;
    }

    .jc-footer__main {
        padding:
            74px
            0;
    }

    .jc-footer__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap:
            52px
            40px;
    }

    .jc-footer__brand-column {
        max-width: none;
    }

    .jc-footer__bottom-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 8px;

        min-height: 91px;
        padding-block: 19px;
    }
       .jc-service-areas {
        padding:
            84px
            0
            76px;
    }

    .jc-service-areas__decor-contour--one {
        top: -335px;
        right: -365px;
    }

    .jc-service-areas__decor-contour--two {
        left: -520px;
    }

    .jc-service-areas__decor-leaf {
        left: -145px;
    }

    .jc-service-areas__header {
        grid-template-columns: 1fr;
        gap: 44px;

        margin-bottom: 58px;
    }

    .jc-service-areas__heading::after {
        bottom: -21px;
    }

    .jc-service-areas__title {
        font-size:
            clamp(2.8rem, 9vw, 4rem);
    }

    .jc-service-areas__layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .jc-service-areas__directory {
        min-height: auto;
    }

    .jc-service-areas__city-list {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .jc-service-areas__city {
        grid-template-columns:
            22px
            minmax(0, 1fr);
        gap: 7px;

        min-height: 55px;
    }

    .jc-service-areas__city-arrow {
        display: none;
    }

    .jc-service-areas__directory-footer {
        margin-top: 0;
    }

    .jc-service-areas__map-panel {
        min-height: 660px;
    }

    .jc-service-areas__map-shell {
        min-height: 475px;
    }

    .jc-service-areas__cta {
        grid-template-columns: 1fr;
        gap: 27px;

        padding: 28px;
    }

    .jc-service-areas__cta-actions {
        justify-content: space-between;
    }
       .jc-reviews {
        padding:
            84px
            0
            76px;
    }

    .jc-reviews__decor-arc--one {
        top: -370px;
        right: -370px;

        opacity: 0.33;
    }

    .jc-reviews__decor-arc--two {
        left: -520px;

        opacity: 0.14;
    }

    .jc-reviews__decor-leaf--one {
        left: -135px;

        opacity: 0.25;
    }

    .jc-reviews__header {
        grid-template-columns: 1fr;
        gap: 44px;

        margin-bottom: 58px;
    }

    .jc-reviews__heading::after {
        bottom: -21px;
    }

    .jc-reviews__title {
        font-size:
            clamp(2.8rem, 9vw, 4rem);
    }

    .jc-reviews__layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .jc-reviews__story {
        min-height: auto;
    }

    .jc-reviews__principles {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
        gap: 1px;

        background:
            rgba(255, 255, 255, 0.11);
    }

    .jc-reviews__principle {
        grid-template-columns: 1fr;
        align-content: start;

        min-height: 190px;
        padding:
            21px
            17px;

        border: 0;

        background:
            rgba(16, 22, 9, 0.38);
    }

    .jc-reviews__phone {
        margin-top: 28px;
    }

    .jc-reviews__widget-panel {
        min-height: 640px;
    }

    .jc-reviews__widget-shell {
        min-height: 430px;
    }

    .jc-reviews__summary {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 27px;

        padding: 27px;
    }

    .jc-reviews__summary-divider {
        display: none;
    }

    .jc-reviews__summary-item:nth-of-type(3) {
        grid-column: 1 / -1;
    }

    .jc-reviews__summary-action {
        grid-column: 1 / -1;

        width: 100%;
    }

       .jc-why {
        padding:
            84px
            0
            76px;
    }

    .jc-why__decor-circle {
        top: -340px;
        left: -360px;

        opacity: 0.06;
    }

    .jc-why__layout {
        grid-template-columns: 1fr;
        gap: 68px;
    }

    .jc-why__visual {
        width: min(100%, 590px);
        min-height: 610px;
        margin-inline: auto;
    }

    .jc-why__main-figure {
        width: 78%;
        height: 550px;
    }

    .jc-why__detail-figure {
        top: 58px;

        width: 40%;
    }

    .jc-why__service-badge {
        right: 1%;
        bottom: 44px;

        width: 178px;
        min-height: 157px;
        padding: 21px;
    }

    .jc-why__visual-mark {
        left: 16%;

        width: 74px;
        height: 74px;
    }

    .jc-why__title {
        font-size:
            clamp(2.8rem, 9vw, 4rem);
    }

    .jc-why__reasons {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .jc-why__reason {
        grid-template-columns: 1fr;

        min-height: 265px;
    }

    .jc-why__actions {
        justify-content: space-between;
    }

    .jc-why__principles {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 27px;

        padding: 27px;
    }

    .jc-why__principle-divider {
        display: none;
    }
     .jc-services {
        padding:
            82px
            0
            76px;
    }

    .jc-services__decor-circle {
        top: -310px;
        right: -350px;

        opacity: 0.065;
    }

    .jc-services__header {
        grid-template-columns: 1fr;
        gap: 44px;

        margin-bottom: 57px;
    }

    .jc-services__heading::after {
        bottom: -21px;
    }

    .jc-services__title {
        font-size:
            clamp(2.8rem, 9vw, 4rem);
    }

    .jc-services__grid {
        grid-template-columns: 1fr;
        gap: 23px;
    }

    .jc-service-card--featured,
    .jc-service-card--technical,
    .jc-service-card--compact {
        grid-column: auto;
        grid-row: auto;

        min-height: auto;
    }

    .jc-service-card--technical
    .jc-service-card__media {
        position: relative;
        inset: auto;
        z-index: auto;

        min-height: 290px;
    }

    .jc-service-card--technical
    .jc-service-card__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(12, 17, 7, 0.08),
                rgba(12, 17, 7, 0.72)
            );
    }

    .jc-service-card--technical
    .jc-service-card__body {
        justify-content: flex-start;

        max-width: none;
        min-height: auto;
    }

    .jc-service-card--featured
    .jc-service-card__media,
    .jc-service-card--compact
    .jc-service-card__media {
        min-height: 300px;
    }

    .jc-service-card__features {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .jc-services__footer {
        grid-template-columns: 1fr;
        gap: 27px;

        padding: 28px;
    }

    .jc-services__footer-actions {
        justify-content: space-between;
    }
      .jc-trust-summary {
        padding:
            82px
            0
            76px;
    }

    .jc-trust-summary__decor-arc {
        top: -255px;
        right: -315px;

        opacity: 0.075;
    }

    .jc-trust-summary__decor-leaf {
        left: -140px;

        opacity: 0.05;
    }

    .jc-trust-summary__header {
        grid-template-columns: 1fr;
        gap: 45px;

        margin-bottom: 56px;
    }

    .jc-trust-summary__heading::after {
        bottom: -21px;
    }

    .jc-trust-summary__title {
        font-size:
            clamp(2.85rem, 9vw, 4rem);
    }

    .jc-trust-summary__introduction {
        max-width: 610px;
    }

    .jc-trust-summary__layout {
        grid-template-columns: 1fr;
        gap: 53px;
    }

    .jc-trust-summary__commitment {
        grid-template-columns:
            54px
            minmax(0, 1fr);
        gap: 20px;
    }

    .jc-trust-summary__services {
        padding:
            41px
            34px;
    }

    .jc-trust-summary__facts {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 28px;

        padding: 27px;
    }

    .jc-trust-summary__fact:nth-of-type(3) {
        grid-column: 1 / -1;
    }

    .jc-trust-summary__fact-divider {
        display: none;
    }

    .jc-trust-summary__fact-action {
        grid-column: 1 / -1;

        width: 100%;
    }
     .jc-hero__media {
        inset: -2%;
    }

    .jc-hero__image {
        object-position: 61% center;
    }

    .jc-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(14, 19, 8, 0.93) 0%,
                rgba(20, 27, 11, 0.76) 62%,
                rgba(20, 27, 11, 0.48) 100%
            ),
            linear-gradient(
                180deg,
                rgba(10, 14, 7, 0.12),
                rgba(10, 14, 7, 0.61)
            );
    }

    .jc-hero__frame {
        inset: 10px;
    }

    .jc-hero__layout {
        display: flex;
        align-items: center;

        padding-top: 31px;
        padding-bottom: 92px;
    }

    .jc-hero__content {
        width: min(100%, 610px);
    }

    .jc-hero__content::before {
        display: none;
    }

    .jc-hero__eyebrow {
        margin-bottom: 18px;

        font-size: 0.61rem;
        letter-spacing: 0.13em;
    }

    .jc-hero__eyebrow-line {
        width: 32px;
    }

    .jc-hero__title {
        margin-bottom: 21px;

        font-size:
            clamp(3.25rem, 11vw, 4.7rem);

        line-height: 0.88;
    }

    .jc-hero__description {
        max-width: 540px;
        margin-bottom: 26px;

        font-size: 0.91rem;
        line-height: 1.67;
    }

    .jc-hero__actions {
        gap: 19px;
    }

    .jc-hero__primary {
        min-height: 53px;
        width: auto;
    }

    .jc-hero__secondary {
        font-size: 0.65rem;
    }

    .jc-hero__availability {
        max-width: 410px;
        margin-top: 21px;

        font-size: 0.62rem;
    }

    .jc-hero__service-card {
        display: none;
    }

    .jc-hero__footer {
        min-height: 66px;
    }

    .jc-hero__footer-inner {
        min-height: 66px;
    }

    .jc-hero__footer-item {
        font-size: 0.57rem;
    }

    .jc-hero__footer-item:nth-of-type(3),
    .jc-hero__footer-divider:nth-of-type(2) {
        display: none;
    }

    .jc-hero__scroll {
        display: none;
    }


        :root {
        --jc-topbar-height: 34px;
        --jc-header-height: 72px;
    }

    .jc-nav-topbar__inner {
        justify-content: center;
    }

    .jc-nav-topbar__service {
        display: none;
    }

    .jc-nav-topbar__phone-label,
    .jc-nav-topbar__hours-long {
        display: none;
    }

    .jc-nav-topbar__hours-short {
        display: inline;
    }

    .jc-site-header__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .jc-site-header__navigation {
        display: none;
    }

    .jc-nav-toggle {
        display: inline-flex;
    }

    .jc-site-header__brand {
        position: absolute;
        left: 50%;

        min-width: 0;

        transform: translateX(-50%);
    }

    .jc-site-header__logo {
        max-width: 107px;
    }

    .jc-site-header__estimate {
        min-height: 44px;
        padding:
            11px
            13px;

        font-size: 0.6rem;
    }

    .jc-site-header__estimate svg {
        display: none;
    }

    .jc-nav-drawer {
        width:
            min(430px, 94vw);
    }

    .jc-nav-drawer__top {
        min-height: 73px;
    }

    .jc-nav-drawer__scroll {
        padding:
            28px
            27px
            30px;
    }

    :root {
        --jc-page-gutter: 24px;
        --jc-section-space: 84px;
        --jc-scroll-offset: 92px;
    }

    body {
        line-height: 1.66;
    }

    h1 {
        font-size:
            clamp(3.2rem, 13vw, 5.1rem);
    }

    h2 {
        font-size:
            clamp(2.65rem, 10vw, 4rem);
    }

    .jc-button {
        min-height: 55px;
        padding-inline: 22px;
    }

    .jc-bg-shape--flower {
        top: 4%;
        right: -180px;

        width: 320px;

        opacity: 0.09;
    }

    .jc-bg-shape--irrigation {
        top: 48%;
        left: -465px;

        opacity: 0.08;
    }

    .jc-bg-shape--pavers {
        right: -155px;
        bottom: 5%;

        opacity: 0.055;
    }

    .jc-bg-shape--stones {
        display: none;
    }

    .jc-bg-shape--path {
        right: -155px;

        width: 390px;
    }

    .jc-page-transition__mark {
        width: 80px;
        height: 80px;

        font-size: 2.55rem;
    }

    .jc-page-transition__panel::after {
        inset: 14px;
    }

}


/* 4. SMALL MOBILE */
@media (max-width: 480px) {
      .jc-footer__decor-flower {
        top: 4%;
        right: -195px;

        width: 300px;
    }

    .jc-footer__decor-leaf,
    .jc-footer__decor-grid,
    .jc-footer__decor-path {
        display: none;
    }

    .jc-footer__decor-arc {
        bottom: -490px;
        left: -470px;
    }

    .jc-footer__cta {
        grid-template-columns: 1fr;
        gap: 29px;

        margin-top: 64px;
        margin-bottom: 64px;
        padding:
            33px
            22px;

        border-radius: var(--jc-radius-lg);
    }

    .jc-footer__cta-eyebrow {
        font-size: 0.56rem;
        letter-spacing: 0.12em;
    }

    .jc-footer__cta h2 {
        font-size:
            clamp(2.35rem, 11.5vw, 3.35rem);

        line-height: 0.98;
    }

    .jc-footer__cta-content p {
        font-size: 0.79rem;
        line-height: 1.67;
    }

    .jc-footer__cta-actions {
        grid-template-columns: 1fr;
    }

    .jc-footer__main {
        padding:
            66px
            0;
    }

    .jc-footer__grid {
        grid-template-columns: 1fr;
        gap: 49px;
    }

    .jc-footer__brand-column {
        max-width: none;
    }

    .jc-footer__logo {
        max-width: 158px;
    }

    .jc-footer__column h3 {
        margin-bottom: 23px;

        font-size: 1.5rem;
    }

    .jc-footer__link-list a {
        min-height: 46px;
    }

    .jc-footer__social-link {
        min-height: 63px;
    }

    .jc-footer__bottom-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 9px;

        min-height: 111px;
        padding-block: 22px;
    }

    .jc-footer__copyright {
        max-width: 310px;
    }

    .jc-footer__developer {
        flex-wrap: wrap;
    }

     .jc-service-areas {
        padding:
            72px
            0
            66px;
    }

    .jc-service-areas__decor-contour--one {
        top: -390px;
        right: -445px;

        opacity: 0.68;
    }

    .jc-service-areas__decor-contour--two,
    .jc-service-areas__decor-leaf,
    .jc-service-areas__decor-grid,
    .jc-service-areas__decor-route {
        display: none;
    }

    .jc-service-areas__header {
        grid-template-columns: 1fr;
        gap: 39px;

        margin-bottom: 49px;
    }

    .jc-service-areas__heading::after {
        bottom: -18px;
    }

    .jc-service-areas__title {
        font-size:
            clamp(2.5rem, 12vw, 3.55rem);

        line-height: 0.97;
    }

    .jc-service-areas__introduction p {
        font-size: 0.87rem;
        line-height: 1.73;
    }

    .jc-service-areas__layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .jc-service-areas__directory {
        min-height: auto;
        padding:
            31px
            21px
            27px;

        border-radius: var(--jc-radius-lg);
    }

    .jc-service-areas__directory-header h3 {
        font-size:
            clamp(2rem, 10vw, 2.8rem);
    }

    .jc-service-areas__directory-header p {
        font-size: 0.74rem;
    }

    .jc-service-areas__city-list {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .jc-service-areas__city {
        grid-template-columns:
            21px
            minmax(0, 1fr);
        gap: 6px;

        min-height: 51px;
        padding:
            9px
            10px;
    }

    .jc-service-areas__city-arrow {
        display: none;
    }

    .jc-service-areas__city-name {
        font-size: 0.91rem;
    }

    .jc-service-areas__directory-footer {
        margin-top: 0;
    }

    .jc-service-areas__map-panel {
        min-height: 590px;
        padding:
            30px
            19px
            23px;

        border-radius: var(--jc-radius-lg);
    }

    .jc-service-areas__map-header {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;

        margin-bottom: 21px;
        padding-bottom: 20px;
    }

    .jc-service-areas__map-header h3 {
        font-size:
            clamp(1.9rem, 9vw, 2.6rem);
    }

    .jc-service-areas__map-count {
        width: fit-content;
    }

    .jc-service-areas__map-count strong {
        font-size: 2.7rem;
    }

    .jc-service-areas__map-shell {
        min-height: 390px;
    }

    .jc-service-areas__map-compass {
        top: 12px;
        left: 12px;

        width: 43px;
    }

    .jc-service-areas__map-compass svg {
        width: 28px;
        height: 28px;
    }

    .jc-service-areas__map
    .leaflet-control-zoom a {
        width: 34px;
        height: 34px;
    }

    .jc-service-areas__map-footer {
        align-items: flex-end;
        gap: 15px;

        padding-top: 20px;
    }

    .jc-service-areas__reset-map {
        padding:
            9px
            10px;

        font-size: 0.51rem;
    }

    .jc-service-areas__selected-area strong {
        font-size: 1.02rem;
    }

    .jc-service-areas__cta {
        grid-template-columns: 1fr;
        gap: 25px;

        margin-top: 44px;
        padding:
            26px
            21px;
    }

    .jc-service-areas__cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .jc-service-areas__phone {
        text-align: center;
    }
     .jc-reviews {
        padding:
            72px
            0
            66px;
    }

    .jc-reviews__decor-arc--one {
        top: -430px;
        right: -445px;

        opacity: 0.26;
    }

    .jc-reviews__decor-arc--two,
    .jc-reviews__decor-leaf,
    .jc-reviews__decor-grid {
        display: none;
    }

    .jc-reviews__decor-star--three,
    .jc-reviews__decor-star--four {
        display: none;
    }

    .jc-reviews__header {
        grid-template-columns: 1fr;
        gap: 39px;

        margin-bottom: 49px;
    }

    .jc-reviews__heading::after {
        bottom: -18px;
    }

    .jc-reviews__title {
        font-size:
            clamp(2.5rem, 12vw, 3.55rem);

        line-height: 0.97;
    }

    .jc-reviews__introduction p {
        font-size: 0.87rem;
        line-height: 1.73;
    }

    .jc-reviews__layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .jc-reviews__story {
        min-height: auto;
        padding:
            31px
            22px
            27px;

        border-radius: var(--jc-radius-lg);
    }

    .jc-reviews__quote-mark {
        width: 55px;
        margin-bottom: 23px;
    }

    .jc-reviews__story h3 {
        font-size:
            clamp(2rem, 10vw, 2.8rem);
    }

    .jc-reviews__story-description {
        font-size: 0.77rem;
        line-height: 1.7;
    }

    .jc-reviews__principle {
        grid-template-columns:
            41px
            minmax(0, 1fr);
        gap: 12px;

        min-height: 84px;
    }

    .jc-reviews__principle-icon {
        width: 39px;
        height: 39px;
    }

    .jc-reviews__principle strong {
        font-size: 1.02rem;
    }

    .jc-reviews__principle div span {
        font-size: 0.61rem;
    }

    .jc-reviews__widget-panel {
        min-height: 610px;
        padding:
            30px
            19px
            24px;

        border-radius: var(--jc-radius-lg);
    }

    .jc-reviews__widget-header {
        display: grid;
        grid-template-columns: 1fr;
        gap: 17px;

        margin-bottom: 22px;
        padding-bottom: 20px;
    }

    .jc-reviews__widget-header h3 {
        font-size:
            clamp(1.85rem, 9vw, 2.55rem);
    }

    .jc-reviews__widget-status {
        width: fit-content;

        font-size: 0.49rem;
    }

    .jc-reviews__widget-shell {
        min-height: 415px;
        padding:
            10px
            6px;
    }

    .jc-reviews__elfsight {
        min-height: 390px;
    }

    .jc-reviews__widget-footer {
        display: grid;
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .jc-reviews__widget-footer a {
        width: fit-content;
    }

    .jc-reviews__summary {
        grid-template-columns: 1fr;
        gap: 21px;

        margin-top: 45px;
        padding:
            25px
            21px;
    }

    .jc-reviews__summary-item {
        padding-bottom: 20px;

        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.11);
    }

    .jc-reviews__summary-item:nth-of-type(3) {
        padding-bottom: 0;

        border-bottom: 0;
    }

    .jc-reviews__summary-divider {
        display: none;
    }

    .jc-reviews__summary-action {
        width: 100%;
    }
      .jc-why {
        padding:
            72px
            0
            66px;
    }

    .jc-why__decor-circle {
        top: -390px;
        left: -435px;

        opacity: 0.05;
    }

    .jc-why__decor-leaf {
        display: none;
    }

    .jc-why__layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .jc-why__visual {
        min-height: 470px;
    }

    .jc-why__main-figure {
        width: 82%;
        height: 425px;

        border-radius:
            var(--jc-radius-lg)
            var(--jc-radius-xs)
            var(--jc-radius-lg)
            var(--jc-radius-xs);
    }

    .jc-why__main-figure::before {
        inset: 11px;
    }

    .jc-why__image-caption {
        right: 19px;
        bottom: 20px;
        left: 19px;
    }

    .jc-why__image-caption strong {
        font-size: 1rem;
    }

    .jc-why__image-caption div span {
        font-size: 0.52rem;
    }

    .jc-why__detail-figure {
        top: 37px;

        width: 43%;
        padding: 7px;
    }

    .jc-why__service-badge {
        right: 0;
        bottom: 28px;

        width: 147px;
        min-height: 132px;
        padding: 18px;
    }

    .jc-why__service-badge-label {
        font-size: 0.52rem;
    }

    .jc-why__service-badge strong {
        margin:
            9px
            0
            4px;

        font-size: 3.05rem;
    }

    .jc-why__service-badge > span:last-child {
        font-size: 0.56rem;
    }

    .jc-why__visual-mark {
        bottom: 0;
        left: 10%;

        width: 63px;
        height: 63px;
    }

    .jc-why__visual-mark span {
        font-size: 2rem;
    }

    .jc-why__header {
        margin-bottom: 48px;
    }

    .jc-why__header::after {
        bottom: -20px;
    }

    .jc-why__title {
        margin-bottom: 22px;

        font-size:
            clamp(2.5rem, 12vw, 3.55rem);

        line-height: 0.97;
    }

    .jc-why__introduction {
        font-size: 0.87rem;
        line-height: 1.73;
    }

    .jc-why__reasons {
        grid-template-columns: 1fr;
    }

    .jc-why__reason {
        grid-template-columns:
            45px
            minmax(0, 1fr);
        gap: 15px;

        min-height: auto;
        padding:
            23px
            19px;
    }

    .jc-why__reason-icon {
        width: 43px;
        height: 43px;
    }

    .jc-why__reason-icon svg {
        width: 20px;
        height: 20px;
    }

    .jc-why__reason h3 {
        font-size: 1.4rem;
    }

    .jc-why__reason p {
        font-size: 0.72rem;
    }

    .jc-why__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .jc-why__phone {
        justify-content: center;
    }

    .jc-why__principles {
        grid-template-columns: 1fr;
        gap: 20px;

        margin-top: 50px;
        padding:
            25px
            21px;
    }

    .jc-why__principle {
        padding-bottom: 20px;

        border-bottom:
            1px solid
            var(--jc-divider);
    }

    .jc-why__principle:last-child {
        padding-bottom: 0;

        border-bottom: 0;
    }

    .jc-why__principle-divider {
        display: none;
    }
      .jc-services {
        padding:
            72px
            0
            66px;
    }

    .jc-services__decor-circle {
        top: -350px;
        right: -410px;

        opacity: 0.05;
    }

    .jc-services__decor-path {
        display: none;
    }

    .jc-services__header {
        grid-template-columns: 1fr;
        gap: 39px;

        margin-bottom: 49px;
    }

    .jc-services__heading::after {
        bottom: -18px;
    }

    .jc-services__eyebrow {
        font-size: 0.59rem;
        letter-spacing: 0.13em;
    }

    .jc-services__title {
        font-size:
            clamp(2.5rem, 12vw, 3.55rem);

        line-height: 0.97;
    }

    .jc-services__introduction p {
        font-size: 0.87rem;
        line-height: 1.73;
    }

    .jc-services__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .jc-service-card--featured,
    .jc-service-card--technical,
    .jc-service-card--compact {
        grid-column: auto;
        grid-row: auto;

        min-height: auto;
    }

    .jc-service-card:hover {
        transform: none;
    }

    .jc-service-card--technical
    .jc-service-card__media {
        position: relative;
        inset: auto;
        z-index: auto;

        min-height: 240px;
    }

    .jc-service-card--technical
    .jc-service-card__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(12, 17, 7, 0.08),
                rgba(12, 17, 7, 0.72)
            );
    }

    .jc-service-card--technical
    .jc-service-card__body {
        justify-content: flex-start;

        max-width: none;
        min-height: auto;
    }

    .jc-service-card--featured
    .jc-service-card__media,
    .jc-service-card--compact
    .jc-service-card__media {
        min-height: 240px;
    }

    .jc-service-card__number {
        top: 18px;
        left: 18px;

        width: 39px;
        height: 39px;
    }

    .jc-service-card__category {
        right: 18px;
        bottom: 18px;

        font-size: 0.52rem;
    }

    .jc-service-card__body {
        padding:
            27px
            21px
            23px;
    }

    .jc-service-card h3,
    .jc-service-card--technical h3,
    .jc-service-card--compact h3 {
        font-size:
            clamp(1.9rem, 10vw, 2.7rem);
    }

    .jc-service-card__description {
        font-size: 0.78rem;
        line-height: 1.68;
    }

    .jc-service-card__features {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .jc-service-card__features li {
        font-size: 0.68rem;
    }

    .jc-service-card__link {
        font-size: 0.57rem;
        letter-spacing: 0.065em;
    }

    .jc-services__footer {
        grid-template-columns: 1fr;
        gap: 25px;

        margin-top: 43px;
        padding:
            26px
            21px;
    }

    .jc-services__footer-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .jc-services__phone {
        text-align: center;
    }

     .jc-trust-summary {
        padding:
            72px
            0
            66px;
    }

    .jc-trust-summary__decor-arc {
        top: -290px;
        right: -390px;

        opacity: 0.06;
    }

    .jc-trust-summary__decor-leaf,
    .jc-trust-summary__decor-grid {
        display: none;
    }

    .jc-trust-summary__header {
        grid-template-columns: 1fr;
        gap: 39px;

        margin-bottom: 48px;
    }

    .jc-trust-summary__heading::after {
        bottom: -18px;
    }

    .jc-trust-summary__title {
        font-size:
            clamp(2.5rem, 12vw, 3.55rem);

        line-height: 0.98;
    }

    .jc-trust-summary__introduction p {
        margin-bottom: 21px;

        font-size: 0.9rem;
        line-height: 1.75;
    }

    .jc-trust-summary__layout {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .jc-trust-summary__commitment {
        grid-template-columns:
            46px
            minmax(0, 1fr);
        gap: 16px;

        padding:
            23px
            0;
    }

    .jc-trust-summary__commitment-icon {
        width: 44px;
        height: 44px;
    }

    .jc-trust-summary__commitment-icon svg {
        width: 20px;
        height: 20px;
    }

    .jc-trust-summary__commitment h3 {
        margin-bottom: 8px;

        font-size: 1.45rem;
    }

    .jc-trust-summary__commitment p {
        font-size: 0.78rem;
        line-height: 1.68;
    }

    .jc-trust-summary__services {
        padding:
            34px
            22px
            25px;

        border-radius: var(--jc-radius-lg);
    }

    .jc-trust-summary__services-header {
        margin-bottom: 24px;
    }

    .jc-trust-summary__services-header h3 {
        font-size:
            clamp(2rem, 10vw, 2.8rem);
    }

    .jc-trust-summary__services-header p {
        font-size: 0.76rem;
    }

    .jc-trust-summary__service-list a {
        grid-template-columns:
            28px
            minmax(0, 1fr)
            17px;
        gap: 10px;

        min-height: 56px;
    }

    .jc-trust-summary__service-name {
        font-size: 1rem;
    }

    .jc-trust-summary__services-link {
        margin-top: 23px;

        font-size: 0.61rem;
    }

    .jc-trust-summary__facts {
        grid-template-columns: 1fr;
        gap: 23px;

        margin-top: 48px;
        padding:
            25px
            21px;
    }

    .jc-trust-summary__fact {
        padding-bottom: 22px;

        border-bottom:
            1px solid
            var(--jc-divider);
    }

    .jc-trust-summary__fact:nth-of-type(3) {
        padding-bottom: 0;

        border-bottom: 0;
    }

    .jc-trust-summary__fact-divider {
        display: none;
    }

    .jc-trust-summary__fact-action {
        width: 100%;
    }
      .jc-hero__media {
        inset: -2%;
    }

    .jc-hero__image {
        object-position: 63% center;
    }

    .jc-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(13, 18, 8, 0.95) 0%,
                rgba(18, 25, 10, 0.80) 70%,
                rgba(18, 25, 10, 0.54) 100%
            ),
            linear-gradient(
                180deg,
                transparent 20%,
                rgba(9, 12, 6, 0.65) 100%
            );
    }

    .jc-hero__frame {
        inset: 8px;
    }

    .jc-hero__layout {
        display: flex;
        align-items: center;

        padding-top: 22px;
        padding-bottom: 72px;
    }

    .jc-hero__content::before {
        display: none;
    }

    .jc-hero__eyebrow {
        gap: 9px;

        margin-bottom: 14px;

        font-size: 0.55rem;
        letter-spacing: 0.09em;
    }

    .jc-hero__eyebrow-line {
        width: 25px;
    }

    .jc-hero__eyebrow-dot {
        display: none;
    }

    .jc-hero__title {
        margin-bottom: 17px;

        font-size:
            clamp(2.8rem, 13vw, 4.05rem);

        line-height: 0.91;
    }

    .jc-hero__description {
        max-width: 420px;
        margin-bottom: 21px;

        font-size: 0.82rem;
        line-height: 1.58;
    }

    .jc-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 11px;

        width: min(100%, 310px);
    }

    .jc-hero__primary {
        width: 100%;
        min-height: 50px;
    }

    .jc-hero__secondary {
        justify-content: flex-start;

        width: fit-content;
        min-height: 36px;

        font-size: 0.59rem;
    }

    .jc-hero__availability {
        max-width: 325px;
        margin-top: 15px;

        font-size: 0.56rem;
        line-height: 1.45;
    }

    .jc-hero__service-card {
        display: none;
    }

    .jc-hero__footer {
        min-height: 58px;
    }

    .jc-hero__footer-inner {
        justify-content: space-between;
        gap: 12px;

        min-height: 58px;
    }

    .jc-hero__footer-item {
        gap: 7px;

        font-size: 0.51rem;
        letter-spacing: 0.035em;
    }

    .jc-hero__footer-item:nth-of-type(2),
    .jc-hero__footer-item:nth-of-type(3),
    .jc-hero__footer-divider {
        display: none;
    }

    .jc-hero__scroll {
        display: flex;

        margin-left: auto;

        font-size: 0.53rem;
    }

    .jc-hero__scroll-line {
        width: 28px;
    }
     :root {
        --jc-topbar-height: 32px;
        --jc-header-height: 68px;
    }

    .jc-nav-topbar__inner {
        justify-content: center;
    }

    .jc-nav-topbar__service,
    .jc-nav-topbar__divider,
    .jc-nav-topbar__phone-label,
    .jc-nav-topbar__hours {
        display: none;
    }

    .jc-nav-topbar__phone strong {
        font-size: 0.66rem;
    }

    .jc-site-header__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .jc-site-header__navigation {
        display: none;
    }

    .jc-nav-toggle {
        display: inline-flex;

        width: 44px;
        height: 44px;
    }

    .jc-site-header__brand {
        position: absolute;
        left: 50%;

        min-width: 0;

        transform: translateX(-50%);
    }

    .jc-site-header__logo {
        max-width: 94px;
        max-height: 58px;
    }

    .jc-site-header__estimate {
        min-height: 42px;
        padding:
            10px
            12px;

        font-size: 0.57rem;
    }

    .jc-site-header__estimate-full,
    .jc-site-header__estimate svg {
        display: none;
    }

    .jc-nav-modal__backdrop {
        display: none;
    }

    .jc-nav-drawer {
        width: 100%;
        max-width: none;

        border-right: 0;

        box-shadow: none;
    }

    .jc-nav-drawer__top {
        grid-template-columns:
            44px
            minmax(0, 1fr)
            auto;
        gap: 10px;

        min-height: 68px;

        padding-right:
            max(12px, env(safe-area-inset-right));
        padding-left:
            max(12px, env(safe-area-inset-left));
    }

    .jc-nav-drawer__close {
        width: 42px;
        height: 42px;
    }

    .jc-nav-drawer__brand img {
        max-width: 94px;
        max-height: 55px;
    }

    .jc-nav-drawer__top-cta {
        min-height: 40px;
        padding:
            10px
            11px;

        font-size: 0.54rem;
    }

    .jc-nav-drawer__scroll {
        padding:
            24px
            21px
            26px;
    }

    .jc-nav-drawer__intro {
        padding-bottom: 20px;
        margin-bottom: 11px;
    }

    .jc-nav-drawer__intro h2 {
        font-size:
            clamp(2rem, 10vw, 2.8rem);
    }

    .jc-nav-drawer__intro p {
        font-size: 0.74rem;
        line-height: 1.63;
    }

    .jc-nav-drawer__link {
        grid-template-columns:
            30px
            minmax(0, 1fr)
            18px;
        gap: 10px;

        min-height: 58px;
    }

    .jc-nav-drawer__link
    > span:nth-child(2) {
        font-size:
            clamp(1.32rem, 6vw, 1.65rem);
    }

    .jc-nav-drawer__footer {
        gap: 12px;

        padding:
            13px
            max(17px, env(safe-area-inset-right))
            max(13px, env(safe-area-inset-bottom))
            max(17px, env(safe-area-inset-left));
    }

    .jc-nav-drawer__estimate {
        min-height: 50px;

        font-size: 0.59rem;
    }

    .jc-nav-drawer__contact strong {
        font-size: 0.77rem;
    }

    .jc-nav-drawer__contact p {
        font-size: 0.58rem;
    }


    :root {
        --jc-page-gutter: 18px;
        --jc-section-space: 72px;
        --jc-scroll-offset: 84px;

        --jc-radius-lg: 17px;
        --jc-radius-xl: 22px;
    }

    body {
        font-size: 15px;
        line-height: 1.64;
    }

    h1 {
        font-size:
            clamp(2.85rem, 14vw, 4.25rem);

        line-height: 0.92;
    }

    h2 {
        font-size:
            clamp(2.4rem, 12vw, 3.55rem);

        line-height: 0.96;
    }

    .jc-container,
    .jc-container--narrow {
        width:
            calc(
                100% -
                (var(--jc-page-gutter) * 2)
            );
    }

    .jc-button {
        width: 100%;

        min-height: 54px;
        padding: 15px 18px;
    }

    .jc-card:hover {
        transform: none;
    }

    .jc-bg-shape--flower {
        top: 2%;
        right: -190px;

        width: 292px;

        opacity: 0.08;
    }

    .jc-bg-shape--irrigation {
        left: -500px;

        opacity: 0.06;
    }

    .jc-bg-shape--pavers {
        right: -200px;

        opacity: 0.045;
    }

    .jc-bg-shape--stones,
    .jc-bg-shape--path {
        display: none;
    }

    .jc-page-transition__mark {
        width: 72px;
        height: 72px;
        margin-bottom: 16px;

        font-size: 2.3rem;
    }

    .jc-page-transition__name {
        max-width: 260px;

        font-size: 0.61rem;
        line-height: 1.75;
    }

    .jc-page-transition__panel::after {
        inset: 10px;
    }

}