/*
Theme Name: Divi Child
Theme URI: https://webcroo.com/
Description: Child Theme for Divi
Author: Your Name
Author URI: https://webcroo.com/
Template: Divi
Version: 1.0
*/

/* Import Parent Theme Style */
@import url("../Divi/style.css");

/* Custom CSS starts here */

body {
    background-color: #ffffff;
}


/* ═══════════════════════════════════════════════════════════════════════════
    LEAFYLOOM DESIGN SYSTEM v2.0
    Corporate CSS Standards · Divi 4 Compatible · 2025
    Last Updated: 2025-01-15
    Maintainer: Development Team
═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────
    1. DESIGN TOKENS (CSS Custom Properties)
    Organized by category for easy maintenance
   ───────────────────────────────────────────────────────────────────────── */

:root {
    /* ── Color Palette ─────────────────────────────────────────────────── */
    --ll-color-primary: #1a2e1a;
    /* Forest Green */
    --ll-color-primary-light: #2d4a2a;
    /* Light Forest */
    --ll-color-secondary: #7a9e6e;
    /* Sage */
    --ll-color-accent: #c9a84c;
    /* Gold */
    --ll-color-neutral-dark: #2c2c2c;
    /* Charcoal */
    --ll-color-neutral: #5a5a5a;
    /* Ash */
    --ll-color-neutral-light: #9a9a9a;
    /* Mist */
    --ll-color-background: #fdfaf4;
    /* Cream BG */
    --ll-color-surface: #f5f0e8;
    /* Cream Surface */
    --ll-color-white: #ffffff;
    /* White */

    /* ── Typography Scale ───────────────────────────────────────────────── */
    --ll-font-display: 'Fraunces', Georgia, serif;
    --ll-font-serif: 'Cormorant Garamond', Georgia, serif;
    --ll-font-sans: 'Jost', system-ui, sans-serif;

    --ll-font-size-xs: clamp(0.75rem, 0.7vw, 0.875rem);
    --ll-font-size-sm: clamp(0.875rem, 0.9vw, 1rem);
    --ll-font-size-base: clamp(0.95rem, 1vw, 1.05rem);
    --ll-font-size-lg: clamp(1.1rem, 1.5vw, 1.5rem);
    --ll-font-size-xl: clamp(1.4rem, 2.5vw, 2.5rem);
    --ll-font-size-2xl: clamp(1.75rem, 3vw, 2.2rem);
    --ll-font-size-3xl: clamp(2.2rem, 4vw, 2.5rem);
    --ll-font-size-4xl: clamp(2.8rem, 5vw, 3.5rem);

    /* ── Spacing System ────────────────────────────────────────────────── */
    --ll-spacing-xs: 0.5rem;
    /* 8px */
    --ll-spacing-sm: 1rem;
    /* 16px */
    --ll-spacing-md: 1.5rem;
    /* 24px */
    --ll-spacing-lg: 2.5rem;
    /* 40px */
    --ll-spacing-xl: 4rem;
    /* 64px */
    --ll-spacing-2xl: 6rem;
    /* 96px */

    /* ── Breakpoints ───────────────────────────────────────────────────── */
    --ll-breakpoint-sm: 640px;
    --ll-breakpoint-md: 768px;
    --ll-breakpoint-lg: 968px;
    --ll-breakpoint-xl: 1200px;
    --ll-breakpoint-2xl: 1400px;

    /* ── Border Radius ─────────────────────────────────────────────────── */
    --ll-radius-sm: 2px;
    --ll-radius-md: 4px;
    --ll-radius-lg: 8px;
    --ll-radius-xl: 16px;
    --ll-radius-full: 9999px;

    /* ── Shadows ───────────────────────────────────────────────────────── */
    --ll-shadow-sm: 0 4px 15px rgba(26, 46, 26, 0.08);
    --ll-shadow-md: 0 12px 30px rgba(26, 46, 26, 0.1);
    --ll-shadow-lg: 0 20px 40px rgba(26, 46, 26, 0.15);
    --ll-shadow-xl: 0 20px 60px rgba(26, 46, 26, 0.2);

    /* ── Transitions ───────────────────────────────────────────────────── */
    --ll-transition-fast: 0.2s ease;
    --ll-transition-base: 0.3s ease;
    --ll-transition-slow: 0.5s ease;


    /* Colours */
    --ll-forest: #1a2e1a;
    --ll-moss: #009C4B;
    --ll-sage: #7a9e6e;
    --ll-gold: #c9a84c;
    --ll-charcoal: #2c2c2c;
    --ll-ash: #5a5a5a;
    --ll-mist: #9a9a9a;
    --ll-cream: #f5f0e8;
    --ll-bg: #fdfaf4;



    --slate: var(--ll-color-primary);
    --slate-lt: var(--ll-color-surface);
    --emerald: var(--ll-moss);
    --emerald-lt: rgba(0, 156, 75, 0.1);
    --cream: var(--ll-color-background);
    --white: var(--ll-color-white);
    --gold: var(--ll-color-accent);
    --border: rgba(0, 0, 0, 0.08);
}

/* ─────────────────────────────────────────────────────────────────────────
    2. CSS RESET & BASE STYLES
    Normalized reset for cross-browser consistency
   ───────────────────────────────────────────────────────────────────────── */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--ll-font-sans);
    font-size: var(--ll-font-size-base);
    font-weight: 400;
    line-height: 1.75;
    color: var(--ll-color-neutral-dark);
    background-color: var(--ll-color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--ll-color-secondary);
    text-decoration: none;
    transition: color var(--ll-transition-fast);
}

a:hover {
    color: var(--ll-color-primary);
}

/* ─────────────────────────────────────────────────────────────────────────
    3. TYPOGRAPHY SYSTEM
    Consistent heading and text styles
   ───────────────────────────────────────────────────────────────────────── */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--ll-font-sans);
    font-weight: 300;
    color: var(--ll-color-primary);
    letter-spacing: -0.01em;
    line-height: 1.1;
    margin-bottom: var(--ll-spacing-md);
}

h1 {
    font-size: var(--ll-font-size-3xl);
}

h2 {
    font-size: var(--ll-font-size-2xl);
}

h3 {
    font-size: var(--ll-font-size-xl);
}

h4 {
    font-size: var(--ll-font-size-lg);
    font-weight: 400;
}

h5 {
    font-family: var(--ll-font-sans);
    font-size: var(--ll-font-size-lg);
    font-weight: 500;
}

h6 {
    font-family: var(--ll-font-sans);
    font-size: var(--ll-font-size-base);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

p {
    font-size: var(--ll-font-size-lg);
    margin-bottom: var(--ll-spacing-md);
}

/* ─────────────────────────────────────────────────────────────────────────
    4. UTILITY CLASSES
    Reusable helper classes for common patterns
   ───────────────────────────────────────────────────────────────────────── */

/* Text Colors */
.ll-text-primary {
    color: var(--ll-color-primary) !important;
}

.ll-text-secondary {
    color: var(--ll-color-secondary) !important;
}

.ll-text-accent {
    color: var(--ll-color-accent) !important;
}

.ll-text-neutral {
    color: var(--ll-color-neutral) !important;
}

.ll-text-white {
    color: var(--ll-color-white) !important;
}

/* Background Colors */
.ll-bg-primary {
    background-color: var(--ll-color-primary) !important;
}

.ll-bg-surface {
    background-color: var(--ll-color-surface) !important;
}

.ll-bg-white {
    background-color: var(--ll-color-white) !important;
}

/* Spacing Utilities */
.ll-mt-sm {
    margin-top: var(--ll-spacing-sm) !important;
}

.ll-mt-md {
    margin-top: var(--ll-spacing-md) !important;
}

.ll-mt-lg {
    margin-top: var(--ll-spacing-lg) !important;
}

.ll-mb-sm {
    margin-bottom: var(--ll-spacing-sm) !important;
}

.ll-mb-md {
    margin-bottom: var(--ll-spacing-md) !important;
}

.ll-mb-lg {
    margin-bottom: var(--ll-spacing-lg) !important;
}

.ll-p-sm {
    padding: var(--ll-spacing-sm) !important;
}

.ll-p-md {
    padding: var(--ll-spacing-md) !important;
}

.ll-p-lg {
    padding: var(--ll-spacing-lg) !important;
}

/* Display Utilities */
.ll-flex {
    display: flex !important;
}

.ll-grid {
    display: grid !important;
}

.ll-hidden {
    display: none !important;
}

.ll-block {
    display: block !important;
}

/* ─────────────────────────────────────────────────────────────────────────
    5. BUTTON COMPONENTS
    Reusable button styles with variants
   ───────────────────────────────────────────────────────────────────────── */

.ll-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--ll-spacing-xs);
    font-family: var(--ll-font-sans);
    font-size: var(--ll-font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: var(--ll-spacing-sm) var(--ll-spacing-lg);
    border-radius: var(--ll-radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--ll-transition-base);
    text-decoration: none;
}

