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

:root {
    /* === BRAND PALETTE === */
    --olive:        #4d6228;   /* Deep Olive — primary */
    --olive-soft:   #909f5d;   /* Soft Olive — secondary */
    --butter:       #F3E7B3;   /* Butter Yellow — accent warm */
    --cream:        #FFFDF8;   /* Cream — lightest bg */
    --espresso:     #2D241D;   /* Espresso — dark surfaces */
    --pink:         #D8B8B0;   /* Dusty Pink — soft accent */

    /* === SEMANTIC TOKENS === */
    --bg:           #F7F4EC;   /* warm off-white page bg */
    --surface:      #FFFDF8;   /* card bg = cream */
    --surface-2:    #F0EDE3;   /* slightly darker surface */
    --text:         #ffffff;   /* espresso for body */
    --text-muted:   #6B5E52;   /* warm brown-grey */
    --text-dim:     #A89585;   /* lighter placeholder */

    /* green tints for components */
    --green:        #4d6228;
    --green-light:  #909f5d;
    --green-dim:    rgba(77,98,40,0.09);
    --green-border: rgba(77,98,40,0.22);

    --radius:       22px;
    --radius-sm:    12px;
    --radius-pill:  100px;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Poppins', 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== GINGHAM BACKGROUND TEXTURE ===== */
.noise-bg {
    position: fixed;
    inset: 0;
    z-index: -3;
    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(144,159,93,0.07) 0px, rgba(144,159,93,0.07) 1px,
            transparent 1px, transparent 40px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(144,159,93,0.07) 0px, rgba(144,159,93,0.07) 1px,
            transparent 1px, transparent 40px
        );
    pointer-events: none;
}

.avocado-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: -2;
}
.orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(77,98,40,0.10) 0%, transparent 70%);
    top: -150px; left: -150px;
    animation: orbDrift 22s infinite alternate ease-in-out;
}
.orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(243,231,179,0.18) 0%, transparent 70%);
    bottom: 10%; right: -100px;
    animation: orbDrift 18s infinite alternate-reverse ease-in-out;
}
.orb-3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(216,184,176,0.13) 0%, transparent 70%);
    top: 55%; left: 38%;
    animation: orbDrift 26s infinite alternate ease-in-out;
}
@keyframes orbDrift {
    0%   { transform: translate(0,   0)   scale(1);    }
    100% { transform: translate(30px,50px) scale(1.12); }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface-2); }
::-webkit-scrollbar-thumb { background: var(--olive-soft); border-radius: 10px; }

/* ===== LAYOUT ===== */
.container { max-width: 1260px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(247,244,236,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--green-border);
    transition: background 0.3s;
}
.logo-container { display: flex; align-items: center; gap: 0.7rem; }
.logo-mark {
    width: 42px; height: 42px;
    background: var(--green-dim);
    border: 1.5px solid var(--green-border);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    transition: transform 0.3s;
}
.logo-mark:hover { transform: rotate(-8deg) scale(1.08); }
.logo-text {
    display: flex; align-items: baseline; gap: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 800;
}
.logo-main  { color: var(--espresso); }
.logo-accent { color: var(--olive); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--olive); }
.nav-cta {
    background: var(--olive);
    border: none;
    padding: 0.5rem 1.3rem;
    border-radius: var(--radius-pill);
    color: var(--cream) !important;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--olive-soft) !important; transform: translateY(-1px); color: var(--cream) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--espresso); border-radius: 2px; transition: 0.3s; }

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--olive);
    color: var(--cream);
    border: none;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    display: inline-flex; align-items: center; gap: 0.5rem;
    box-shadow: 0 4px 18px rgba(77,98,40,0.22);
}
.btn-primary:hover {
    background: var(--olive-soft);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(77,98,40,0.30);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
    background: transparent;
    border: 1.5px solid var(--olive);
    color: var(--olive);
    padding: 0.85rem 2rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.5rem;
    transition: 0.2s;
}
.btn-ghost:hover { background: var(--green-dim); border-color: var(--olive-soft); color: var(--olive); }
.btn-lg  { padding: 1rem 2.4rem; font-size: 1.05rem; }
.btn-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 1rem; }

/* ===== SECTION HELPERS ===== */
.section-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--olive);
    border: 1px solid var(--green-border);
    background: var(--green-dim);
    padding: 0.28rem 1rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1.2rem;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--espresso);
}
.section-sub  { color: var(--text-muted); font-size: 1rem; margin-bottom: 2.5rem; }
.text-green   { color: var(--olive); }

