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

:root {
    --green-dark:   #1a3d1a;
    --green-mid:    #2d6a2d;
    --green-accent: #5a9e3a;
    --green-light:  #e8f5e0;
    --beige:        #f5f0e8;
    --white:        #ffffff;
    --text-dark:    #1a1a1a;
    --text-gray:    #5a5a5a;
    --shadow-sm:    0 2px 12px rgba(0,0,0,0.08);
    --shadow:       0 6px 28px rgba(0,0,0,0.12);
    --shadow-lg:    0 16px 48px rgba(0,0,0,0.18);
    --radius:       14px;
    --ease:         0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(20, 45, 20, 0.93);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.9rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: box-shadow var(--ease), background var(--ease);
}

.navbar.scrolled {
    background: rgba(20, 45, 20, 0.99);
    box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-shrink: 0;
}

.nav-logo-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.2);
}

.nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

.nav-logo-sub {
    font-size: 0.58rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.15rem;
}

.nav-links a {
    color: rgba(255,255,255,0.78);
    font-size: 0.86rem;
    font-weight: 500;
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    transition: color var(--ease), background var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
    background: rgba(255,255,255,0.1);
}

.nav-links a.active {
    color: #a8d78a;
}

.nav-cta {
    background: var(--green-accent);
    color: white;
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    font-size: 0.86rem;
    font-weight: 600;
    transition: background var(--ease), transform var(--ease);
    white-space: nowrap;
}

.nav-cta:hover {
    background: #4a8c2a;
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--ease);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 66px;
    left: 0; right: 0;
    z-index: 999;
    background: var(--green-dark);
    padding: 1.25rem 1.75rem 2rem;
    flex-direction: column;
    gap: 0.2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
    color: rgba(255,255,255,0.82);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color var(--ease);
}

.mobile-nav a:hover { color: white; }
.mobile-nav a.active { color: #a8d78a; }

.mobile-nav .nav-cta {
    margin-top: 1rem;
    text-align: center;
    display: block;
    padding: 0.75rem;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    padding-top: 66px;
    min-height: 300px;
    background: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.22;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding: 3.5rem 2rem;
    color: white;
}

.page-hero-tag {
    display: inline-block;
    background: rgba(90,158,58,0.8);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.9rem;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.page-hero p {
    font-size: 1rem;
    color: rgba(255,255,255,0.78);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ===== LAYOUT ===== */
section { padding: 5rem 2rem; }
.container { max-width: 1060px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 3.25rem; }

.section-tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-mid);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.33rem 0.95rem;
    border-radius: 50px;
    margin-bottom: 0.7rem;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
    color: var(--green-dark);
    line-height: 1.2;
    margin-bottom: 0.9rem;
}

.section-desc {
    font-size: 0.97rem;
    color: var(--text-gray);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: var(--green-accent);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--ease);
    box-shadow: 0 4px 18px rgba(90,158,58,0.38);
}

.btn-primary:hover {
    background: #4a8c2a;
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(90,158,58,0.48);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--green-dark);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--green-dark);
    transition: all var(--ease);
}

.btn-outline:hover {
    background: var(--green-dark);
    color: white;
}

.btn-outline-white {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255,255,255,0.65);
    transition: all var(--ease);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: white;
}

/* ===== CTA BAND ===== */
.cta-band {
    background: var(--green-dark);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.cta-band h2 { color: white; margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.72); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

.cta-band-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
    background: #0d1f0d;
    color: rgba(255,255,255,0.6);
    padding: 3rem 2rem 1.75rem;
}

.footer-top {
    max-width: 1060px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-logo-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.9rem;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.45rem;
}

.footer-tagline {
    font-size: 0.83rem;
    line-height: 1.7;
}

.footer-col h4 {
    color: white;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-list a {
    color: rgba(255,255,255,0.55);
    font-size: 0.86rem;
    transition: color var(--ease);
}

.footer-list a:hover { color: var(--green-accent); }

.footer-bottom {
    max-width: 1060px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.76rem;
}

/* ===== FLOATING BUTTONS ===== */
.fab-stack {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 990;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    align-items: center;
}

.fab {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.28);
    transition: transform var(--ease), box-shadow var(--ease);
}

.fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0,0,0,0.38);
}

.fab-wa { background: #25D366; }
.fab-tel { background: var(--green-dark); }

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .navbar { padding: 0.9rem 1.5rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
    section { padding: 3.5rem 1.25rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
