/* ================================================================
   LeafyLoom — About Us Page
   Loaded only on /about-us/ via functions.php (ll_about_page_assets)
   ================================================================ */

/* ── Scope reset ───────────────────────────────────────────────── */
#ll-about-page {
    font-family: var(--ll-font-sans);
    color: var(--ll-forest);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Remove any Divi default content padding */
#main-content>#ll-about-page {
    margin: 0;
    padding: 0;
}

/* ── Shared: inner container ───────────────────────────────────── */
.ll-ab-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* ── Shared: eyebrow chip ──────────────────────────────────────── */
.ll-ab-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 6px 16px;
    margin-bottom: 20px;
    /* default: for dark backgrounds */
    color: rgba(168, 213, 176, 0.9);
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
}

.ll-ab-eyebrow--green {
    color: var(--ll-moss);
    background: rgba(0, 156, 75, 0.08);
    border-color: rgba(0, 156, 75, 0.22);
}

/* ── Shared: section header block ──────────────────────────────── */
.ll-ab-section-header {
    text-align: center;
    margin-bottom: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ll-ab-section-header h2 {
    font-family: var(--ll-font-display);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 300;
    color: var(--ll-forest);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* ── Shared: buttons ───────────────────────────────────────────── */
.ll-ab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ll-font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1.5px solid transparent;
}

.ll-ab-btn--cream {
    background: var(--ll-cream);
    color: var(--ll-forest);
    border-color: var(--ll-cream);
}

.ll-ab-btn--cream:hover {
    background: #fff;
    color: var(--ll-forest);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.ll-ab-btn--outline {
    background: transparent;
    color: rgba(245, 240, 232, 0.82);
    border-color: rgba(245, 240, 232, 0.32);
}

.ll-ab-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(245, 240, 232, 0.6);
}

.ll-ab-btn--lg {
    padding: 16px 38px;
    font-size: 0.85rem;
}

/* ================================================================
   1. HERO
   Dark forest background, centred text, subtle dot overlay
   ================================================================ */
.ll-ab-hero {
    background: var(--ll-forest);
    padding: 130px 40px 104px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Dot-grid texture */
.ll-ab-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Central green glow */
.ll-ab-hero::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 600px;
    left: 50%;
    top: -180px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(0, 156, 75, 0.22) 0%, transparent 65%);
    pointer-events: none;
}

.ll-ab-hero__eyebrow-wrap {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.ll-ab-hero__title {
    font-family: var(--ll-font-sans);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    color: #f5f0e8;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0 0 24px;
    position: relative;
    z-index: 1;
}

.ll-ab-hero__title em {
    font-style: italic;
    font-family: var(--ll-font-display);
    font-weight: 300;
    color: #7dc98a;
}

.ll-ab-hero__sub {
    font-size: 1.05rem;
    color: rgba(245, 240, 232, 0.68);
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto 44px;
    position: relative;
    z-index: 1;
}

.ll-ab-hero__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.ll-ab-hero__actions .material-icons-round {
    font-size: 17px !important;
}

/* ================================================================
   2. MISSION / STORY
   Cream background, quote left + body text right
   ================================================================ */
.ll-ab-mission {
    background: var(--ll-bg);
    padding: 96px 40px;
}

.ll-ab-mission__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ll-ab-mission__quote {
    font-family: var(--ll-font-display);
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 300;
    font-style: italic;
    color: var(--ll-forest);
    line-height: 1.45;
    margin: 12px 0 0;
    padding-left: 24px;
    border-left: 3px solid var(--ll-moss);
}

.ll-ab-mission__body p {
    font-size: 0.98rem;
    color: var(--ll-ash);
    line-height: 1.85;
    margin-bottom: 18px;
}

.ll-ab-mission__body p:last-child {
    margin-bottom: 0;
}

/* ================================================================
   3. VALUES
   Warm surface, 3 matching cards with green top-bar
   ================================================================ */
.ll-ab-values {
    background: var(--ll-color-surface);
    padding: 96px 40px;
}

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

.ll-ab-value-card {
    background: #fff;
    border: 1px solid rgba(26, 46, 26, 0.08);
    border-radius: 18px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Green gradient accent line (matches booking plugin cards) */
.ll-ab-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ll-moss) 0%, #6fcf97 100%);
}

.ll-ab-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(26, 46, 26, 0.1);
}

.ll-ab-icon-wrap {
    width: 50px;
    height: 50px;
    background: rgba(0, 156, 75, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.ll-ab-icon-wrap .material-icons-round {
    color: var(--ll-moss);
    font-size: 22px !important;
}

.ll-ab-value-card h3 {
    font-family: var(--ll-font-sans);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ll-forest);
    margin: 0 0 10px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.ll-ab-value-card p {
    font-size: 0.88rem;
    color: var(--ll-ash);
    line-height: 1.75;
    margin: 0;
}

/* ================================================================
   4. CTA
   Moss green, centred, dot texture
   ================================================================ */
.ll-ab-cta {
    background: var(--ll-forest);
    padding: 88px 40px;
    position: relative;
    overflow: hidden;
}

.ll-ab-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.ll-ab-cta__inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.ll-ab-cta h2 {
    font-family: var(--ll-font-sans);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.ll-ab-cta p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.76);
    margin: 0 0 36px;
    line-height: 1.65;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 860px) {
    .ll-ab-mission__grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

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

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

    .ll-ab-mission,
    .ll-ab-values,
    .ll-ab-cta {
        padding: 64px 20px;
    }

    .ll-ab-inner {
        padding: 0 20px;
    }

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

    .ll-ab-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

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