.ll-btn--primary {
    background-color: var(--ll-color-primary);
    color: var(--ll-color-surface);
}

.ll-btn--primary:hover {
    background-color: var(--ll-color-primary-light);
    transform: translateY(-2px);
}

.ll-btn--secondary {
    background-color: transparent;
    color: var(--ll-color-primary);
    border: 1.5px solid var(--ll-color-primary);
}

.ll-btn--secondary:hover {
    background-color: var(--ll-color-primary);
    color: var(--ll-color-surface);
}

.ll-btn--accent {
    background-color: var(--ll-color-accent);
    color: var(--ll-color-primary);
}

.ll-btn--accent:hover {
    background-color: #d4b85c;
    transform: translateY(-2px);
}

.ll-btn--lg {
    padding: var(--ll-spacing-md) var(--ll-spacing-xl);
    font-size: var(--ll-font-size-base);
}

.ll-btn--ghost {
    background-color: transparent;
    color: var(--ll-color-surface);
    border: 1.5px solid var(--ll-color-surface);
}

.ll-btn--ghost:hover {
    background-color: var(--ll-color-surface);
    color: var(--ll-color-primary);
    transform: translateY(-2px);
}

.ll-btn--outline {
    background-color: transparent;
    color: var(--ll-color-primary);
    border: 1.5px solid var(--ll-color-primary);
}

.ll-btn--outline:hover {
    background-color: var(--ll-color-primary);
    color: var(--ll-color-surface);
    transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────────────────────────
    7. SECTION COMPONENTS
    Standardized section layouts
   ───────────────────────────────────────────────────────────────────────── */

.ll-section {
    padding: var(--ll-spacing-2xl) var(--ll-spacing-sm);
    position: relative;
}

.ll-section--alt {
    background-color: var(--ll-color-surface);
}

.ll-section--dark {
    background-color: var(--ll-color-primary);
    color: var(--ll-color-surface);
}

.ll-section__header {
    text-align: center;
    margin-bottom: var(--ll-spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ll-section__label {
    font-family: var(--ll-font-sans);
    font-size: var(--ll-font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ll-neutral);
    display: block;
    margin-bottom: var(--ll-spacing-sm);
}

.ll-section__title {
    font-family: var(--ll-font-display);
    font-size: var(--ll-font-size-3xl);
    font-weight: 300;
    color: var(--ll-moss);
    line-height: 1.1;
    margin-bottom: var(--ll-spacing-md);
}

.ll-section--dark .ll-section__title {
    color: var(--ll-color-surface);
}

.ll-section__description {
    color: var(--ll-neutral);
    font-size: var(--ll-font-size-lg);
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto;
}

.ll-section--dark .ll-section__description {
    color: rgba(245, 240, 232, 0.85);
}

/* ─────────────────────────────────────────────────────────────────────────
    8. HERO COMPONENT
    Full-width hero sections
   ───────────────────────────────────────────────────────────────────────── */

.ll-hero {
    padding: var(--ll-spacing-2xl) var(--ll-spacing-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ll-hero--dark {
    background: linear-gradient(135deg, var(--ll-color-primary) 0%, var(--ll-color-primary-light) 100%);
    color: var(--ll-color-surface);
}

.ll-hero__content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ll-hero__title {
    font-family: var(--ll-font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--ll-color-surface);
    line-height: 1.05;
    margin-bottom: var(--ll-spacing-md);
}

.ll-hero__title em {
    font-family: var(--ll-font-serif);
    font-style: italic;
    color: var(--ll-color-secondary);
    font-weight: inherit;
}

.ll-hero__description {
    color: rgba(245, 240, 232, 0.85);
    font-size: var(--ll-font-size-lg);
    max-width: 650px;
    margin: 0 auto var(--ll-spacing-lg) auto;
    line-height: 1.8;
    font-weight: 300;
}

.ll-hero__actions {
    display: flex;
    gap: var(--ll-spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────────────────────────────
    9. GRID SYSTEMS
    Responsive grid layouts
   ───────────────────────────────────────────────────────────────────────── */

.ll-grid {
    display: grid;
    gap: var(--ll-spacing-lg);
    max-width: var(--ll-breakpoint-xl);
    margin: 0 auto;
}

.ll-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.ll-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.ll-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ─────────────────────────────────────────────────────────────────────────
    10. RESPONSIVE MEDIA QUERIES
    Organized breakpoint system
   ───────────────────────────────────────────────────────────────────────── */

@media (max-width: 968px) {

    .ll-grid--3,
    .ll-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .ll-section {
        padding: var(--ll-spacing-xl) var(--ll-spacing-sm);
    }
}

@media (max-width: 768px) {

    .ll-grid--2,
    .ll-grid--3,
    .ll-grid--4 {
        grid-template-columns: 1fr;
    }

    .ll-hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .ll-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    :root {
        --ll-spacing-xl: 3rem;
        --ll-spacing-2xl: 4rem;
    }
}

/* ─────────────────────────────────────────────────────────────────────────
    11. DIVI SPECIFIC OVERRIDES
    Scoped overrides for Divi modules
   ───────────────────────────────────────────────────────────────────────── */

.et_pb_text h1,
.et_pb_text h2,
.et_pb_text h3 {
    font-family: var(--ll-font-display) !important;
    color: var(--ll-color-primary) !important;
}

.et_pb_button {
    font-family: var(--ll-font-sans) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    border-radius: var(--ll-radius-sm) !important;
    transition: all var(--ll-transition-base) !important;
}

.et_pb_button:hover {
    transform: translateY(-2px) !important;
}

/* ─────────────────────────────────────────────────────────────────────────
    12. ANIMATIONS & TRANSITIONS
    Reusable animation classes
   ───────────────────────────────────────────────────────────────────────── */

@keyframes ll-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes ll-slide-in {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

.ll-animate-fade {
    animation: ll-fade-in 0.6s ease forwards;
}

.ll-animate-slide {
    animation: ll-slide-in 0.6s ease forwards;
}

.ll-animate-delay-1 {
    animation-delay: 0.1s;
}

.ll-animate-delay-2 {
    animation-delay: 0.2s;
}

.ll-animate-delay-3 {
    animation-delay: 0.3s;
}

/* ─────────────────────────────────────────────────────────────────────────
    13. ACCESSIBILITY
    Focus states and screen reader utilities
   ───────────────────────────────────────────────────────────────────────── */

:focus-visible {
    outline: 2px solid var(--ll-color-secondary);
    outline-offset: 3px;
    border-radius: 2px;
}

.ll-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ─────────────────────────────────────────────────────────────────────────
    14. PRINT STYLES
    Optimized for printing
   ───────────────────────────────────────────────────────────────────────── */

@media print {
    body {
        background: white !important;
        color: black !important;
    }

    .ll-btn,
    nav,
    footer {
        display: none !important;
    }
}




/* ── HERO SECTION SCOPED STYLES ── */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
    background: #111916;
    -webkit-font-smoothing: antialiased;
}

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

/* ── Slides Track ── */
#hero .slider-track {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

#hero .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0s;
    overflow: hidden;
}

#hero .slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* ── Slide Background ── */
#hero .slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

#hero .slide.active .slide-bg {
    transform: scale(1);
}

#hero .slide-bg-1 {
    background-image: url('http://localhost/18-leafyloom/wp-content/uploads/2026/03/slider-image1.jpg');
}

#hero .slide-bg-2 {
    background-image: url('http://localhost/18-leafyloom/wp-content/uploads/2026/03/slider-image2.jpg');
}

#hero .slide-bg-3 {
    background-image: url('http://localhost/18-leafyloom/wp-content/uploads/2026/03/slider-image3.jpg');
}

#hero .slide-bg-4 {
    background-image: url('http://localhost/18-leafyloom/wp-content/uploads/2026/03/slider-image4.jpg');
}

/* ── Gradient overlay ── */
#hero .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(10, 28, 18, 0.82) 0%,
            rgba(10, 28, 18, 0.55) 52%,
            rgba(10, 28, 18, 0.18) 100%);
}

