/*
Theme Name: Water Lily LGBTQI+
Theme URI: https://waterlilylgbt.co.uk
Author: Elevate Digital UK
Author URI: https://elevateuk.co.uk
Description: Custom dark theme for Water Lily LGBTQI+ — South Asian LGBTQI+ community organisation in London. Peer support, community connection and advocacy.
Version: 1.0.0
License: Private
Text Domain: water-lily
*/

/* =====================================================
   Water Lily LGBTQI+ — Website Stylesheet
   Designed by Elevate Digital UK
   ===================================================== */

:root {
  --primary: #CC0066;
  --primary-light: #FF3399;
  --primary-dark: #99004D;
  --primary-glow: rgba(204, 0, 102, 0.35);
  --bg: #08080F;
  --bg-2: #0E0E1C;
  --bg-card: rgba(255, 255, 255, 0.04);
  --border: rgba(204, 0, 102, 0.2);
  --border-subtle: rgba(255, 255, 255, 0.07);
  --text: #F0EEF5;
  --text-muted: #8888A8;
  --rainbow: linear-gradient(90deg, #E40303, #FF8C00, #FFED00, #008026, #004DFF, #750787);
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --nav-h: 72px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --trans: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ===== RAINBOW TOP BAR ===== */
.rainbow-bar { height: 4px; background: var(--rainbow); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(8, 8, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  transition: background var(--trans), box-shadow var(--trans);
}
.nav.scrolled {
  background: rgba(8, 8, 15, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.3px;
  color: var(--text);
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(204,0,102,0.3));
}
.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-light);
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--text-muted);
  transition: color var(--trans);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
  border-radius: 1px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.btn-nav-donate {
  background: linear-gradient(135deg, #FFB300, #FF6B00);
  color: #1a0a00;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  border: none;
  transition: all var(--trans);
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
  white-space: nowrap;
}
.btn-nav-donate:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 140, 0, 0.5);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--trans);
  display: block;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== FLOATING MEMBERSHIP BUTTON ===== */
.floating-member {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: linear-gradient(to bottom, var(--primary-dark), var(--primary), var(--primary-light));
  color: white;
  padding: 1.4rem 0.75rem;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 8px 0 0 8px;
  border: none;
  box-shadow: -3px 0 24px var(--primary-glow);
  transition: all var(--trans);
  cursor: pointer;
}
.floating-member:hover {
  padding-left: 1.3rem;
  box-shadow: -5px 0 35px var(--primary-glow);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(12, 12, 24, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  z-index: 9999;
  transition: transform 0.5s var(--ease);
}
.cookie-banner.hidden { transform: translateY(100%); }
.cookie-text { font-size: 0.85rem; color: var(--text-muted); }
.cookie-text a { color: var(--primary-light); text-decoration: underline; }
.cookie-text strong { color: var(--text); }
.cookie-btns { display: flex; gap: 0.75rem; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 700;
  transition: all var(--trans);
}
.btn-cookie-accept:hover { background: var(--primary-light); transform: translateY(-1px); }
.btn-cookie-decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  font-size: 0.83rem;
  transition: all var(--trans);
}
.btn-cookie-decline:hover { border-color: var(--text-muted); color: var(--text); }

/* ===== MEMBERSHIP MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 560px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.92) translateY(24px);
  transition: transform 0.35s var(--ease);
}
.modal-overlay.active .modal { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 1.1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--trans);
  line-height: 1;
}
.modal-close:hover { background: rgba(255,255,255,0.1); color: var(--text); }
.modal-header { margin-bottom: 1.5rem; }
.modal-header h2 {
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.modal-header p { font-size: 0.9rem; color: var(--text-muted); }
.rainbow-divider {
  height: 3px;
  background: var(--rainbow);
  border-radius: 2px;
  margin: 1.25rem 0;
}

/* ===== FORMS ===== */
.form-group { margin-bottom: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.93rem;
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238888A8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }
.form-group select option { background: var(--bg-2); }
.form-check { display: flex; align-items: flex-start; gap: 0.75rem; }
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--primary);
  cursor: pointer;
}
.form-check label {
  font-size: 0.83rem;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.form-check label a { color: var(--primary-light); text-decoration: underline; }
.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all var(--trans);
  border: none;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  box-shadow: 0 4px 20px var(--primary-glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 35px var(--primary-glow); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary-light); transform: translateY(-3px); }
