/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── TOKENS ── */
:root {
    --green-dark:    #1e3d0a;
    --green-main:    #4a7c1f;
    --green-mid:     #6da716;
    --green-light:   #a5c645;
    --green-pale:    #e8f0d0;
    --orange:        #d95f1a;
    --orange-light:  #f0892f;
    --blue:          #007fa8;
    --cream:         #faf8f3;
    --text:          #1a2a0a;
    --text-muted:    #4a5a3a;
    --white:         #ffffff;
    --footer-bg:     #0f2005;
    --font-display:  'Playfair Display', Georgia, serif;
    --font-body:     'Cabin', Arial, sans-serif;
    --radius:        6px;
    --shadow:        0 4px 20px rgba(0,0,0,0.10);
    --shadow-hover:  0 8px 32px rgba(0,0,0,0.18);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── TOP BAR ── */
#top-bar {
    background: var(--green-dark);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 6px 0;
}
#top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}
#top-bar a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}
#top-bar a:hover { color: var(--green-light); }
#top-bar svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── HEADER ── */
#site-header {
    background: var(--green-dark);
    padding: 0;
    position: relative;
    overflow: hidden;
}
#site-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-mid), var(--orange), var(--green-light));
}
#site-header .container {
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}
#site-logo img {
    max-height: 140px;
    width: auto;
    display: block;
}

/* ── NAV ── */
#site-navigation-wrap {
    background: var(--green-main);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
#site-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-navigation-ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0; padding: 0;
}
.main-navigation-ul > li { position: relative; }
.main-navigation-ul > li > a {
    display: block;
    padding: 16px 22px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: background 0.2s, color 0.2s;
}
.main-navigation-ul > li > a:hover,
.current-menu-item > a {
    background: rgba(255,255,255,0.15);
}
.current-menu-item > a {
    border-bottom: 3px solid var(--green-light);
}

/* Dropdown */
.sub-menu {
    position: absolute;
    top: 100%; left: 0;
    background: var(--green-dark);
    min-width: 240px;
    list-style: none;
    display: none;
    z-index: 200;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.menu-item:hover .sub-menu { display: block; }
.sub-menu a {
    display: block;
    padding: 11px 20px;
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.15s, color 0.15s;
}
.sub-menu a:hover { background: var(--green-main); color: var(--white); }
.mobile-menu-toggle { display: none; }

/* ── BUTTONS ── */
.btn {
    display: inline-block;
    padding: 13px 30px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-green  { background: var(--green-mid);  color: var(--white); }
.btn-orange { background: var(--orange);      color: var(--white); }
.btn-blue   { background: var(--blue);        color: var(--white); }
.btn-outline-white { background: transparent; border-color: rgba(255,255,255,0.7); color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }
.btn-facebook  { background: #1877F2; color: var(--white); }
.btn-instagram { background: #E1306C; color: var(--white); }

/* ── HERO ── */
.hero-section {
    background: var(--green-dark);
    background-size: cover;
    background-position: center;
    padding: 90px 0 80px;
    text-align: center;
    color: var(--white);
    position: relative;
}
.hero-content { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.92);
}
.hero-content .land-acknowledgement {
    font-style: italic;
    font-size: 14px;
    color: rgba(255,255,255,0.72);
    border-left: 3px solid var(--green-light);
    padding-left: 16px;
    text-align: left;
    margin: 28px auto;
    max-width: 680px;
}

/* ── CONTENT SECTIONS ── */
.content-section { padding: 60px 0; }
.content-section.cream-bg      { background: var(--cream); }
.content-section.white-bg      { background: var(--white); }
.content-section.green-pale-bg { background: var(--green-pale); }
.content-section.green-bg      { background: var(--green-main); color: var(--white); }
.content-section.blue-bg       { background: var(--blue);  color: var(--white); }
.content-section.orange-bg     { background: var(--orange); color: var(--white); }
.content-section.dark-bg {
    background: var(--green-dark);
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    color: var(--white);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.25;
}
.text-center { text-align: center; }
.section-lead {
    max-width: 680px;
    margin: 0 auto 30px;
    text-align: center;
    font-size: 17px;
    line-height: 1.75;
}

/* ── CARDS ── */
.three-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.card {
    background: var(--white);
    border-radius: 10px;
    padding: 28px 26px 24px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--green-mid);
    transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.card.orange-top { border-top-color: var(--orange); }
.card.blue-top   { border-top-color: var(--blue); }
.card.lime-top   { border-top-color: var(--green-light); }
.card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--green-dark);
    line-height: 1.3;
}
.card p { font-size: 15px; color: var(--text-muted); margin-bottom: 16px; }

/* ── SOCIAL ── */
.social-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ── INNER PAGE ── */
.page-header {
    background: var(--green-dark);
    color: var(--white);
    padding: 40px 0 30px;
    border-bottom: 4px solid var(--green-mid);
}
.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 700;
}
.page-content {
    padding: 50px 0;
    max-width: 820px;
}
.page-content h2 {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--green-dark);
    margin: 36px 0 14px;
}
.page-content p  { margin-bottom: 18px; }
.page-content ul,
.page-content ol { margin: 0 0 18px 24px; }
.page-content li { margin-bottom: 6px; }
.page-content a  { color: var(--green-main); }

/* ── FOOTER ── */
#footer-bottom {
    background: var(--footer-bg);
    color: rgba(255,255,255,0.55);
    text-align: center;
    padding: 24px 0;
    font-size: 13px;
}
#footer-bottom a { color: var(--green-light); text-decoration: none; }
#footer-bottom a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: var(--white);
        font-size: 18px;
        padding: 16px 20px;
        cursor: pointer;
        width: 100%;
        text-align: left;
    }
    #site-navigation { justify-content: flex-start; }
    .main-navigation-ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    .main-navigation-ul.active { display: flex; }
    .main-navigation-ul > li > a { padding: 14px 20px; }
    .sub-menu {
        position: static;
        display: none;
        background: rgba(0,0,0,0.15);
        border-radius: 0;
        box-shadow: none;
    }
    .menu-item.open .sub-menu { display: block; }
    .three-col { grid-template-columns: 1fr; }
    .content-section { padding: 40px 0; }
}