/* ── Slide Content ── */
#hero .slide-content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1080px;
    z-index: 10;
    padding: 80px 20px 0;
}

#hero .slide-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ll-moss);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#hero .slide-eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1.5px;
    background: #52B788;
    flex-shrink: 0;
}

#hero .slide.active .slide-eyebrow {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

/* Word-split heading animation */
#hero .slide-heading {
    font-family: var(--ll-font-sans);
    font-size: clamp(2.5rem, 5.5vw, 2.5rem) !important;
    font-weight: 600;
    line-height: 1.06;
    color: #FFFFFF;
    margin-bottom: 26px;
    overflow: hidden;
}

#hero .slide-heading .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%) skewY(4deg);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

#hero .slide-heading .word em {
    font-style: bold;
    font-family: var(--ll-font-sans);
    color: var(--ll-moss);
    font-weight: 300;
}

#hero .slide.active .slide-heading .word {
    opacity: 1;
    transform: translateY(0) skewY(0);
}

/* Staggered delays */
#hero .slide.active .slide-heading .word:nth-child(1) {
    transition-delay: 0.3s;
}

#hero .slide.active .slide-heading .word:nth-child(2) {
    transition-delay: 0.42s;
}

#hero .slide.active .slide-heading .word:nth-child(3) {
    transition-delay: 0.54s;
}

#hero .slide.active .slide-heading .word:nth-child(4) {
    transition-delay: 0.66s;
}

#hero .slide.active .slide-heading .word:nth-child(5) {
    transition-delay: 0.78s;
}

#hero .slide.active .slide-heading .word:nth-child(6) {
    transition-delay: 0.90s;
}

#hero .slide.active .slide-heading .word:nth-child(7) {
    transition-delay: 1.02s;
}

#hero .slide.active .slide-heading .word:nth-child(8) {
    transition-delay: 1.14s;
}

#hero .slide-desc {
    font-size: 1.25rem;
    line-height: 1.4rem;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 300;
    max-width: 460px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

#hero .slide.active .slide-desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.1s;
}

#hero .slide-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    flex-wrap: wrap;
}

#hero .slide.active .slide-actions {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.3s;
}

/* Buttons — hero slider outline style */
#hero .btn-forest,
#hero .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--ll-color-surface);
    padding: 14px 28px;
    border-radius: var(--ll-radius-sm);
    font-family: var(--ll-font-sans);
    font-weight: 600;
    font-size: var(--ll-font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border: 1.5px solid var(--ll-color-surface);
    transition: all var(--ll-transition-base);
}

#hero .btn-forest:hover,
#hero .btn-ghost:hover {
    background: var(--ll-color-surface);
    color: var(--ll-color-primary);
    transform: translateY(-2px);
}

/* Outline style for Divi buttons in hero slider */
#hero .et_pb_button {
    background: transparent !important;
    border: 1.5px solid var(--ll-color-surface) !important;
    color: var(--ll-color-surface) !important;
}

#hero .et_pb_button:hover {
    background: var(--ll-color-surface) !important;
    color: var(--ll-color-primary) !important;
    transform: translateY(-2px) !important;
}

/* Outline style for any button in slide actions */
#hero .slide-actions button,
#hero .slide-actions a {
    background: transparent !important;
    border: 1.5px solid var(--ll-color-surface) !important;
    color: var(--ll-color-surface) !important;
}

#hero .slide-actions button:hover,
#hero .slide-actions a:hover {
    background: var(--ll-color-surface) !important;
    color: var(--ll-color-primary) !important;
    transform: translateY(-2px) !important;
}


/* ── Slide count decoration ── */
#hero .hero-slide-count {
    position: absolute;
    top: 50%;
    right: 3.5%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

#hero .hsc-current {
    /* font-family: 'Cormorant Garamond', Georgia, serif; */
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    transition: color 0.4s;
}

#hero .hsc-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

#hero .hsc-total {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.06em;
}

/* ── HERO CONTROLS ── */
#hero .hero-controls {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    align-items: stretch;
    height: 88px;
    max-width: 1080px;
    width: 100%;
}

#hero .ctrl-tabs {
    display: flex;
    align-items: stretch;
    padding: 0 8%;
    gap: 0;
    flex: 1;
    overflow-x: auto;
    /* Scrollable on mobile */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

#hero .ctrl-tabs::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

#hero .ctrl-tab {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 28px 0 0;
    cursor: pointer;
    border: none;
    background: transparent;
    text-align: left;
    transition: opacity 0.3s;
    opacity: 0.45;
    white-space: nowrap;
    flex-shrink: 0;
}

#hero .ctrl-tab:hover {
    opacity: 0.75;
}

#hero .ctrl-tab.active {
    opacity: 1;
}

#hero .ctrl-tab-num {
    /* font-family: 'Cormorant Garamond', Georgia, serif; */
    font-size: 1.35rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    flex-shrink: 0;
}

#hero .ctrl-tab-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #95D5B2;
    display: block;
    margin-bottom: 1px;
}

#hero .ctrl-tab-sub {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    white-space: nowrap;
}

#hero .ctrl-tab-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 28px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

#hero .ctrl-tab-fill {
    position: absolute;
    inset: 0 100% 0 0;
    background: linear-gradient(90deg, #52B788, #95D5B2);
    border-radius: 2px;
    transition: right 0s linear;
}

#hero .ctrl-tab.active .ctrl-tab-fill {
    right: 0;
    transition: right 5.5s linear;
}

#hero .ctrl-arrows {
    display: flex;
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 5%;
    gap: 0;
    flex-shrink: 0;
}

#hero .ctrl-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    transition: all 0.25s;
    margin: 0 6px;
    flex-shrink: 0;
}

#hero .ctrl-arrow:hover {
    background: rgba(82, 183, 136, 0.2);
    border-color: #52B788;
    color: #FFFFFF;
    transform: scale(1.05);
}

#hero .ctrl-arrow svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#hero .hero-controls-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 88px;
    background: linear-gradient(to top, rgba(6, 18, 12, 0.88) 0%, transparent 100%);
    z-index: 29;
    pointer-events: none;
}

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 768px) {
    #hero .slide-content {
        position: absolute;
        top: 30%;
        left: 5%;
        right: 5%;
        transform: translateY(-30%);
        width: auto;
        max-width: none;
        text-align: left;
        padding-top: 60px;
    }

    #hero .slide-heading {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    #hero .slide-desc {
        font-size: 0.9rem;
        max-width: 100%;
        margin-bottom: 24px;
    }

    #hero .slide-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    #hero .btn-forest,
    #hero .btn-ghost {
        justify-content: center;
        width: 100%;
        padding: 12px 20px;
    }

    /* Hide floating badges on mobile to prevent overlap */
    #hero .hero-float-badge {
        display: none;
    }

    /* Adjust controls for mobile */
    #hero .hero-controls {
        height: auto;
        flex-direction: column;
        background: linear-gradient(to top, rgba(6, 18, 12, 0.95) 0%, transparent 100%);
        padding-bottom: 20px;
    }

    #hero .ctrl-tabs {
        padding: 20px 5%;
        width: 100%;
        justify-content: flex-start;
    }

    #hero .ctrl-tab {
        padding: 0 20px 0 0;
    }

    #hero .ctrl-tab-info {
        display: none;
        /* Hide text on very small screens if needed, or keep */
    }

    #hero .ctrl-tab-num {
        font-size: 1.1rem;
    }

    #hero .ctrl-arrows {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        justify-content: center;
        padding: 15px 0;
    }

    #hero .hero-slide-count {
        display: none;
    }
}

/* Footer */

.ll-footer {
    background: var(--ll-moss);
    color: var(--ll-cream);
    padding: 5rem 1rem 2rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ll-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    max-width: 1080px;
    margin: 0 auto 4rem auto;
}

.ll-footer-brand h3 {
    font-family: var(--ll-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--ll-cream);
    margin-bottom: 1.5rem;
}