/* ===== HERO ===== */
.hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 5rem 0 3rem;
    flex-wrap: wrap;
}
.hero-content { flex: 1; min-width: 300px; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    border: 1px solid var(--green-border);
    background: var(--green-dim);
    padding: 0.35rem 1.1rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.pulse-dot {
    width: 8px; height: 8px;
    background: var(--olive);
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(77,98,40,0.45); }
    50%       { box-shadow: 0 0 0 6px rgba(77,98,40,0); }
}
.hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.07;
    color: var(--espresso);
    margin-bottom: 1.2rem;
}
.hero-gradient { color: var(--olive); }
.hero-sub  { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.75; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Hero visual card ── */
.hero-visual { flex: 0 0 380px; }

.avo-card {
    background: var(--surface);
    border: 1px solid var(--green-border);
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(45,36,29,0.12), 0 0 0 1px var(--green-border);
    /* single smooth float — no jitter */
    animation: cardFloat 6s ease-in-out infinite;
    will-change: transform;
    transform: translateZ(0);   /* GPU layer */
}
@keyframes cardFloat {
    0%,  100% { transform: translateY(0px);    }
    50%        { transform: translateY(-10px);  }
}

.avo-card-inner { padding: 1.6rem; }

.avo-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
}
.avo-half {
    padding: 1.5rem 1rem;
    border-radius: var(--radius-sm);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    font-size: 0.85rem; font-weight: 600;
    transition: transform 0.3s;
}
.avo-half:hover { transform: scale(1.03); }
.avo-half i { font-size: 1.8rem; }
.ads-half {
    background: rgba(77,98,40,0.08);
    border: 1px solid var(--green-border);
    color: var(--olive);
}
.web-half {
    background: rgba(243,231,179,0.35);
    border: 1px solid rgba(77,98,40,0.15);
    color: var(--text-muted);
}
.avo-card-label {
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-dim);
    margin-bottom: 1.2rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.avo-metrics {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 0.5rem;
}
.metric {
    text-align: center;
    padding: 0.75rem 0.5rem;
    background: var(--surface-2);
    border-radius: var(--radius-sm);
}
.metric strong { display: block; font-size: 1rem; color: var(--olive); font-weight: 800; font-family: 'Playfair Display', serif; }
.metric span   { font-size: 0.68rem; color: var(--text-dim); }

/* ===== TRUST BAR ===== */
.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 2.5rem;
    padding: 1.1rem 2rem;
    background: var(--surface);
    border: 1px solid var(--green-border);
    border-radius: var(--radius);
    margin: 0 0 5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.trust-item { display: flex; align-items: center; gap: 0.5rem; }
.trust-item i { color: var(--olive); }
.trust-divider { color: var(--olive-soft); opacity: 0.4; font-size: 0.7rem; }

/* ===== ABOUT ===== */
.about-section { padding: 3rem 0 5rem; }
.about-tag {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 2rem;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-text p         { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.8; }
.about-text strong    { color: var(--espresso); }
.about-text .section-title { margin-bottom: 1.5rem; }

.founders-row    { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
.founder-pill {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 1.2rem;
    background: var(--surface);
    border: 1px solid var(--green-border);
    border-radius: var(--radius-sm);
    transition: border-color 0.2s, transform 0.2s;
}
.founder-pill:hover { border-color: var(--olive); transform: translateX(4px); }
.founder-icon {
    width: 40px; height: 40px;
    background: var(--green-dim);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--olive); font-size: 1rem; flex-shrink: 0;
}
.founder-pill strong { display: block; font-size: 0.95rem; color: var(--espresso); }
.founder-pill span   { font-size: 0.8rem;  color: var(--text-muted); }

.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.value-card {
    padding: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--green-border);
    border-radius: var(--radius-sm);
    transition: transform 0.3s, border-color 0.3s;
}
.value-card:hover { transform: translateY(-4px); border-color: var(--olive); }
.value-emoji { font-size: 1.5rem; display: block; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.85rem; color: var(--text-muted); }
.highlight-card { background: var(--butter); border-color: rgba(77,98,40,0.3); }
.highlight-card p { color: var(--espresso); font-weight: 500; }

