/* =============================================
   HOMEPAGE CSS - Province Assomptionniste d'Afrique
   Maquette Design — Navy / Gold / Cream
   ============================================= */

/* ============================================
   CSS VARIABLES — MAQUETTE DESIGN SYSTEM
   ============================================ */
:root {
    --hp-navy: #0f1b2d;
    --hp-navy-light: #1a2a42;
    --hp-blue-deep: #1e3a5f;
    --hp-gold: #c8a45c;
    --hp-gold-light: #e0c88a;
    --hp-gold-dark: #a88534;
    --hp-cream: #faf7f2;
    --hp-white: #ffffff;
    --hp-text-dark: #1a1a2e;
    --hp-text-muted: #5a6275;
    --hp-text-light: #8a92a6;
    --hp-accent-red: #8b2f3a;
    --hp-border-light: rgba(200, 164, 92, 0.15);
    --hp-shadow-soft: 0 4px 30px rgba(0,0,0,0.08);
    --hp-shadow-medium: 0 8px 40px rgba(0,0,0,0.12);
    --hp-shadow-gold: 0 4px 25px rgba(200, 164, 92, 0.2);
    --hp-radius: 12px;
    --hp-radius-lg: 20px;
    --hp-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --hp-font-heading: 'Playfair Display', 'Georgia', serif;
    --hp-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --hp-font-accent: 'Cormorant Garamond', 'Georgia', serif;
}

/* ============================================
   GLOBAL HOMEPAGE OVERRIDES
   ============================================ */
.hp-page {
    font-family: var(--hp-font-body);
    color: var(--hp-text-dark);
    -webkit-font-smoothing: antialiased;
}
.hp-page img { max-width: 100%; display: block; }
.hp-page a { text-decoration: none; color: inherit; transition: var(--hp-transition); }
.hp-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   BUTTONS — MAQUETTE
   ============================================ */
.hp-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 24px; border-radius: 50px; font-weight: 600;
    font-size: 0.88rem; transition: var(--hp-transition);
    border: none; cursor: pointer; font-family: var(--hp-font-body);
    text-decoration: none;
}
.hp-btn-gold {
    background: linear-gradient(135deg, var(--hp-gold), var(--hp-gold-dark));
    color: var(--hp-white); box-shadow: var(--hp-shadow-gold);
}
.hp-btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(200, 164, 92, 0.35); color: var(--hp-white); }
.hp-btn-outline {
    background: transparent; border: 2px solid var(--hp-navy); color: var(--hp-navy);
}
.hp-btn-outline:hover { background: var(--hp-navy); color: var(--hp-white); }
.hp-btn-outline-white {
    background: transparent; border: 2px solid rgba(255,255,255,0.5); color: var(--hp-white);
}
.hp-btn-outline-white:hover { background: var(--hp-white); color: var(--hp-navy); }
.hp-btn-white { background: var(--hp-white); color: var(--hp-navy); box-shadow: var(--hp-shadow-soft); }
.hp-btn-white:hover { transform: translateY(-2px); box-shadow: var(--hp-shadow-medium); }
.hp-btn-lg { padding: 14px 34px; font-size: 1rem; }

/* ============================================
   HERO V2 — PROFESSIONAL REDESIGN
   3 rows: Intro+Founder | Gallery+Pensée | Stats
   ============================================ */

/* --- Section Container --- */
.hero-v2 {
    background: var(--hp-cream);
    position: relative;
    overflow: hidden;
}
.hero-v2-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==============================
   ROW 1 — INTRO + FOUNDER
   ============================== */
.hero-v2-top {
    background: var(--hp-navy);
    padding: 110px 0 70px;
    position: relative;
    overflow: hidden;
}
.hero-v2-top::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(200,164,92,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(200,164,92,0.05) 0%, transparent 50%);
    pointer-events: none;
}
.hero-v2-top::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,164,92,0.2), transparent);
}
.hero-v2-top > .hero-v2-container {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Badge */
.hero-v2-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 22px;
    background: rgba(200,164,92,0.12);
    border: 1px solid rgba(200,164,92,0.3);
    border-radius: 50px;
    color: var(--hp-gold-light);
    font-size: 0.8rem; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    margin-bottom: 26px;
    animation: heroSlideIn 0.7s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-v2-badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--hp-gold);
    box-shadow: 0 0 10px var(--hp-gold), 0 0 20px rgba(200,164,92,0.3);
    animation: heroDotPulse 2s ease-in-out infinite;
}
@keyframes heroDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px var(--hp-gold), 0 0 20px rgba(200,164,92,0.3); }
    50% { opacity: 0.5; transform: scale(0.7); box-shadow: 0 0 4px var(--hp-gold); }
}