.ll-footer-brand p {
    color: rgba(245, 240, 232, 0.8);
    font-size: var(--ll-font-size-base);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.ll-social-links {
    display: flex;
    gap: 1rem;
}

.ll-social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ll-cream);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.ll-social-links a:hover {
    background: var(--ll-sage);
    border-color: var(--ll-sage);
    transform: translateY(-3px);
}

.ll-footer-column h4 {
    font-family: var(--ll-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ll-cream);
    margin-bottom: 2rem;
}

.ll-footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ll-footer-column li {
    margin-bottom: 1rem;
}

.ll-footer-column a {
    color: rgba(245, 240, 232, 0.8);
    text-decoration: none;
    font-size: var(--ll-font-size-base);
    transition: color 0.3s;
    font-family: var(--ll-sans);
}

.ll-footer-column a:hover {
    color: var(--ll-sage);
}

.ll-footer-contact p {
    color: rgba(245, 240, 232, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.ll-footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.6);
    font-family: var(--ll-sans);

}

.ll-footer-bottom p {
    font-size: var(--ll-font-size-base);
}

/* Hide duplicate homepage footer embedded inside page content */
body.home .entry-content footer.ll-footer {
    display: none;
}

/* Footer mobile responsiveness */
@media (max-width: 768px) {
    .ll-footer {
        padding: 3rem 1rem 2rem;
    }

    .ll-footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .ll-footer-brand {
        text-align: center;
    }

    .ll-footer-brand p {
        margin: 0 auto 1.5rem;
        max-width: 100%;
    }

    .ll-social-links {
        justify-content: center;
    }

    .ll-footer-column {
        width: 100%;
    }

    .ll-footer-column h4 {
        margin-bottom: 1rem;
    }

    .ll-footer-contact p,
    .ll-footer-column a {
        font-size: 0.95rem;
    }

    .ll-footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }
}

/* FOOTER LIST */
.ll-footer-links,
.ll-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ALIGN ICON + TEXT */
.ll-footer-links li,
.ll-footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: var(--ll-font-size-base);
}

/* ICON STYLE */
.ll-footer-links .material-icons,
.ll-footer-contact .material-icons {
    font-size: 18px;
    color: var(--ll-color-white);
    opacity: 0.9;
}

/* HOVER EFFECT */
.ll-footer-links li:hover {
    transform: translateX(5px);
    transition: 0.3s;
}

/* OPTIONAL: softer color */
.ll-footer-links li {
    color: rgba(255, 255, 255, 0.85);
}





/* ═══════════════════════════════════════
   SERVICES SECTION (FINAL)
═══════════════════════════════════════ */

/* SECTION */
.ll-section {
    padding: 100px 20px;
}

.ll-section--alt {
    background: #f7f5ef;
}

.ll-section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

/* CONTAINER (better width for 2x2) */
.ll-container {
    max-width: 1000px;
    margin: 0 auto;
}


/* ═══════════════════════════════════════
   GRID (2x2 Desktop)
═════════════════════════════════════════ */
.ll-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Tablet */
@media (max-width: 980px) {
    .ll-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ll-grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ll-section {
        padding: 70px 15px;
    }
}


.ll-social-links a,
.ll-footer-contact .material-icons {
    font-size: 20px;
    vertical-align: middle;
    margin-right: 8px;
}

.ll-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}



/* ─────────────────────────────────────────────────────────────────────────
    15. WOOCOMMERCE STYLES
    Integrating the shop with the default LeafyLoom design system
   ───────────────────────────────────────────────────────────────────────── */

/* WooCommerce form inputs — fully styled in assets/css/ll-forms.css */

.woocommerce-products-header__title.page-title {
    font-family: var(--ll-font-display);
    color: var(--ll-color-primary);
    font-size: var(--ll-font-size-3xl);
    font-weight: 300;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--ll-font-sans);
    color: var(--ll-color-primary);
    font-size: var(--ll-font-size-lg);
    font-weight: 500;
    margin-top: var(--ll-spacing-sm);
}

.woocommerce ul.products li.product .price {
    color: var(--ll-color-accent);
    font-size: var(--ll-font-size-base);
    font-weight: 600;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background-color: var(--ll-color-primary) !important;
    color: var(--ll-color-white) !important;
    font-family: var(--ll-font-sans);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--ll-radius-sm);
    padding: var(--ll-spacing-sm) var(--ll-spacing-lg) !important;
    transition: all var(--ll-transition-base);
    border: none;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background-color: var(--ll-color-primary-light) !important;
    transform: translateY(-2px);
    color: var(--ll-color-surface) !important;
}

/* Sale Badge */
.woocommerce span.onsale {
    background-color: var(--ll-color-accent) !important;
    color: var(--ll-color-primary) !important;
    font-weight: 600;
    font-family: var(--ll-font-sans);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--ll-color-accent);
    font-size: var(--ll-font-size-xl);
}

.woocommerce div.product .product_title {
    font-family: var(--ll-font-display);
    color: var(--ll-color-primary);
    font-weight: 300;
    font-size: var(--ll-font-size-3xl);
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    border-top-color: var(--ll-color-primary);
    background-color: var(--ll-color-surface);
    color: var(--ll-color-primary);
}

.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--ll-color-primary);
}

/* Pagination */
.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--ll-color-primary);
    color: var(--ll-color-white);
}

.woocommerce nav.woocommerce-pagination ul li a {
    color: var(--ll-color-primary);
}

/* ─────────────────────────────────────────────────────────────────────────
    16. WOOCOMMERCE SIDEBAR & FILTERS
    Customizing filter blocks to match the LeafyLoom Design System
   ───────────────────────────────────────────────────────────────────────── */

/* Widget Headings */
.woocommerce-sidebar .widget-title,
.et_pb_widget h2,
.et_pb_widget h3,
.et_pb_widget h4.widgettitle,
.wc-block-components-panel__button {
    font-family: var(--ll-font-display) !important;
    color: var(--ll-color-primary) !important;
    font-size: var(--ll-font-size-lg) !important;
    font-weight: 300 !important;
    margin-bottom: var(--ll-spacing-sm) !important;
    line-height: 1.2 !important;
}

/* Price Slider Track & Handle */
.woocommerce .widget_price_filter .ui-slider .ui-slider-range,
.wc-block-components-price-slider__range-input-wrapper {
    background-color: var(--ll-color-primary) !important;
    --range-color: var(--ll-color-primary) !important;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle,
.wc-block-components-price-slider__control {
    border: 2px solid var(--ll-color-primary) !important;
    background-color: var(--ll-color-white) !important;
    border-radius: 50% !important;
}

.woocommerce .widget_price_filter .ui-slider,
.wc-block-components-price-slider__track {
    background-color: var(--ll-color-neutral-light) !important;
}

/* Price Inputs */
.wc-block-formatted-money-amount {
    font-family: var(--ll-font-sans);
    color: var(--ll-color-neutral);
}

.wc-block-components-price-slider__amount input {
    border-radius: var(--ll-radius-sm) !important;
    border: 1px solid var(--ll-color-neutral-light) !important;
    padding: var(--ll-spacing-xs) var(--ll-spacing-sm) !important;
}

/* Filter Checkboxes */
.woocommerce .widget input[type="checkbox"],
.wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox] {
    accent-color: var(--ll-color-primary);
    cursor: pointer;
    border-radius: var(--ll-radius-sm);
    border: 1px solid var(--ll-color-neutral-light);
}

.wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]:checked {
    background-color: var(--ll-color-primary) !important;
    border-color: var(--ll-color-primary) !important;
}

/* Active Filter Chips */
.wc-block-components-chip {
    background-color: var(--ll-color-surface) !important;
    color: var(--ll-color-primary) !important;
    border: 1px solid var(--ll-color-neutral-light) !important;
    border-radius: var(--ll-radius-sm) !important;
    font-family: var(--ll-font-sans) !important;
    font-size: var(--ll-font-size-sm) !important;
    padding: var(--ll-spacing-xs) var(--ll-spacing-sm) !important;
}

.wc-block-components-chip__remove-icon svg {
    fill: var(--ll-color-primary) !important;
}

