@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Jost:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

:root {
    --charcoal: #00000098;
    --green: #00A650;
    --green-l: #00C060;
    --red: #E8001D;
    --cream: #F4FFF8;
    --cream-hover: #e3ffef;
    --ink: #111111;
    --muted: #5A6B5A;
    --card: #FFFFFF;
    --border: #D6EFE0;
    --radius: 14px;
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
}

p,
a,
button,
input,
li {
    font-family: 'Jost', sans-serif;
}

ul {
    list-style-type: none;
}

ul li a {
    text-decoration: none;
}

/* ── Nav ── */
.nav-bar {
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid #00A859;
    padding: 10px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    height: auto;
    min-height: 68px;
    box-shadow: 0 4px 12px rgba(0, 168, 89, 0.1);
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-center.search-bar {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 40%;
    max-width: 500px;
    margin: 0 20px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 10px 20px 10px 42px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    background: var(--cream);
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #00A859;
    box-shadow: 0 0 0 3px rgba(0, 168, 89, 0.15);
}

.search-icon {
    position: absolute;
    left: 16px;
    color: var(--muted);
    font-size: 0.95rem;
    pointer-events: none;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #00A650;
    letter-spacing: -0.02em;
}

.links ul {
    display: flex;
    gap: 32px;
    align-items: center;
}

.links ul li a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #5A6B5A;
    transition: color 0.2s;
}

.links ul li a:hover {
    color: #00A650;
}

.nav-cta {
    background: #00A650;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    transition: background 0.2s !important;
}

.nav-cta:hover {
    background: #00C060 !important;
}

/* ── Container ── */
.container {
    /* margin-top: 68px; */
}

/* ── Section shared ── */
.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 10px;
}

.section-head {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--ink);
    margin-bottom: 14px;
}

.section-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 480px;
}

/* ── Footer ── */
footer {
    background: #111111;
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 5% 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    /* 3 cols: brand + 2 link cols */
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .brand-name-f {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.footer-brand .brand-sub {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 260px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.footer-socials a {
    text-decoration: none;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: background 0.2s, color 0.2s;
}

.social-btn:hover {
    background: #00A650;
    color: #fff;
}

.footer-col h4 {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 18px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
}

/* ── Hamburger ── */
.hamburger {
    display: none;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .links {
        display: none;
    }

    .nav-bar {
        padding: 12px 5%;
    }

    .nav-center.search-bar {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin: 14px 0 0 0;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
        padding: 4px;
        background: none;
        border: none;
    }

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--ink);
        border-radius: 2px;
        transition: transform 0.3s, opacity 0.3s;
    }

    .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);
    }

    .links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--border);
        padding: 24px 5% 32px;
        z-index: 998;
        animation: slideDown 0.25s ease;
    }

    .links.open ul {
        flex-direction: column;
        gap: 0;
    }

    .links.open ul li {
        border-bottom: 1px solid var(--border);
    }

    .links.open ul li:last-child {
        border-bottom: none;
        padding-top: 16px;
    }

    .links.open ul li a {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
    }

    .nav-cta {
        display: inline-block !important;
        text-align: center;
        background: none !important;
        color: var(--muted) !important;
    }

    /* Footer: brand full width, then 2 cols side by side */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (max-width: 480px) {

    /* Footer: full single column */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}