.btn-donate {
  background: linear-gradient(135deg, #FFB300, #FF6B00);
  color: #1a0a00;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(255, 140, 0, 0.35);
}
.btn-donate:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(255, 140, 0, 0.5); }
.btn-full { width: 100%; }
.btn-lg { padding: 1.1rem 2.8rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.82rem; }

/* ===== SECTION BASE ===== */
.section { padding: 6rem 2.5rem; }
.section-inner { max-width: 1120px; margin: 0 auto; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 1rem;
}
.section-tag::before {
  content: '';
  width: 24px; height: 2px;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  border-radius: 1px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}
.section-title .gradient {
  background: linear-gradient(135deg, var(--primary-light) 0%, #FF69B4 50%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
}
.center { text-align: center; }
.center .section-sub,
.center .section-tag { margin-left: auto; margin-right: auto; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
#lotus-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 60% 50%, rgba(204, 0, 102, 0.07) 0%, rgba(8,8,15,0.65) 70%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(204, 0, 102, 0.12);
  border: 1px solid rgba(204, 0, 102, 0.35);
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--primary-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  max-width: 800px;
}
.hero-title .line-1 { display: block; }
.hero-title .line-2 {
  display: block;
  background: linear-gradient(135deg, var(--primary-light), #FF69B4, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-stat-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  flex-shrink: 0;
}
.hero-stat-icon svg { width: 20px; height: 20px; }
.hero-stat-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.3;
}
.hero-stat-text strong { display: block; color: var(--text); font-size: 0.95rem; }

/* ===== SERVICES CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 2.25rem;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}
.card-glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--rainbow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.card:hover .card-glow { transform: scaleX(1); }
.card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(204,0,102,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--trans);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-10px) rotateX(2deg);
  border-color: rgba(204,0,102,0.4);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 50px var(--primary-glow);
}
.card:hover::before { opacity: 1; }
.card-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
.card-icon-pink { background: rgba(204,0,102,0.12); border: 1px solid rgba(204,0,102,0.2); }
.card-icon-blue { background: rgba(0,77,255,0.1); border: 1px solid rgba(0,77,255,0.2); }
.card-icon-green { background: rgba(0,128,38,0.1); border: 1px solid rgba(0,128,38,0.2); }
.card h3 {
  font-family: var(--font-head);
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.card p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.75; }

/* ===== ABOUT SPLIT ===== */
.about-split {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, rgba(204,0,102,0.15), rgba(117,7,135,0.15));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(204,0,102,0.5) 0%, transparent 55%);
  border-radius: 22px;
}
.about-img-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: rgba(8,8,15,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
}
.about-img-badge .num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
}
.about-img-badge .label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.about-list { list-style: none; margin: 1.75rem 0; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem;
  color: var(--text-muted);
}
.about-list li:last-child { border-bottom: none; }
.about-list li .check {
  flex-shrink: 0;
  margin-top: 4px;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.about-list li .check::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  transform: rotate(45deg);
  box-shadow: 0 0 6px var(--primary-glow);
}

/* ===== STIGMA SECTION ===== */
.stigma-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.stigma-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.quote-block {
  background: rgba(204, 0, 102, 0.07);
  border-left: 3px solid var(--primary);
  border-radius: 0 14px 14px 0;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
}
.stigma-stats { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.stigma-stat {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 1.5rem;
  transition: all var(--trans);
}
.stigma-stat:hover { border-color: var(--border); }
.stigma-stat .pct {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stigma-stat p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }
.stat-source {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--primary-light);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity var(--trans);
}
.stat-source:hover { opacity: 1; text-decoration: underline; }