/* Animations */
@keyframes heroSlideIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes heroSlideInRight {
    from { opacity: 0; transform: translateX(40px) scale(0.95); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes heroTextReveal {
    from { opacity: 0; transform: translateY(20px); filter: blur(4px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes heroGlow {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.15); }
}

/* Title */
.hero-v2-title {
    font-family: var(--hp-font-heading);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
}
.hero-v2-title-line {
    display: inline;
    animation: heroTitleSlideIn 0.9s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}
.hero-v2-title-accent {
    display: inline;
    background: linear-gradient(135deg, var(--hp-gold-light) 0%, var(--hp-gold) 50%, var(--hp-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroTitleSlideIn 0.9s cubic-bezier(0.16,1,0.3,1) 0.3s both;
    filter: drop-shadow(0 2px 8px rgba(200,164,92,0.3));
}
@keyframes heroTitleSlideIn {
    from { opacity: 0; transform: translateY(25px); filter: blur(6px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Subtitle */
.hero-v2-subtitle {
    font-family: var(--hp-font-accent);
    font-size: 1.3rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    max-width: 560px;
    font-style: italic;
    margin-bottom: 36px;
    animation: heroTextReveal 0.8s cubic-bezier(0.16,1,0.3,1) 0.35s both;
    text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}
.hero-v2-subtitle-author {
    display: block;
    margin-top: 6px;
    font-style: normal;
    font-size: 0.92rem;
    color: rgba(200,164,92,0.75);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Buttons */
.hero-v2-actions {
    display: flex; gap: 12px; flex-wrap: wrap;
    animation: heroSlideIn 0.8s cubic-bezier(0.16,1,0.3,1) 0.5s both;
}
.hero-v2-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 30px; border-radius: 50px;
    font-weight: 600; font-size: 0.9rem;
    font-family: var(--hp-font-body);
    text-decoration: none; cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
    border: 2px solid transparent;
    white-space: nowrap;
}
.hero-v2-btn i { font-size: 0.85rem; }
.hero-v2-btn-primary {
    background: linear-gradient(135deg, var(--hp-gold), var(--hp-gold-dark));
    color: #fff;
    box-shadow: 0 4px 20px rgba(200,164,92,0.3);
}
.hero-v2-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(200,164,92,0.5);
    color: #fff;
}
.hero-v2-btn-outline {
    background: transparent;
    border-color: rgba(255,255,255,0.35);
    color: #fff;
}
.hero-v2-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--hp-gold);
    color: var(--hp-gold);
    transform: translateY(-3px);
}
.hero-v2-btn-ghost {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
    padding: 11px 22px;
    font-size: 0.82rem;
}
.hero-v2-btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
    transform: translateY(-2px);
}

/* --- Founder Card (vertical, enlarged, centered) --- */
.hero-v2-founder {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 32px 28px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: heroSlideInRight 1s cubic-bezier(0.16,1,0.3,1) 0.4s both;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.hero-v2-founder-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 140px; height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,164,92,0.25) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: heroGlow 4s ease-in-out infinite;
}
.hero-v2-founder-portrait {
    width: 130px; height: 130px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    margin-bottom: 18px;
    z-index: 1;
}
.hero-v2-founder-portrait::before {
    content: '';
    position: absolute; inset: -5px;
    border-radius: 50%;
    background: conic-gradient(var(--hp-gold) 0deg, var(--hp-gold-light) 120deg, rgba(255,255,255,0.08) 240deg, var(--hp-gold) 360deg);
    animation: hpRotateBorder 8s linear infinite;
}
@keyframes hpRotateBorder { to { transform: rotate(360deg); } }
.hero-v2-founder-portrait img {
    width: 120px; height: 120px;
    object-fit: cover; border-radius: 50%;
    position: relative; z-index: 2;
    border: 4px solid rgba(255,255,255,0.85);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero-v2-founder-fallback {
    width: 120px; height: 120px;
    background: var(--hp-navy-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--hp-gold); font-size: 2.2rem;
    font-family: var(--hp-font-heading); font-weight: 700;
    position: relative; z-index: 2;
}
.hero-v2-founder-name {
    font-family: var(--hp-font-heading);
    font-size: 1.2rem; color: #ffffff;
    margin-bottom: 6px; line-height: 1.3;
    position: relative; z-index: 1;
    letter-spacing: 0.01em;
}
.hero-v2-founder-role {
    font-family: var(--hp-font-accent);
    font-size: 0.85rem; color: var(--hp-gold-light);
    font-style: italic;
    white-space: nowrap;
    display: block;
    line-height: 1.5;
    position: relative; z-index: 1;
    margin-bottom: 14px;
}
.hero-v2-founder-dates {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 5px 16px;
    background: rgba(200,164,92,0.12);
    border: 1px solid rgba(200,164,92,0.25);
    border-radius: 50px;
    font-size: 0.72rem; color: var(--hp-gold);
    text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700;
    position: relative; z-index: 1;
    margin-bottom: 16px;
}
.hero-v2-founder-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.78rem; color: rgba(255,255,255,0.5);
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    position: relative; z-index: 1;
    font-weight: 500;
}
.hero-v2-founder-link:hover {
    color: var(--hp-gold);
    border-color: rgba(200,164,92,0.3);
    background: rgba(200,164,92,0.08);
}

/* ==============================
   ROW 2 — GALLERY + PENSÉE
   ============================== */
.hero-v2-gallery-section {
    padding: 40px 0;
    background: var(--hp-cream);
}
.hero-v2-gallery-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 28px;
    align-items: stretch;
}

/* Slideshow — real visible images */
.hero-v2-slideshow {
    position: relative;
    border-radius: var(--hp-radius-lg);
    overflow: hidden;
    background: var(--hp-navy);
    aspect-ratio: 16/9;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
.hero-v2-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.hero-v2-slide.active { opacity: 1; }
.hero-v2-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

/* Navigation arrows */
.hero-v2-slide-nav {
    position: absolute; bottom: 16px; left: 50%;
    transform: translateX(-50%);
    display: flex; align-items: center; gap: 12px;
    z-index: 5;
    padding: 6px 14px;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
}
.hero-v2-slide-prev,
.hero-v2-slide-next {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
}
.hero-v2-slide-prev:hover,
.hero-v2-slide-next:hover {
    background: var(--hp-gold);
    color: var(--hp-navy);
}

/* Dots */
.hero-v2-slide-dots {
    display: flex; gap: 6px; align-items: center;
}
.hero-v2-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.hero-v2-dot.active {
    background: var(--hp-gold);
    width: 24px;
    border-radius: 4px;
}

/* Slide counter */
.hero-v2-slide-counter {
    position: absolute; top: 16px; right: 16px;
    z-index: 5;
    padding: 5px 14px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* --- Pensée du Jour Card --- */
.hero-v2-pensee {
    background: var(--hp-white);
    border: 1px solid var(--hp-border-light);
    border-radius: var(--hp-radius-lg);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    display: flex; flex-direction: column;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.hero-v2-pensee-icon {
    position: absolute; top: 12px; right: 16px;
    font-size: 3rem; color: rgba(200,164,92,0.1);
    line-height: 1;
}
.hero-v2-pensee-label {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.72rem; text-transform: uppercase;
    letter-spacing: 2.5px; font-weight: 800;
    color: var(--hp-gold-dark);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(200,164,92,0.15);
}
.hero-v2-pensee-label i { color: var(--hp-gold); }
.hero-v2-pensee-text {
    font-family: var(--hp-font-accent);
    font-size: 1.15rem;
    color: var(--hp-text-dark);
    line-height: 1.75;
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 20px;
}
.hero-v2-pensee-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--hp-border-light);
}
.hero-v2-pensee-author {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--hp-navy);
}
.hero-v2-pensee-author small {
    display: block;
    font-weight: 400;
    color: var(--hp-text-muted);
    margin-top: 2px;
    font-size: 0.78rem;
}
.hero-v2-pensee-date {
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--hp-text-light);
    display: flex; align-items: center; gap: 6px;
}

/* --- Story variant --- */
.hero-v2-pensee--story { padding-top: 0; }

/* Story image FULL — fills entire card */
.hero-v2-pensee--story-image-full {
    padding: 0 !important;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
}
.hero-v2-story-fullimg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-v2-story-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}
.hero-v2-story-overlay-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; color: #fca5a5;
    margin-bottom: 8px;
}
.hero-v2-story-overlay-title {
    font-family: var(--hp-font-heading);
    font-size: 1.1rem; color: #fff;
    margin: 0 0 10px; line-height: 1.3;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.hero-v2-story-overlay-nav {
    display: flex; gap: 8px;
}
.hero-v2-story-overlay-nav .hero-v2-pensee-nav-btn {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
    backdrop-filter: blur(4px);
}
.hero-v2-story-overlay-nav .hero-v2-pensee-nav-btn:hover {
    background: var(--hp-gold); color: #fff; border-color: var(--hp-gold);
}

/* Old story image (fallback for text stories) */
.hero-v2-story-image {
    width: 100%;
    height: 160px;
    border-radius: var(--hp-radius-lg) var(--hp-radius-lg) 0 0;
    overflow: hidden;
    margin: -28px -28px 20px -28px;
    width: calc(100% + 56px);
}
.hero-v2-story-image img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-v2-story-title {
    font-family: var(--hp-font-heading);
    font-size: 1.05rem;
    color: var(--hp-navy);
    margin-bottom: 8px;
    line-height: 1.3;
}
.hero-v2-pensee-label--story {
    color: #ef4444;
    border-bottom-color: rgba(239,68,68,0.15);
}

/* --- Navigation buttons under pensée/story --- */
.hero-v2-pensee-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--hp-border-light);
}
.hero-v2-pensee-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-decoration: none;
    background: rgba(200,164,92,0.08);
    color: var(--hp-gold-dark);
    border: 1px solid rgba(200,164,92,0.15);
    transition: all 0.3s ease;
    white-space: nowrap;
}
.hero-v2-pensee-nav-btn:hover {
    background: var(--hp-gold);
    color: #fff;
    border-color: var(--hp-gold);
    transform: translateY(-1px);
}
.hero-v2-pensee-nav-btn i {
    font-size: 0.65rem;
}

/* ==============================
   SECTION TRANSITIONS / CONNECTORS
   ============================== */
.hp-section-divider {
    position: relative;
    height: 80px;
    overflow: hidden;
    pointer-events: none;
}
/* Smooth wave transition from dark to light */
.hp-section-divider--wave::before {
    content: '';
    position: absolute;
    bottom: 0; left: -5%; right: -5%;
    height: 100%;
    background: var(--hp-cream);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
/* Wave from light to dark (inverted) */
.hp-section-divider--wave-inv::before {
    content: '';
    position: absolute;
    top: 0; left: -5%; right: -5%;
    height: 100%;
    background: var(--hp-cream);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
}
/* Smooth dark-to-light wave (after hero gallery) */
.hp-section-divider--wave-dark {
    height: 60px;
    background: var(--hp-cream);
    position: relative;
    overflow: hidden;
}
.hp-section-divider--wave-dark::before {
    content: '';
    position: absolute;
    top: 0; left: -5%; right: -5%;
    height: 100%;
    background: var(--hp-navy);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

/* Gold accent line on section entry */
.hp-section {
    position: relative;
}
.hp-section::after {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--hp-gold), transparent);
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.16,1,0.3,1);
}
.hp-section.hp-visible::after {
    width: 100px;
}

