/* ── SECTION LABEL ── */
.section-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: var(--fs-label); font-weight: 600;
    letter-spacing: var(--ls-label); line-height: var(--lh-label); text-transform: uppercase;
    color: var(--pink-600); margin-bottom: 20px;
}
.section-label::before {
    content: ''; width: 24px; height: 1px; background: var(--pink-400);
}

/* ── HERO ── */
.hero {
    padding: 88px 0 72px;
    background: linear-gradient(135deg, #1a1018 0%, #2d1828 100%);
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background-image:
        linear-gradient(rgba(180, 140, 170, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(180, 140, 170, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
}
.hero-glow {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 60%, rgba(192, 80, 154, 0.28), transparent 55%);
    z-index: 0;
}
.hero::after {
    content: ''; position: absolute; bottom: -1px; left: 0;
    width: 100%; height: 60px;
    background: linear-gradient(to bottom, transparent, var(--off-white));
    z-index: 2;
}
.hero-blob {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: 0.2;
    pointer-events: none; z-index: 1;
}
.hero-blob-1 { width: 460px; height: 460px; background: var(--pink-400); top: -120px; right: -80px; }
.hero-blob-2 { width: 280px; height: 280px; background: var(--lav-400); bottom: 20px; left: 5%; }
.hero-inner { position: relative; z-index: 3; }
.hero-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--pink-400);
    background: rgba(224, 122, 184, 0.12);
    border: 1px solid rgba(224, 122, 184, 0.3);
    padding: 5px 14px; border-radius: 999px; margin-bottom: 24px;
}
.hero-label::before { content: ''; width: 24px; height: 1px; background: var(--pink-400); }
.hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    line-height: var(--lh-display); letter-spacing: var(--ls-display);
    color: #fff; margin-bottom: 20px;
}
.hero h1 em { color: var(--pink-400); font-style: italic; }
.hero p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem; line-height: 1.78;
    max-width: 540px; margin-bottom: 36px; font-weight: 300;
}
.hero-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--pink-600); color: #fff;
    padding: 14px 30px; border-radius: 999px;
    font-weight: 600; font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(192, 80, 154, 0.35);
    position: relative; overflow: hidden;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(192, 80, 154, 0.45); }
.hero-cta:active {
    transform: scale(0.96);
    transition-duration: var(--dur-instant);
    transition-timing-function: var(--ease-out-quick);
}
.hero-cta::after {
    content: '';
    position: absolute; inset: 0;
    background: var(--silver-sheen);
    transform: translateX(-120%);
    transition: transform 0.6s ease;
    pointer-events: none;
}
.hero-cta:hover::after { transform: translateX(120%); }

/* ── WHY / HOW TO GET INVOLVED ── */
.why {
    padding: 88px 0;
    position: relative; overflow: hidden;
}
.why::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.6;
}
.why .wrap { position: relative; z-index: 1; }
.why-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.why-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: var(--lh-h2); letter-spacing: var(--ls-h2); margin-bottom: 14px;
}
.why-header h2 em { font-style: italic; color: var(--pink-600); }
.why-header p { color: var(--text-mid); font-size: 1rem; line-height: 1.75; font-weight: 300; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.benefit-card {
    background: linear-gradient(#fff, #fff) padding-box, var(--metallic-border) border-box;
    border: 1px solid transparent;
    border-radius: 24px; padding: 28px 26px;
    transition: transform 0.3s cubic-bezier(.22,.68,0,1.2), box-shadow 0.3s ease;
}
.benefit-card:hover {
    box-shadow: 0 20px 50px rgba(192, 80, 154, 0.12);
    transform: translateY(-6px);
}
.benefit-icon {
    width: 44px; height: 44px; border-radius: 12px; margin-bottom: 14px;
    background: linear-gradient(135deg, var(--pink-100), var(--lav-100));
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--pink-600);
}
.benefit-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem; margin-bottom: 10px;
}
.benefit-card p {
    font-size: 14px; color: var(--text-mid);
    line-height: 1.72; font-weight: 300;
}

/* ── WHO WE'RE LOOKING FOR ── */
.who {
    padding: 80px 0;
    background: var(--off-white);
}
.who-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.who-text h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: var(--lh-h2); letter-spacing: var(--ls-h2);
    margin-bottom: 16px;
}
.who-text h2 em { font-style: italic; color: var(--pink-600); }
.who-text p {
    font-size: 15px; line-height: 1.75;
    color: var(--text-mid); font-weight: 300;
    margin-bottom: 24px;
}
.who-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 12px;
}
.who-list li {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px; color: var(--text-mid); font-weight: 400;
}
.who-list li i {
    color: var(--pink-600);
    font-size: 12px; flex-shrink: 0;
}

/* ── WHO CARD ── */
.who-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px; padding: 36px 32px;
    display: flex; flex-direction: column; gap: 24px;
    position: relative; overflow: hidden;
}
.who-card::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px; border-radius: 50%;
    bottom: -70px; right: -70px;
    background: radial-gradient(circle, var(--pink-200), var(--lav-200));
    filter: blur(56px); opacity: 0.45;
    pointer-events: none;
}
.who-card-label {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--pink-600);
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.who-card-item {
    display: flex; align-items: flex-start; gap: 14px;
    position: relative; z-index: 1;
}
.who-card-item i {
    color: var(--pink-600); font-size: 15px;
    margin-top: 2px; flex-shrink: 0; width: 18px;
}
.who-card-item div {
    display: flex; flex-direction: column; gap: 2px;
}
.who-card-item strong {
    font-size: 13px; font-weight: 600; color: var(--text-dark);
}
.who-card-item span {
    font-size: 12px; color: var(--text-light);
    font-weight: 300; line-height: 1.5;
}

/* ── CONTACT CTA ── */
.contact-cta {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #fdf6fb 0%, #f3eaf8 100%);
    position: relative; overflow: hidden;
}
.contact-cta::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.6;
}
.contact-cta::after {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 360px; height: 360px; background: var(--pink-200);
    border-radius: 50%; filter: blur(80px); opacity: 0.3; z-index: 0;
}
.contact-inner {
    position: relative; z-index: 1;
    max-width: 600px; margin: 0 auto; text-align: center;
}
.contact-inner h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: var(--ls-h2); line-height: var(--lh-h2); margin-bottom: 16px;
}
.contact-inner h2 em { font-style: italic; color: var(--pink-600); }
.contact-inner p {
    color: var(--text-mid); font-size: 1rem;
    line-height: 1.78; margin-bottom: 32px; font-weight: 300;
}
.contact-email {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--text-dark); color: #fff;
    padding: 15px 32px; border-radius: 999px;
    font-weight: 500; font-size: 1rem;
    text-decoration: none; transition: all 0.2s;
}
.contact-email:hover { background: var(--lav-600); transform: translateY(-1px); }
.contact-email:active { transform: scale(0.94); transition-duration: var(--dur-instant); }
.contact-note { margin-top: 20px; font-size: 12px; color: var(--text-light); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .who-inner { grid-template-columns: 1fr; gap: 40px; }
    .nav-inner { flex-direction: row; align-items: flex-start; }
    .nav-links { width: 100%; }
    .nav-links a { padding: 7px 13px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .benefits-grid { grid-template-columns: 1fr; }
}