/* EC Scaping — Luxury Theme v3 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
    --green:        #3A5A4A;
    --green-dk:     #2a4236;
    --green-lt:     #4d7a63;
    --gold:         #E8A855;
    --gold-dk:      #c8883a;
    --cream:        #FAFAF8;
    --dark:         #111a14;
    --gray:         #4a5a50;
    --gray-lt:      #8a9a90;
    --white:        #ffffff;
    --font-serif:   'Cormorant Garamond', Georgia, serif;
    --font-sans:    'Montserrat', Arial, sans-serif;
    --ease:         cubic-bezier(0.4, 0, 0.2, 1);
    --t:            0.35s;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   SUPPRESS ASTRA DEFAULTS
   ============================================================ */
.site-header,
#masthead,
.ast-site-header-wrap,
.main-header-bar,
.ast-primary-header-bar,
#ast-mobile-header,
.ast-mobile-header-wrap,
.site-footer,
#colophon,
.site-footer .ast-small-footer,
.footer-widget-area,
.ast-footer-copyright,
.ast-breadcrumbs-wrapper { display: none !important; }

#page,
.site,
#content,
.site-content { padding: 0 !important; margin: 0 !important; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.6rem, 5vw, 4.5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 300; }
h3 { font-size: clamp(1.4rem, 2vw, 2rem); }
h4 { font-size: 1.25rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0; }

em { font-style: italic; color: var(--gold); }
strong { font-weight: 600; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.ec-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.ec-section {
    padding: 100px 0;
}

.ec-section-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.ec-section-title {
    margin-bottom: 20px;
    color: var(--dark);
}

.ec-section-desc {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 640px;
    margin-bottom: 48px;
    line-height: 1.8;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.ec-btn-primary,
.ec-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 42px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

/* Shimmer sweep on hover */
.ec-btn-primary::before,
.ec-btn-outline::before {
    content: '';
    position: absolute;
    top: 0; left: -75%;
    width: 50%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.22), transparent);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
    pointer-events: none;
}
.ec-btn-primary:hover::before,
.ec-btn-outline:hover::before { left: 140%; }

.ec-btn-primary {
    background: linear-gradient(135deg, #f5c070 0%, var(--gold) 45%, #b87828 100%);
    color: var(--dark);
    border-color: rgba(200,136,58,0.5);
    box-shadow: 0 2px 12px rgba(232,168,85,0.18), inset 0 1px 0 rgba(255,255,255,0.25);
}
.ec-btn-primary:hover {
    background: linear-gradient(135deg, var(--gold) 0%, #b87828 100%);
    color: var(--white);
    border-color: #b87828;
    box-shadow: 0 8px 28px rgba(200,136,58,0.45);
    transform: translateY(-2px);
}

.ec-btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
    box-shadow: inset 0 0 0 0 var(--gold);
}
.ec-btn-outline:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    box-shadow: 0 8px 28px rgba(232,168,85,0.35);
    transform: translateY(-2px);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.ec-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.ec-reveal.visible {
    opacity: 1;
    transform: none;
}

/* ============================================================
   HEADER
   ============================================================ */
.ec-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 48px;
    height: 80px;
    display: flex;
    align-items: center;
    background: transparent;
    transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.ec-header.scrolled {
    background: rgba(10, 20, 13, 0.97);
    box-shadow: 0 2px 40px rgba(0,0,0,0.25);
}

.ec-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.ec-logo {
    display: flex;
    align-items: center;
}

.ec-logo-img {
    height: 44px;
    width: auto;
    display: block;
    transition: opacity var(--t);
}
.ec-logo:hover .ec-logo-img { opacity: 0.85; }

@media (max-width: 768px) {
    .ec-logo-img { height: 36px; }
}


.ec-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.ec-nav a {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    transition: color var(--t);
    position: relative;
}
.ec-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--t) var(--ease);
}
.ec-nav a:hover { color: var(--white); }
.ec-nav a:hover::after { width: 100%; }

.ec-nav-cta {
    background: var(--gold) !important;
    color: var(--dark) !important;
    padding: 10px 22px;
    font-size: 0.65rem !important;
    letter-spacing: 0.12em !important;
}
.ec-nav-cta::after { display: none !important; }
.ec-nav-cta:hover { background: linear-gradient(135deg, var(--gold) 0%, #b87828 100%) !important; transform: translateY(-1px); color: var(--white) !important; box-shadow: 0 6px 20px rgba(232,168,85,0.4); }

.ec-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.ec-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all var(--t) var(--ease);
}

.ec-mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--green-dk);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
}
.ec-mobile-nav.open { transform: none; }
.ec-mobile-nav a {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.02em;
    transition: color var(--t);
}
.ec-mobile-nav a:hover { color: var(--gold); }
.ec-mobile-close {
    position: absolute;
    top: 28px;
    right: 32px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

/* ============================================================
   NAV DROPDOWN (desktop)
   ============================================================ */
.ec-nav-item {
    position: relative;
}
.ec-nav-item > a {
    display: flex;
    align-items: center;
    gap: 6px;
}
.ec-nav-chevron {
    font-size: 0.55rem;
    transition: transform 0.25s ease;
    opacity: 0.7;
}
.ec-nav-item:hover .ec-nav-chevron {
    transform: rotate(180deg);
    opacity: 1;
}
.ec-nav-dropdown {
    position: absolute;
    top: 100%;           /* flush — no gap that breaks hover */
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: var(--dark);
    border: 1px solid rgba(232,168,85,0.18);
    border-top: 2px solid var(--gold);
    min-width: 200px;
    padding: 20px 0 8px; /* top padding = visual breathing room, no dead gap */
    opacity: 0;
    pointer-events: none;
    /* open: instant; close: 2s delay so mouse can travel to links */
    transition: opacity 0.2s ease 2s, transform 0.2s ease 2s, pointer-events 0s linear 2s;
    z-index: 200;
    box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}
.ec-nav-item:hover .ec-nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition: opacity 0.2s ease 0s, transform 0.2s ease 0s, pointer-events 0s linear 0s;
}
.ec-nav-dropdown a {
    display: block;
    padding: 11px 22px;
    font-size: 0.67rem !important;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.78) !important;
    white-space: nowrap;
    border-bottom: none !important;
}
.ec-nav-dropdown a::after { display: none !important; }
.ec-nav-dropdown a:hover {
    color: var(--gold) !important;
    background: rgba(232,168,85,0.06);
}
.ec-nav-dropdown a:first-child {
    border-bottom: 1px solid rgba(232,168,85,0.15) !important;
    color: var(--gold) !important;
    font-weight: 700 !important;
    margin-bottom: 4px;
    padding-bottom: 13px;
}
/* Active state — any services sub-page */
.ec-nav-active { color: var(--gold) !important; }
.ec-nav-active::after { width: 100% !important; }

