/* ============================================================
   PRESS PAUSE — PREMIUM REDESIGN
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --pp-red:       #8B1E14;
    --pp-red-dark:  #5C0F0A;
    --pp-gold:      #F2A900;
    --pp-gold-lt:   #FFD060;
    --pp-cream:     #F5E6D3;
    --pp-dark:      #0C0806;
    --pp-dark-mid:  #180D08;
    --text-dark:    #1a1a1a;
    --text-light:   #777;
    --border-color: #e8e0d8;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    line-height: 1.65;
    color: var(--text-dark);
    background: white;
}

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

/* ======================================================
   HEADER
   ====================================================== */
.header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.07);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    min-height: 64px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--pp-red);
    text-decoration: none;
    flex-shrink: 0;
}

.logo img { display: block; height: 32px; width: auto; }

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--pp-red);
    flex-shrink: 0;
}

.hamburger-svg {
    width: 28px; height: 28px;
    transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.hamburger.active .hamburger-svg { transform: rotate(-45deg); }

.hamburger-path-top {
    stroke-dasharray: 12 63;
    transition: stroke-dasharray 0.5s cubic-bezier(0.76, 0, 0.24, 1),
                stroke-dashoffset 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.hamburger.active .hamburger-path-top {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42px;
}

.header-spacer { height: 64px; }

/* Mobile Drawer */
.mobile-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99998;
    pointer-events: none;
}

.mobile-drawer.open { pointer-events: all; }

.drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 8, 6, 0.55);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mobile-drawer.open .drawer-backdrop { opacity: 1; }

.drawer-panel {
    position: absolute;
    right: 0; top: 0;
    height: 100%; width: 82%; max-width: 300px;
    background: white;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
    box-shadow: -4px 0 30px rgba(0,0,0,0.18);
}

.mobile-drawer.open .drawer-panel { transform: translateX(0); }

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f0ebe5;
}

.drawer-logo img { height: 28px; width: auto; display: block; }

.drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-close svg { width: 22px; height: 22px; }

.drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
    flex: 1;
}

.drawer-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0ebe5;
    opacity: 0;
    transform: translateX(16px);
    transition: color 0.2s ease;
}

.drawer-link:last-child { border-bottom: none; }
.drawer-link:hover { color: var(--pp-gold); }

.mobile-drawer.open .drawer-link {
    animation: drawerLinkIn 0.35s ease forwards;
}

.mobile-drawer.open .drawer-link:nth-child(1) { animation-delay: 0.10s; }
.mobile-drawer.open .drawer-link:nth-child(2) { animation-delay: 0.15s; }
.mobile-drawer.open .drawer-link:nth-child(3) { animation-delay: 0.20s; }
.mobile-drawer.open .drawer-link:nth-child(4) { animation-delay: 0.25s; }
.mobile-drawer.open .drawer-link:nth-child(5) { animation-delay: 0.30s; }

@keyframes drawerLinkIn {
    from { opacity: 0; transform: translateX(16px); }
    to   { opacity: 1; transform: translateX(0); }
}

.drawer-actions {
    padding: 1.5rem;
    border-top: 1px solid #f0ebe5;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease 0.35s, transform 0.3s ease 0.35s;
}

.mobile-drawer.open .drawer-actions {
    opacity: 1;
    transform: translateY(0);
}

.drawer-cta-btn {
    display: block;
    text-align: center;
    padding: 0.85rem 1.5rem;
    background: var(--pp-red);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s ease;
}

.nav-menu { display: flex; gap: 2rem; }

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover { color: var(--pp-red); }

/* ======================================================
   CTA BUTTONS
   ====================================================== */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Shimmer sweep on hover */
.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,0.25) 50%, transparent 75%);
    transform: translateX(-150%);
    transition: transform 0.55s ease;
}

.cta-btn:hover::before { transform: translateX(150%); }

.cta-btn.primary {
    background: linear-gradient(135deg, var(--pp-red), #B32518);
    color: white;
    box-shadow: 0 4px 20px rgba(139,30,20,0.38);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139,30,20,0.5);
}

.cta-btn.secondary {
    background: var(--pp-gold);
    color: var(--pp-red-dark);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(242,169,0,0.32);
}

.cta-btn.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(242,169,0,0.45);
}

.cta-btn.outline-light {
    background: transparent;
    border: 1px solid rgba(245,230,211,0.3);
    color: rgba(245,230,211,0.85);
}

.cta-btn.outline-light:hover {
    background: rgba(245,230,211,0.08);
    border-color: var(--pp-gold);
    color: var(--pp-gold);
    transform: translateY(-2px);
}

.cta-btn.large { padding: 1rem 2.25rem; font-size: 1rem; }

/* ======================================================
   SCROLL REVEAL SYSTEM
   ====================================================== */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="up"]    { transform: translateY(44px); }