/* ===== SERVICES ===== */
#services { padding: 3rem 0 5rem; }
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.2rem; }
.service-card {
    background: var(--surface);
    border: 1px solid var(--green-border);
    border-radius: var(--radius);
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--olive-soft), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--olive); box-shadow: 0 12px 40px rgba(77,98,40,0.1); }
.service-card:hover::before { opacity: 1; }
.service-card--full { grid-column: span 2; }
.service-icon { font-size: 2rem; color: var(--olive); margin-bottom: 1rem; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 0.7rem; color: var(--espresso); }
.service-card p  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.75; margin-bottom: 1rem; }
.card-link { font-size: 0.82rem; color: var(--olive); font-weight: 600; display: inline-flex; align-items: center; gap: 0.35rem; }
.full-pack-tags  { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.full-pack-tags span {
    font-size: 0.73rem;
    padding: 0.25rem 0.75rem;
    background: var(--green-dim);
    border: 1px solid var(--green-border);
    border-radius: var(--radius-pill);
    color: var(--olive);
    font-weight: 600;
}

/* ===== CASES ===== */
#cases { padding: 3rem 0 5rem; }
.cases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.case-card {
    background: var(--surface);
    border: 1px solid var(--green-border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}
.case-card:hover { transform: translateY(-6px); border-color: var(--olive); box-shadow: 0 12px 40px rgba(77,98,40,0.1); }
.case-img {
    height: 160px;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
}
.case-content { padding: 1.5rem; }
.case-tag    { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--olive); margin-bottom: 0.5rem; }
.case-content h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 0.4rem; color: var(--espresso); }
.case-content p  { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.case-stats  { display: flex; gap: 1rem; }
.case-stat   { display: flex; flex-direction: column; }
.case-stat strong { font-size: 1.3rem; color: var(--olive); font-weight: 800; font-family: 'Playfair Display', serif; }
.case-stat span   { font-size: 0.72rem; color: var(--text-dim); }

/* ===== TESTIMONIALS ===== */
#testimonials { padding: 3rem 0 5rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--green-border);
    border-radius: var(--radius);
    padding: 2rem;
}
.stars { color: var(--olive); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card > p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.9rem; }
.author-avatar {
    width: 38px; height: 38px;
    background: var(--green-dim);
    border: 1px solid var(--green-border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 700;
    color: var(--olive); flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.88rem; color: var(--espresso); }
.testimonial-author span   { font-size: 0.78rem; color: var(--text-dim); }

/* ===== FAQ ===== */
.faq-section { padding: 3rem 0 5rem; }
.faq-grid    { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem; }
.faq-item {
    background: var(--surface);
    border: 1px solid var(--green-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.2s;
}
.faq-item.active { border-color: var(--olive); }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    gap: 1rem;
    user-select: none;
    color: var(--espresso);
}
.faq-question i { color: var(--olive); font-size: 0.9rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 1.5rem 1.2rem; color: var(--text-muted); font-size: 0.88rem; line-height: 1.8; }

/* ===== FINAL CTA ===== */
.final-cta {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--espresso);
    border-radius: 40px;
    margin: 2rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    top: -80px; left: 50%;
    transform: translateX(-50%);
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(77,98,40,0.25) 0%, transparent 70%);
    pointer-events: none;
}
.cta-avocado { font-size: 3rem; margin-bottom: 1rem; display: block; animation: spin 8s linear infinite; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.final-cta h2   { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,3rem); margin-bottom: 0.75rem; color: var(--cream); }
.final-cta p    { color: var(--pink); margin-bottom: 2rem; }
.final-cta .btn-primary { background: var(--olive-soft); color: var(--cream); box-shadow: 0 4px 20px rgba(144,159,93,0.35); }
.final-cta .btn-primary:hover { background: var(--butter); color: var(--espresso); }

/* ===== CONTACT FORM ===== */
#contact { padding: 3rem 0 5rem; text-align: center; }
.contact-form {
    background: var(--surface);
    border: 1px solid var(--green-border);
    border-radius: 32px;
    padding: 2.5rem;
    max-width: 820px;
    margin: 2rem auto 0;
    text-align: left;
    box-shadow: 0 8px 40px rgba(45,36,29,0.07);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.input-group { margin-bottom: 1.4rem; }
.input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--espresso);
    margin-bottom: 0.5rem;
}
.input-group label i { color: var(--olive); margin-right: 0.35rem; }
.req      { color: var(--olive); }
.optional { color: var(--text-dim); font-weight: 400; }

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--surface-2);
    border: 1px solid rgba(77,98,40,0.18);
    border-radius: var(--radius-sm);
    color: var(--espresso);
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.input-group input::placeholder,
.input-group textarea::placeholder { color: var(--text-dim); }
.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--olive);
    box-shadow: 0 0 0 3px rgba(77,98,40,0.1);
}
.input-group textarea { resize: vertical; min-height: 100px; }