/* ── Mobile nav services accordion ── */
.ec-mobile-nav-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.ec-mobile-parent-btn {
    background: none;
    border: none;
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.02em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: color var(--t);
    padding: 0;
}
.ec-mobile-parent-btn:hover { color: var(--gold); }
.ec-mobile-parent-btn i {
    font-size: 1.2rem;
    transition: transform 0.25s ease;
    opacity: 0.6;
}
.ec-mobile-nav-group.open .ec-mobile-parent-btn { color: var(--gold); }
.ec-mobile-nav-group.open .ec-mobile-parent-btn i {
    transform: rotate(180deg);
    opacity: 1;
}
.ec-mobile-subnav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
}
.ec-mobile-nav-group.open .ec-mobile-subnav {
    max-height: 480px;
    padding: 16px 0 8px;
}
.ec-mobile-subnav a {
    font-size: 1.1rem !important;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.7) !important;
    text-transform: uppercase;
    font-family: var(--font-sans) !important;
    font-weight: 600 !important;
}
.ec-mobile-subnav a:first-child {
    color: var(--gold) !important;
}
.ec-mobile-subnav a:hover { color: var(--gold) !important; }

/* ============================================================
   HERO
   ============================================================ */
.ec-hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding-top: 80px;
}

.ec-hero-bg {
    position: absolute;
    inset: -5%;
    background-image: url('/wp-content/uploads/2026/ecscaping/images/aerial-landscape-project-northern-utah-1.jpg');
    background-size: cover;
    background-position: center 40%;
    transform: scale(1.05);
    will-change: transform;
}
.ec-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,20,13,0.55) 0%,
        rgba(10,20,13,0.4) 50%,
        rgba(10,20,13,0.72) 100%
    );
}

.ec-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 0 32px;
}

.ec-hero-eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.ec-hero-content h1 {
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.ec-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 48px;
    line-height: 1.8;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.ec-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.ec-hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    z-index: 2;
    animation: heroScroll 2.2s ease-in-out infinite;
}
.ec-hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    margin: 8px auto 0;
}

@keyframes heroScroll {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
    50%       { opacity: 1;   transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.ec-stats {
    background: var(--green-dk);
}
.ec-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1280px;
    margin: 0 auto;
}

.ec-stat {
    padding: 52px 32px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.ec-stat:last-child { border-right: none; }

.ec-stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.ec-stat-label {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

/* ============================================================
   SERVICES
   ============================================================ */
.ec-services {
    background: var(--cream);
}

.ec-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 600px;
    margin-top: 60px;
}

.ec-service-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.ec-service-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 0.8s var(--ease);
}
.ec-service-card:hover .ec-service-card-bg { transform: scale(1.06); }

.ec-service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,20,13,0.9) 0%, rgba(10,20,13,0.3) 50%, transparent 100%);
    transition: background var(--t) var(--ease);
}
.ec-service-card:hover .ec-service-card-overlay {
    background: linear-gradient(to top, rgba(10,20,13,0.95) 0%, rgba(10,20,13,0.6) 60%, rgba(10,20,13,0.2) 100%);
}

.ec-service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 36px;
    z-index: 2;
}

.ec-service-number {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 12px;
}

.ec-service-card-content h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.ec-service-card-content p {
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-bottom: 0;
    transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease), margin 0.4s;
}
.ec-service-card:hover p {
    max-height: 120px;
    opacity: 1;
    margin-bottom: 20px;
}

.ec-service-link {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color var(--t);
}
.ec-service-card:hover .ec-service-link {
    opacity: 1;
    transform: none;
}
.ec-service-link:hover { color: var(--white); }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.ec-portfolio-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 48px;
}

.ec-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 6px;
}

.ec-pitem {
    position: relative;
    overflow: hidden;
    background: var(--green-dk);
}
.ec-pitem:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.ec-pitem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.ec-pitem:hover img { transform: scale(1.06); }

.ec-pitem-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,20,13,0.85) 0%, transparent 55%);
    opacity: 0;
    transition: opacity var(--t) var(--ease);
    display: flex;
    align-items: flex-end;
}
.ec-pitem:hover .ec-pitem-overlay { opacity: 1; }

.ec-pitem-info { padding: 24px 20px; }
.ec-pitem-info h4 {
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.ec-pitem-info span {
    font-size: 0.72rem;
    color: var(--gold);
    letter-spacing: 0.05em;
}

/* ============================================================
   FEATURES
   ============================================================ */
.ec-features {
    background: var(--green-dk);
}

.ec-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 640px;
}

.ec-feature-image { overflow: hidden; }
.ec-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ec-feature-content {
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ec-feature-content .ec-section-title { color: var(--white); }
.ec-feature-content .ec-section-desc { color: rgba(255,255,255,0.7); max-width: 480px; }

.ec-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 8px;
}

.ec-feature-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.ec-feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(232,168,85,0.1);
    border: 1px solid rgba(232,168,85,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.05rem;
    color: var(--gold);
}

.ec-feature-text h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.ec-feature-text p {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    line-height: 1.65;
}

/* ============================================================
   PROCESS
   ============================================================ */
.ec-process {
    background: var(--cream);
}

.ec-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 64px;
    position: relative;
}

.ec-process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.ec-step {
    padding: 0 28px;
    text-align: center;
}