/* Clear Filters & Submit Button */
button.wc-block-components-filter-submit-button,
.wc-block-components-clear-all-button,
.woocommerce .widget_layered_nav_filters .clear-filters {
    background-color: var(--ll-color-surface) !important;
    color: var(--ll-color-primary) !important;
    border: 1px solid var(--ll-color-primary) !important;
    border-radius: var(--ll-radius-sm) !important;
    font-family: var(--ll-font-sans) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em;
    padding: var(--ll-spacing-sm) var(--ll-spacing-md) !important;
    transition: all var(--ll-transition-base) !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

button.wc-block-components-filter-submit-button:hover,
.wc-block-components-clear-all-button:hover,
.woocommerce .widget_layered_nav_filters .clear-filters:hover {
    background-color: var(--ll-color-primary) !important;
    color: var(--ll-color-white) !important;
    transform: translateY(-2px);
}

/* Divi Product Image Hover Overlay Fix */
.et_overlay:before,
.woocommerce ul.products li.product .woocommerce-loop-product__link:hover .et_overlay:before,
.woocommerce ul.products li.product:hover .et_overlay:before,
.woocommerce ul.products li.product .et_overlay::before {
    color: var(--ll-color-primary) !important;
}

/* ─────────────────────────────────────────────────────────────────────────
    17. CLASSIC WOOCOMMERCE WIDGETS
    Styling for legacy widgets like Search, Price Filter, and Categories
   ───────────────────────────────────────────────────────────────────────── */

/* Price Filter Completely Restructured */
.woocommerce .widget_price_filter .price_slider {
    margin-bottom: var(--ll-spacing-md) !important;
}

.woocommerce .widget_price_filter .price_slider_amount {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: var(--ll-spacing-sm);
    margin-top: var(--ll-spacing-md);
}

.woocommerce .widget_price_filter .price_label {
    grid-row: 1;
    /* Move price up */
    font-family: var(--ll-font-sans);
    font-size: var(--ll-font-size-base);
    color: var(--ll-color-primary);
    font-weight: 500;
    text-align: center;
    background: var(--ll-color-surface);
    padding: var(--ll-spacing-sm);
    border-radius: var(--ll-radius-sm);
    border: 1px dashed var(--ll-color-neutral-light);
    line-height: 1;
    margin: 0 !important;
}

.woocommerce .widget_price_filter .price_label span {
    font-weight: 700;
    color: var(--ll-color-accent);
}

.woocommerce .widget_price_filter .price_slider_amount .button {
    grid-row: 2;
    /* Move button down */
    width: 100%;
    margin: 0 !important;
    background-color: transparent !important;
    color: var(--ll-color-primary) !important;
    border-radius: var(--ll-radius-sm);
    font-family: var(--ll-font-sans);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 10px 14px !important;
    font-size: var(--ll-font-size-sm) !important;
    transition: all var(--ll-transition-base);
    border: 1.5px solid var(--ll-color-primary) !important;
    text-align: center;
}

.woocommerce .widget_price_filter .price_slider_amount .button:hover {
    background-color: var(--ll-color-primary) !important;
    color: var(--ll-color-white) !important;
    transform: translateY(-2px);
}

/* Product Categories List */
.woocommerce .widget_product_categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce .widget_product_categories ul li {
    padding: var(--ll-spacing-xs) 0;
    border-bottom: 1px solid var(--ll-color-surface);
}

.woocommerce .widget_product_categories ul li:last-child {
    border-bottom: none;
}

.woocommerce .widget_product_categories ul li a {
    color: var(--ll-color-neutral);
    font-family: var(--ll-font-sans);
    font-size: var(--ll-font-size-base);
    transition: all var(--ll-transition-fast);
    display: inline-block;
}

.woocommerce .widget_product_categories ul li a:hover {
    color: var(--ll-color-primary);
    transform: translateX(4px);
}

.woocommerce .widget_product_categories ul.children {
    padding-left: var(--ll-spacing-md);
    border-left: 1px dashed var(--ll-color-neutral-light);
    margin-top: var(--ll-spacing-xs);
}

/* Product Search Widget */
.woocommerce-product-search {
    display: flex;
    gap: var(--ll-spacing-xs);
}

.woocommerce-product-search .search-field {
    width: 100%;
    padding: var(--ll-spacing-sm);
    border-radius: var(--ll-radius-sm);
    border: 1px solid var(--ll-color-neutral-light);
    font-family: var(--ll-font-sans);
}

.woocommerce-product-search .search-field:focus {
    outline: none;
    border-color: var(--ll-color-primary);
}

.woocommerce-product-search button {
    background-color: var(--ll-color-primary) !important;
    color: var(--ll-color-white) !important;
    border: 1px solid var(--ll-color-primary) !important;
    border-radius: var(--ll-radius-sm) !important;
    padding: var(--ll-spacing-sm) var(--ll-spacing-md) !important;
    font-family: var(--ll-font-sans);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--ll-transition-base);
}

.woocommerce-product-search button:hover {
    background-color: var(--ll-color-white) !important;
    color: var(--ll-color-primary) !important;
}

/* ─────────────────────────────────────────────────────────────────────────
   SIDEBAR CATEGORY MATERIAL ICONS
   Icons injected via CSS ::before on parent category links
   ───────────────────────────────────────────────────────────────────────── */

/* Base icon style for all parent (top-level) category links */
.widget_product_categories>ul>li.cat-parent>a::before,
.widget_product_categories>ul>li:not(.cat-parent)>a::before {
    font-family: 'Material Icons Round';
    font-size: 18px;
    line-height: 1;
    vertical-align: middle;
    margin-right: 8px;
    color: var(--ll-color-primary);
    display: inline-block;
    font-style: normal;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
}

/* Plant Care → spa icon */
.widget_product_categories ul li a[href*="plant-care"]::before {
    content: 'spa';
    font-family: 'Material Icons Round';
    font-size: 18px;
    vertical-align: middle;
    margin-right: 8px;
    color: var(--ll-color-primary);
    font-style: normal;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
}

/* Plants → eco icon */
.widget_product_categories ul li a[href*="/plants"]::before,
.widget_product_categories ul li a[href*="plants/"]::before {
    content: 'eco';
    font-family: 'Material Icons Round';
    font-size: 18px;
    vertical-align: middle;
    margin-right: 8px;
    color: var(--ll-color-primary);
    font-style: normal;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
}

/* Tools → handyman icon */
.widget_product_categories ul li a[href*="tools"]::before {
    content: 'handyman';
    font-family: 'Material Icons Round';
    font-size: 18px;
    vertical-align: middle;
    margin-right: 8px;
    color: var(--ll-color-primary);
    font-style: normal;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
}

/* Make parent category links flex so icon aligns neatly */
.widget_product_categories>ul>li.cat-parent>a {
    display: flex !important;
    align-items: center;
}

/* Icon color on hover */
.widget_product_categories ul li a:hover::before {
    color: var(--ll-color-secondary) !important;
}







/* =============================================================
   LeafyLoom — About Page Styles
   Paste into a Divi Full Width Code module ONCE (top of page)
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800&family=Fraunces:ital,wght@0,300;0,400;1,300;1,400&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons+Round');

/* ── Reset scope ─────────────────────────────────────────────── */
.ab-section *,
.ab-section *::before,
.ab-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.ab-section {
    font-family: 'Jost', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #1a2e1b;
}

/* ── Shared utilities ────────────────────────────────────────── */
.ab-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.ab-eyebrow {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.ab-eyebrow--left {
    justify-content: flex-start;
}

.ab-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(6px);
    border: 1.5px solid #c4d4c4;
    border-radius: 50px;
    padding: 7px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #2c5f34;
}

.ab-eyebrow-pill .material-icons-round {
    font-size: 14px !important;
    color: #2c5f34;
}

.ab-heading-center {
    text-align: center;
    margin-bottom: 56px;
}

.ab-heading-left {
    text-align: left;
}

.ab-title {
    font-family: 'Jost', system-ui, sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: #1a2e1b;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.ab-title em {
    font-style: italic;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 300;
    color: #3a7d44;
}

