* { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --forest-dark: #1a4d2e; --forest: #2d6a4f; --forest-light: #40916c;
            --sage: #74c69d; --mint: #95d5b2; --cream: #f8f6f0;
            --bark: #5c4033; --bark-light: #8b6914; --gold: #daa520; --gold-light: #f0c850;
            --campfire: #e07c3e; --campfire-dark: #c65d1a;
            --text-dark: #1a1a1a; --text-medium: #4a4a4a; --text-light: #757575;
            --white: #ffffff; --border: #e0e0e0;
        }
        body { font-family: 'Nunito', sans-serif; color: var(--text-dark); line-height: 1.6; background: var(--cream); }
        h1, h2, h3, h4, h5, h6 { font-family: 'Fredoka', sans-serif; font-weight: 600; line-height: 1.3; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        /* Pseudo-pages (single-file routing)
           Home is the default page; Join and Calendar are sibling sections
           revealed by the URL fragment via :target. Any .page target hides
           the default home page (body:has keeps this a pure-CSS swap). */
        .page { display: none; }
        .page-home { display: block; }
        .page:target { display: block; }
        body:has(.page:target) .page-home:not(:target) { display: none; }

        /* Header */
        .header { background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 100%); position: fixed; top: 0; left: 0; right: 0; z-index: 1000; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
        .header-content { display: flex; align-items: center; justify-content: space-between; height: 75px; }
        .logo { display: flex; align-items: center; gap: 14px; }
        .logo-icon { width: 50px; height: 50px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.2); overflow: hidden; }
        .logo-icon img { width: 100%; height: 100%; object-fit: contain; }
        .logo-text { color: white; }
        .logo-text .main { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 22px; line-height: 1.1; }
        .logo-text .sub { font-size: 12px; color: var(--sage); font-weight: 600; }
        .nav-desktop { display: none; }
        .nav-desktop a { color: rgba(255,255,255,0.9); font-size: 14px; font-weight: 600; margin: 0 14px; transition: all 0.2s; position: relative; }
        .nav-desktop a:hover { color: var(--gold); }
        .nav-desktop a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s; }
        .nav-desktop a:hover::after { width: 100%; }
        .nav-desktop a.active { color: var(--gold); }
        .nav-desktop a.active::after { width: 100%; }
        /* Reflect the active pseudo-page in the nav (default = Home) */
        body:not(:has(.page:target)) .nav-desktop a[href="#home"],
        body:has(#home:target) .nav-desktop a[href="#home"],
        body:has(#join:target) .nav-desktop a[href="#join"],
        body:has(#calendar:target) .nav-desktop a[href="#calendar"] { color: var(--gold); }
        body:not(:has(.page:target)) .nav-desktop a[href="#home"]::after,
        body:has(#home:target) .nav-desktop a[href="#home"]::after,
        body:has(#join:target) .nav-desktop a[href="#join"]::after,
        body:has(#calendar:target) .nav-desktop a[href="#calendar"]::after { width: 100%; }
        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; border-radius: 50px; font-weight: 700; font-size: 14px; cursor: pointer; border: none; transition: all 0.3s; }
        .btn-primary { background: var(--campfire); color: white; box-shadow: 0 4px 15px rgba(224, 124, 62, 0.4); }
        .btn-primary:hover { background: var(--campfire-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(224, 124, 62, 0.5); }
        .btn-outline { background: transparent; border: 2px solid white; color: white; }
        .btn-outline:hover { background: white; color: var(--forest-dark); }
        .btn-large { padding: 16px 32px; font-size: 16px; }
        .mobile-menu-btn { background: none; border: none; color: white; cursor: pointer; padding: 8px; }
        .mobile-menu { display: none; position: fixed; top: 0; right: 0; width: 300px; height: 100vh; background: var(--forest-dark); padding: 90px 24px 24px; z-index: 999; box-shadow: -5px 0 30px rgba(0,0,0,0.3); }
        .mobile-menu.active { display: block; }
        .mobile-menu a { display: block; color: rgba(255,255,255,0.9); font-size: 17px; font-weight: 600; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
        .mobile-menu .btn { margin-top: 24px; width: 100%; }
        .overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998; }
        .overlay.active { display: block; }

        /* Hero */
        .hero { min-height: 100vh; padding-top: 75px; position: relative; overflow: hidden; }
        .hero-bg { position: absolute; inset: 0; background: var(--forest-dark) center/cover no-repeat; }
        .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(26, 77, 46, 0.9), rgba(26, 77, 46, 0.7), transparent); }
        .hero-content { position: relative; z-index: 10; padding: 80px 0 120px; }
        .hero-grid { display: grid; grid-template-columns: 1fr; gap: 50px; align-items: center; }
        .badge { display: inline-flex; align-items: center; gap: 8px; background: var(--campfire); color: white; padding: 8px 18px; border-radius: 30px; font-size: 13px; font-weight: 700; margin-bottom: 24px; box-shadow: 0 4px 15px rgba(224, 124, 62, 0.4); }
        .badge svg { width: 16px; height: 16px; }
        .hero h1 { color: white; font-size: 42px; margin-bottom: 20px; text-shadow: 0 4px 30px rgba(0,0,0,0.3); }
        .hero-subtitle { color: var(--gold-light); font-size: 22px; font-weight: 700; margin-bottom: 16px; }
        .hero-text { color: rgba(255,255,255,0.9); font-size: 17px; margin-bottom: 28px; max-width: 520px; line-height: 1.7; }
        .event-card { background: rgba(255,255,255,0.12); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.2); border-radius: 16px; padding: 24px; margin-bottom: 28px; }
        .event-card h3 { color: var(--gold); font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
        .event-item { display: flex; align-items: center; gap: 12px; color: white; margin-bottom: 10px; font-size: 15px; font-weight: 500; }
        .event-item svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
        .hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
        .hero-logo { display: none; }
        .hero-logo img { width: 320px; height: auto; object-fit: contain; filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3)); }

        /* Quick Links */
        .quick-links { display: grid; grid-template-columns: 1fr; background: var(--cream); }
        .quick-link-card { position: relative; height: 280px; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; color: white; cursor: pointer; }
        .quick-link-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.4s; }
        .quick-link-card:hover .quick-link-bg { transform: scale(1.08); }
        .quick-link-overlay { position: absolute; inset: 0; transition: opacity 0.3s; }
        .quick-link-card.green .quick-link-overlay { background: linear-gradient(to top, rgba(26, 77, 46, 0.95), rgba(26, 77, 46, 0.6), transparent); }
        .quick-link-card.orange .quick-link-overlay { background: linear-gradient(to top, rgba(224, 124, 62, 0.95), rgba(224, 124, 62, 0.6), transparent); }
        .quick-link-card.gold .quick-link-overlay { background: linear-gradient(to top, rgba(139, 105, 20, 0.95), rgba(139, 105, 20, 0.6), transparent); }
        .quick-link-card.bark .quick-link-overlay { background: linear-gradient(to top, rgba(92, 64, 51, 0.95), rgba(92, 64, 51, 0.6), transparent); }
        .quick-link-content { position: relative; z-index: 1; }
        .quick-link-icon { width: 48px; height: 48px; background: rgba(255,255,255,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
        .quick-link-icon svg { width: 24px; height: 24px; }
        .quick-link-card h3 { font-size: 20px; margin-bottom: 8px; }
        .quick-link-card p { font-size: 14px; opacity: 0.9; margin-bottom: 14px; line-height: 1.5; }
        .quick-link-arrow { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; transition: gap 0.3s; }
        .quick-link-card:hover .quick-link-arrow { gap: 12px; }

        /* Sections */
        .section { padding: 80px 0; }
        .section-header { text-align: center; margin-bottom: 50px; }
        .section-label { display: inline-block; color: var(--campfire); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; }
        .section-title { font-size: 36px; color: var(--text-dark); margin-bottom: 14px; }
        .section-title span { color: var(--forest); }
        .section-subtitle { color: var(--text-medium); font-size: 17px; max-width: 650px; margin: 0 auto; line-height: 1.7; }

        /* Welcome */
        .welcome-grid { display: grid; grid-template-columns: 1fr; gap: 50px; align-items: center; }
        .welcome-text h2 { font-size: 32px; margin-bottom: 20px; color: var(--forest-dark); }
        .welcome-text p { color: var(--text-medium); margin-bottom: 18px; font-size: 16px; line-height: 1.8; }
        .highlight-box { background: linear-gradient(135deg, rgba(45, 106, 79, 0.08), rgba(116, 198, 157, 0.08)); border-left: 5px solid var(--campfire); padding: 20px 24px; border-radius: 0 12px 12px 0; margin: 24px 0; }
        .highlight-box p { color: var(--forest-dark); font-weight: 700; margin: 0; font-size: 17px; font-style: italic; }
        .values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
        .value-item { display: flex; align-items: flex-start; gap: 14px; }
        .value-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--forest), var(--forest-light)); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 12px rgba(45, 106, 79, 0.3); }
        .value-icon svg { width: 22px; height: 22px; color: white; }
        .value-item h4 { font-size: 15px; margin-bottom: 4px; color: var(--forest-dark); }
        .value-item p { font-size: 13px; color: var(--text-light); margin: 0; }
        .welcome-image { position: relative; }
        .welcome-image img { border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); width: 100%; height: 400px; object-fit: cover; }
        .floating-card { position: absolute; background: white; border-radius: 16px; padding: 18px; box-shadow: 0 10px 40px rgba(0,0,0,0.12); border: 2px solid var(--border); }
        .floating-card.bottom-left { bottom: -25px; left: -20px; }
        .floating-card.top-right { top: -25px; right: -20px; }
        .floating-card-content { display: flex; align-items: center; gap: 14px; }
        .floating-card-icon { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; }
        .floating-card-icon.orange { background: rgba(224, 124, 62, 0.15); color: var(--campfire); }
        .floating-card-icon.green { background: rgba(45, 106, 79, 0.15); color: var(--forest); }
        .floating-card-text h4 { font-size: 15px; margin-bottom: 2px; color: var(--forest-dark); }
        .floating-card-text p { font-size: 12px; color: var(--text-light); margin: 0; }

        /* Organization */
        .organization { background: linear-gradient(180deg, var(--cream) 0%, white 100%); }
        .dens-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
        .den-card { display: block; background: white; border-radius: 16px; padding: 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 2px solid var(--border); transition: all 0.3s; text-decoration: none; color: inherit; }
        .den-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); border-color: var(--sage); }
        .den-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
        .den-icon.has-badge { width: 96px; height: 96px; }
        .den-icon img { width: 100%; height: 100%; object-fit: contain; padding: 4px; box-sizing: border-box; }
        .den-icon svg { width: 28px; height: 28px; color: white; }
        .den-card h3 { font-size: 20px; margin-bottom: 6px; color: var(--forest-dark); }
        .den-grade { color: var(--campfire); font-size: 14px; font-weight: 700; margin-bottom: 10px; }
        .den-card p { font-size: 14px; color: var(--text-medium); line-height: 1.6; }
        .meeting-info { background: linear-gradient(135deg, var(--forest-dark), var(--forest)); border-radius: 20px; padding: 32px; color: white; margin-top: 40px; box-shadow: 0 15px 50px rgba(26, 77, 46, 0.3); }
        .meeting-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
        .meeting-block h3 { font-size: 18px; margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
        .meeting-block h3 svg { width: 24px; height: 24px; color: var(--gold); }
        .meeting-block p { font-size: 15px; color: rgba(255,255,255,0.85); margin-bottom: 12px; line-height: 1.7; }
        .meeting-location { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.7); }
        .meeting-location svg { width: 18px; height: 18px; color: var(--gold); }
        .charter-info { text-align: center; margin-top: 28px; font-size: 14px; color: var(--text-light); }
        .charter-info span { color: var(--forest); font-weight: 700; }

        /* Activities */
        .activities-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
        .activity-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 2px solid var(--border); transition: all 0.3s; }
        .activity-card:hover { transform: translateY(-8px); box-shadow: 0 15px 50px rgba(0,0,0,0.12); }
        .activity-image { position: relative; height: 220px; overflow: hidden; }
        .activity-image img { width: 100%; height: 100%; object-fit: cover; }
        .activity-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5), transparent); }
        .activity-icon { position: absolute; top: 16px; left: 16px; width: 48px; height: 48px; background: white; border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
        .activity-icon svg { width: 24px; height: 24px; color: var(--forest); }
        .activity-content { padding: 24px; }
        .activity-content h3 { font-size: 20px; margin-bottom: 10px; color: var(--forest-dark); }
        .activity-content p { font-size: 14px; color: var(--text-medium); margin-bottom: 16px; line-height: 1.7; }
        .activity-meta { display: flex; flex-wrap: wrap; gap: 16px; }
        .activity-meta-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-light); font-weight: 600; }
        .activity-meta-item svg { width: 16px; height: 16px; color: var(--campfire); }
        .more-activities { margin-top: 40px; }
        .more-activities h3 { text-align: center; font-size: 22px; margin-bottom: 20px; color: var(--forest-dark); }
        .activity-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
        .activity-tag { display: flex; align-items: center; gap: 10px; background: white; padding: 12px 20px; border-radius: 30px; font-size: 14px; font-weight: 600; color: var(--forest-dark); border: 2px solid var(--border); transition: all 0.3s; }
        .activity-tag:hover { background: var(--forest); color: white; border-color: var(--forest); }
        .activity-tag svg { width: 18px; height: 18px; color: var(--forest); }
        .activity-tag:hover svg { color: white; }
        .community-service { background: linear-gradient(135deg, rgba(224, 124, 62, 0.08), rgba(218, 165, 32, 0.08)); border-radius: 16px; padding: 28px; margin-top: 32px; border: 2px solid rgba(224, 124, 62, 0.2); }
        .community-service h4 { color: var(--campfire); font-size: 18px; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
        .community-service p { font-size: 15px; color: var(--text-medium); line-height: 1.7; }
        .text-center { text-align: center; }
        .mt-4 { margin-top: 32px; }

        /* Scout Values */
        .scout-values { background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 100%); color: white; }
        .scout-values .section-title { color: white; }
        .scout-values .section-subtitle { color: rgba(255,255,255,0.8); }
        .values-cards { display: grid; grid-template-columns: 1fr; gap: 20px; }
        .value-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); border-radius: 20px; padding: 32px; transition: all 0.3s; }
        .value-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-5px); }
        .value-card-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
        .value-card-icon.green { background: var(--forest); }
        .value-card-icon.orange { background: var(--campfire); }
        .value-card-icon.gold { background: var(--bark-light); }
        .value-card-icon svg { width: 30px; height: 30px; color: white; }
        .value-card h3 { font-size: 22px; margin-bottom: 12px; }
        .value-card p { font-size: 15px; color: rgba(255,255,255,0.9); line-height: 1.8; }
        .scout-law-points { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; padding: 28px; margin-top: 32px; }
        .scout-law-points h3 { text-align: center; font-size: 20px; margin-bottom: 20px; }
        .points-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
        .point-tag { background: rgba(255,255,255,0.1); padding: 10px 18px; border-radius: 30px; font-size: 14px; font-weight: 600; transition: all 0.3s; cursor: default; }
        .point-tag:hover { background: var(--campfire); }

        /* Why Scouting */
        .why-scouting { background: white; }
        .benefits-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
        .benefit-card { background: var(--cream); border-radius: 16px; padding: 28px; border: 2px solid var(--border); transition: all 0.3s; }
        .benefit-card:hover { border-color: var(--sage); transform: translateY(-5px); }
        .benefit-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
        .benefit-icon svg { width: 28px; height: 28px; color: white; }
        .benefit-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--forest-dark); }
        .benefit-card p { font-size: 14px; color: var(--text-medium); line-height: 1.7; }

        /* FAQs */
        .faq-section { background: var(--cream); }
        .faq-container { max-width: 850px; margin: 0 auto; }
        .faq-list { background: white; border-radius: 20px; box-shadow: 0 4px 30px rgba(0,0,0,0.06); border: 2px solid var(--border); overflow: hidden; }
        .faq-item { border-bottom: 1px solid var(--border); }
        .faq-item:last-child { border-bottom: none; }
        .faq-question { width: 100%; display: flex; align-items: center; gap: 16px; padding: 22px 24px; background: none; border: none; text-align: left; cursor: pointer; font-family: inherit; transition: background 0.2s; }
        .faq-question:hover { background: rgba(45, 106, 79, 0.03); }
        .faq-question h3 { flex: 1; font-size: 16px; font-weight: 700; color: var(--forest-dark); }
        .faq-chevron { width: 32px; height: 32px; background: rgba(224, 124, 62, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
        .faq-chevron svg { width: 18px; height: 18px; color: var(--campfire); transition: transform 0.3s; }
        .faq-item.active .faq-chevron { background: var(--campfire); }
        .faq-item.active .faq-chevron svg { color: white; transform: rotate(180deg); }
        .faq-answer { display: none; padding: 0 24px 24px 24px; }
        .faq-item.active .faq-answer { display: block; }
        .faq-answer p { font-size: 15px; color: var(--text-medium); line-height: 1.9; white-space: pre-line; }
        .faq-contact { text-align: center; margin-top: 32px; }
        .faq-contact p { color: var(--text-medium); margin-bottom: 10px; font-size: 15px; }
        .faq-contact a { color: var(--forest); font-weight: 700; font-size: 16px; }
        .faq-contact a:hover { color: var(--campfire); }

        /* Join */
        .join { background: linear-gradient(180deg, white 0%, var(--cream) 100%); }
        .join-steps { display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 900px; margin: 0 auto; }
        .join-step { display: flex; gap: 20px; background: var(--cream); border: 2px solid var(--border); border-radius: 20px; padding: 28px; transition: all 0.3s; min-width: 0; }
        .join-step:hover { border-color: var(--sage); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
        .join-step-number { flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--campfire), var(--campfire-dark)); color: white; font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 22px; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(224, 124, 62, 0.35); }
        .join-step-body { flex: 1; min-width: 0; overflow-wrap: anywhere; }
        .join-step-body h3 { font-size: 20px; color: var(--forest-dark); margin-bottom: 8px; }
        .join-step-body p { font-size: 15px; color: var(--text-medium); line-height: 1.75; margin-bottom: 12px; }
        .join-step-body p:last-child { margin-bottom: 0; }
        .join-step-body ul { list-style: none; margin: 0 0 12px; padding: 0; }
        .join-step-body li { position: relative; padding-left: 22px; font-size: 15px; color: var(--text-medium); line-height: 1.7; margin-bottom: 6px; }
        .join-step-body li::before { content: ''; position: absolute; left: 4px; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--sage); }
        .join-step-body a:not(.btn) { color: var(--forest); font-weight: 700; }
        .join-step-body a:not(.btn):hover { color: var(--campfire); }
        .join-step-body .btn { margin-top: 4px; }
        .join-contact { max-width: 900px; margin: 36px auto 0; background: linear-gradient(135deg, var(--forest-dark), var(--forest)); border-radius: 20px; padding: 32px; text-align: center; color: white; box-shadow: 0 15px 50px rgba(26, 77, 46, 0.3); }
        .join-contact h3 { font-size: 22px; margin-bottom: 10px; }
        .join-contact p { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 8px; }
        .join-contact a { color: var(--gold-light); font-weight: 700; }
        .join-contact a:hover { color: var(--white); }

        /* Page hero (interior pages) */
        .page-hero { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 100%); padding: 150px 0 70px; text-align: center; color: white; }
        .page-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 120%, rgba(116, 198, 157, 0.25), transparent 55%), radial-gradient(circle at 85% -10%, rgba(224, 124, 62, 0.25), transparent 45%); }
        .page-hero .container { position: relative; z-index: 1; }
        .page-hero h1 { font-size: 42px; margin-bottom: 14px; }
        .page-hero p { color: rgba(255,255,255,0.88); font-size: 18px; max-width: 680px; margin: 0 auto; line-height: 1.7; }
        .page-hero .badge { margin-bottom: 20px; }

        /* Home join teaser */
        .join-teaser { background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 100%); border-radius: 24px; padding: 48px; text-align: center; color: white; box-shadow: 0 20px 60px rgba(26, 77, 46, 0.3); }
        .join-teaser .section-label { color: var(--gold-light); }
        .join-teaser h2 { font-size: 34px; color: white; margin-bottom: 14px; }
        .join-teaser p { color: rgba(255,255,255,0.85); font-size: 17px; max-width: 620px; margin: 0 auto 28px; line-height: 1.75; }
        .join-teaser .btn-outline { border-color: var(--gold); color: var(--gold-light); }
        .join-teaser .btn-outline:hover { background: var(--gold); color: var(--forest-dark); }

        /* Calendar */
        .calendar { background: linear-gradient(180deg, white 0%, var(--cream) 100%); }
        .embed-card { background: white; border: 2px solid var(--border); border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); margin-bottom: 28px; }
        .embed-card:last-of-type { margin-bottom: 0; }
        .embed-header { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding: 20px 24px; border-bottom: 2px solid var(--border); }
        .embed-header h3 { font-size: 20px; color: var(--forest-dark); display: flex; align-items: center; gap: 12px; margin: 0; }
        .embed-header h3 svg { width: 24px; height: 24px; color: var(--campfire); }
        .embed-body { width: 100%; }
        .embed-body iframe { display: block; width: 100%; border: 0; background: white; }
        .embed-body .embed-doc { height: 1000px; }
        .embed-body .embed-calendar { height: 640px; }
        .calendar-note { display: flex; align-items: flex-start; gap: 14px; background: linear-gradient(135deg, rgba(224, 124, 62, 0.08), rgba(218, 165, 32, 0.08)); border: 2px solid rgba(224, 124, 62, 0.2); border-radius: 16px; padding: 20px 24px; margin-top: 28px; }
        .calendar-note svg { width: 24px; height: 24px; color: var(--campfire); flex-shrink: 0; margin-top: 2px; }
        .calendar-note p { font-size: 15px; color: var(--text-medium); line-height: 1.7; margin: 0; }
        .calendar-note strong { color: var(--campfire-dark); }

        /* Footer */
        .footer { background: var(--forest-dark); color: white; padding: 60px 0 0; }
        .footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
        .footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
        .footer-brand .logo-icon { width: 56px; height: 56px; }
        .footer-brand-text h3 { font-size: 22px; }
        .footer-brand-text p { font-size: 13px; color: rgba(255,255,255,0.6); }
        .footer-about p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 20px; }
        .footer-column h4 { font-size: 18px; margin-bottom: 20px; color: var(--gold); }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { font-size: 14px; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 8px; transition: all 0.2s; }
        .footer-links a:hover { color: var(--gold); transform: translateX(5px); }
        .footer-links svg { width: 14px; height: 14px; }
        .footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 14px; color: rgba(255,255,255,0.7); }
        .footer-contact-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
        .meeting-box { background: rgba(255,255,255,0.08); border-radius: 12px; padding: 18px; margin-top: 20px; }
        .meeting-box .title { color: rgba(255,255,255,0.9); font-weight: 700; font-size: 14px; margin-bottom: 6px; }
        .meeting-box .time { color: rgba(255,255,255,0.6); font-size: 13px; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding: 20px 0; }
        .footer-bottom-content { display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.5); }
        .footer-bottom-content svg { width: 16px; height: 16px; color: var(--campfire); fill: var(--campfire); }
        .back-to-top { position: fixed; bottom: 24px; right: 24px; width: 50px; height: 50px; background: var(--campfire); border: none; border-radius: 50%; display: none; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 6px 20px rgba(224, 124, 62, 0.4); transition: all 0.3s; z-index: 999; }
        .back-to-top.visible { display: flex; }
        .back-to-top:hover { background: var(--campfire-dark); transform: translateY(-3px); }
        .back-to-top svg { width: 24px; height: 24px; color: white; }

        /* Responsive */
        @media (max-width: 639px) {
            .join-step { flex-direction: column; gap: 14px; padding: 22px 20px; }
            .join-step-number { width: 44px; height: 44px; font-size: 19px; }
            .join-step-body h3 { font-size: 18px; }
            .join-contact { padding: 26px 20px; }
        }
        @media (min-width: 640px) {
            .hero h1 { font-size: 48px; }
            .section-title { font-size: 40px; }
            .quick-links { grid-template-columns: repeat(3, 1fr); }
            .dens-grid { grid-template-columns: repeat(2, 1fr); }
            .activities-grid { grid-template-columns: repeat(2, 1fr); }
            .values-cards { grid-template-columns: repeat(3, 1fr); }
            .benefits-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (min-width: 768px) {
            .nav-desktop { display: flex; }
            .nav-desktop a { margin: 0 8px; font-size: 13px; }
            .mobile-menu-btn { display: none; }
            .hero-grid { grid-template-columns: 1fr 1fr; }
            .hero-logo { display: flex; justify-content: center; }
            .welcome-grid { grid-template-columns: 1fr 1fr; }
            .meeting-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(4, 1fr); }
            .footer-bottom-content { flex-direction: row; justify-content: space-between; }
        }
        @media (min-width: 1024px) {
            .nav-desktop a { margin: 0 14px; font-size: 14px; }
            .hero h1 { font-size: 52px; }
            .dens-grid { grid-template-columns: repeat(3, 1fr); }
            .activities-grid { grid-template-columns: repeat(3, 1fr); }
            .benefits-grid { grid-template-columns: repeat(3, 1fr); }
        }
    