.ec-step-num {
    width: 80px;
    height: 80px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold);
    margin: 0 auto 24px;
    background: var(--cream);
    position: relative;
    z-index: 1;
}

.ec-step h4 {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
}

.ec-step p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.ec-testimonials { background: var(--white); }

.ec-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.ec-tcard {
    background: var(--cream);
    padding: 44px 40px;
    border-bottom: 3px solid transparent;
    transition: border-color var(--t) var(--ease), transform var(--t) var(--ease), box-shadow var(--t);
}
.ec-tcard:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.ec-tcard-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.ec-tcard-stars i, .ec-lp-stars i { margin-right: 2px; }

.ec-tcard-quote {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 28px;
}

.ec-tcard-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ec-tcard-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.ec-tcard-info strong {
    display: block;
    font-size: 0.88rem;
    color: var(--dark);
    margin-bottom: 2px;
}
.ec-tcard-info span {
    font-size: 0.75rem;
    color: var(--gray-lt);
    letter-spacing: 0.05em;
}

/* ============================================================
   CTA
   ============================================================ */
.ec-cta {
    position: relative;
    padding: 120px 48px;
    text-align: center;
    overflow: hidden;
}

.ec-cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('/wp-content/uploads/2026/ecscaping/images/paver-patio-paver-patio-02-luxury-pool-surround-fire-pit-umbrellas-utah-22.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.ec-cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 13, 0.78);
}

.ec-cta-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.ec-cta-content .ec-section-label { color: var(--gold); }

.ec-cta-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.4rem);
    margin-bottom: 20px;
}

.ec-cta-content p {
    color: rgba(255,255,255,0.78);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 44px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.ec-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.ec-footer { background: var(--dark); }

.ec-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.ec-footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ec-footer-brand-name {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.03em;
    line-height: 1;
    margin-bottom: 4px;
}

.ec-footer-brand-tag {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.ec-footer-brand p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    max-width: 320px;
}

.ec-footer-col h5 {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.ec-footer-col ul { list-style: none; }
.ec-footer-col li { margin-bottom: 10px; }
.ec-footer-col a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    transition: color var(--t);
}
.ec-footer-col a:hover { color: var(--white); }

.ec-footer-col address {
    font-style: normal;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
}
.ec-footer-col address a {
    display: block;
    color: rgba(255,255,255,0.5);
    transition: color var(--t);
}
.ec-footer-col address a:hover { color: var(--white); }

.ec-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.05em;
}

/* ── Footer Map ────────────────────────────────────────────── */
.ec-footer-map {
    position: relative;
    height: 320px;
    margin: 0 -48px;    /* bleed to full footer width */
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ec-footer-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(30%) contrast(1.05) brightness(0.88);
}
.ec-footer-map-card {
    position: absolute;
    top: 50%;
    left: 48px;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(10,25,15,0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(232,168,85,0.25);
    border-left: 3px solid var(--gold);
    padding: 28px 32px;
    min-width: 220px;
    max-width: 280px;
}
.ec-footer-map-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.ec-footer-map-addr {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 8px;
}
.ec-footer-map-area {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}
.ec-footer-map-dir {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s;
}
.ec-footer-map-dir:hover { color: var(--white); gap: 12px; }

@media (max-width: 768px) {
    .ec-footer-map { height: 400px; margin: 0 -20px; }
    .ec-footer-map-card {
        left: 16px; right: 16px;
        top: auto; bottom: 0;
        transform: none;
        max-width: 100%;
        padding: 20px 24px;
    }
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1100px) {
    .ec-container { padding: 0 32px; }
    .ec-header { padding: 0 32px; }
    .ec-nav { gap: 24px; }

    .ec-services-grid { height: 520px; }

    .ec-portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 240px);
    }
    .ec-pitem:first-child { grid-column: span 2; grid-row: span 2; }

    .ec-feature-content { padding: 56px 48px; }

    .ec-footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
    .ec-section { padding: 64px 0; }
    .ec-container { padding: 0 20px; }
    .ec-header { padding: 0 20px; height: 68px; }

    .ec-nav { display: none; }
    .ec-hamburger { display: flex; }

    .ec-hero { height: 100svh; min-height: 600px; }
    .ec-hero-content { padding: 0 20px; }
    .ec-hero-actions { flex-direction: column; align-items: center; }

    .ec-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .ec-stat {
        padding: 36px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .ec-stat:last-child { border-bottom: none; }

    .ec-services-grid { grid-template-columns: 1fr; height: auto; }
    .ec-service-card { height: 420px; }
    .ec-service-card-content p { max-height: 100px; opacity: 1; margin-bottom: 16px; }
    .ec-service-link { opacity: 1; transform: none; }

    .ec-portfolio-intro { flex-direction: column; align-items: flex-start; }
    .ec-portfolio-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .ec-pitem { height: 200px; }
    .ec-pitem:first-child { grid-column: span 2; height: 260px; }

    .ec-features-grid { grid-template-columns: 1fr; }
    .ec-feature-image { height: 320px; }
    .ec-feature-content { padding: 48px 24px; }
    .ec-feature-content .ec-section-desc { max-width: 100%; }

    .ec-process-steps { grid-template-columns: 1fr; gap: 40px; }
    .ec-process-steps::before { display: none; }

    .ec-testimonials-grid { grid-template-columns: 1fr; }

    .ec-cta { padding: 80px 20px; }
    .ec-cta-bg { background-attachment: scroll; }

    .ec-footer-top { grid-template-columns: 1fr; gap: 40px; padding: 48px 0 40px; }
    .ec-footer-inner { padding: 0 20px; }
    .ec-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* Admin bar offset */
@media screen and (min-width: 783px) {
    body.admin-bar .ec-header { top: 32px; }
}
@media screen and (max-width: 782px) {
    body.admin-bar .ec-header { top: 46px; }
}

/* ============================================================
   HERO CONTACT FORM
   ============================================================ */
.ec-hero-form-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 540px;
    margin: 48px auto 0;
    background: rgba(10, 20, 13, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 24px 28px 20px;
}

.ec-hero-form-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    margin-bottom: 12px;
}