[data-reveal="left"]  { transform: translateX(-44px); }
[data-reveal="right"] { transform: translateX(44px); }
[data-reveal="scale"] { transform: scale(0.88); }

[data-reveal].revealed {
    opacity: 1;
    transform: none;
}

[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.18s; }
[data-reveal-delay="3"] { transition-delay: 0.28s; }
[data-reveal-delay="4"] { transition-delay: 0.38s; }
[data-reveal-delay="5"] { transition-delay: 0.48s; }
[data-reveal-delay="6"] { transition-delay: 0.58s; }

/* ======================================================
   SECTION LABELS
   ====================================================== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--pp-gold);
    margin-bottom: 0.85rem;
}

.section-label::before,
.section-label::after {
    content: '';
    display: block;
    width: 22px;
    height: 1px;
    background: var(--pp-gold);
    opacity: 0.55;
}

/* ======================================================
   HERO
   ====================================================== */
.hero {
    min-height: 100svh;
    background: var(--pp-dark);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 1.5rem 6rem;
}

/* Subtle grid pattern */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139,30,20,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139,30,20,0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 40%, transparent 100%);
    z-index: 0;
}

/* Glowing orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

.hero-orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(139,30,20,0.55), transparent 70%);
    top: -150px; left: -150px;
    animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb-2 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(242,169,0,0.3), transparent 70%);
    bottom: -80px; right: -80px;
    animation: orbFloat 14s ease-in-out 3s infinite reverse;
}

.hero-orb-3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(92,15,10,0.4), transparent 70%);
    top: 50%; left: 55%;
    transform: translate(-50%, -50%);
    animation: orbFloat 10s ease-in-out 6s infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(40px, -30px) scale(1.06); }
    66%       { transform: translate(-25px, 40px) scale(0.94); }
}

/* Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particleRise var(--duration, 9s) ease-in var(--delay, 0s) infinite;
}

@keyframes particleRise {
    0%   { opacity: 0;   transform: translateY(0) scale(0); }
    8%   { opacity: 0.9; transform: translateY(-15px) scale(1); }
    90%  { opacity: 0.2; }
    100% { opacity: 0;   transform: translateY(-520px) scale(0.4); }
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 780px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(242,169,0,0.12);
    border: 1px solid rgba(242,169,0,0.32);
    color: var(--pp-gold);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: heroFadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}

.hero-logo-wrap {
    animation: heroFadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.3s both;
    margin-bottom: 1.5rem;
}

.hero-logo-img {
    height: 110px;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(242,169,0,0.35));
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(245,230,211,0.65);
    font-style: italic;
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
    animation: heroFadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.5s both;
}

.hero-cta-group {
    display: flex;
    gap: 0.9rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroFadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.7s both;
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.28);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    animation: heroFadeUp 1s ease 1.2s both;
}

.scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, rgba(242,169,0,0.7), transparent);
    animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.35; transform: scaleY(0.8); }
    50%       { opacity: 1;    transform: scaleY(1); }
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ======================================================
   ABOUT SECTION
   ====================================================== */