/* ==============================
   HERO V2 — RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
    .hero-v2-top > .hero-v2-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .hero-v2-intro { text-align: center; }
    .hero-v2-badge { margin-left: auto; margin-right: auto; }
    .hero-v2-title { text-align: center; }
    .hero-v2-subtitle { margin-left: auto; margin-right: auto; text-align: center; }
    .hero-v2-actions { justify-content: center; }
    .hero-v2-founder {
        max-width: 340px;
        margin: 0 auto;
    }
    .hero-v2-gallery-grid {
        grid-template-columns: 1fr;
    }
    .hero-v2-slideshow {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    .hero-v2-top { padding: 80px 0 40px; }
    .hero-v2-title { font-size: 2.2rem; }
    .hero-v2-subtitle { font-size: 1.05rem; margin-bottom: 24px; }
    .hero-v2-actions { flex-direction: column; align-items: center; }
    .hero-v2-btn { text-align: center; justify-content: center; width: 100%; max-width: 300px; }
    .hero-v2-founder { padding: 28px 24px 22px; max-width: 300px; }
    .hero-v2-founder-portrait { width: 110px; height: 110px; }
    .hero-v2-founder-portrait img { width: 100px; height: 100px; }
    .hero-v2-founder-name { font-size: 1.08rem; }
    .hero-v2-founder-role { white-space: normal; text-align: center; font-size: 0.8rem; }
    .hero-v2-gallery-section { padding: 24px 0; }
    .hero-v2-gallery-grid { gap: 20px; }
    .hero-v2-pensee { padding: 24px 20px; }
    .hero-v2-pensee-text { font-size: 1.02rem; }
    .hero-v2-pensee--story-image-full { min-height: 260px; }
}

@media (max-width: 480px) {
    .hero-v2-top { padding: 70px 0 30px; }
    .hero-v2-title { font-size: 1.75rem; }
    .hero-v2-subtitle { font-size: 0.95rem; }
    .hero-v2-subtitle-author { font-size: 0.82rem; }
    .hero-v2-slideshow { aspect-ratio: 4/3; }
    .hero-v2-founder { padding: 24px 20px 18px; }
    .hero-v2-founder-portrait { width: 100px; height: 100px; margin-bottom: 14px; }
    .hero-v2-founder-portrait img { width: 90px; height: 90px; }
    .hero-v2-founder-role { font-size: 0.75rem; }
    .hero-v2-pensee--story-image-full { min-height: 220px; }
    .hero-v2-story-overlay-title { font-size: 0.95rem; }
}

/* ==============================
   HERO V2 — DARK MODE
   ============================== */