/* Override CF7 default styles inside hero */
.ec-hero-form-wrap .wpcf7 { margin: 0; }
.ec-hero-form-wrap .wpcf7-form { display: flex; flex-direction: column; gap: 12px; }

.ec-hero-form-wrap .wpcf7-form .ec-cf7-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ec-hero-form-wrap input[type="text"],
.ec-hero-form-wrap input[type="email"],
.ec-hero-form-wrap input[type="tel"],
.ec-hero-form-wrap select,
.ec-hero-form-wrap textarea {
    width: 100%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    padding: 14px 18px;
    outline: none;
    transition: border-color var(--t), background var(--t);
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}
.ec-hero-form-wrap input::placeholder,
.ec-hero-form-wrap textarea::placeholder { color: rgba(255,255,255,0.45); }
.ec-hero-form-wrap select { color: rgba(255,255,255,0.75); }
.ec-hero-form-wrap select option { background: var(--green-dk); color: var(--white); }

.ec-hero-form-wrap input:focus,
.ec-hero-form-wrap select:focus,
.ec-hero-form-wrap textarea:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.12);
}

.ec-hero-form-wrap textarea { resize: none; }

.ec-hero-form-wrap .wpcf7-form-control.wpcf7-submit {
    width: 100%;
    background: var(--gold);
    color: var(--dark);
    border: none;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 17px 32px;
    cursor: pointer;
    transition: background var(--t), transform var(--t);
    margin-top: 4px;
}
.ec-hero-form-wrap .wpcf7-form-control.wpcf7-submit:hover {
    background: var(--gold-dk);
    transform: translateY(-1px);
}

/* CF7 validation messages */
.ec-hero-form-wrap .wpcf7-not-valid-tip {
    font-size: 0.72rem;
    color: #fca5a5;
    margin-top: 4px;
    display: block;
}
.ec-hero-form-wrap .wpcf7-response-output {
    margin: 12px 0 0;
    padding: 12px 16px;
    font-size: 0.82rem;
    border: 1px solid var(--gold);
    color: var(--white);
    text-align: center;
}
.ec-hero-form-wrap .wpcf7-mail-sent-ok {
    border-color: #86efac;
    background: rgba(134,239,172,0.1);
}
.ec-hero-form-wrap .wpcf7-validation-errors {
    border-color: #fca5a5;
    background: rgba(252,165,165,0.1);
}

/* Span full width for lone fields */
.ec-hero-form-wrap .wpcf7-form > span > input,
.ec-hero-form-wrap .wpcf7-form > span > select,
.ec-hero-form-wrap .wpcf7-form > span > textarea { width: 100%; }
.ec-hero-form-wrap .wpcf7-form > span { display: block; }

/* Page hero form — tighter */
.ec-page-hero .ec-hero-form-wrap {
    max-width: 540px;
    padding: 24px 28px 20px;
    margin-top: 40px;
}
.ec-page-hero .ec-hero-form-wrap .wpcf7-form { gap: 10px; }
.ec-page-hero .ec-hero-form-wrap .ec-cf7-row { gap: 10px; }

@media (max-width: 768px) {
    .ec-hero-form-wrap { padding: 24px 20px 20px; margin-top: 32px; }
    .ec-hero-form-wrap .wpcf7-form .ec-cf7-row { grid-template-columns: 1fr; }
    .ec-page-hero .ec-hero-form-wrap { padding: 20px 16px; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.ec-page-hero {
    position: relative;
    min-height: 540px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: visible;
    padding: 100px 20px 120px;
}

.ec-page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.ec-page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,20,13,0.55) 0%, rgba(10,20,13,0.72) 100%);
}

.ec-page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 32px;
    max-width: 760px;
}
.ec-page-hero-content h1 { color: var(--white); margin-bottom: 16px; }
.ec-page-hero-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto;
}

/* ============================================================
   SERVICES DETAIL SECTIONS
   ============================================================ */
.ec-service-detail {
    padding: 100px 0;
    background: var(--white);
}
.ec-service-detail--alt {
    background: var(--cream);
}

.ec-service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    align-items: center;
}
.ec-service-detail-grid--reversed .ec-service-detail-content { order: 1; }
.ec-service-detail-grid--reversed .ec-service-detail-images  { order: 2; }

.ec-service-detail-images > img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.ec-service-detail-sub-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 6px;
}
.ec-service-detail-sub-images img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.ec-service-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    margin-top: 28px;
}
.ec-service-features li {
    font-size: 0.88rem;
    color: var(--gray);
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}
.ec-service-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* ============================================================
   PORTFOLIO FULL GRID
   ============================================================ */
.ec-portfolio-full-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}
.ec-portfolio-full-grid .ec-pitem { height: 320px; }
.ec-portfolio-full-grid .ec-pitem:nth-child(7n+1) {
    grid-column: span 2;
    grid-row: span 2;
    height: 646px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.ec-contact-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 72px;
    align-items: start;
}

.ec-contact-form-wrap { }

.ec-contact-form { display: flex; flex-direction: column; gap: 0; }

.ec-form-row {
    margin-bottom: 20px;
}
.ec-form-row--2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.ec-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ec-form-group label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dark);
}
.ec-form-group label span { color: var(--gold); }

.ec-form-group input,
.ec-form-group select,
.ec-form-group textarea {
    border: 1px solid rgba(0,0,0,0.15);
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--dark);
    background: var(--white);
    outline: none;
    transition: border-color var(--t);
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}
.ec-form-group input:focus,
.ec-form-group select:focus,
.ec-form-group textarea:focus {
    border-color: var(--green);
}
.ec-form-group textarea { resize: vertical; min-height: 120px; }

.ec-form-success {
    background: var(--green-dk);
    color: var(--white);
    padding: 40px 36px;
    text-align: center;
}
.ec-form-success h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 12px;
}
.ec-form-success p { color: rgba(255,255,255,0.8); line-height: 1.7; }