.about-section {
    padding: 7rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

/* Large decorative quote */
.about-section::before {
    content: '\201C';
    position: absolute;
    top: -2rem;
    left: -2rem;
    font-size: 22rem;
    font-family: 'Playfair Display', serif;
    color: var(--pp-cream);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

.about-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: var(--pp-red);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-text h3 {
    font-size: 1.65rem;
    font-family: 'Playfair Display', serif;
    color: var(--pp-gold);
    margin: 2.5rem 0 1rem;
}

.about-highlight {
    background: linear-gradient(135deg, #FFF9EE, #FFF3D0);
    border-left: 4px solid var(--pp-gold);
    border-radius: 0 14px 14px 0;
    padding: 1.5rem 2rem;
    margin-top: 1.5rem;
    text-align: left;
    position: relative;
}

.about-highlight p {
    font-weight: 600;
    color: var(--pp-red-dark);
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.7;
}

/* ======================================================
   COMMUNITY SECTION
   ====================================================== */
.community-section {
    padding: 7rem 0;
    background: var(--pp-dark);
    position: relative;
    overflow: hidden;
}

/* Grid overlay */
.community-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(242,169,0,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(242,169,0,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.community-section .container { position: relative; z-index: 1; }

.community-section h2 {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: white;
    text-align: center;
    margin-bottom: 0.5rem;
}

.community-section .section-subtitle { color: rgba(255,255,255,0.45); }

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.community-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(242,169,0,0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: 18px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.community-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(242,169,0,0.14), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.community-item:hover {
    border-color: rgba(242,169,0,0.6);
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.45), 0 0 0 1px rgba(242,169,0,0.25);
}

.community-item:hover::before { opacity: 1; }

.community-item i {
    font-size: 2rem;
    color: var(--pp-gold);
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.community-item:hover i { transform: scale(1.2) rotate(-5deg); }

.community-item p {
    color: rgba(245,230,211,0.82);
    font-size: 0.95rem;
}

.community-goal {
    background: linear-gradient(135deg, rgba(139,30,20,0.22), rgba(92,15,10,0.38));
    border: 1px solid rgba(139,30,20,0.45);
    border-radius: 22px;
    padding: 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Rotating glow sweep */
.community-goal::before {
    content: '';
    position: absolute;
    top: -100%; left: -100%;
    width: 300%; height: 300%;
    background: conic-gradient(from 0deg, transparent, rgba(242,169,0,0.07), transparent 60%);
    animation: rotateSlow 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateSlow { 100% { transform: rotate(360deg); } }

.community-goal h3 {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    color: var(--pp-gold);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.community-goal p {
    font-size: 1.05rem;
    color: rgba(245,230,211,0.78);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.community-goal .cta-btn { position: relative; z-index: 1; }

/* ======================================================
   EXPERIENCE SECTION
   ====================================================== */
.experience-section {
    padding: 7rem 0;
    background: white;
    position: relative;
}

.experience-section h2 {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: var(--pp-red);
    text-align: center;
    margin-bottom: 3.5rem;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.experience-card {
    background: white;
    border-radius: 22px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0ebe5;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
}

/* Warm wash on hover */
.experience-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FFF8EE 0%, white 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 22px;
}

/* Animated top bar */
.experience-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pp-red), var(--pp-gold), var(--pp-red));
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s ease;
    animation: none;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 56px rgba(139,30,20,0.12);
    border-color: rgba(242,169,0,0.25);
}

.experience-card:hover::before  { opacity: 1; }
.experience-card:hover::after   {
    transform: scaleX(1);
    animation: barShimmer 2s linear infinite;
}

@keyframes barShimmer {
    0%   { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

.experience-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(242,169,0,0.14), rgba(242,169,0,0.04));
    border: 1px solid rgba(242,169,0,0.28);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--pp-gold);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.experience-card:hover .experience-icon {
    background: linear-gradient(135deg, var(--pp-gold), #D49000);
    border-color: transparent;
    color: white;
    transform: rotate(-6deg) scale(1.08);
    box-shadow: 0 8px 24px rgba(242,169,0,0.35);
}

.experience-card h3 {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--pp-red);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.experience-card ul {
    list-style: none;
    position: relative;
    z-index: 1;
}

.experience-card li {
    padding: 0.6rem 0 0.6rem 1.6rem;
    color: #666;
    font-size: 0.9rem;
    position: relative;
    border-bottom: 1px dashed rgba(0,0,0,0.07);
    line-height: 1.5;
}

.experience-card li:last-child { border-bottom: none; }

.experience-card li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0.65rem;
    color: var(--pp-gold);
    font-size: 0.6rem;
}

/* ======================================================
   PARTNERS SECTION
   ====================================================== */
.partners-section {
    padding: 7rem 0;
    background: linear-gradient(185deg, #0C0806, #180E06);
    position: relative;
    overflow: hidden;
}

/* Radial glow center */
.partners-section::before {
    content: '';
    position: absolute;
    top: 30%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(139,30,20,0.2), transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.partners-section .container { position: relative; z-index: 1; }

.partners-section h2 {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: white;
    text-align: center;
    margin-bottom: 0.5rem;
}

.partners-section .section-subtitle { color: rgba(255,255,255,0.4); }

.partners-sub-heading {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    color: white;
    text-align: center;
    margin-bottom: 0.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    padding: 2rem;
    border-radius: 18px;
    text-align: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
}

/* Gradient border glow on hover via inset pseudo */
.benefit-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(242,169,0,0.35), transparent 50%, rgba(139,30,20,0.35));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}

.benefit-card:hover::after { opacity: 1; }

.benefit-card i {
    font-size: 2rem;
    color: var(--pp-gold);
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.benefit-card:hover i { transform: scale(1.18) rotate(-8deg); }

.benefit-card h3 {
    font-size: 1.15rem;
    color: white;
    margin-bottom: 0.6rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 1;
}

.benefit-card p {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    position: relative;
    z-index: 1;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
}

.opportunity-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(242,169,0,0.14);
    border-radius: 14px;
    padding: 1.75rem;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
}

.opportunity-item:hover {
    border-color: var(--pp-gold);
    background: rgba(242,169,0,0.07);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 16px 32px rgba(0,0,0,0.35);
}

.opportunity-item i {
    font-size: 1.65rem;
    color: var(--pp-gold);
    margin-bottom: 0.75rem;
    display: block;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.opportunity-item:hover i { transform: scale(1.2); }

.opportunity-item h3 {
    font-size: 0.95rem;
    color: white;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.opportunity-item p {
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
    line-height: 1.5;
}

/* ======================================================
   IMPACT SECTION
   ====================================================== */
.impact-section {
    padding: 7rem 0;
    background: white;
}

.impact-section h2 {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: var(--pp-red);
    text-align: center;
    margin-bottom: 0.5rem;
}

.impact-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.impact-item {
    background: linear-gradient(135deg, #FFF9EE, #FFF3D0);
    border-radius: 18px;
    padding: 2rem;
    border-left: 4px solid var(--pp-gold);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
}

/* Large decorative quote behind */
.impact-item::before {
    content: '\201C';
    position: absolute;
    top: -1.5rem;
    right: 0.75rem;
    font-size: 8rem;
    font-family: 'Playfair Display', serif;
    color: rgba(242,169,0,0.14);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.impact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 44px rgba(242,169,0,0.18);
    border-left-color: var(--pp-red);
}

.impact-item i {
    font-size: 1.5rem;
    color: var(--pp-gold);
    margin-bottom: 0.85rem;
    display: block;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.impact-item:hover i { transform: scale(1.15); }

.impact-item p {
    color: #444;
    font-size: 1rem;
    line-height: 1.75;
    font-style: italic;
}

/* ======================================================
   JOIN SECTION
   ====================================================== */
.join-section {
    padding: 7rem 0;
    background: var(--pp-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Large center glow */
.join-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(139,30,20,0.28), transparent 65%);
    pointer-events: none;
}

.join-section h2 {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: var(--pp-gold);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.join-section > .container > p {
    font-size: 1.05rem;
    color: rgba(245,230,211,0.65);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.join-form {
    display: flex;
    gap: 0.75rem;
    max-width: 460px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    justify-content: center;
}

.join-form input {
    flex: 1;
    min-width: 220px;
    padding: 0.85rem 1.25rem;
    border: 1px solid rgba(242,169,0,0.28);
    border-radius: 50px;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.07);
    color: white;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.join-form input::placeholder { color: rgba(255,255,255,0.32); }

.join-form input:focus {
    outline: none;
    border-color: var(--pp-gold);
    background: rgba(255,255,255,0.11);
    box-shadow: 0 0 0 3px rgba(242,169,0,0.14);
}

/* ======================================================
   FOOTER
   ====================================================== */
.footer {
    background: var(--pp-red-dark);
    color: var(--pp-cream);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--pp-gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
}

.footer-col p {
    color: rgba(245,230,211,0.78);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col a {
    color: rgba(245,230,211,0.78);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.25s ease;
}

.footer-col a:hover { color: var(--pp-gold); }

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    background: rgba(245,230,211,0.1);
    border-radius: 50%;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--pp-gold);
    color: var(--pp-red-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(245,230,211,0.15);
    padding-top: 1rem;
    text-align: center;
    color: rgba(245,230,211,0.5);
    font-size: 0.85rem;
}

/* ======================================================
   SECTION SUBTITLE
   ====================================================== */
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1rem;
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 768px) {
    .logo img { height: 28px; }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu { display: none; }
    .mobile-drawer { display: block; }

    .hero { padding: 7rem 1.25rem 5rem; }

    .hero-logo-img { height: 80px; }

    .hero-subtitle { font-size: 1rem; }

    .hero-orb-1 { width: 350px; height: 350px; }
    .hero-orb-2 { width: 280px; height: 280px; }

    .about-section::before { font-size: 14rem; top: -1rem; left: -1rem; }
    .about-text h2,
    .community-section h2,
    .experience-section h2,
    .partners-section h2,
    .impact-section h2,
    .join-section h2 { font-size: 2.2rem; }

    .community-goal { padding: 2.5rem 1.75rem; }

    .join-form { flex-direction: column; }
    .join-form input,
    .join-form .cta-btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .hero-logo-img { height: 65px; }
    .hero-subtitle { font-size: 0.9rem; }
    .hero-tag { font-size: 0.65rem; }

    .about-text h2,
    .community-section h2,
    .experience-section h2,
    .partners-section h2,
    .impact-section h2,
    .join-section h2 { font-size: 1.7rem; }

    .about-section::before { display: none; }
    .experience-section h2 { margin-bottom: 2rem; }

    .cta-btn.large { padding: 0.9rem 1.75rem; font-size: 0.95rem; }

    .hero-cta-group { flex-direction: column; align-items: center; }
    .hero-cta-group .cta-btn { width: 100%; justify-content: center; }

    .community-goal { padding: 2rem 1.25rem; }
    .community-goal h3 { font-size: 1.5rem; }

    .partners-sub-heading { font-size: 1.5rem; }
    .about-section { padding: 5rem 0; }
    .community-section,
    .experience-section,
    .partners-section,
    .impact-section,
    .join-section { padding: 5rem 0; }
}