/* Checkboxes & Radios */
.checkbox-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.6rem; }
.radio-stack   { display: flex; flex-direction: column; gap: 0.5rem; }

.checkbox-option,
.radio-option {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 1rem;
    background: var(--surface-2);
    border: 1px solid rgba(77,98,40,0.14);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    font-size: 0.85rem;
    color: var(--text-muted);
    user-select: none;
}
.checkbox-option:hover,
.radio-option:hover { border-color: var(--olive); color: var(--espresso); background: var(--green-dim); }
.checkbox-option input,
.radio-option input  { display: none; }
.checkbox-option span i { color: var(--olive); margin-right: 0.4rem; width: 16px; text-align: center; }
.checkbox-option input:checked ~ span,
.radio-option input:checked ~ span { color: var(--espresso); font-weight: 600; }
.checkbox-option:has(input:checked),
.radio-option:has(input:checked) { border-color: var(--olive); background: var(--green-dim); }

#formFeedback { margin-top: 1rem; text-align: center; }
.success-msg {
    background: rgba(77,98,40,0.1);
    border: 1px solid var(--green-border);
    color: var(--olive);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.error-msg {
    background: rgba(200,60,60,0.08);
    border: 1px solid rgba(200,60,60,0.25);
    color: #b55555;
    padding: 0.75rem 1.2rem;
    border-radius: var(--radius-sm);
}

/* ===== FOOTER ===== */
footer {
    background: var(--espresso);
    border-top: 1px solid rgba(77,98,40,0.2);
    padding: 4rem 2rem 2rem;
    margin-top: 2rem;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1260px;
    margin: 0 auto 2rem;
}
.footer-logo { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.footer-avo  { font-size: 2rem; }
.footer-logo-text        { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--cream); }
.footer-logo-text strong { color: var(--olive-soft); }
.footer-brand p { color: rgba(255,253,248,0.55); font-size: 0.85rem; max-width: 260px; margin-bottom: 1rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
    width: 36px; height: 36px;
    background: rgba(255,253,248,0.07);
    border: 1px solid rgba(255,253,248,0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,253,248,0.55);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.2s;
}
.social-links a:hover { color: var(--olive-soft); border-color: var(--olive-soft); background: rgba(144,159,93,0.12); }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream); margin-bottom: 1rem; }
.footer-col a  { display: block; color: rgba(255,253,248,0.5); text-decoration: none; font-size: 0.85rem; margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--olive-soft); }
.footer-col p  { color: rgba(255,253,248,0.5); font-size: 0.85rem; margin-bottom: 0.6rem; }
.footer-col i  { color: var(--olive-soft); margin-right: 0.4rem; }
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,253,248,0.1);
    max-width: 1260px;
    margin: 0 auto;
}
.footer-bottom p { color: rgba(255,253,248,0.3); font-size: 0.78rem; margin-bottom: 0.3rem; }

/* ===== MODALS ===== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(45,36,29,0.85);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: flex-start;
    z-index: 500;
    padding: 1.5rem 1rem;
    overflow-y: auto;
}
.modal-content {
    background: var(--surface);
    max-width: 480px;
    width: 100%;
    padding: 2.5rem 2.5rem 2rem;
    border-radius: 32px;
    border: 1px solid var(--green-border);
    position: relative;
    margin: auto;
    animation: modalIn 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.05);
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.94) translateY(16px); }
    to   { opacity: 1; transform: scale(1)    translateY(0);    }
}
.close-modal {
    position: sticky;
    top: 0;
    float: right;
    margin: -0.5rem -0.5rem 0.5rem 0;
    background: var(--surface-2);
    border: 1px solid var(--green-border);
    border-radius: 50%;
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s, background 0.2s;
    z-index: 10;
    flex-shrink: 0;
}
.close-modal:hover   { color: var(--olive); background: var(--green-dim); }
.modal-icon          { font-size: 2.5rem; color: var(--olive); margin-bottom: 1rem; display: block; clear: both; }
.modal-content h3    { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 1rem; color: var(--espresso); }
.modal-content p     { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; margin-bottom: 0.75rem; }
.close-modal-btn     { margin-top: 1.5rem; width: 100%; justify-content: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .nav-links {
        display: none; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--surface);
        border-bottom: 1px solid var(--green-border);
        padding: 1.5rem; gap: 1.2rem;
    }
    .nav-links.open       { display: flex; }
    .hamburger            { display: flex; }
    .hero                 { flex-direction: column; min-height: auto; padding: 3rem 0 2rem; }
    .hero-visual          { flex: none; width: 100%; }
    .avo-card             { max-width: 380px; margin: 0 auto; }
    .about-grid           { grid-template-columns: 1fr; }
    .services-grid        { grid-template-columns: 1fr; }
    .service-card--full   { grid-column: span 1; }
    .cases-grid           { grid-template-columns: 1fr; }
    .testimonials-grid    { grid-template-columns: 1fr; }
    .footer-content       { grid-template-columns: 1fr 1fr; }
    .form-row             { grid-template-columns: 1fr; }
    .checkbox-grid        { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .trust-divider  { display: none; }
    .trust-bar      { flex-direction: column; gap: 0.6rem; text-align: center; }
    .footer-content { grid-template-columns: 1fr; }
    .contact-form   { padding: 1.5rem; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 1500ms !important; transition-duration: 0.01ms !important; }
}

/* ===== NAVBAR LOGO ===== */
.logo-container a { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 42px; width: auto; object-fit: contain; }
.logo-fallback { display: flex; align-items: center; gap: 0.7rem; }