.ec-form-error {
    background: #fef2f2;
    border-left: 3px solid #dc2626;
    padding: 14px 18px;
    font-size: 0.88rem;
    color: #991b1b;
    margin-bottom: 20px;
}

.ec-contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.ec-contact-detail-block h4 {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.ec-contact-detail-block p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.75;
}
.ec-contact-detail-block a { color: var(--green); font-weight: 600; }

/* FAQ LIST (contact page) */
.ec-faq-list {
    margin-top: 48px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.ec-faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.ec-faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 22px 40px 22px 0;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    position: relative;
    line-height: 1.4;
    transition: color var(--t);
}
.ec-faq-question:hover { color: var(--green); }
.ec-faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gold);
    transition: transform var(--t) var(--ease);
}
.ec-faq-item.open .ec-faq-question::after { transform: translateY(-50%) rotate(45deg); }

.ec-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.3s;
}
.ec-faq-item.open .ec-faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}
.ec-faq-answer p {
    font-size: 0.97rem;
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================================
   ABOUT / PROSE SECTION
   ============================================================ */
.ec-about-prose {
    background: var(--white);
}

.ec-about-prose-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.ec-about-prose-left h2 {
    margin-bottom: 28px;
}

.ec-about-prose-left .ec-prose-block {
    margin-bottom: 24px;
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.85;
}

.ec-about-prose-left .ec-prose-block:first-of-type {
    font-size: 1.12rem;
    color: var(--dark);
    font-weight: 400;
}

.ec-about-prose-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ec-about-prose-right .ec-prose-block {
    font-size: 0.97rem;
    color: var(--gray);
    line-height: 1.85;
}

.ec-about-img-wrap {
    position: relative;
    margin-bottom: 32px;
}

.ec-about-img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.ec-about-img-caption {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    background: var(--green-dk);
    padding: 16px 24px;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ============================================================
   SERVICE AREAS SECTION
   ============================================================ */
.ec-areas {
    background: var(--cream);
}

.ec-areas-intro {
    max-width: 800px;
    margin-bottom: 64px;
}

.ec-areas-intro .ec-prose-block {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.85;
    margin-bottom: 20px;
}

.ec-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 56px;
}

.ec-area-card {
    background: var(--white);
    padding: 36px 32px;
    position: relative;
    transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
}
.ec-area-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.07);
    transform: translateY(-2px);
    z-index: 1;
}

.ec-area-card-city {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--green);
    margin-bottom: 8px;
    line-height: 1.2;
}

.ec-area-card-region {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.ec-area-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.75;
}

.ec-areas-close {
    max-width: 820px;
}

.ec-areas-close .ec-prose-block {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.85;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .ec-about-prose-inner { grid-template-columns: 1fr; gap: 48px; }
    .ec-areas-grid { grid-template-columns: repeat(2, 1fr); }
    .ec-service-detail-grid { grid-template-columns: 1fr; gap: 40px; padding: 0 32px; }
    .ec-service-detail-grid--reversed .ec-service-detail-content { order: 2; }
    .ec-service-detail-grid--reversed .ec-service-detail-images  { order: 1; }
    .ec-contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .ec-portfolio-full-grid { grid-template-columns: repeat(3, 1fr); }
    .ec-portfolio-full-grid .ec-pitem:nth-child(7n+1) { grid-column: span 2; height: 500px; }
}

@media (max-width: 768px) {
    .ec-areas-grid { grid-template-columns: 1fr; }
    .ec-about-img-wrap img { height: 260px; }
    .ec-page-hero { height: 60vh; min-height: 360px; }
    .ec-page-hero-content { padding-top: 68px; }
    .ec-service-detail { padding: 60px 0; }
    .ec-service-detail-grid { padding: 0 20px; }
    .ec-service-detail-sub-images img { height: 130px; }
    .ec-service-features { grid-template-columns: 1fr; }
    .ec-form-row--2 { grid-template-columns: 1fr; }
    .ec-portfolio-full-grid { grid-template-columns: 1fr 1fr; }
    .ec-portfolio-full-grid .ec-pitem { height: 220px; }
    .ec-portfolio-full-grid .ec-pitem:nth-child(7n+1) { grid-column: span 2; height: 300px; }
}

/* ============================================================
   SERVICE LANDING PAGES
   ============================================================ */

/* Trust Bar */
.ec-trust-bar { background: var(--dark); border-bottom: 1px solid rgba(232,168,85,0.18); padding: 18px 0; }
.ec-trust-bar-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 16px; }
.ec-trust-badge { display: flex; align-items: center; gap: 10px; color: var(--cream); font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; white-space: nowrap; }
.ec-trust-icon { width: 28px; height: 28px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; color: var(--dark); }

/* Problem / Pain Section */
.ec-lp-intro { background: var(--dark); padding: 96px 32px; }
.ec-lp-intro-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.ec-lp-intro .ec-eyebrow-gold { font-family: var(--font-sans); font-size: 0.63rem; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 28px; }
.ec-lp-intro h2 { font-family: var(--font-serif); font-size: clamp(2rem,4vw,3rem); color: var(--cream); font-weight: 300; line-height: 1.25; margin-bottom: 32px; }
.ec-lp-intro h2 em { font-style: italic; color: var(--gold); }
.ec-lp-intro p { color: rgba(250,250,248,0.78); font-size: 1.05rem; line-height: 1.9; margin-bottom: 22px; text-align: left; }
.ec-lp-intro p:last-child { margin-bottom: 0; }