.ab-sub {
    font-size: 17px;
    color: #596b5a;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

.ab-sub--left {
    margin: 0;
}

/* ── Blurred halos (reusable) ────────────────────────────────── */
.ab-halo {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.ab-halo--tl {
    width: 500px;
    height: 500px;
    left: -180px;
    top: -100px;
    background: radial-gradient(circle, rgba(110, 175, 90, 0.28) 0%, transparent 70%);
}

.ab-halo--br {
    width: 420px;
    height: 420px;
    right: -140px;
    bottom: -80px;
    background: radial-gradient(circle, rgba(90, 160, 75, 0.22) 0%, transparent 70%);
}

.ab-halo--gold {
    width: 340px;
    height: 340px;
    right: 60px;
    top: -60px;
    background: radial-gradient(circle, rgba(184, 134, 42, 0.15) 0%, transparent 70%);
}

/* ── Divider line ────────────────────────────────────────────── */
.ab-divider {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, #3a7d44, #6aab73);
    border-radius: 2px;
    margin: 20px 0 0;
}

.ab-divider--center {
    margin: 20px auto 0;
}

/* =============================================================
   1. HERO
   ============================================================= */
.ab-hero {
    position: relative;
    padding: 100px 32px 90px;
    background: #1a2e1a;
    overflow: hidden;
}

.ab-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.ab-hero-halo-1,
.ab-hero-halo-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.ab-hero-halo-1 {
    width: 600px;
    height: 600px;
    left: -200px;
    top: -150px;
    background: radial-gradient(circle, rgba(58, 125, 68, 0.45) 0%, transparent 70%);
}

.ab-hero-halo-2 {
    width: 500px;
    height: 500px;
    right: -120px;
    bottom: -100px;
    background: radial-gradient(circle, rgba(44, 95, 52, 0.40) 0%, transparent 70%);
}

.ab-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ab-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.20);
    border-radius: 50px;
    padding: 7px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a8d5b0;
    margin-bottom: 24px;
}

.ab-hero__pill .material-icons-round {
    font-size: 14px !important;
}

.ab-hero__title {
    font-family: 'Jost', system-ui, sans-serif;
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 700;
    color: #f5f0e8;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.ab-hero__title em {
    font-style: italic;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 300;
    color: #7dc98a;
}

.ab-hero__sub {
    font-size: 17px;
    color: rgba(245, 240, 232, 0.72);
    line-height: 1.75;
    margin-bottom: 36px;
}

.ab-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f5f0e8;
    color: #1a2e1a;
    font-family: 'Jost', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ab-hero__cta:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.ab-hero__cta .material-icons-round {
    font-size: 18px !important;
}

.ab-hero__image-wrap {
    position: relative;
}

.ab-hero__image-wrap::before {
    content: '';
    position: absolute;
    inset: -12px -12px 12px 12px;
    border: 2px solid rgba(58, 125, 68, 0.4);
    border-radius: 20px;
    z-index: 0;
}

.ab-hero__img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    position: relative;
    z-index: 1;
}

.ab-hero__badge {
    position: absolute;
    bottom: 24px;
    left: -20px;
    z-index: 2;
    background: #fff;
    border-radius: 14px;
    padding: 16px 22px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 200px;
}

.ab-hero__badge-icon {
    width: 44px;
    height: 44px;
    background: #e4f1e6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ab-hero__badge-icon .material-icons-round {
    color: #2c5f34;
    font-size: 22px !important;
}

.ab-hero__badge-num {
    font-size: 24px;
    font-weight: 700;
    color: #1a2e1b;
    line-height: 1;
}

.ab-hero__badge-lbl {
    font-size: 12px;
    color: #637565;
    font-weight: 500;
    margin-top: 2px;
}

/* =============================================================
   2. STORY
   ============================================================= */
.ab-story {
    position: relative;
    padding: 100px 32px;
    background: #edeae2;
    overflow: hidden;
}

.ab-story__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ab-story__image-wrap {
    position: relative;
}

.ab-story__img-main {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.ab-story__img-accent {
    position: absolute;
    bottom: -28px;
    right: -28px;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    border: 5px solid #edeae2;
    box-shadow: 0 12px 36px rgba(26, 46, 27, 0.18);
}

.ab-story__year-tag {
    position: absolute;
    top: 24px;
    left: -20px;
    background: #1a2e1a;
    color: #f5f0e8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 0 8px 8px 0;
}

.ab-story__content {
    padding-bottom: 28px;
}

.ab-story__body {
    font-size: 16px;
    color: #374838;
    line-height: 1.8;
    margin-bottom: 20px;
}

.ab-story__body strong {
    color: #1a2e1b;
    font-weight: 700;
}

.ab-story__quote {
    border-left: 4px solid #3a7d44;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0 12px 12px 0;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 19px;
    font-weight: 300;
    font-style: italic;
    color: #1a2e1b;
    line-height: 1.6;
    margin: 28px 0;
}

.ab-story__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1a2e1a;
    color: #f5f0e8;
    font-family: 'Jost', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 15px 28px;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.ab-story__cta:hover {
    background: #2d4a2a;
    transform: translateY(-2px);
}

.ab-story__cta .material-icons-round {
    font-size: 18px !important;
}

/* =============================================================
   3. STATS
   ============================================================= */
.ab-stats {
    padding: 80px 32px;
    background: #1a2e1a;
    position: relative;
    overflow: hidden;
}

.ab-stats__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.ab-stats__card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 44px 32px;
    text-align: center;
    transition: background 0.3s ease;
    position: relative;
}

.ab-stats__card:first-child {
    border-radius: 16px 0 0 16px;
}

.ab-stats__card:last-child {
    border-radius: 0 16px 16px 0;
}

.ab-stats__card:hover {
    background: rgba(255, 255, 255, 0.09);
}

.ab-stats__icon {
    width: 52px;
    height: 52px;
    background: rgba(58, 125, 68, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ab-stats__icon .material-icons-round {
    color: #7dc98a;
    font-size: 26px !important;
}

.ab-stats__num {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    color: #f5f0e8;
    line-height: 1;
    letter-spacing: -0.02em;
}

.ab-stats__num span {
    font-size: 0.55em;
    font-weight: 700;
    color: #7dc98a;
    vertical-align: super;
}

.ab-stats__label {
    font-size: 13px;
    color: rgba(245, 240, 232, 0.55);
    font-weight: 500;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ab-stats__divider {
    position: absolute;
    right: -1px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.10);
}

.ab-stats__card:last-child .ab-stats__divider {
    display: none;
}

/* =============================================================
   4. VALUES / WHY US
   ============================================================= */
.ab-values {
    position: relative;
    padding: 100px 32px;
    background: #fdfaf4;
    overflow: hidden;
}

.ab-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 0;
}

.ab-values__card {
    background: #fff;
    border: 1.5px solid #e8ede9;
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.ab-values__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3a7d44, #6aab73);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    border-radius: 3px 3px 0 0;
}

.ab-values__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26, 46, 27, 0.12);
    border-color: #b8d9be;
}

.ab-values__card:hover::before {
    transform: scaleX(1);
}

.ab-values__icon {
    width: 64px;
    height: 64px;
    background: #e4f1e6;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.ab-values__card:hover .ab-values__icon {
    background: #3a7d44;
}

.ab-values__icon .material-icons-round {
    font-size: 30px !important;
    color: #2c5f34;
    transition: color 0.3s ease;
}

.ab-values__card:hover .ab-values__icon .material-icons-round {
    color: #fff;
}

.ab-values__title {
    font-size: 20px;
    font-weight: 700;
    color: #1a2e1b;
    margin-bottom: 12px;
    line-height: 1.3;
}

.ab-values__body {
    font-size: 15px;
    color: #596b5a;
    line-height: 1.75;
}

/* =============================================================
   5. TEAM
   ============================================================= */
.ab-team {
    position: relative;
    padding: 100px 32px;
    background: #edeae2;
    overflow: hidden;
}

.ab-team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ab-team__card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26, 46, 27, 0.08);
    transition: all 0.35s ease;
}

.ab-team__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26, 46, 27, 0.15);
}

.ab-team__photo-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.ab-team__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ab-team__card:hover .ab-team__photo {
    transform: scale(1.06);
}

.ab-team__photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 46, 27, 0.7) 0%, transparent 60%);
}

.ab-team__info {
    padding: 22px 24px 24px;
}

.ab-team__name {
    font-size: 18px;
    font-weight: 700;
    color: #1a2e1b;
    margin-bottom: 4px;
}

.ab-team__role {
    font-size: 13px;
    color: #3a7d44;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.ab-team__bio {
    font-size: 14px;
    color: #596b5a;
    line-height: 1.65;
}

/* =============================================================
   6. PROCESS
   ============================================================= */
.ab-process {
    position: relative;
    padding: 100px 32px;
    background: #fff;
    overflow: hidden;
}

.ab-process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 16px;
}