/* ===== SERVICE PRICE TAG ===== */
.service-price-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--olive);
    background: var(--green-dim);
    border: 1px solid var(--green-border);
    border-radius: var(--radius-pill);
    padding: 0.2rem 0.8rem;
    margin-bottom: 0.75rem;
}

/* ===== CASES GRID — 5th card wide ===== */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}
.case-card--wide { grid-column: span 2; }
.case-card--wide .case-img { height: 140px; }
.case-card--wide .case-stats { gap: 2rem; }

/* animated count-up numbers */
.count-up { font-size: 1.3rem; }
.count-up::after { content: '%'; }

/* ===== WHY AVO SECTION ===== */
.why-avo-section { padding: 2rem 0 5rem; }
.why-avo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 1.5rem;
}
.why-avo-text p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.8; }
.avo-tagline { color: var(--olive) !important; font-size: 1rem !important; font-weight: 500; }
.why-avo-pillars { display: flex; flex-direction: column; gap: 1.2rem; }
.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.3rem;
    background: var(--surface);
    border: 1px solid var(--green-border);
    border-radius: var(--radius-sm);
    transition: transform 0.25s, border-color 0.25s;
}
.pillar-item:hover { transform: translateX(6px); border-color: var(--olive); }
.pillar-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--green-dim);
    border: 1px solid var(--green-border);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--olive); font-size: 1.1rem;
}
.pillar-item strong { display: block; color: var(--espresso); font-size: 0.95rem; margin-bottom: 0.3rem; }
.pillar-item p { color: var(--text-muted); font-size: 0.83rem; line-height: 1.65; margin: 0; }

/* ===== TEAM SECTION ===== */
.team-section { padding: 3rem 0 5rem; }
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}
.team-card {
    background: var(--surface);
    border: 1px solid var(--green-border);
    border-radius: var(--radius);
    padding: 2.2rem;
    transition: transform 0.3s, border-color 0.3s;
}
.team-card:hover { transform: translateY(-6px); border-color: var(--olive); }
.team-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}
.team-avatar {
    width: 56px; height: 56px;
    background: var(--green-dim);
    border: 1.5px solid var(--green-border);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    color: var(--olive); font-size: 1.5rem;
}
.team-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--olive);
    background: var(--green-dim);
    border: 1px solid var(--green-border);
    padding: 0.25rem 0.8rem;
    border-radius: var(--radius-pill);
}
.team-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--espresso);
    margin-bottom: 0.2rem;
}
.team-role { color: var(--olive); font-size: 0.85rem; font-weight: 600; margin-bottom: 1rem; }
.team-bio { color: var(--text-muted); font-size: 0.88rem; line-height: 1.8; margin-bottom: 0.75rem; }
.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1.2rem;
}
.team-skills span {
    font-size: 0.7rem;
    padding: 0.2rem 0.7rem;
    background: var(--green-dim);
    border: 1px solid var(--green-border);
    border-radius: var(--radius-pill);
    color: var(--olive);
    font-weight: 600;
}