/* Detail Sections — Light */
.ec-lp-detail { padding: 100px 0; background: var(--cream); }
.ec-lp-detail + .ec-lp-detail { padding-top: 0; }
.ec-lp-detail-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ec-lp-detail-inner.rev { direction: rtl; }
.ec-lp-detail-inner.rev > * { direction: ltr; }
.ec-lp-detail-img { position: relative; }
.ec-lp-detail-img img { width: 100%; height: 520px; object-fit: cover; display: block; }
.ec-lp-detail-img .ec-lp-sub-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 6px; }
.ec-lp-detail-img .ec-lp-sub-imgs img { height: 180px; width: 100%; object-fit: cover; }
.ec-lp-detail-eyebrow { font-family: var(--font-sans); font-size: 0.63rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--green); display: block; margin-bottom: 16px; }
.ec-lp-detail-content h2 { font-family: var(--font-serif); font-size: clamp(1.8rem,3vw,2.5rem); color: var(--dark); font-weight: 300; line-height: 1.3; margin-bottom: 24px; }
.ec-lp-detail-content h2 em { font-style: italic; color: var(--green); }
.ec-lp-detail-content p { color: var(--gray); line-height: 1.85; margin-bottom: 20px; font-size: 1rem; }
.ec-lp-bullets { list-style: none; margin: 24px 0 32px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.ec-lp-bullets li { font-family: var(--font-sans); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; color: var(--dark); padding-left: 18px; position: relative; }
.ec-lp-bullets li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-weight: 900; }
.ec-lp-detail-cta { display: inline-block; background: var(--green); color: var(--white); font-family: var(--font-sans); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 14px 36px; text-decoration: none; transition: background 0.25s; }
.ec-lp-detail-cta:hover { background: var(--green-dk); color: var(--white); }

/* Gallery Grid */
.ec-lp-gallery { display: grid; grid-template-columns: repeat(4,1fr); gap: 5px; background: var(--dark); }
.ec-lp-gitem { position: relative; overflow: hidden; aspect-ratio: 1; }
.ec-lp-gitem.wide { grid-column: span 2; aspect-ratio: 2/1; }
.ec-lp-gitem.tall { grid-row: span 2; aspect-ratio: 1/2; }
.ec-lp-gitem img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.ec-lp-gitem:hover img { transform: scale(1.04); }
.ec-lp-gitem-cap { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top,rgba(10,20,13,0.88),transparent); padding: 20px 14px 10px; font-family: var(--font-sans); font-size: 0.67rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,250,248,0.85); opacity: 0; transition: opacity 0.3s; }
.ec-lp-gitem:hover .ec-lp-gitem-cap { opacity: 1; }

/* Mid-Page CTA Band */
.ec-lp-band { background: var(--green); padding: 64px 32px; text-align: center; }
.ec-lp-band h3 { font-family: var(--font-serif); font-size: clamp(1.7rem,3vw,2.4rem); color: var(--cream); font-weight: 300; margin-bottom: 12px; }
.ec-lp-band h3 em { color: var(--gold); font-style: italic; }
.ec-lp-band p { color: rgba(250,250,248,0.82); max-width: 580px; margin: 0 auto 32px; line-height: 1.7; }
.ec-lp-band-btn { display: inline-block; background: var(--gold); color: var(--dark); font-family: var(--font-sans); font-weight: 700; font-size: 0.73rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 16px 44px; text-decoration: none; transition: background 0.25s; }
.ec-lp-band-btn:hover { background: var(--gold-dk); }

/* Why EC Scaping */
.ec-lp-why { background: var(--green-dk); padding: 100px 32px; }
.ec-lp-why-inner { max-width: 1200px; margin: 0 auto; }
.ec-lp-why h2 { font-family: var(--font-serif); font-size: clamp(2rem,4vw,2.8rem); color: var(--cream); font-weight: 300; margin-bottom: 64px; text-align: center; }
.ec-lp-why h2 em { color: var(--gold); font-style: italic; }
.ec-lp-why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; }
.ec-lp-why-card { border-top: 2px solid rgba(232,168,85,0.28); padding-top: 30px; }
.ec-lp-why-num { font-family: var(--font-serif); font-size: 3rem; color: var(--gold); font-weight: 300; line-height: 1; display: block; margin-bottom: 10px; opacity: 0.6; }
.ec-lp-why-card h4 { font-family: var(--font-sans); font-size: 0.77rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream); margin-bottom: 14px; }
.ec-lp-why-card p { color: rgba(250,250,248,0.7); font-size: 0.93rem; line-height: 1.78; }

/* Service Areas Section */
.ec-lp-areas { background: #f0ede8; padding: 80px 32px; }
.ec-lp-areas-inner { max-width: 900px; margin: 0 auto; }
.ec-lp-areas h2 { font-family: var(--font-serif); font-size: clamp(1.8rem,3vw,2.4rem); color: var(--dark); font-weight: 300; margin-bottom: 36px; text-align: center; }
.ec-lp-areas h2 em { color: var(--green); font-style: italic; }
.ec-lp-areas p { color: #5a5a5a; line-height: 1.9; margin-bottom: 22px; font-size: 1rem; }
.ec-lp-areas strong { color: var(--dark); font-weight: 700; }

/* Testimonials */
.ec-lp-testi { background: var(--cream); padding: 100px 32px; }
.ec-lp-testi-inner { max-width: 1200px; margin: 0 auto; }
.ec-lp-testi h2 { font-family: var(--font-serif); font-size: clamp(1.8rem,3vw,2.4rem); color: var(--dark); font-weight: 300; margin-bottom: 56px; text-align: center; }
.ec-lp-testi h2 em { color: var(--green); font-style: italic; }
.ec-lp-testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.ec-lp-tcard { background: #fff; border-left: 3px solid var(--gold); padding: 36px 32px; transition: box-shadow 0.25s; }
.ec-lp-tcard:hover { box-shadow: 0 12px 40px rgba(58,90,74,0.12); }
.ec-lp-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0; margin-bottom: 20px; display: block; }
.ec-lp-tcard blockquote { font-family: var(--font-serif); font-size: 1.05rem; font-style: italic; color: var(--dark); line-height: 1.7; margin: 0 0 24px; }
.ec-lp-tcard cite { font-family: var(--font-sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); display: block; }
.ec-lp-tcard cite span { color: var(--gray); font-weight: 400; letter-spacing: 0; text-transform: none; display: block; margin-top: 4px; }

/* FAQ */
.ec-lp-faq { background: var(--dark); padding: 100px 32px; }
.ec-lp-faq-inner { max-width: 860px; margin: 0 auto; }
.ec-lp-faq h2 { font-family: var(--font-serif); font-size: clamp(1.8rem,3vw,2.4rem); color: var(--cream); font-weight: 300; margin-bottom: 56px; text-align: center; }
.ec-lp-faq h2 em { color: var(--gold); font-style: italic; }
.ec-lp-faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.ec-lp-faq-q { width: 100%; background: none; border: none; color: var(--cream); font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400; text-align: left; padding: 24px 48px 24px 0; cursor: pointer; position: relative; line-height: 1.4; }
.ec-lp-faq-q::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--gold); font-family: var(--font-sans); font-weight: 300; transition: transform 0.3s; }
.ec-lp-faq-item.open .ec-lp-faq-q::after { content: '−'; }
.ec-lp-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.ec-lp-faq-item.open .ec-lp-faq-a { max-height: 600px; }
.ec-lp-faq-a p { color: rgba(250,250,248,0.75); line-height: 1.85; padding-bottom: 24px; font-size: 0.97rem; }