[data-theme="dark"] .hero-v2,
.dark-mode .hero-v2 {
    background: #0a1120;
}
[data-theme="dark"] .hero-v2-top,
.dark-mode .hero-v2-top {
    background: #060b14;
}
[data-theme="dark"] .hero-v2-top::before,
.dark-mode .hero-v2-top::before {
    background:
        radial-gradient(ellipse at 20% 80%, rgba(200,164,92,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(200,164,92,0.03) 0%, transparent 50%);
}
/* Wave divider dark mode */
[data-theme="dark"] .hp-section-divider--wave-dark,
.dark-mode .hp-section-divider--wave-dark {
    background: #0a1120;
}
[data-theme="dark"] .hp-section-divider--wave-dark::before,
.dark-mode .hp-section-divider--wave-dark::before {
    background: #060b14;
}
[data-theme="dark"] .hp-section-divider--wave::before,
.dark-mode .hp-section-divider--wave::before {
    background: #0a1120;
}
[data-theme="dark"] .hero-v2-gallery-section,
.dark-mode .hero-v2-gallery-section {
    background: #0f172a;
}
[data-theme="dark"] .hero-v2-pensee,
.dark-mode .hero-v2-pensee {
    background: #1e293b;
    border-color: rgba(255,255,255,0.08);
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
[data-theme="dark"] .hero-v2-pensee-label,
.dark-mode .hero-v2-pensee-label {
    color: var(--hp-gold);
    border-bottom-color: rgba(200,164,92,0.2);
}
[data-theme="dark"] .hero-v2-pensee-text,
.dark-mode .hero-v2-pensee-text {
    color: #e2e8f0;
}
[data-theme="dark"] .hero-v2-pensee-author,
.dark-mode .hero-v2-pensee-author {
    color: #f1f5f9;
}
[data-theme="dark"] .hero-v2-pensee-author small,
.dark-mode .hero-v2-pensee-author small {
    color: #94a3b8;
}
[data-theme="dark"] .hero-v2-pensee-date,
.dark-mode .hero-v2-pensee-date {
    color: #64748b;
}
[data-theme="dark"] .hero-v2-pensee-footer,
.dark-mode .hero-v2-pensee-footer {
    border-top-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .hero-v2-pensee-icon,
.dark-mode .hero-v2-pensee-icon {
    color: rgba(200,164,92,0.15);
}
/* Story & nav dark mode */
[data-theme="dark"] .hero-v2-story-title,
.dark-mode .hero-v2-story-title {
    color: #f1f5f9;
}
[data-theme="dark"] .hero-v2-pensee-nav,
.dark-mode .hero-v2-pensee-nav {
    border-top-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .hero-v2-pensee-nav-btn,
.dark-mode .hero-v2-pensee-nav-btn {
    background: rgba(200,164,92,0.1);
    border-color: rgba(200,164,92,0.2);
    color: var(--hp-gold);
}
[data-theme="dark"] .hero-v2-pensee-nav-btn:hover,
.dark-mode .hero-v2-pensee-nav-btn:hover {
    background: var(--hp-gold);
    color: #0f172a;
}
[data-theme="dark"] .hero-v2-slideshow,
.dark-mode .hero-v2-slideshow {
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

/* ==============================
   HERO V2 — LIGHT MODE EXPLICIT
   ============================== */
[data-theme="light"] .hero-v2 { background: var(--hp-cream); }
[data-theme="light"] .hero-v2-top { background: #0f1b2d; }
[data-theme="light"] .hero-v2-gallery-section { background: var(--hp-cream); }
[data-theme="light"] .hero-v2-pensee { background: #ffffff; border-color: rgba(200,164,92,0.15); }
[data-theme="light"] .hero-v2-pensee-text { color: #1a1a2e; }
[data-theme="light"] .hero-v2-pensee-author { color: #0f1b2d; }

/* ==============================
   HERO V2 — AUTO DARK (system pref)
   ============================== */
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .hero-v2 { background: #0a1120; }
    :root:not([data-theme="light"]) .hero-v2-top { background: #060b14; }
    :root:not([data-theme="light"]) .hero-v2-gallery-section { background: #0f172a; }
    :root:not([data-theme="light"]) .hero-v2-pensee { background: #1e293b; border-color: rgba(255,255,255,0.08); }
    :root:not([data-theme="light"]) .hero-v2-pensee-label { color: var(--hp-gold); border-bottom-color: rgba(200,164,92,0.2); }
    :root:not([data-theme="light"]) .hero-v2-pensee-text { color: #e2e8f0; }
    :root:not([data-theme="light"]) .hero-v2-pensee-author { color: #f1f5f9; }
    :root:not([data-theme="light"]) .hero-v2-pensee-author small { color: #94a3b8; }
    :root:not([data-theme="light"]) .hero-v2-pensee-date { color: #64748b; }
    :root:not([data-theme="light"]) .hero-v2-pensee-footer { border-top-color: rgba(255,255,255,0.08); }
    :root:not([data-theme="light"]) .hero-v2-slideshow { box-shadow: 0 8px 40px rgba(0,0,0,0.4); }
    :root:not([data-theme="light"]) .hp-section-divider--wave-dark { background: #0a1120; }
    :root:not([data-theme="light"]) .hp-section-divider--wave-dark::before { background: #060b14; }
}

/* ============================================
   NOTIFICATION BAR
   ============================================ */
.hp-notif-bar {
    background: linear-gradient(90deg, var(--hp-navy), var(--hp-blue-deep));
    color: white; padding: 10px 0; font-size: 0.9rem;
    position: relative; z-index: 10; border-bottom: 1px solid rgba(200,164,92,0.2);
}
.hp-notif-bar .hp-container { display: flex; align-items: center; gap: 12px; }
.hp-notif-bar .notif-badge {
    background: var(--hp-gold); color: var(--hp-navy);
    padding: 3px 12px; border-radius: 20px; font-size: 0.72rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap;
}
.hp-notif-bar a { color: white; font-weight: 500; }
.hp-notif-bar a:hover { color: var(--hp-gold-light); }
.hp-notif-bar .notif-close {
    background: none; border: none; color: rgba(255,255,255,0.5);
    cursor: pointer; margin-left: auto; font-size: 1.1rem; padding: 0 5px;
}
.hp-notif-bar .notif-close:hover { color: white; }

/* ============================================
   SECTION STYLES
   ============================================ */
.hp-section { padding: 100px 0; }
.hp-section-header { text-align: center; margin-bottom: 60px; }
.hp-section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.78rem; text-transform: uppercase; letter-spacing: 3px;
    color: var(--hp-gold-dark); font-weight: 700; margin-bottom: 16px;
}
.hp-section-tag::before, .hp-section-tag::after {
    content: ''; width: 30px; height: 1px; background: var(--hp-gold);
}
.hp-section-title {
    font-family: var(--hp-font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--hp-navy); line-height: 1.2; margin-bottom: 16px;
}
.hp-section-desc {
    font-size: 1.05rem; color: var(--hp-text-muted);
    max-width: 600px; margin: 0 auto; line-height: 1.7;
}

/* ============================================
   ABOUT / MISSION SECTION
   ============================================ */
.hp-about { background: var(--hp-white); }
.hp-about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.hp-about-image { position: relative; }
.hp-about-image-main {
    border-radius: var(--hp-radius-lg); overflow: hidden;
    box-shadow: var(--hp-shadow-medium); position: relative;
}
.hp-about-image-main img { width: 100%; height: 450px; object-fit: cover; }
.hp-about-image-accent {
    position: absolute; bottom: -30px; right: -30px;
    width: 200px; height: 200px;
    background: linear-gradient(135deg, var(--hp-gold), var(--hp-gold-dark));
    border-radius: var(--hp-radius-lg);
    display: flex; align-items: center; justify-content: center;
    color: var(--hp-white); text-align: center; padding: 20px;
    box-shadow: var(--hp-shadow-gold);
}
.hp-about-image-accent .year {
    font-family: var(--hp-font-heading); font-size: 3rem;
    font-weight: 800; line-height: 1;
}
.hp-about-image-accent .label {
    font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 1.5px; margin-top: 4px; opacity: 0.85;
}
.hp-about-text .hp-section-tag { justify-content: flex-start; }
.hp-about-text .hp-section-tag::before { display: none; }
.hp-about-text .hp-section-title { text-align: left; }
.hp-about-text p {
    color: var(--hp-text-muted); line-height: 1.8;
    margin-bottom: 20px; font-size: 1.02rem;
}
.hp-about-founder {
    display: flex; align-items: center; gap: 16px; margin-top: 30px;
    padding: 20px; background: var(--hp-cream); border-radius: var(--hp-radius);
    border-left: 4px solid var(--hp-gold);
}
.hp-about-founder-avatar {
    width: 60px; height: 60px; border-radius: 50%; overflow: hidden;
    flex-shrink: 0; background: var(--hp-navy);
    display: flex; align-items: center; justify-content: center;
    color: var(--hp-gold); font-family: var(--hp-font-heading);
    font-size: 1.5rem; font-weight: 700;
}
.hp-about-founder-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hp-about-founder-info strong { display: block; font-size: 0.95rem; color: var(--hp-navy); }
.hp-about-founder-info span { font-size: 0.82rem; color: var(--hp-text-muted); }

/* ============================================
   PILLARS / SERVICES + VIDEO SECTION
   ============================================ */
.hp-pillars { background: var(--hp-cream); }

/* Split layout: pillars left, video right */
.hp-pillars-split {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
}
.hp-pillars-left-header { margin-bottom: 28px; }
.hp-pillars-left-header .hp-section-title { margin-bottom: 8px; }
.hp-pillars-left-header .hp-section-desc { margin-bottom: 0; }

/* Pillar cards — 2x2 grid */
.hp-pillars-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.hp-pillar-card {
    background: var(--hp-white); border-radius: var(--hp-radius-lg);
    padding: 30px 22px; text-align: center;
    transition: var(--hp-transition); border: 1px solid transparent;
    position: relative; overflow: hidden;
}
.hp-pillar-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: var(--pillar-color, var(--hp-gold));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.hp-pillar-card:hover {
    transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: color-mix(in srgb, var(--pillar-color, var(--hp-gold)) 20%, transparent);
}
.hp-pillar-card:hover::before { transform: scaleX(1); }
.hp-pillar-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; font-size: 1.3rem;
    transition: var(--hp-transition);
}
.hp-pillar-card:hover .hp-pillar-icon {
    transform: scale(1.12) rotate(-3deg);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--pillar-color, var(--hp-gold)) 30%, transparent);
}
.hp-pillar-card h3 {
    font-family: var(--hp-font-heading); font-size: 1.08rem;
    color: var(--hp-navy); margin-bottom: 8px;
}
.hp-pillar-card p { font-size: 0.82rem; color: var(--hp-text-muted); line-height: 1.65; }
.hp-pillar-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 14px; font-size: 0.8rem; font-weight: 600;
    color: var(--hp-gold-dark); text-decoration: none;
}
.hp-pillar-link i { font-size: 0.68rem; transition: var(--hp-transition); }
.hp-pillar-card:hover .hp-pillar-link i { transform: translateX(4px); }

/* --- Video Section (right column) --- */
.hp-video-section {
    background: var(--hp-white);
    border-radius: var(--hp-radius-lg);
    border: 1px solid rgba(200,164,92,0.1);
    overflow: hidden;
    box-shadow: var(--hp-shadow-soft);
    position: sticky;
    top: 100px;
}
.hp-video-header {
    padding: 24px 24px 16px;
}
.hp-video-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 4px 14px;
    background: rgba(255, 0, 0, 0.08);
    border: 1px solid rgba(255, 0, 0, 0.15);
    border-radius: 50px;
    color: #dc2626;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 12px;
}
.hp-video-tag i { font-size: 0.82rem; }
.hp-video-title {
    font-family: var(--hp-font-heading);
    font-size: 1.25rem;
    color: var(--hp-navy);
    line-height: 1.3;
    margin: 0;
}
.hp-video-player {
    padding: 0 24px;
}
.hp-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.hp-video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}
.hp-video-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a2e, #0f172a);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.hp-video-placeholder-icon {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: rgba(255,0,0,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: #ef4444;
}
.hp-video-placeholder p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin: 0;
}
.hp-video-actions {
    padding: 20px 24px;
    display: flex; gap: 10px; flex-wrap: wrap;
}
.hp-video-btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 20px; border-radius: 50px;
    font-weight: 600; font-size: 0.82rem;
    text-decoration: none; cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}
.hp-video-btn-yt {
    background: #dc2626;
    color: #fff;
    box-shadow: 0 3px 14px rgba(220,38,38,0.25);
}
.hp-video-btn-yt:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220,38,38,0.35);
    color: #fff;
}
.hp-video-btn-outline {
    background: transparent;
    border-color: var(--hp-border-light);
    color: var(--hp-navy);
}
.hp-video-btn-outline:hover {
    border-color: var(--hp-gold);
    color: var(--hp-gold-dark);
    background: rgba(200,164,92,0.05);
    transform: translateY(-2px);
}

/* ============================================
   STATS COUNTER
   ============================================ */
.hp-stats {
    background: var(--hp-navy); padding: 80px 0;
    position: relative; overflow: hidden;
}
.hp-stats::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8a45c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hp-stats-grid {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 30px; position: relative;
}
.hp-stat-item {
    text-align: center; padding: 30px 10px;
    border-radius: var(--hp-radius);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--hp-transition);
}
.hp-stat-item:hover {
    background: rgba(200, 164, 92, 0.08);
    border-color: rgba(200, 164, 92, 0.2);
    transform: translateY(-4px);
}
.hp-stat-icon-s { font-size: 1.8rem; color: var(--hp-gold); margin-bottom: 12px; }
.hp-stat-num {
    font-family: var(--hp-font-heading); font-size: 2.8rem;
    font-weight: 800; color: var(--hp-white); line-height: 1;
}
.hp-stat-num .plus { color: var(--hp-gold); }
.hp-stat-lbl {
    font-size: 0.85rem; color: rgba(255,255,255,0.5);
    margin-top: 8px; text-transform: uppercase; letter-spacing: 1px;
}

/* ============================================
   BLOG / ACTUALITÉS
   ============================================ */
.hp-blog { background: var(--hp-white); }
.hp-blog-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; }
.hp-blog-featured {
    border-radius: var(--hp-radius-lg); overflow: hidden;
    position: relative; min-height: 500px; display: flex;
    align-items: flex-end; cursor: pointer; transition: var(--hp-transition);
    text-decoration: none;
}
.hp-blog-featured:hover { transform: translateY(-4px); box-shadow: var(--hp-shadow-medium); }
.hp-blog-featured-img { position: absolute; inset: 0; z-index: 1; }
.hp-blog-featured-img img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease;
}
.hp-blog-featured:hover .hp-blog-featured-img img { transform: scale(1.05); }
.hp-blog-featured-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15, 27, 45, 0.95) 0%, rgba(15, 27, 45, 0.3) 50%, transparent 100%);
    z-index: 2;
}
.hp-blog-featured-content { position: relative; z-index: 3; padding: 40px; width: 100%; }
.hp-blog-tag {
    display: inline-block; padding: 5px 14px;
    background: var(--hp-gold); color: var(--hp-navy);
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; border-radius: 50px; margin-bottom: 16px;
}
.hp-blog-featured-content h3 {
    font-family: var(--hp-font-heading); font-size: 1.5rem;
    color: var(--hp-white); line-height: 1.35; margin-bottom: 12px;
}
.hp-blog-featured-content p {
    color: rgba(255,255,255,0.65); font-size: 0.92rem;
    line-height: 1.6; margin-bottom: 16px;
}
.hp-blog-meta {
    display: flex; align-items: center; gap: 16px;
    font-size: 0.8rem; color: rgba(255,255,255,0.4);
}
.hp-blog-meta span { display: flex; align-items: center; gap: 5px; }
.hp-blog-sidebar { display: flex; flex-direction: column; gap: 20px; }
.hp-blog-card {
    display: flex; gap: 18px; padding: 20px;
    background: var(--hp-cream); border-radius: var(--hp-radius);
    transition: var(--hp-transition); cursor: pointer;
    border: 1px solid transparent; text-decoration: none;
}
.hp-blog-card:hover {
    background: var(--hp-white); border-color: var(--hp-border-light);
    box-shadow: var(--hp-shadow-soft); transform: translateX(6px);
}
.hp-blog-card-img {
    width: 100px; height: 90px; border-radius: 10px;
    overflow: hidden; flex-shrink: 0;
}
.hp-blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.hp-blog-card-content h4 {
    font-family: var(--hp-font-heading); font-size: 1rem;
    color: var(--hp-navy); line-height: 1.4; margin-bottom: 8px;
}
.hp-blog-card-content p {
    font-size: 0.82rem; color: var(--hp-text-muted); line-height: 1.5;
    margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2;
    line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hp-blog-card-date {
    font-size: 0.75rem; color: var(--hp-text-light);
    display: flex; align-items: center; gap: 5px;
}

/* ============================================
   EVENTS GALLERY
   ============================================ */
.hp-events { background: var(--hp-cream); }
.hp-events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hp-event-card {
    border-radius: var(--hp-radius-lg); overflow: hidden;
    position: relative; height: 320px; cursor: pointer;
    transition: var(--hp-transition); display: block; text-decoration: none;
}
.hp-event-card:hover { transform: translateY(-6px); box-shadow: var(--hp-shadow-medium); }
.hp-event-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.hp-event-card:hover img { transform: scale(1.08); }
.hp-event-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15, 27, 45, 0.9) 0%, transparent 60%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 28px; transition: var(--hp-transition);
}
.hp-event-card:hover .hp-event-card-overlay {
    background: linear-gradient(to top, rgba(15, 27, 45, 0.95) 0%, rgba(15, 27, 45, 0.2) 60%);
}
.hp-event-photo-count {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 12px; background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px); border-radius: 50px;
    font-size: 0.75rem; color: var(--hp-white);
    margin-bottom: 12px; width: fit-content;
}
.hp-event-card h3 {
    font-family: var(--hp-font-heading); font-size: 1.1rem;
    color: var(--hp-white); line-height: 1.35; margin-bottom: 8px;
}
.hp-event-card-date {
    font-size: 0.78rem; color: rgba(255,255,255,0.5);
    display: flex; align-items: center; gap: 6px;
}