/* ===== FOOTER LOGO ===== */
.footer-logo { margin-bottom: 1rem; }
.footer-logo-img { height: 40px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-logo-fallback { display: flex; align-items: center; gap: 1rem; }

/* ===== MODAL RICH STYLES ===== */
.modal-content--rich { max-width: 540px; }
.modal-pricing {
    display: flex;
    gap: 0.75rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}
.price-option {
    flex: 1;
    min-width: 120px;
    background: var(--surface-2);
    border: 1.5px solid var(--green-border);
    border-radius: var(--radius-sm);
    padding: 1rem;
    text-align: center;
    transition: border-color 0.2s;
}
.price-option--highlight {
    border-color: var(--olive);
    background: var(--green-dim);
}
.price-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}
.price-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--olive);
    line-height: 1.1;
}
.price-value small { font-size: 0.75rem; font-weight: 400; font-family: 'Poppins', sans-serif; }
.price-save {
    display: inline-block;
    margin-top: 0.4rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--olive);
    background: rgba(77,98,40,0.12);
    border-radius: var(--radius-pill);
    padding: 0.1rem 0.6rem;
}
.modal-includes { margin: 1rem 0; }
.modal-includes-title { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 0.6rem; }
.modal-includes ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.modal-includes li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.86rem;
    color: var(--text-muted);
}
.modal-includes li i { color: var(--olive); font-size: 0.75rem; flex-shrink: 0; }
.modal-note { font-size: 0.8rem; color: var(--text-dim); font-style: italic; margin: 0.5rem 0 1rem; }

/* ===== RIPPLE EFFECT ===== */
.ripple-btn { position: relative; overflow: hidden; }
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    transform: scale(0);
    animation: rippleAnim 0.55s linear;
    pointer-events: none;
}
@keyframes rippleAnim {
    to { transform: scale(4); opacity: 0; }
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 900px) {
    .why-avo-grid  { grid-template-columns: 1fr; gap: 2rem; }
    .team-grid     { grid-template-columns: 1fr; }
    .cases-grid    { grid-template-columns: 1fr; }
    .case-card--wide { grid-column: span 1; }
    .modal-pricing { flex-direction: column; }
}

/* ===== BRAND PINK ACCENT (from brand kit) ===== */
:root {
    --pink:        #D8B8B0;
    --pink-soft:   rgba(216,184,176,0.25);
    --pink-border: rgba(216,184,176,0.45);
}
/* Thin pink divider lines matching brand images */
.section-title::after { display: none; } /* remove if it was auto-added */
.brand-pink-rule {
    display: block;
    width: 40px; height: 2px;
    background: var(--pink);
    border-radius: 2px;
    margin: 0.6rem 0 1.2rem;
}

/* ===== BRAND CAROUSEL ===== */
.brand-carousel-section {
    padding: 4rem 0 5rem;
    overflow: hidden;
}

.carousel-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.carousel-header .section-eyebrow {
    margin: 0 auto 0.8rem;
}

.carousel-header .section-title {
    border-left: none;
}

.carousel-track-wrap {
    position: relative;
    width: min(90vw, 520px);
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden; /* IMPORTANTE */
    box-shadow: 0 24px 70px rgba(45,36,29,0.14);
}

.carousel-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    position: relative;
    background: var(--surface-2);
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 28px;
    user-select: none;
    -webkit-user-drag: none;
}

.slide-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.5rem 1.5rem 1.2rem;
    background: linear-gradient(
        to top,
        rgba(45,36,29,0.75) 0%,
        transparent 100%
    );
    color: var(--cream);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-radius: 0 0 28px 28px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s, transform 0.35s;
}

.carousel-slide:hover .slide-caption,
.carousel-slide.active .slide-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Prev / Next buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--green-border);
    border-radius: 50%;
    background: rgba(255,253,248,0.92);
    color: var(--olive);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(45,36,29,0.12);
    transition: background .2s, transform .2s, box-shadow .2s;
}

.carousel-btn:hover {
    background: var(--cream);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 24px rgba(45,36,29,0.18);
}

.carousel-prev {
    left: 14px;
}

.carousel-next {
    right: 14px;
}

/* Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 1.4rem;
}

.dot {
    width: 8px;
    height: 8px;
    border: none;
    border-radius: 50%;
    background: var(--green-border);
    cursor: pointer;
    padding: 0;
    transition: background .3s, width .3s;
}

.dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--olive);
}

@media (max-width: 600px) {
    .carousel-track-wrap {
        width: calc(100vw - 32px);
        border-radius: 20px;
    }

    .carousel-slide img {
        border-radius: 20px;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
    }
}