/* Final CTA with form */
.ec-lp-final { background: var(--green-dk); padding: 100px 32px; text-align: center; }
.ec-lp-final h2 { font-family: var(--font-serif); font-size: clamp(2rem,4vw,3rem); color: var(--cream); font-weight: 300; margin-bottom: 16px; }
.ec-lp-final h2 em { color: var(--gold); font-style: italic; }
.ec-lp-final > p { color: rgba(250,250,248,0.8); font-size: 1.05rem; max-width: 600px; margin: 0 auto 48px; line-height: 1.75; }

/* Responsive */
@media (max-width: 1024px) {
    .ec-lp-detail-inner { grid-template-columns: 1fr; gap: 48px; }
    .ec-lp-detail-inner.rev { direction: ltr; }
    .ec-lp-detail-img img { height: 380px; }
    .ec-lp-why-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .ec-lp-testi-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
}
@media (max-width: 768px) {
    .ec-lp-gallery { grid-template-columns: repeat(2,1fr); }
    .ec-lp-gitem.wide { grid-column: span 2; aspect-ratio: 2/1; }
    .ec-lp-gitem.tall { grid-row: span 1; aspect-ratio: 1; }
    .ec-lp-why-grid { grid-template-columns: 1fr; }
    .ec-lp-bullets { grid-template-columns: 1fr; }
    .ec-trust-bar-inner { justify-content: center; }
}

/* ============================================================
   JOBBER EMBED FORM STYLES
   ============================================================ */

/* Jobber iframe container reset — let Jobber control the height */
.ec-hero-form-wrap .jobber-embed-block,
.ec-lp-final .ec-hero-form-wrap .jobber-embed-block { 
    width: 100%; 
}

/* Jobber's CSS link loads its own iframe styles; ensure it renders full-width */
.ec-hero-form-wrap iframe,
.ec-hero-form-wrap > div > iframe {
    width: 100% !important;
    border: none !important;
    display: block;
}

/* Page hero — allow height to grow naturally with Jobber iframe */
.ec-page-hero {
    height: auto !important;
    min-height: 100vh;
    overflow: visible !important;
    padding-bottom: 120px !important;
}

/* Keep homepage hero tall even without fixed height */
.ec-hero {
    min-height: 100vh;
}

/* Form wrap — max-width / padding already set in primary rule above */

/* ============================================================
   MOBILE FORM REPOSITIONING
   On mobile: hero shows image + text only; form flows below
   as its own white section. Desktop: unchanged.
   ============================================================ */
@media (max-width: 768px) {

    /* ── Homepage hero (.ec-hero) ──────────────────────────── */
    .ec-hero {
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
        flex-direction: column !important;
        padding: 0 !important;
    }
    .ec-hero-bg {
        position: absolute !important;
        top: 0 !important; left: 0 !important; right: 0 !important;
        bottom: auto !important;
        height: 520px !important;
    }
    .ec-hero-content {
        min-height: 520px;
        width: 100%;
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 120px 24px 56px;
    }
    .ec-hero-scroll { display: none !important; }

    /* ── Inner page hero (.ec-page-hero) ───────────────────── */
    .ec-page-hero {
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
        flex-direction: column !important;
        padding: 0 !important;
    }
    .ec-page-hero-bg {
        position: absolute !important;
        top: 0 !important; left: 0 !important; right: 0 !important;
        bottom: auto !important;
        height: 380px !important;
    }
    .ec-page-hero-content {
        min-height: 380px;
        width: 100%;
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 100px 24px 40px;
    }

    /* ── Form below hero — both hero types ─────────────────── */
    .ec-hero .ec-hero-form-wrap,
    .ec-page-hero .ec-hero-form-wrap {
        position: relative !important;
        z-index: 10;
        background: var(--cream) !important;
        border: none !important;
        border-top: 3px solid var(--gold) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        padding: 40px 24px 48px !important;
        margin: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    .ec-hero .ec-hero-form-label,
    .ec-page-hero .ec-hero-form-label {
        color: var(--green) !important;
    }
}

/* ============================================================
   COMMERCIAL PAGE STYLES
   ============================================================ */

/* Hero credential row */
.ec-comm-cred-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 24px;
    justify-content: center;
}
.ec-comm-cred-row span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(232,168,85,0.35);
    padding: 7px 16px;
}
.ec-comm-cred-row span i { color: var(--gold); }

/* Who We Serve */
.ec-comm-clients { background: #fff; padding: 100px 32px; }
.ec-comm-clients-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.ec-comm-clients h2 { font-family: var(--font-serif); font-size: clamp(2rem,4vw,2.8rem); color: var(--dark); font-weight: 300; margin-bottom: 64px; }
.ec-comm-clients h2 em { font-style: italic; color: var(--green); }
.ec-comm-client-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: left; }
.ec-comm-client-card { padding: 36px 28px; border-top: 3px solid var(--gold); }
.ec-comm-client-icon { width: 44px; height: 44px; background: rgba(58,90,74,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 1rem; margin-bottom: 20px; }
.ec-comm-client-card h4 { font-family: var(--font-sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dark); margin-bottom: 14px; }
.ec-comm-client-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.78; }