.ab-process__grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 16px);
    right: calc(12.5% + 16px);
    height: 2px;
    background: linear-gradient(90deg, #3a7d44 0%, #b8d9be 100%);
    z-index: 0;
}

.ab-process__step {
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.ab-process__num-wrap {
    width: 56px;
    height: 56px;
    background: #e4f1e6;
    border: 2px solid #b8d9be;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
    position: relative;
    background: #fff;
}

.ab-process__step:hover .ab-process__num-wrap {
    background: #3a7d44;
    border-color: #3a7d44;
    transform: scale(1.1);
}

.ab-process__num-wrap .material-icons-round {
    font-size: 26px !important;
    color: #3a7d44;
    transition: color 0.3s ease;
}

.ab-process__step:hover .ab-process__num-wrap .material-icons-round {
    color: #fff;
}

.ab-process__title {
    font-size: 17px;
    font-weight: 700;
    color: #1a2e1b;
    margin-bottom: 10px;
}

.ab-process__body {
    font-size: 14px;
    color: #596b5a;
    line-height: 1.7;
}

/* =============================================================
   7. CTA
   ============================================================= */
.ab-cta {
    position: relative;
    padding: 100px 32px;
    background: #1a2e1a;
    overflow: hidden;
    text-align: center;
}

.ab-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.ab-cta__pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    padding: 7px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a8d5b0;
    margin-bottom: 24px;
}

.ab-cta__pill .material-icons-round {
    font-size: 14px !important;
}

.ab-cta__title {
    font-family: 'Jost', system-ui, sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    color: #f5f0e8;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.ab-cta__title em {
    font-style: italic;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 300;
    color: #7dc98a;
}

.ab-cta__sub {
    font-size: 17px;
    color: rgba(245, 240, 232, 0.65);
    line-height: 1.7;
    margin-bottom: 40px;
}

.ab-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.ab-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Jost', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ab-cta__btn .material-icons-round {
    font-size: 18px !important;
}

.ab-cta__btn--primary {
    background: #f5f0e8;
    color: #1a2e1a;
}

.ab-cta__btn--primary:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.ab-cta__btn--outline {
    background: transparent;
    color: #f5f0e8;
    border: 1.5px solid rgba(245, 240, 232, 0.4);
}

.ab-cta__btn--outline:hover {
    border-color: #f5f0e8;
    transform: translateY(-2px);
}

/* ── Trust bar (reused from homepage) ───────────────────────── */
.ab-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(10px);
    border: 1.5px solid #dae3da;
    border-radius: 60px;
    padding: 14px 28px;
    gap: 0;
    max-width: 860px;
    margin: 48px auto 0;
}

.ab-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 22px;
    font-size: 13px;
    font-weight: 600;
    color: #374838;
    white-space: nowrap;
}

.ab-trust-item .material-icons-round {
    font-size: 18px !important;
    color: #3a7d44;
}

.ab-trust-sep {
    width: 1px;
    height: 22px;
    background: #c5d5c5;
    flex-shrink: 0;
}

.ab-trust-star {
    color: #e8a020;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
    .ab-hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ab-hero__image-wrap {
        display: none;
    }

    .ab-hero {
        text-align: center;
    }

    .ab-hero__pill {
        margin: 0 auto 24px;
    }

    .ab-story__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ab-story__image-wrap {
        order: -1;
    }

    .ab-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .ab-stats__card:first-child {
        border-radius: 16px 0 0 0;
    }

    .ab-stats__card:last-child {
        border-radius: 0 0 16px 0;
    }

    .ab-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ab-team__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ab-process__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }

    .ab-process__grid::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .ab-hero {
        padding: 72px 20px 64px;
    }

    .ab-story,
    .ab-values,
    .ab-team,
    .ab-process,
    .ab-cta {
        padding: 72px 20px;
    }

    .ab-stats {
        padding: 60px 20px;
    }

    .ab-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ab-values__grid {
        grid-template-columns: 1fr;
    }

    .ab-team__grid {
        grid-template-columns: 1fr;
    }

    .ab-process__grid {
        grid-template-columns: 1fr;
    }

    .ab-story__img-accent {
        display: none;
    }

    .ab-cta__actions {
        flex-direction: column;
        align-items: center;
    }

    .ab-cta__btn {
        width: 100%;
        justify-content: center;
    }

    .ab-trust {
        border-radius: 16px;
    }

    .ab-trust-sep {
        display: none;
    }

    .ab-trust-item {
        padding: 5px 10px;
        font-size: 12px;
    }
}



/* ── Reset & base ─────────────────────────────────────────── */
.ct-section *,
.ct-section *::before,
.ct-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.ct-section {
    font-family: 'Jost', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #1a2e1b;
}

/* ── Shared layout ────────────────────────────────────────── */
.ct-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.ct-halo {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.ct-halo--tl {
    width: 480px;
    height: 480px;
    left: -160px;
    top: -80px;
    background: radial-gradient(circle, rgba(110, 175, 90, 0.26) 0%, transparent 70%);
}

.ct-halo--br {
    width: 400px;
    height: 400px;
    right: -120px;
    bottom: -80px;
    background: radial-gradient(circle, rgba(90, 160, 75, 0.20) 0%, transparent 70%);
}

.ct-eyebrow {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.ct-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(6px);
    border: 1.5px solid #c4d4c4;
    border-radius: 50px;
    padding: 7px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #2c5f34;
}

.ct-eyebrow-pill .material-icons-round {
    font-size: 14px !important;
    color: #2c5f34;
}

.ct-title {
    font-family: 'Jost', system-ui, sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: #1a2e1b;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}

.ct-title em {
    font-style: italic;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 300;
    color: #3a7d44;
}

.ct-sub {
    font-size: 17px;
    color: #596b5a;
    line-height: 1.7;
}

.ct-divider {
    width: 52px;
    height: 3px;
    background: linear-gradient(90deg, #3a7d44, #6aab73);
    border-radius: 2px;
    margin: 18px auto 0;
}

.ct-divider--left {
    margin: 18px 0 0;
}

/* ── Hero ─────────────────────────────────────────────────── */
.ct-hero {
    position: relative;
    padding: 92px 32px 80px;
    background: #1a2e1a;
    overflow: hidden;
    text-align: center;
}

.ct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.ct-hero__halo-1,
.ct-hero__halo-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.ct-hero__halo-1 {
    width: 550px;
    height: 550px;
    left: -180px;
    top: -120px;
    background: radial-gradient(circle, rgba(58, 125, 68, 0.4) 0%, transparent 70%);
}

.ct-hero__halo-2 {
    width: 480px;
    height: 480px;
    right: -100px;
    bottom: -80px;
    background: radial-gradient(circle, rgba(44, 95, 52, 0.35) 0%, transparent 70%);
}

.ct-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.ct-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.20);
    border-radius: 50px;
    padding: 7px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a8d5b0;
    margin-bottom: 22px;
}

.ct-hero__pill .material-icons-round {
    font-size: 14px !important;
}

.ct-hero__title {
    font-family: 'Jost', system-ui, sans-serif;
    font-size: clamp(34px, 4.5vw, 58px);
    font-weight: 700;
    color: #f5f0e8;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.ct-hero__title em {
    font-style: italic;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 300;
    color: #7dc98a;
}

.ct-hero__sub {
    font-size: 17px;
    color: rgba(245, 240, 232, 0.68);
    line-height: 1.75;
}

/* Quick-contact chips below hero */
.ct-hero__chips {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.ct-hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255, 255, 255, 0.16);
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    color: #f5f0e8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ct-hero__chip:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.ct-hero__chip .material-icons-round {
    font-size: 18px !important;
    color: #7dc98a;
}

/* ── Contact cards (quick links) ─────────────────────────── */
.ct-cards {
    position: relative;
    padding: 72px 32px;
    background: #edeae2;
    overflow: hidden;
}

.ct-cards__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ct-card {
    background: #fff;
    border: 1.5px solid #e8ede9;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.ct-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3a7d44, #6aab73);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.ct-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(26, 46, 27, 0.13);
    border-color: #b8d9be;
}

.ct-card:hover::before {
    transform: scaleX(1);
}

.ct-card__icon {
    width: 60px;
    height: 60px;
    background: #e4f1e6;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all 0.3s ease;
}

.ct-card:hover .ct-card__icon {
    background: #3a7d44;
}

.ct-card__icon .material-icons-round {
    font-size: 28px !important;
    color: #2c5f34;
    transition: color 0.3s ease;
}