/* ===== DONATE SECTION ===== */
.donate-section {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.donate-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(204,0,102,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.donate-amounts {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.donate-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 0.65rem 1.6rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--trans);
  color: var(--text);
}
.donate-pill:hover,
.donate-pill.active {
  background: rgba(204,0,102,0.18);
  border-color: var(--primary);
  color: var(--primary-light);
}
.donate-note { font-size: 0.83rem; color: var(--text-muted); margin-top: 1.5rem; }
.donate-note a { color: var(--primary-light); }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq-item:first-child { border-top: 1px solid var(--border-subtle); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: color var(--trans);
}
.faq-q:hover, .faq-q[aria-expanded="true"] { color: var(--primary-light); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--primary-light);
  transition: transform var(--trans), background var(--trans);
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: rgba(204,0,102,0.12);
}
.faq-a {
  padding-bottom: 1.3rem;
}
.faq-a p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) 2.5rem 4.5rem;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(204,0,102,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1120px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.breadcrumb a { color: var(--primary-light); transition: color var(--trans); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb-sep { opacity: 0.4; }
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero-sub { font-size: 1.1rem; color: var(--text-muted); max-width: 560px; line-height: 1.7; }

/* ===== FOUNDER SECTION ===== */
.founder-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 5rem;
  align-items: start;
}
.founder-img-card {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.founder-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, rgba(204,0,102,0.15) 0%, rgba(117,7,135,0.2) 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 20px;
}
.founder-badge {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
  text-align: center;
}
.founder-badge h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.3rem;
}
.founder-badge .role { font-size: 0.82rem; color: rgba(255,255,255,0.75); }
.pronouns {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border-radius: 50px;
  padding: 0.2rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 0.5rem;
  color: white;
}
.founder-body p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.founder-body p strong { color: var(--text); }

/* ===== VALUES ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.value-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: all var(--trans);
}
.value-card:hover { border-color: var(--border); transform: translateY(-6px); }
.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  color: var(--primary-light);
}
.value-icon svg { width: 36px; height: 36px; }
.value-card h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.value-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
}
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.25rem;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.contact-form-card h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}
.contact-form-card > p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.contact-info-block { margin-bottom: 3rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border-subtle);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(204,0,102,0.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-light);
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.contact-val { font-size: 0.95rem; font-weight: 600; }
.contact-val a { transition: color var(--trans); }
.contact-val a:hover { color: var(--primary-light); }
.contact-social { margin-top: 2rem; }
.contact-social h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.social-btns { display: flex; gap: 0.75rem; }
.social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  font-size: 0.85rem;
  transition: all var(--trans);
}
.social-btn:hover { border-color: var(--primary); color: var(--primary-light); }

/* ===== PRIVACY ===== */
.privacy-body { max-width: 820px; }
.privacy-body h2 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-light);
  margin: 2.5rem 0 0.9rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-subtle);
}
.privacy-body h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.privacy-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.privacy-body ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.privacy-body ul li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 0.4rem;
}
.privacy-body strong { color: var(--text); }
.privacy-body a { color: var(--primary-light); text-decoration: underline; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 2.5rem 2.5rem;
}
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-rainbow { height: 3px; background: var(--rainbow); margin-bottom: 4rem; border-radius: 2px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}
.footer-brand-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 340px;
  margin: 1rem 0 1.75rem;
}
.social-links { display: flex; gap: 0.65rem; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  transition: all var(--trans);
}
.social-link:hover {
  background: rgba(204,0,102,0.15);
  border-color: var(--border);
  color: var(--primary-light);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--primary-light); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
.footer-bottom a { color: var(--primary-light); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { max-width: 420px; }
  .founder-grid { grid-template-columns: 1fr; gap: 3rem; }
  .founder-img-card { position: static; max-width: 340px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-card { position: static; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav { padding: 0 1.5rem; }
  .nav-links, .nav-actions { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(8,8,15,0.99);
    padding: 2rem 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open li .btn-nav-donate {
    display: inline-flex;
    margin-top: 0.5rem;
  }
  .nav-toggle { display: flex; }

  /* Extra right padding on all sections so content clears the floating button */
  .section { padding: 4.5rem 3.5rem 4.5rem 1.5rem; }
  .hero-content { padding: 4rem 3.5rem 4rem 1.5rem; }
  .footer-inner { padding-right: 3.5rem; }

  /* Shrink floating button on mobile so it takes less space */
  .floating-member {
    font-size: 0.58rem;
    padding: 1rem 0.55rem;
    letter-spacing: 1.8px;
  }

  .cards-grid { grid-template-columns: 1fr; }
  .stigma-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cookie-btns { width: 100%; }
}
@media (max-width: 480px) {
  .section { padding: 3.5rem 3.2rem 3.5rem 1.2rem; }
  .hero-content { padding: 3rem 3.2rem 3rem 1.2rem; }
  .hero-title { font-size: 2.4rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .modal { padding: 1.75rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .donate-amounts { gap: 0.5rem; }

  /* Even smaller button on very small screens */
  .floating-member {
    font-size: 0.52rem;
    padding: 0.85rem 0.48rem;
    letter-spacing: 1.5px;
  }
}