/* Commercial services grid (inside .ec-lp-intro dark bg) */
.ec-comm-svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 56px; text-align: left; }
.ec-comm-svc-item { padding: 28px 24px; border: 1px solid rgba(232,168,85,0.2); background: rgba(255,255,255,0.04); }
.ec-comm-svc-icon { width: 40px; height: 40px; background: rgba(232,168,85,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 0.95rem; margin-bottom: 16px; }
.ec-comm-svc-item h4 { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream); margin-bottom: 12px; }
.ec-comm-svc-item p { font-size: 0.88rem; color: rgba(250,250,248,0.7); line-height: 1.75; }

/* Commercial process */
.ec-comm-process { background: #fff; padding: 100px 32px; }
.ec-comm-process-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.ec-comm-process h2 { font-family: var(--font-serif); font-size: clamp(2rem,4vw,2.8rem); color: var(--dark); font-weight: 300; margin-bottom: 16px; }
.ec-comm-process h2 em { font-style: italic; color: var(--green); }
.ec-comm-process-sub { color: var(--gray); max-width: 580px; margin: 0 auto 64px; line-height: 1.7; }
.ec-comm-steps { display: flex; flex-direction: column; gap: 0; }
.ec-comm-step { display: flex; gap: 40px; align-items: flex-start; padding: 40px 0; border-bottom: 1px solid rgba(58,90,74,0.1); text-align: left; }
.ec-comm-step:last-child { border-bottom: none; }
.ec-comm-step-num { font-family: var(--font-serif); font-size: 3.5rem; font-weight: 300; color: var(--gold); line-height: 1; flex-shrink: 0; width: 72px; opacity: 0.5; }
.ec-comm-step-body h4 { font-family: var(--font-sans); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dark); margin-bottom: 12px; }
.ec-comm-step-body p { color: var(--gray); font-size: 0.95rem; line-height: 1.82; }

/* Objection crusher */
.ec-comm-objections { background: var(--green-dk); padding: 100px 32px; }
.ec-comm-obj-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.ec-comm-objections h2 { font-family: var(--font-serif); font-size: clamp(1.9rem,3.5vw,2.7rem); color: var(--cream); font-weight: 300; margin-bottom: 16px; }
.ec-comm-objections h2 em { font-style: italic; color: var(--gold); }
.ec-comm-obj-sub { color: rgba(250,250,248,0.72); max-width: 660px; margin: 0 auto 64px; line-height: 1.75; font-size: 1rem; }
.ec-comm-obj-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; text-align: left; }
.ec-comm-obj-item { background: rgba(255,255,255,0.05); border-left: 3px solid var(--gold); padding: 28px 28px 24px; }
.ec-comm-obj-q { font-family: var(--font-sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.ec-comm-obj-q i { flex-shrink: 0; margin-top: 1px; }
.ec-comm-obj-a { font-size: 0.93rem; color: rgba(250,250,248,0.75); line-height: 1.78; }
.ec-comm-obj-a strong { color: var(--cream); }

/* Comparison table */
.ec-comm-compare { background: #f0ede8; padding: 100px 32px; }
.ec-comm-compare-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.ec-comm-compare h2 { font-family: var(--font-serif); font-size: clamp(1.8rem,3.5vw,2.5rem); color: var(--dark); font-weight: 300; margin-bottom: 56px; }
.ec-comm-compare h2 em { font-style: italic; color: var(--green); }
.ec-comm-table-wrap { overflow-x: auto; }
.ec-comm-table { width: 100%; border-collapse: collapse; text-align: left; }
.ec-comm-table thead tr { background: var(--dark); }
.ec-comm-table th { font-family: var(--font-sans); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 16px 20px; color: var(--cream); }
.ec-comm-table th.ec-col-us { color: var(--gold); }
.ec-comm-table th.ec-col-other { color: rgba(250,250,248,0.5); }
.ec-comm-table tbody tr { border-bottom: 1px solid rgba(58,90,74,0.1); }
.ec-comm-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.5); }
.ec-comm-table tbody tr:hover { background: rgba(58,90,74,0.05); }
.ec-comm-table td { padding: 16px 20px; font-size: 0.9rem; color: var(--dark); line-height: 1.4; }
.ec-comm-table td.ec-col-us { background: rgba(58,90,74,0.05); text-align: center; }
.ec-comm-table td.ec-col-other { text-align: center; color: var(--gray); }
.ec-tbl-yes { color: var(--green); font-size: 1rem; }
.ec-tbl-no { color: #c0392b; font-size: 1rem; }
.ec-tbl-maybe { color: #e67e22; font-size: 0.9rem; }

/* Responsive — commercial */
@media (max-width: 1100px) {
    .ec-comm-client-grid { grid-template-columns: repeat(2,1fr); }
    .ec-comm-svc-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    .ec-comm-client-grid { grid-template-columns: 1fr; }
    .ec-comm-svc-grid { grid-template-columns: 1fr; }
    .ec-comm-obj-grid { grid-template-columns: 1fr; }
    .ec-comm-step { flex-direction: column; gap: 12px; }
    .ec-comm-step-num { font-size: 2rem; width: auto; }
    .ec-comm-cred-row { justify-content: flex-start; }
    .ec-comm-table th, .ec-comm-table td { padding: 12px 12px; font-size: 0.8rem; }
    .ec-comm-table th { font-size: 0.65rem; }
}

/* ============================================================
   STICKY MOBILE CTA (all pages)
   ============================================================ */
.ec-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--dark);
    border-top: 2px solid var(--gold);
    padding: 12px 20px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.35);
}
.ec-sticky-cta-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cream);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    flex: 1;
}
.ec-sticky-cta-phone i { color: var(--gold); font-size: 1rem; }
.ec-sticky-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f5c070 0%, var(--gold) 45%, #b87828 100%);
    color: var(--dark);
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 20px;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(232,168,85,0.25);
}
@media (max-width: 768px) {
    .ec-sticky-cta { display: flex; }
    body { padding-bottom: 68px; }
}