.ct-card:hover .ct-card__icon .material-icons-round {
    color: #fff;
}

.ct-card__title {
    font-size: 17px;
    font-weight: 700;
    color: #1a2e1b;
    margin-bottom: 6px;
}

.ct-card__value {
    font-size: 14px;
    color: #3a7d44;
    font-weight: 600;
    margin-bottom: 6px;
}

.ct-card__note {
    font-size: 13px;
    color: #637565;
    line-height: 1.5;
}

/* ── Main contact section ─────────────────────────────────── */
.ct-main {
    position: relative;
    padding: 100px 32px;
    background: #fdfaf4;
    overflow: hidden;
}

.ct-main__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: start;
}

/* Left info panel */
.ct-info__heading {
    margin-bottom: 36px;
}

.ct-info__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.ct-info__item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 22px;
    background: #fff;
    border: 1.5px solid #e8ede9;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.ct-info__item:hover {
    border-color: #b8d9be;
    box-shadow: 0 6px 24px rgba(26, 46, 27, 0.08);
}

.ct-info__item-icon {
    width: 46px;
    height: 46px;
    background: #e4f1e6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ct-info__item-icon .material-icons-round {
    font-size: 22px !important;
    color: #2c5f34;
}

.ct-info__item-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #96a897;
    margin-bottom: 4px;
}

.ct-info__item-value {
    font-size: 15px;
    font-weight: 600;
    color: #1a2e1b;
    line-height: 1.4;
}

.ct-info__item-note {
    font-size: 13px;
    color: #637565;
    margin-top: 3px;
}

/* Hours block */
.ct-hours {
    background: #1a2e1a;
    border-radius: 16px;
    padding: 26px 28px;
}

.ct-hours__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a8d5b0;
    margin-bottom: 18px;
}

.ct-hours__title .material-icons-round {
    font-size: 16px !important;
}

.ct-hours__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 14px;
}

.ct-hours__row:last-child {
    border-bottom: none;
}

.ct-hours__day {
    color: rgba(245, 240, 232, 0.65);
    font-weight: 500;
}

.ct-hours__time {
    color: #f5f0e8;
    font-weight: 600;
}

.ct-hours__time--closed {
    color: #637565;
}

/* Right: Form */
.ct-form-wrap {
    background: #fff;
    border: 1.5px solid #e8ede9;
    border-radius: 24px;
    padding: 44px 44px;
    box-shadow: 0 4px 28px rgba(26, 46, 27, 0.07);
}

.ct-form__header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1.5px solid #e8ede9;
}

.ct-form__icon-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.ct-form__icon {
    width: 52px;
    height: 52px;
    background: #e4f1e6;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ct-form__icon .material-icons-round {
    font-size: 26px !important;
    color: #2c5f34;
}

.ct-form__title {
    font-size: 22px;
    font-weight: 700;
    color: #1a2e1b;
}

.ct-form__subtitle {
    font-size: 14px;
    color: #637565;
    margin-top: 3px;
}

/* Form fields */
.ct-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
}

.ct-field--row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.ct-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #637565;
}

.ct-req {
    color: #dc3545;
    margin-left: 2px;
}

.ct-input,
.ct-select,
.ct-textarea {
    width: 100%;
    padding: 16px 18px;
    font-family: 'Jost', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1a2e1b;
    background: #f8faf8;
    border: 1.5px solid #dde6de;
    border-radius: 12px;
    outline: none;
    transition: all 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.ct-input::placeholder,
.ct-textarea::placeholder {
    color: #96a897;
}

.ct-input:hover,
.ct-select:hover,
.ct-textarea:hover {
    border-color: #b8d9be;
}

.ct-input:focus,
.ct-select:focus,
.ct-textarea:focus {
    border-color: #3a7d44;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(58, 125, 68, 0.12);
}

.ct-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='11' viewBox='0 0 16 11'%3E%3Cpath d='M1 1l7 7 7-7' stroke='%23637565' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.ct-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Chips for inquiry type */
.ct-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2px;
}

.ct-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Jost', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 2px;
    border: 1.5px solid #dde6de;
    background: #fff;
    color: #637565;
    cursor: pointer;
    transition: all 0.25s ease;
    user-select: none;
}

.ct-chip:hover {
    border-color: #3a7d44;
    color: #2c5f34;
    background: #f0f7f1;
}

.ct-chip.ct-chip--active {
    background: #3a7d44;
    border-color: #3a7d44;
    color: #fff;
}

.ct-chip .material-icons-round {
    font-size: 14px !important;
}

/* Submit button */
.ct-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    background: #1a2e1a;
    color: #f5f0e8;
    font-family: 'Jost', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 18px 36px;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.ct-submit:hover {
    background: #2d4a2a;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(26, 46, 27, 0.25);
}

.ct-submit .material-icons-round {
    font-size: 20px !important;
}

.ct-form__note {
    font-size: 13px;
    color: #96a897;
    text-align: center;
    margin-top: 14px;
    line-height: 1.6;
}

.ct-form__note .material-icons-round {
    font-size: 14px !important;
    vertical-align: middle;
    color: #3a7d44;
}

/* WhatsApp CTA */
.ct-wa-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #f0f7f1;
    border: 1.5px solid #b8d9be;
    border-radius: 14px;
    padding: 18px 22px;
    margin-top: 20px;
}

.ct-wa-strip__text {
    font-size: 14px;
    color: #374838;
    font-weight: 500;
    line-height: 1.4;
}

.ct-wa-strip__text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1a2e1b;
}

.ct-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    background: #25d366;
    color: #fff;
    font-family: 'Jost', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 12px 22px;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ct-wa-btn:hover {
    background: #1db954;
    transform: translateY(-2px);
}

.ct-wa-btn .material-icons-round {
    font-size: 18px !important;
}

/* ── Map + areas section ──────────────────────────────────── */
.ct-areas {
    position: relative;
    padding: 80px 32px;
    background: #1a2e1a;
    overflow: hidden;
}

.ct-areas__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: center;
}

.ct-areas__map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
    position: relative;
}

.ct-areas__map iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: none;
}

.ct-areas__content {}

.ct-areas__pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    padding: 7px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a8d5b0;
    margin-bottom: 20px;
}

.ct-areas__pill .material-icons-round {
    font-size: 14px !important;
}

.ct-areas__title {
    font-family: 'Jost', system-ui, sans-serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: #f5f0e8;
    line-height: 1.2;
    margin-bottom: 12px;
}

.ct-areas__title em {
    font-style: italic;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 300;
    color: #7dc98a;
}

.ct-areas__sub {
    font-size: 15px;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.7;
    margin-bottom: 28px;
}

.ct-areas__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ct-areas__tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(245, 240, 232, 0.8);
}

.ct-areas__tag .material-icons-round {
    font-size: 13px !important;
    color: #7dc98a;
}

/* ── Trust bar ────────────────────────────────────────────── */
.ct-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 60px;
    padding: 14px 28px;
    gap: 0;
    max-width: 800px;
    margin: 48px auto 0;
}

.ct-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 20px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(245, 240, 232, 0.75);
    white-space: nowrap;
}

.ct-trust-item .material-icons-round {
    font-size: 17px !important;
    color: #7dc98a;
}

.ct-trust-sep {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .ct-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ct-main__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ct-areas__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ct-areas__map iframe {
        height: 320px;
    }
}

@media (max-width: 640px) {
    .ct-hero {
        padding: 72px 20px 60px;
    }

    .ct-cards,
    .ct-main,
    .ct-areas {
        padding: 64px 20px;
    }

    .ct-cards__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .ct-form-wrap {
        padding: 28px 20px;
    }

    .ct-field--row {
        grid-template-columns: 1fr;
    }

    .ct-hero__chips {
        gap: 8px;
    }

    .ct-hero__chip {
        font-size: 13px;
        padding: 9px 16px;
    }

    .ct-areas__tags .ct-areas__tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    .ct-trust-bar {
        border-radius: 16px;
    }

    .ct-trust-sep {
        display: none;
    }

    .ct-trust-item {
        padding: 5px 10px;
        font-size: 12px;
    }

    .ct-wa-strip {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 400px) {
    .ct-cards__grid {
        grid-template-columns: 1fr;
    }
}

/* Chip JS toggle */
.ct-chips input[type="radio"] {
    display: none;
}