/* ============================================
   PROVINCIAL COUNCIL
   ============================================ */
.hp-council { background: var(--hp-white); position: relative; overflow: hidden; }
.hp-council::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(200, 164, 92, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.hp-council-layout {
    display: grid; grid-template-columns: 1fr 1.3fr;
    gap: 60px; align-items: center;
}
.hp-council-leader {
    text-align: center; padding: 40px;
    background: linear-gradient(135deg, var(--hp-navy), var(--hp-navy-light));
    border-radius: var(--hp-radius-lg); color: var(--hp-white);
    position: relative; overflow: hidden;
}
.hp-council-leader::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: linear-gradient(90deg, var(--hp-gold), var(--hp-gold-light), var(--hp-gold));
}
.hp-council-leader-img {
    width: 140px; height: 140px; border-radius: 50%;
    overflow: hidden; margin: 0 auto 20px;
    border: 4px solid rgba(200, 164, 92, 0.3);
    background: var(--hp-navy-light);
}
.hp-council-leader-img img { width: 100%; height: 100%; object-fit: cover; }
.hp-council-leader-img .fa-user { font-size: 3rem; color: var(--hp-gold); line-height: 140px; }
.hp-council-leader h3 {
    font-family: var(--hp-font-heading); font-size: 1.4rem; margin-bottom: 4px;
}
.hp-council-leader .role { color: var(--hp-gold-light); font-size: 0.88rem; font-weight: 500; margin-bottom: 8px; }
.hp-council-leader .since { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.hp-council-leader p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
.hp-council-members h3 {
    font-family: var(--hp-font-heading); font-size: 1.5rem;
    color: var(--hp-navy); margin-bottom: 24px;
}
.hp-council-members-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hp-council-member {
    display: flex; align-items: center; gap: 14px;
    padding: 16px; background: var(--hp-cream); border-radius: var(--hp-radius);
    transition: var(--hp-transition); border: 1px solid transparent;
}
.hp-council-member:hover {
    background: var(--hp-white); border-color: var(--hp-border-light);
    box-shadow: var(--hp-shadow-soft);
}
.hp-council-member-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    overflow: hidden; flex-shrink: 0; background: var(--hp-navy);
    display: flex; align-items: center; justify-content: center;
    color: var(--hp-gold); font-family: var(--hp-font-heading);
    font-size: 1rem; font-weight: 700;
}
.hp-council-member-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hp-council-member-info strong { display: block; font-size: 0.9rem; color: var(--hp-navy); }
.hp-council-member-info span { font-size: 0.78rem; color: var(--hp-text-muted); }

/* ============================================
   PROJECTS & MISSIONS
   ============================================ */
.hp-projects { background: var(--hp-cream); }
.hp-projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.hp-project-box {
    background: var(--hp-white); border-radius: var(--hp-radius-lg);
    overflow: hidden; border: 1px solid var(--hp-border-light);
    transition: var(--hp-transition);
}
.hp-project-box:hover { box-shadow: var(--hp-shadow-medium); transform: translateY(-4px); }
.hp-project-box-header {
    padding: 20px 28px; color: var(--hp-white);
    display: flex; align-items: center; gap: 10px;
    font-family: var(--hp-font-heading); font-size: 1.15rem;
}
.hp-project-box-header.gold-bg { background: linear-gradient(135deg, var(--hp-gold), var(--hp-gold-dark)); }
.hp-project-box-header.navy-bg { background: linear-gradient(135deg, var(--hp-navy), var(--hp-blue-deep)); }
.hp-project-box-body { padding: 28px; }
.hp-project-item {
    padding: 16px 0; border-bottom: 1px solid var(--hp-border-light);
}
.hp-project-item:last-child { border-bottom: none; }
.hp-project-item h5 {
    font-family: var(--hp-font-heading); font-size: 1.05rem;
    color: var(--hp-navy); margin-bottom: 8px;
}
.hp-project-item p { font-size: 0.9rem; color: var(--hp-text-muted); line-height: 1.6; margin-bottom: 12px; }
.hp-project-meta { display: flex; justify-content: space-between; align-items: center; }

/* ============================================
   RESOURCES
   ============================================ */
