:root {
    --bg: #faf7f2;
    --surface: #ffffff;
    --text: #1c1c1c;
    --text-secondary: #5f5f5f;
    --forest: #1b5e20;
    --forest-deep: #144d16;
    --gold: #d4a017;
    --border-subtle: rgba(28, 28, 28, 0.12);
    --shadow-sm: 0 10px 25px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.12);
    --radius: 24px;
    --radius-lg: 32px;
    --radius-sm: 14px;
    --transition: 0.25s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.65;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}
#background-slideshow {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.72) contrast(0.88) saturate(0.88);
    opacity: 0;
    transition: opacity 1s ease;
}
#background-slideshow.active {
    opacity: 1;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(8, 20, 12, 0.35);
    pointer-events: none;
    z-index: -1;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(28, 28, 28, 0.06);
}
.navbar-inner {
    width: min(1200px, calc(100% - 3rem));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}
.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}
.logo-icon {
    display: inline-flex;
    width: 2.4rem;
    height: 2.4rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(27, 94, 32, 0.12);
    color: var(--forest);
}
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.35rem;
    color: var(--text);
    cursor: pointer;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}
.nav-links a {
    color: var(--text);
    font-weight: 500;
    transition: color var(--transition);
}
.nav-links a:hover {
    color: var(--forest);
}
.nav-cta {
    padding: 0.8rem 1.3rem;
    border-radius: 999px;
    background: var(--forest);
    color: #fff;
    white-space: nowrap;
}
.nav-cta:hover {
    background: #134214;
}

.hero {
    min-height: calc(100vh - 84px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem 6rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(248, 250, 245, 0.96) 0%, rgba(238, 242, 234, 0.96) 100%);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(16, 40, 20, 0.14);
    pointer-events: none;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at top left, rgba(212, 160, 23, 0.15) 0, transparent 30%),
        radial-gradient(circle at bottom right, rgba(27, 94, 32, 0.12) 0, transparent 28%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    max-width: 760px;
    text-align: center;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    background: rgba(209, 182, 114, 0.18);
    color: var(--forest-deep);
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 0.95;
    margin-bottom: 1rem;
}
.highlight {
    color: var(--forest-deep);
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}
.body-large {
    font-size: 1.05rem;
    max-width: 720px;
    margin: 0 auto 2rem;
    color: var(--text-secondary);
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform var(--transition), background var(--transition), color var(--transition);
}
.btn-primary {
    background: var(--forest);
    color: #fff;
}
.btn-outline {
    background: #fff;
    color: var(--text);
    border: 1.5px solid rgba(28, 28, 28, 0.12);
}
.btn-gold {
    background: var(--gold);
    color: var(--text);
}
.btn:hover {
    transform: translateY(-1px);
}
.btn-outline:hover {
    background: rgba(28, 28, 28, 0.04);
}

.section {
    width: min(1120px, calc(100% - 3rem));
    margin: 0 auto 4rem;
    padding-top: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 44px rgba(7, 14, 9, 0.08);
    padding: 2.5rem 2rem;
}
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2rem;
}
.section-label {
    display: inline-block;
    color: var(--forest);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}
.section-header h2 {
    font-size: clamp(2rem, 2.5vw, 2.8rem);
    margin-bottom: 0.75rem;
}
.divider {
    width: 96px;
    height: 4px;
    background: var(--gold);
    border-radius: 999px;
    margin: 0 auto;
}
.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}
.mv-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}
.mv-icon {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--forest);
    background: rgba(27, 94, 32, 0.1);
}
.mv-icon.mission { background: rgba(212, 160, 23, 0.14); }
.mv-icon.vision { background: rgba(27, 94, 32, 0.16); }
.mv-card h3 { margin-bottom: 0.75rem; }
.mv-card p { color: var(--text-secondary); line-height: 1.75; }

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem;
    align-items: center;
}
.about-image-placeholder {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 420px;
}
.about-image-placeholder::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    pointer-events: none;
}
.about-text {
    position: relative;
    background: rgba(255, 255, 255, 0.92);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.about-text h2,
.about-text p,
.about-text .section-label,
.about-text .highlight-box {
    position: relative;
    z-index: 1;
}
.about-text .highlight-box {
    background: rgba(212, 160, 23, 0.08);
    border-radius: 18px;
    padding: 1rem 1.2rem;
}
.about-image-placeholder img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
}

.footer {
    background: #1c1c1c;
    color: #f7f5f0;
    padding: 3rem 1.5rem;
}
.footer-inner {
    width: min(1120px, calc(100% - 3rem));
    margin: 0 auto;
    display: grid;
    gap: 1rem;
    text-align: center;
}
.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
}
.sdg-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}
.sdg-badge {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.75rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
}

.fade-in { opacity: 0; animation: fadeInUp 0.8s ease forwards; }
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .mv-grid { grid-template-columns: 1fr; }
    .hero { padding: 3rem 1rem 4rem; }
    .navbar-inner { flex-wrap: wrap; }
    .nav-links { flex-wrap: wrap; justify-content: center; }
    .hero h1 { font-size: 3.2rem; }
}

@media (max-width: 600px) {
    .hero-actions { flex-direction: column; }
    .nav-links { gap: 0.8rem; }
}

/* === NEW CONTENT STYLES === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition);
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-item:hover { transform: scale(1.02); }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: var(--radius);
}
.lightbox .close { position: absolute; top: 30px; right: 40px; color: white; font-size: 2.5rem; cursor: pointer; }

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-subtle);
}
.contact-form .form-group { margin-bottom: 1.5rem; }
.contact-form label { display: block; font-weight: 500; margin-bottom: 0.5rem; }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    transition: border var(--transition);
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--forest);
}

/* Video Embeds */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.video-wrapper {
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.video-wrapper iframe { width: 100%; height: 100%; }

/* Testimonials */
.testimonial-card {
    background: var(--white);
    padding: 1.5rem;
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    margin: 1rem 0;
    box-shadow: var(--shadow-sm);
}
.testimonial-card .author {
    font-weight: 600;
    color: var(--forest-deep);
    margin-top: 0.5rem;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 900px) { .video-grid { grid-template-columns: 1fr; } }