
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
        --green: #2f6b1f;
        --green-dark: #1e4712;
        --green-light: #e8f5e2;
        --cream: #faf8f4;
        --text: #1a1a1a;
        --text-muted: #6b7a6b;
        --border: #d4e4cc;
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }

    /* ── Nav ────────────────────────────────────────────── */
    nav {
        position: fixed; top: 0; left: 0; right: 0; z-index: 100;
        background: rgba(250,248,244,0.92); backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
        padding: 0 40px; height: 100px;
        display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo {
        width: 170px;
        height: 62px;
        object-fit: cover;
        object-position: center 54%;
        transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), filter 0.3s;
    }
    .nav-logo:hover {
        transform: scale(1.05);
        filter: drop-shadow(0 4px 14px rgba(47,107,31,0.4));
    }
    .nav-right { display: flex; align-items: center; gap: 32px; }
    .nav-links { display: flex; gap: 28px; list-style: none; }
    .nav-links a {
        font-size: 14px; font-weight: 500; color: var(--text-muted);
        text-decoration: none; letter-spacing: 0.04em;
        position: relative; transition: color 0.2s;
    }
    .nav-links a::after {
        content: ''; position: absolute; bottom: -3px; left: 0;
        width: 0; height: 1.5px; background: var(--green);
        transition: width 0.25s ease;
    }
    .nav-links a:hover { color: var(--green); }
    .nav-links a:hover::after { width: 100%; }

    .lang-switcher {
        display: flex; align-items: center;
        background: var(--green-light); border: 1px solid var(--border);
        border-radius: 100px; padding: 3px;
        flex-shrink: 0;
    }
    .lang-btn {
        padding: 5px 12px; border-radius: 100px; font-size: 12px;
        font-weight: 600; letter-spacing: 0.08em; cursor: pointer;
        border: none; background: transparent; color: var(--text-muted);
        transition: background 0.2s, color 0.2s; font-family: 'DM Sans', sans-serif;
    }
    .lang-btn.active { background: var(--green); color: white; }
    .lang-btn:hover:not(.active) { color: var(--green-dark); }

    /* ── Hero ───────────────────────────────────────────── */
    .hero {
        min-height: 100vh;
        background: linear-gradient(160deg, var(--green-dark) 0%, var(--green) 60%, #4a8f33 100%);
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        text-align: center; padding: 120px 40px 80px;
        position: relative; overflow: hidden;
    }
    .hero::before {
        content: ''; position: absolute; inset: 0;
        background-image:
            radial-gradient(circle at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 45%);
    }
    .hero-leaf { position: absolute; opacity: 0.06; font-size: 340px; top: -60px; right: -60px; pointer-events: none; user-select: none; line-height: 1; }
    .hero-logo {
        width: clamp(210px, 46vw, 336px);
        height: 112px;
        object-fit: contain;
        object-position: center;
        background: rgba(255,255,255,0.95);
        border-radius: 16px;
        margin-bottom: 24px;
        animation: fadeUp 0.8s ease both;
        box-shadow: 0 10px 36px rgba(0,0,0,0.22);
    }
    .hero-badge {
        display: inline-block;
        background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
        color: rgba(255,255,255,0.9); font-size: 12px; letter-spacing: 0.12em;
        text-transform: uppercase; padding: 6px 16px; border-radius: 100px;
        margin-bottom: 28px; animation: fadeUp 0.8s ease both;
    }
    .hero h1 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(40px, 7vw, 72px); font-weight: 700; color: white;
        line-height: 1.1; margin-bottom: 22px; animation: fadeUp 0.8s 0.2s ease both;
    }
    .hero p {
        font-size: clamp(16px, 2vw, 19px); color: rgba(255,255,255,0.8);
        max-width: 560px; line-height: 1.75; margin-bottom: 44px;
        animation: fadeUp 0.8s 0.3s ease both;
    }
    .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; animation: fadeUp 0.8s 0.45s ease both; }
    .btn-primary {
        background: white; color: var(--green-dark);
        padding: 14px 32px; border-radius: 100px; font-weight: 500; font-size: 15px;
        text-decoration: none;
        transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s;
        box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }
    .btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 32px rgba(0,0,0,0.25); }
    .btn-secondary {
        background: transparent; color: white;
        padding: 14px 32px; border-radius: 100px; font-weight: 500; font-size: 15px;
        text-decoration: none; border: 1.5px solid rgba(255,255,255,0.5);
        transition: background 0.2s, border-color 0.2s, transform 0.25s cubic-bezier(.34,1.56,.64,1);
    }
    .btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: white; transform: translateY(-2px); }
    .hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); animation: bounce 2s infinite; color: rgba(255,255,255,0.45); font-size: 22px; }

    /* ── Official info ──────────────────────────────────── */
    .stats {
        background: white; border-bottom: 1px solid var(--border);
        padding: 30px 40px; display: flex; justify-content: center;
        gap: 20px 44px; flex-wrap: wrap;
    }
    .stat { min-width: 150px; text-align: left; }
    .stat-num { font-size: 17px; color: var(--green-dark); font-weight: 600; line-height: 1.25; }
    .stat-label { font-size: 12px; color: var(--text-muted); margin-top: 5px; letter-spacing: 0.06em; text-transform: uppercase; }

    /* ── Sections ───────────────────────────────────────── */
    section.content { padding: 90px 40px; max-width: 1100px; margin: 0 auto; }
    .section-tag { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); font-weight: 500; margin-bottom: 12px; }
    h2.section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 44px); font-weight: 700; line-height: 1.15; margin-bottom: 20px; }
    .section-subtitle { font-size: 17px; color: var(--text-muted); line-height: 1.75; max-width: 620px; }

    /* ── About ──────────────────────────────────────────── */
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 60px; }
    .about-text p { font-size: 16px; line-height: 1.8; color: #3a3a3a; margin-bottom: 18px; }

    .pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .pillar {
        background: var(--green-light); border: 1px solid var(--border);
        border-radius: 16px; padding: 22px; cursor: default;
        transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s, border-color 0.3s;
    }
    .pillar:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(47,107,31,0.13); border-color: var(--green); }
    .pillar-icon { font-size: 28px; margin-bottom: 10px; }
    .pillar h3 { font-size: 14px; font-weight: 500; color: var(--green-dark); margin-bottom: 6px; }
    .pillar p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

    /* ── Values ─────────────────────────────────────────── */
    .values-section { background: white; padding: 90px 40px; }
    .values-inner { max-width: 1100px; margin: 0 auto; }
    .values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 14px; margin-top: 48px; }
    .value-card {
        display: flex; align-items: flex-start; gap: 14px;
        padding: 20px 22px; background: var(--green-light); border: 1px solid var(--border); border-radius: 14px;
        transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s, border-color 0.3s;
    }
    .value-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(47,107,31,0.12); border-color: var(--green); }
    .value-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
    .value-text { font-size: 15px; color: #3a3a3a; line-height: 1.5; }

    /* ── Scope and support ──────────────────────────────── */
    .scope-box, .support-box {
        margin-top: 44px; background: white; border: 1px solid var(--border);
        border-radius: 18px; padding: 30px 32px;
        box-shadow: 0 10px 30px rgba(47,107,31,0.06);
    }
    .scope-box p, .support-box p { font-size: 16px; line-height: 1.8; color: #3a3a3a; }
    .scope-box p + p { margin-top: 14px; }
    .support-box { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
    .support-box p { max-width: 720px; }
    .btn-support {
        flex-shrink: 0; background: var(--green); color: white;
        padding: 14px 26px; border: none; border-radius: 100px; cursor: pointer;
        font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
        transition: background 0.2s, transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s;
    }
    .btn-support:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(47,107,31,0.22); }

    /* ── Donation modal ─────────────────────────────────── */
    .modal-backdrop {
        position: fixed; inset: 0; z-index: 200;
        display: flex; align-items: center; justify-content: center;
        padding: 24px; background: rgba(14,31,9,0.62); backdrop-filter: blur(5px);
        opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
    }
    .modal-backdrop.open { opacity: 1; pointer-events: auto; }
    .donation-modal {
        position: relative; width: min(720px, 100%); max-height: calc(100vh - 48px); overflow-y: auto;
        background: var(--cream); border: 1px solid var(--border); border-radius: 20px; padding: 32px;
        box-shadow: 0 24px 70px rgba(0,0,0,0.24);
        transform: translateY(16px); transition: transform 0.25s ease;
    }
    .modal-backdrop.open .donation-modal { transform: translateY(0); }
    .modal-close {
        position: absolute; top: 16px; right: 16px; width: 36px; height: 36px;
        border: 1px solid var(--border); border-radius: 50%; background: white;
        color: var(--green-dark); cursor: pointer; font-size: 22px; line-height: 1;
    }
    .modal-close:hover { background: var(--green-light); }
    .modal-title { font-family: 'Playfair Display', serif; font-size: 32px; margin-bottom: 8px; padding-right: 36px; }
    .modal-intro { color: var(--text-muted); font-size: 15px; line-height: 1.65; margin-bottom: 22px; }
    .donation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .donation-card { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 20px; }
    .donation-card h3 { color: var(--green-dark); font-size: 16px; margin-bottom: 14px; }
    .donation-card[hidden] { display: none; }
    .gift-aid-info { grid-column: 1 / -1; }
    .donation-card .paypal-text:last-child { margin-bottom: 0; }
    .bank-details { font-size: 14px; color: #3a3a3a; line-height: 1.75; margin-bottom: 16px; }
    .bank-details strong { color: var(--text); }
    .paypal-text { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
    .modal-action {
        display: inline-block; background: var(--green); color: white; border: none; border-radius: 10px;
        padding: 11px 16px; cursor: pointer; text-decoration: none;
        font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
    }
    .modal-action:hover { background: var(--green-dark); }
    .copy-status { min-height: 20px; margin-top: 10px; color: var(--green-dark); font-size: 13px; }

    /* ── Gallery ────────────────────────────────────────── */
    .gallery-section { background: white; padding: 90px 40px; }
    .gallery-inner { max-width: 1100px; margin: 0 auto; }
    .gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin-top: 48px; }
    .gallery-cell {
        aspect-ratio: 1; border-radius: 14px; overflow: hidden;
        background: #ecf1ea; border: 1.5px dashed #b8cfb2;
        display: flex; align-items: center; justify-content: center;
        transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s;
    }
    .gallery-cell.has-image { border: none; cursor: zoom-in; }
    .gallery-cell.has-image:hover { transform: scale(1.05); box-shadow: 0 18px 44px rgba(0,0,0,0.16); }
    .gallery-cell img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .gallery-empty { display: flex; flex-direction: column; align-items: center; gap: 8px; color: #a8bca2; }
    .gallery-empty svg { width: 32px; height: 32px; }
    .gallery-empty span { font-size: 12px; }

    /* ── Contact ────────────────────────────────────────── */
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 60px; }
    .contact-info p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
    .contact-item {
        display: flex; align-items: center; gap: 14px;
        padding: 16px 20px; background: var(--green-light); border-radius: 12px; border: 1px solid var(--border);
        margin-bottom: 10px; text-decoration: none; color: var(--text); font-size: 15px; font-weight: 400;
        transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s, border-color 0.25s;
    }
    .contact-item:hover { transform: translateX(7px); box-shadow: 0 6px 22px rgba(47,107,31,0.11); border-color: var(--green); color: var(--green-dark); }
    .contact-icon { font-size: 20px; }
    form { display: flex; flex-direction: column; gap: 12px; }
    input, textarea {
        padding: 14px 16px; border-radius: 10px; border: 1.5px solid var(--border);
        background: white; font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--text);
        transition: border-color 0.2s, box-shadow 0.2s; outline: none;
    }
    input:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(47,107,31,0.1); }
    textarea { resize: vertical; }
    .btn-send {
        background: var(--green); color: white; padding: 14px; border: none; border-radius: 10px; cursor: pointer;
        font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
        transition: background 0.2s, transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s;
    }
    .btn-send:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(47,107,31,0.28); }

    /* ── Footer ─────────────────────────────────────────── */
    footer {
        background: #0e1f09; color: rgba(255,255,255,0.45);
        padding: 36px 40px;
        display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
        font-size: 13px;
    }
    footer img {
        width: 170px;
        height: 62px;
        object-fit: cover;
        object-position: center 54%;
        opacity: 0.85;
        filter: brightness(0) invert(1);
        transition: opacity 0.2s;
    }
    footer img:hover { opacity: 1; }
    .footer-date { color: rgba(255,255,255,0.3); }

    /* ── Animations ─────────────────────────────────────── */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(9px); } }
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── Responsive ─────────────────────────────────────── */
    @media (max-width: 900px) {
        nav { padding: 0 24px; }
        .nav-logo { width: 150px; }
        .nav-right { gap: 18px; }
        .nav-links { gap: 18px; }
        .nav-links a { font-size: 13px; }
        .lang-btn { padding: 5px 10px; }
    }
    @media (max-width: 720px) {
        nav { padding: 0 20px; }
        .nav-logo { width: 180px; }
        .nav-links { display: none; }
        .nav-right { gap: 12px; }
        .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
        .stats { gap: 28px; padding: 28px 20px; }
        section.content { padding: 60px 24px; }
        .gallery-section, .values-section { padding: 60px 24px; }
        footer { padding: 24px; flex-direction: column; align-items: flex-start; }
        .pillars { grid-template-columns: 1fr; }
        .scope-box, .support-box { padding: 24px; }
        .support-box { display: block; }
        .support-box .btn-support { margin-top: 20px; }
        .donation-modal { padding: 26px 20px; }
        .donation-grid { grid-template-columns: 1fr; }
        .hamburger { display: flex; }
    }
    @media (min-width: 721px) {
        .hamburger { display: none; }
        .mobile-menu { display: none !important; }
    }

    /* ── Hamburger ──────────────────────────────────────── */
    .hamburger {
        flex-direction: column; gap: 5px;
        background: none; border: none; cursor: pointer;
        padding: 6px; border-radius: 8px;
        transition: background 0.2s;
    }
    .hamburger:hover { background: var(--green-light); }
    .hamburger span {
        display: block; width: 22px; height: 2px;
        background: var(--green-dark); border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform-origin: center;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── Mobile menu ────────────────────────────────────── */
    .mobile-menu {
        position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
        background: rgba(250,248,244,0.97); backdrop-filter: blur(14px);
        z-index: 98;
        display: flex; flex-direction: column;
        align-items: center; justify-content: center; gap: 4px;
        opacity: 0; pointer-events: none;
        transform: translateY(-14px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .mobile-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }
    .mobile-link {
        font-size: 22px; font-weight: 500; letter-spacing: 0.02em;
        color: var(--text); text-decoration: none;
        padding: 14px 32px; border-radius: 12px;
        transition: color 0.2s, background 0.2s;
        width: 80%; text-align: center;
    }
    .mobile-link:hover { color: var(--green); background: var(--green-light); }
    .mobile-divider { width: 40px; height: 1.5px; background: var(--border); margin: 10px 0; }

    /* ── Form feedback ──────────────────────────────────── */
    .form-feedback {
        display: none; margin-top: 10px; padding: 14px 18px;
        border-radius: 10px; font-size: 14px; text-align: center; line-height: 1.5;
    }
    .form-feedback.success { background: #e8f5e2; border: 1px solid var(--border); color: var(--green-dark); }
    .form-feedback.error { background: #fdecea; border: 1px solid #f5c6cb; color: #c0392b; }
    .btn-send:disabled { opacity: 0.65; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

    .calendar-page main {
        min-height: 100vh;
        padding: 170px 40px 90px;
        background: linear-gradient(180deg, white 0%, var(--cream) 48%);
    }
    .calendar-wrap { max-width: 900px; margin: 0 auto; }
    .calendar-page .section-tag {
        font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
        color: var(--green); font-weight: 500; margin-bottom: 12px;
    }
    .calendar-page h1 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(34px, 5vw, 56px); line-height: 1.1;
        margin-bottom: 18px;
    }
    .calendar-page .section-subtitle {
        font-size: 18px; color: var(--text-muted); line-height: 1.75;
        max-width: 660px;
    }
    .calendar-box {
        margin-top: 42px; background: white; border: 1px solid var(--border);
        border-radius: 18px; padding: 32px;
        box-shadow: 0 14px 38px rgba(47,107,31,0.08);
    }
    .calendar-login { display: grid; grid-template-columns: 1fr auto; gap: 12px; margin-top: 22px; }
    .calendar-page input {
        padding: 15px 16px; border-radius: 10px; border: 1.5px solid var(--border);
        background: white; font-family: 'DM Sans', sans-serif; font-size: 16px; color: var(--text);
        outline: none;
    }
    .calendar-page input:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(47,107,31,0.1); }
    .calendar-page .btn-send {
        background: var(--green); color: white; padding: 15px 24px; border: none;
        border-radius: 10px; cursor: pointer; font-family: 'DM Sans', sans-serif;
        font-size: 15px; font-weight: 500;
    }
    .calendar-page .btn-send:hover { background: var(--green-dark); }
    .calendar-error { display: none; color: #c0392b; font-size: 14px; margin-top: 12px; }
    .calendar-events { display: none; margin-top: 26px; }
    .calendar-event {
        display: grid; grid-template-columns: 160px 1fr; gap: 22px;
        padding: 22px 0; border-top: 1px solid var(--border);
    }
    .calendar-date { color: var(--green); font-weight: 600; line-height: 1.5; }
    .calendar-event h2 { font-size: 19px; color: var(--green-dark); margin-bottom: 6px; }
    .calendar-event p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }
    .calendar-place { display: block; color: var(--text); margin-bottom: 4px; }
    .back-link {
        display: inline-flex; margin-top: 34px; color: var(--green-dark);
        text-decoration: none; font-weight: 500;
    }
    .back-link:hover { color: var(--green); }


/* Shared multipage navigation and responsive fixes. */
.lang-btn { text-decoration: none; }
.subpage main { padding-top: 100px; min-height: 80vh; }
h1.section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 44px); line-height: 1.15; margin-bottom: 20px; }
[id] { scroll-margin-top: 120px; }
.page-links { display: flex; flex-wrap: wrap; gap: 12px 24px; width: 100%; }
.page-links a { color: inherit; }
.contact-item { overflow-wrap: anywhere; min-width: 0; }
input, textarea { min-width: 0; width: 100%; }
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(28px); }
.js .reveal.visible { opacity: 1; transform: none; }
.modal-backdrop { visibility: hidden; }
.modal-backdrop.open { visibility: visible; }
:focus-visible { outline: 3px solid #85b774; outline-offset: 4px; }
@media (max-width: 720px) {
  .nav-logo { width: 130px; }
  .nav-right { gap: 8px; }
  .values-grid { grid-template-columns: minmax(0, 1fr); }
  .calendar-page main { padding: 150px 24px 70px; }
  .calendar-box { padding: 24px; }
  .calendar-login, .calendar-event { grid-template-columns: minmax(0, 1fr); }
  .calendar-event { gap: 6px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