.hp-resources { background: var(--hp-white); }
.hp-resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hp-resource-card {
    background: var(--hp-cream); border-radius: var(--hp-radius-lg);
    overflow: hidden; transition: var(--hp-transition);
    border: 1px solid transparent;
}
.hp-resource-card:hover {
    transform: translateY(-6px); box-shadow: var(--hp-shadow-medium);
    border-color: var(--hp-border-light);
}
.hp-resource-card-img { height: 200px; overflow: hidden; position: relative; }
.hp-resource-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.hp-resource-card:hover .hp-resource-card-img img { transform: scale(1.05); }
.hp-resource-card-img .resource-type-icon {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--hp-navy), var(--hp-blue-deep));
    color: var(--hp-gold); font-size: 3rem;
}
.hp-resource-card-body { padding: 24px; }
.hp-resource-card-body h5 {
    font-family: var(--hp-font-heading); font-size: 1.1rem;
    color: var(--hp-navy); margin-bottom: 8px; line-height: 1.3;
}
.hp-resource-card-body h5 a { color: var(--hp-navy); text-decoration: none; }
.hp-resource-card-body h5 a:hover { color: var(--hp-gold-dark); }
.hp-resource-card-body p { font-size: 0.88rem; color: var(--hp-text-muted); line-height: 1.6; margin-bottom: 16px; }
.hp-resource-card-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.hp-resource-badge {
    display: inline-block; padding: 3px 10px;
    border-radius: 50px; font-size: 0.7rem; font-weight: 600;
}
.hp-resource-badge-type { background: rgba(200,164,92,0.15); color: var(--hp-gold-dark); }
.hp-resource-badge-new { background: var(--hp-accent-red); color: white; }
.hp-resource-badge-featured { background: var(--hp-gold); color: var(--hp-navy); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.hp-testimonials {
    background: linear-gradient(135deg, var(--hp-navy), var(--hp-navy-light));
    padding: 100px 0; position: relative; overflow: hidden;
}
.hp-testimonials::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8a45c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.hp-testimonials .hp-section-tag { color: var(--hp-gold-light); }
.hp-testimonials .hp-section-tag::before, .hp-testimonials .hp-section-tag::after { background: rgba(200,164,92,0.4); }
.hp-testimonials .hp-section-title { color: var(--hp-white); }
.hp-testimonials .hp-section-desc { color: rgba(255,255,255,0.6); }
.hp-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 1; }
.hp-testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--hp-radius-lg); transition: var(--hp-transition);
    backdrop-filter: blur(10px);
}
.hp-testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(200, 164, 92, 0.3); transform: translateY(-6px);
}
.hp-testimonial-video { border-radius: var(--hp-radius-lg); overflow: hidden; }
.hp-testimonial-video .video-wrapper {
    position: relative; padding-bottom: 56.25%; height: 0; background: #000;
}
.hp-testimonial-video .video-wrapper iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.hp-testimonial-video-info { padding: 20px; }
.hp-testimonial-video-info h4 { font-size: 1.05rem; font-weight: 700; color: #f1f5f9; margin-bottom: 8px; }
.hp-testimonial-text-card { padding: 30px; display: flex; flex-direction: column; }
.hp-testimonial-quote-icon {
    position: absolute; top: 15px; right: 20px; font-size: 2.5rem;
    color: var(--hp-gold); opacity: 0.15;
}
.hp-testimonial-text {
    font-family: var(--hp-font-accent); font-size: 1.05rem;
    color: rgba(255,255,255,0.8); line-height: 1.8;
    font-style: italic; margin-bottom: 20px; flex-grow: 1;
}
.hp-testimonial-author {
    display: flex; align-items: center; gap: 14px;
    padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1);
}
.hp-testimonial-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    border: 2px solid var(--hp-gold); object-fit: cover;
}
.hp-testimonial-avatar-placeholder {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--hp-gold), var(--hp-gold-dark));
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.1rem;
}
.hp-testimonial-name { color: #f1f5f9; font-weight: 700; font-size: 0.92rem; display: block; }
.hp-testimonial-role { color: rgba(255,255,255,0.45); font-size: 0.82rem; display: block; }

/* ============================================
   SOCIAL MEDIA SECTION
   ============================================ */
.hp-social { background: var(--hp-cream); }
.hp-social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.hp-social-card {
    background: var(--hp-white); border-radius: var(--hp-radius-lg);
    overflow: hidden; border: 1px solid var(--hp-border-light);
    transition: var(--hp-transition);
}
.hp-social-card:hover { box-shadow: var(--hp-shadow-medium); }
.hp-social-card-header {
    padding: 16px 24px; color: var(--hp-white);
    font-weight: 700; display: flex; align-items: center; gap: 10px;
}
.hp-social-card-header.fb { background: linear-gradient(135deg, #1877f2, #0d5bb8); }
.hp-social-card-header.yt { background: linear-gradient(135deg, #dc2626, #b91c1c); }
.hp-social-card-body { padding: 24px; }

/* ============================================
   NEWSLETTER
   ============================================ */
.hp-newsletter { background: var(--hp-cream); padding: 80px 0; }
.hp-newsletter-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.hp-newsletter-inner .hp-section-title { margin-bottom: 12px; }
.hp-newsletter-inner p { color: var(--hp-text-muted); margin-bottom: 30px; font-size: 1rem; }
.hp-newsletter-form { display: flex; gap: 12px; max-width: 520px; margin: 0 auto; }
.hp-newsletter-form input {
    flex: 1; padding: 14px 22px;
    border: 2px solid var(--hp-border-light); border-radius: 50px;
    font-size: 0.95rem; font-family: var(--hp-font-body);
    background: var(--hp-white); transition: var(--hp-transition); outline: none;
}
.hp-newsletter-form input:focus { border-color: var(--hp-gold); box-shadow: 0 0 0 4px rgba(200, 164, 92, 0.1); }

/* ============================================
   SERVICES (dark)
   ============================================ */
.hp-services-dark {
    background: linear-gradient(135deg, var(--hp-navy), var(--hp-blue-deep));
    color: var(--hp-white); position: relative; overflow: hidden;
}
.hp-services-dark::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23c8a45c' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.hp-services-dark .hp-section-tag { color: var(--hp-gold-light); }
.hp-services-dark .hp-section-tag::before, .hp-services-dark .hp-section-tag::after { background: rgba(200,164,92,0.4); }
.hp-services-dark .hp-section-title { color: var(--hp-white); }
.hp-services-dark .hp-section-desc { color: rgba(255,255,255,0.6); }
.hp-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.hp-service-card-dark {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--hp-radius-lg); padding: 36px 24px;
    text-align: center; transition: var(--hp-transition);
    backdrop-filter: blur(10px);
}
.hp-service-card-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(200, 164, 92, 0.3); transform: translateY(-6px);
}
.hp-service-icon-dark {
    width: 64px; height: 64px; border-radius: var(--hp-radius);
    background: rgba(200, 164, 92, 0.12);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 1.5rem; color: var(--hp-gold);
    transition: var(--hp-transition);
}
.hp-service-card-dark:hover .hp-service-icon-dark {
    background: var(--hp-gold); color: var(--hp-navy); transform: rotateY(180deg);
}
.hp-service-card-dark h3 { font-family: var(--hp-font-heading); font-size: 1.15rem; margin-bottom: 10px; color: var(--hp-white); }
.hp-service-card-dark p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 18px; }
.hp-service-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.83rem; font-weight: 600; color: var(--hp-gold-light);
    text-decoration: none;
}
.hp-service-link i { font-size: 0.7rem; transition: var(--hp-transition); }
.hp-service-card-dark:hover .hp-service-link i { transform: translateX(4px); }

/* ============================================
   PHOTO GALLERY
   ============================================ */
.hp-photo-gallery { background: var(--hp-white); }
.hp-photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hp-photo-item {
    border-radius: var(--hp-radius); overflow: hidden;
    position: relative; height: 240px; cursor: pointer;
    transition: var(--hp-transition);
}
.hp-photo-item:hover { transform: translateY(-4px); box-shadow: var(--hp-shadow-medium); }
.hp-photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.hp-photo-item:hover img { transform: scale(1.08); }
.hp-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,27,45,0.85) 0%, transparent 60%);
    opacity: 0; transition: var(--hp-transition);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
}
.hp-photo-item:hover .hp-photo-overlay { opacity: 1; }
.hp-photo-overlay h6 { color: var(--hp-white); font-size: 0.9rem; margin-bottom: 4px; }
.hp-photo-overlay small { color: rgba(255,255,255,0.5); font-size: 0.75rem; }
.hp-photo-overlay .photo-actions { display: flex; gap: 8px; margin-top: 10px; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes hpFadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes hpFadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
.hp-reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.hp-reveal.hp-visible { opacity: 1; transform: translateY(0); }
.hp-reveal-left {
    opacity: 0; transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.hp-reveal-left.hp-visible { opacity: 1; transform: translateX(0); }
.hp-reveal-right {
    opacity: 0; transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.hp-reveal-right.hp-visible { opacity: 1; transform: translateX(0); }
.hp-reveal-scale {
    opacity: 0; transform: scale(0.85);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.hp-reveal-scale.hp-visible { opacity: 1; transform: scale(1); }
.hp-stagger > * { opacity: 0; transform: translateY(25px); transition: opacity 0.5s ease, transform 0.5s ease; }
.hp-stagger.hp-visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.hp-stagger.hp-visible > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.hp-stagger.hp-visible > *:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: translateY(0); }
.hp-stagger.hp-visible > *:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: translateY(0); }
.hp-stagger.hp-visible > *:nth-child(5) { transition-delay: 0.33s; opacity: 1; transform: translateY(0); }
.hp-stagger.hp-visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hp-pillars-split { grid-template-columns: 1fr; gap: 30px; }
    .hp-video-section { position: static; }
    .hp-pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-about-grid { grid-template-columns: 1fr; gap: 40px; }
    .hp-about-image-accent { bottom: -20px; right: -20px; width: 160px; height: 160px; }
    .hp-stats-grid { grid-template-columns: repeat(3, 1fr); }
    .hp-blog-grid { grid-template-columns: 1fr; }
    .hp-blog-featured { min-height: 400px; }
    .hp-events-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-council-layout { grid-template-columns: 1fr; }
    .hp-services-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-resources-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-photo-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-social-grid { grid-template-columns: 1fr; }
    .hp-projects-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .hp-section { padding: 70px 0; }
    .hp-pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-video-actions { flex-direction: column; }
    .hp-video-btn { text-align: center; justify-content: center; }
    .hp-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .hp-stat-num { font-size: 2rem; }
    .hp-events-grid { grid-template-columns: 1fr; }
    .hp-event-card { height: 260px; }
    .hp-council-members-grid { grid-template-columns: 1fr; }
    .hp-services-grid { grid-template-columns: 1fr; }
    .hp-resources-grid { grid-template-columns: 1fr; }
    .hp-testimonials-grid { grid-template-columns: 1fr; }
    .hp-photo-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-newsletter-form { flex-direction: column; }
    .hp-blog-card { flex-direction: column; }
    .hp-blog-card-img { width: 100%; height: 160px; }
}
@media (max-width: 480px) {
    .hp-container { padding: 0 16px; }
    .hp-section-title { font-size: 1.7rem; }
    .hp-pillars-grid { grid-template-columns: 1fr; }
    .hp-about-image-main img { height: 300px; }
    .hp-about-image-accent { width: 130px; height: 130px; }
    .hp-about-image-accent .year { font-size: 2.2rem; }
    .hp-blog-featured { min-height: 300px; }
    .hp-photo-grid { grid-template-columns: 1fr; }
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* ============================================
   DARK MODE SUPPORT
   Selectors: [data-theme="dark"], .dark-mode
   ============================================ */
[data-theme="dark"] .hp-page,
.dark-mode .hp-page,
[data-theme="dark"] .hp-section,
.dark-mode .hp-section,
[data-theme="dark"] .hp-container,
.dark-mode .hp-container {
    color: #e2e8f0;
}

/* --- Override CSS variables for dark mode --- */
[data-theme="dark"],
.dark-mode {
    --hp-navy: #0a1120;
    --hp-navy-light: #111827;
    --hp-blue-deep: #152238;
    --hp-cream: #111827;
    --hp-white: #1a2332;
    --hp-text-dark: #e2e8f0;
    --hp-text-muted: #94a3b8;
    --hp-text-light: #64748b;
    --hp-border-light: rgba(200, 164, 92, 0.1);
    --hp-shadow-soft: 0 4px 30px rgba(0,0,0,0.25);
    --hp-shadow-medium: 0 8px 40px rgba(0,0,0,0.35);
}

/* --- About Section (white bg -> dark) --- */
[data-theme="dark"] .hp-about,
.dark-mode .hp-about {
    background: #111827;
}
[data-theme="dark"] .hp-about-text .hp-section-title,
.dark-mode .hp-about-text .hp-section-title {
    color: #f1f5f9;
}
[data-theme="dark"] .hp-about-text p,
.dark-mode .hp-about-text p {
    color: #94a3b8;
}
[data-theme="dark"] .hp-about-founder,
.dark-mode .hp-about-founder {
    background: #1e293b;
    border-left-color: var(--hp-gold);
}
[data-theme="dark"] .hp-about-founder-info strong,
.dark-mode .hp-about-founder-info strong {
    color: #f1f5f9;
}
[data-theme="dark"] .hp-about-founder-info span,
.dark-mode .hp-about-founder-info span {
    color: #94a3b8;
}
[data-theme="dark"] .hp-about-founder-avatar,
.dark-mode .hp-about-founder-avatar {
    background: #0f172a;
}

/* --- Pillars Section (cream -> dark) --- */
[data-theme="dark"] .hp-pillars,
.dark-mode .hp-pillars {
    background: #0f172a;
}
[data-theme="dark"] .hp-pillar-card,
.dark-mode .hp-pillar-card {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .hp-pillar-card:hover,
.dark-mode .hp-pillar-card:hover {
    background: #1e293b;
    border-color: rgba(200, 164, 92, 0.25);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
[data-theme="dark"] .hp-pillar-card h3,
.dark-mode .hp-pillar-card h3 {
    color: #f1f5f9;
}
[data-theme="dark"] .hp-pillar-card p,
.dark-mode .hp-pillar-card p {
    color: #94a3b8;
}
[data-theme="dark"] .hp-pillar-icon,
.dark-mode .hp-pillar-icon {
    background: rgba(200, 164, 92, 0.1);
}

/* --- Video Section (white -> dark) --- */
[data-theme="dark"] .hp-video-section,
.dark-mode .hp-video-section {
    background: #1e293b;
    border-color: rgba(255,255,255,0.06);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
[data-theme="dark"] .hp-video-tag,
.dark-mode .hp-video-tag {
    background: rgba(255, 0, 0, 0.12);
    border-color: rgba(255, 0, 0, 0.2);
}
[data-theme="dark"] .hp-video-title,
.dark-mode .hp-video-title {
    color: #f1f5f9;
}
[data-theme="dark"] .hp-video-wrapper,
.dark-mode .hp-video-wrapper {
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
[data-theme="dark"] .hp-video-btn-outline,
.dark-mode .hp-video-btn-outline {
    border-color: rgba(255,255,255,0.15);
    color: #e2e8f0;
}
[data-theme="dark"] .hp-video-btn-outline:hover,
.dark-mode .hp-video-btn-outline:hover {
    border-color: var(--hp-gold);
    color: var(--hp-gold);
    background: rgba(200,164,92,0.08);
}

/* --- Stats Section (already dark, deepen) --- */
[data-theme="dark"] .hp-stats,
.dark-mode .hp-stats {
    background: #060b14;
}
[data-theme="dark"] .hp-stat-item,
.dark-mode .hp-stat-item {
    background: rgba(255,255,255,0.02);
    border-color: rgba(255,255,255,0.04);
}

/* --- Blog Section (white -> dark) --- */
[data-theme="dark"] .hp-blog,
.dark-mode .hp-blog {
    background: #111827;
}
[data-theme="dark"] .hp-blog-card,
.dark-mode .hp-blog-card {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .hp-blog-card:hover,
.dark-mode .hp-blog-card:hover {
    background: #253348;
    border-color: rgba(200, 164, 92, 0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
[data-theme="dark"] .hp-blog-card-content h4,
.dark-mode .hp-blog-card-content h4 {
    color: #f1f5f9;
}
[data-theme="dark"] .hp-blog-card-content p,
.dark-mode .hp-blog-card-content p {
    color: #94a3b8;
}

/* --- Events Section (cream -> dark) --- */
[data-theme="dark"] .hp-events,
.dark-mode .hp-events {
    background: #0f172a;
}

/* --- Council Section (white -> dark) --- */
[data-theme="dark"] .hp-council,
.dark-mode .hp-council {
    background: #111827;
}
[data-theme="dark"] .hp-council::before,
.dark-mode .hp-council::before {
    background: radial-gradient(circle, rgba(200, 164, 92, 0.04) 0%, transparent 70%);
}
[data-theme="dark"] .hp-council-leader,
.dark-mode .hp-council-leader {
    background: linear-gradient(135deg, #060b14, #0f172a);
}
[data-theme="dark"] .hp-council-members h3,
.dark-mode .hp-council-members h3 {
    color: #f1f5f9;
}
[data-theme="dark"] .hp-council-member,
.dark-mode .hp-council-member {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .hp-council-member:hover,
.dark-mode .hp-council-member:hover {
    background: #253348;
    border-color: rgba(200, 164, 92, 0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
[data-theme="dark"] .hp-council-member-info strong,
.dark-mode .hp-council-member-info strong {
    color: #f1f5f9;
}
[data-theme="dark"] .hp-council-member-info span,
.dark-mode .hp-council-member-info span {
    color: #94a3b8;
}
[data-theme="dark"] .hp-council-member-avatar,
.dark-mode .hp-council-member-avatar {
    background: #0f172a;
}

/* --- Projects Section (cream -> dark) --- */
[data-theme="dark"] .hp-projects,
.dark-mode .hp-projects {
    background: #0f172a;
}
[data-theme="dark"] .hp-project-box,
.dark-mode .hp-project-box {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .hp-project-box:hover,
.dark-mode .hp-project-box:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
[data-theme="dark"] .hp-project-item h5,
.dark-mode .hp-project-item h5 {
    color: #f1f5f9;
}
[data-theme="dark"] .hp-project-item p,
.dark-mode .hp-project-item p {
    color: #94a3b8;
}
[data-theme="dark"] .hp-project-item,
.dark-mode .hp-project-item {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

/* --- Resources Section (white -> dark) --- */
[data-theme="dark"] .hp-resources,
.dark-mode .hp-resources {
    background: #111827;
}
[data-theme="dark"] .hp-resource-card,
.dark-mode .hp-resource-card {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .hp-resource-card:hover,
.dark-mode .hp-resource-card:hover {
    background: #253348;
    border-color: rgba(200, 164, 92, 0.2);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
[data-theme="dark"] .hp-resource-card-body h5,
.dark-mode .hp-resource-card-body h5 {
    color: #f1f5f9;
}
[data-theme="dark"] .hp-resource-card-body h5 a,
.dark-mode .hp-resource-card-body h5 a {
    color: #f1f5f9;
}
[data-theme="dark"] .hp-resource-card-body h5 a:hover,
.dark-mode .hp-resource-card-body h5 a:hover {
    color: var(--hp-gold-light);
}
[data-theme="dark"] .hp-resource-card-body p,
.dark-mode .hp-resource-card-body p {
    color: #94a3b8;
}

/* --- Testimonials (already dark, deepen) --- */
[data-theme="dark"] .hp-testimonials,
.dark-mode .hp-testimonials {
    background: linear-gradient(135deg, #060b14, #0f172a);
}

/* --- Social Section (cream -> dark) --- */
[data-theme="dark"] .hp-social,
.dark-mode .hp-social {
    background: #0f172a;
}
[data-theme="dark"] .hp-social-card,
.dark-mode .hp-social-card {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .hp-social-card:hover,
.dark-mode .hp-social-card:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

/* --- Photo Gallery (white -> dark) --- */
[data-theme="dark"] .hp-photo-gallery,
.dark-mode .hp-photo-gallery {
    background: #111827;
}

/* --- Services (already dark, deepen) --- */
[data-theme="dark"] .hp-services-dark,
.dark-mode .hp-services-dark {
    background: linear-gradient(135deg, #060b14, #0f172a);
}

/* --- Newsletter (cream -> dark) --- */
[data-theme="dark"] .hp-newsletter,
.dark-mode .hp-newsletter {
    background: #0f172a;
}
[data-theme="dark"] .hp-newsletter-form input,
.dark-mode .hp-newsletter-form input {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.1);
    color: #f1f5f9;
}
[data-theme="dark"] .hp-newsletter-form input::placeholder,
.dark-mode .hp-newsletter-form input::placeholder {
    color: #64748b;
}
[data-theme="dark"] .hp-newsletter-form input:focus,
.dark-mode .hp-newsletter-form input:focus {
    border-color: var(--hp-gold);
    box-shadow: 0 0 0 4px rgba(200, 164, 92, 0.15);
}
[data-theme="dark"] .hp-newsletter-inner p,
.dark-mode .hp-newsletter-inner p {
    color: #94a3b8;
}

/* --- Section Headers (global) --- */
[data-theme="dark"] .hp-section-title,
.dark-mode .hp-section-title {
    color: #f1f5f9;
}
[data-theme="dark"] .hp-section-desc,
.dark-mode .hp-section-desc {
    color: #94a3b8;
}
[data-theme="dark"] .hp-section-tag,
.dark-mode .hp-section-tag {
    color: var(--hp-gold);
}
[data-theme="dark"] .hp-section-tag::before,
[data-theme="dark"] .hp-section-tag::after,
.dark-mode .hp-section-tag::before,
.dark-mode .hp-section-tag::after {
    background: rgba(200, 164, 92, 0.4);
}

/* --- Buttons — dark mode adjustments --- */
[data-theme="dark"] .hp-btn-outline,
.dark-mode .hp-btn-outline {
    border-color: rgba(255, 255, 255, 0.25);
    color: #e2e8f0;
}
[data-theme="dark"] .hp-btn-outline:hover,
.dark-mode .hp-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--hp-gold);
    color: var(--hp-gold);
}

/* --- Notification Bar (already dark, slight tweak) --- */
[data-theme="dark"] .hp-notif-bar,
.dark-mode .hp-notif-bar {
    background: linear-gradient(90deg, #060b14, #111827);
    border-bottom-color: rgba(200, 164, 92, 0.15);
}

/* ============================================
   LIGHT MODE EXPLICIT — ensure consistency
   when [data-theme="light"] is set
   ============================================ */
[data-theme="light"],
.light-mode {
    --hp-navy: #0f1b2d;
    --hp-navy-light: #1a2a42;
    --hp-blue-deep: #1e3a5f;
    --hp-cream: #faf7f2;
    --hp-white: #ffffff;
    --hp-text-dark: #1a1a2e;
    --hp-text-muted: #5a6275;
    --hp-text-light: #8a92a6;
    --hp-border-light: rgba(200, 164, 92, 0.15);
    --hp-shadow-soft: 0 4px 30px rgba(0,0,0,0.08);
    --hp-shadow-medium: 0 8px 40px rgba(0,0,0,0.12);
}

/* ============================================
   AUTO DARK MODE (system preference)
   ============================================ */
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --hp-navy: #0a1120;
        --hp-navy-light: #111827;
        --hp-blue-deep: #152238;
        --hp-cream: #111827;
        --hp-white: #1a2332;
        --hp-text-dark: #e2e8f0;
        --hp-text-muted: #94a3b8;
        --hp-text-light: #64748b;
        --hp-border-light: rgba(200, 164, 92, 0.1);
        --hp-shadow-soft: 0 4px 30px rgba(0,0,0,0.25);
        --hp-shadow-medium: 0 8px 40px rgba(0,0,0,0.35);
    }
    :root:not([data-theme="light"]) .hp-about { background: #111827; }
    :root:not([data-theme="light"]) .hp-pillars { background: #0f172a; }
    :root:not([data-theme="light"]) .hp-blog { background: #111827; }
    :root:not([data-theme="light"]) .hp-events { background: #0f172a; }
    :root:not([data-theme="light"]) .hp-council { background: #111827; }
    :root:not([data-theme="light"]) .hp-projects { background: #0f172a; }
    :root:not([data-theme="light"]) .hp-resources { background: #111827; }
    :root:not([data-theme="light"]) .hp-social { background: #0f172a; }
    :root:not([data-theme="light"]) .hp-photo-gallery { background: #111827; }
    :root:not([data-theme="light"]) .hp-newsletter { background: #0f172a; }
    :root:not([data-theme="light"]) .hp-section-title { color: #f1f5f9; }
    :root:not([data-theme="light"]) .hp-section-desc { color: #94a3b8; }
    :root:not([data-theme="light"]) .hp-pillar-card { background: #1e293b; border-color: rgba(255,255,255,0.06); }
    :root:not([data-theme="light"]) .hp-pillar-card h3 { color: #f1f5f9; }
    :root:not([data-theme="light"]) .hp-pillar-card p { color: #94a3b8; }
    :root:not([data-theme="light"]) .hp-video-section { background: #1e293b; border-color: rgba(255,255,255,0.06); }
    :root:not([data-theme="light"]) .hp-video-title { color: #f1f5f9; }
    :root:not([data-theme="light"]) .hp-video-btn-outline { border-color: rgba(255,255,255,0.15); color: #e2e8f0; }
    :root:not([data-theme="light"]) .hp-blog-card { background: #1e293b; }
    :root:not([data-theme="light"]) .hp-blog-card-content h4 { color: #f1f5f9; }
    :root:not([data-theme="light"]) .hp-council-member { background: #1e293b; }
    :root:not([data-theme="light"]) .hp-council-member-info strong { color: #f1f5f9; }
    :root:not([data-theme="light"]) .hp-project-box { background: #1e293b; border-color: rgba(255,255,255,0.06); }
    :root:not([data-theme="light"]) .hp-project-item h5 { color: #f1f5f9; }
    :root:not([data-theme="light"]) .hp-project-item p { color: #94a3b8; }
    :root:not([data-theme="light"]) .hp-resource-card { background: #1e293b; border-color: rgba(255,255,255,0.06); }
    :root:not([data-theme="light"]) .hp-resource-card-body h5,
    :root:not([data-theme="light"]) .hp-resource-card-body h5 a { color: #f1f5f9; }
    :root:not([data-theme="light"]) .hp-resource-card-body p { color: #94a3b8; }
    :root:not([data-theme="light"]) .hp-social-card { background: #1e293b; border-color: rgba(255,255,255,0.06); }
    :root:not([data-theme="light"]) .hp-newsletter-form input { background: #1e293b; border-color: rgba(255,255,255,0.1); color: #f1f5f9; }
    :root:not([data-theme="light"]) .hp-btn-outline { border-color: rgba(255,255,255,0.25); color: #e2e8f0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hp-reveal, .hp-reveal-left, .hp-reveal-right, .hp-reveal-scale { transition: none; opacity: 1; transform: none; }
    .hp-stagger > * { transition: none; opacity: 1; transform: none; }
}
