/* ============================================
   UPLIFT PAGEANT — OVERRIDES & SPARKLE
   Loaded AFTER site.css to fix layout bugs,
   restore brand palette, and add festive sparkle.
   ============================================ */

/* ---------- Brand palette: warm rose + champagne + plum ---------- */
:root {
  --bg: #1a0a26;
  --bg-soft: #260f3a;
  --primary: #b53b8c;          /* rose-magenta */
  --primary-dark: #6b1f5a;     /* deep plum */
  --primary-light: #ff7ec9;    /* hot pink */
  --gold: #f7d77a;             /* champagne gold */
  --gold-deep: #d4a548;
  --accent: #f4e8c1;           /* champagne */
  --accent-bright: #ffffff;
}

html, body {
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(255,126,201,0.18), transparent 60%),
    radial-gradient(900px 600px at 0% 30%, rgba(247,215,122,0.10), transparent 60%),
    radial-gradient(ellipse at top, #3a1648 0%, #1a0a26 55%, #0c0420 100%) fixed;
  font-family: 'Georgia', 'Times New Roman', serif;
}

/* ---------- Buttons get gold trim ---------- */
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  box-shadow: 0 10px 28px rgba(181,59,140,0.45), inset 0 0 0 1px rgba(247,215,122,0.45);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}
.btn-secondary {
  border: 1px solid rgba(247,215,122,0.55);
  background: linear-gradient(135deg, rgba(247,215,122,0.16), rgba(247,215,122,0.04));
}
.btn-secondary:hover {
  background: linear-gradient(135deg, rgba(247,215,122,0.28), rgba(247,215,122,0.10));
}

/* ---------- Better section breathing ---------- */
.section { padding: 96px 0; }
.section h2 {
  font-family: 'Georgia', serif;
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 70%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 22px;
}
.section p.lead { font-size: 1.1rem; line-height: 1.65; }
.eyebrow {
  color: var(--gold);
  text-shadow: 0 0 14px rgba(247,215,122,0.55);
}

/* ---------- Hero gets sparkle ---------- */
.hero { overflow: hidden; position: relative; }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(2px 2px at 12% 18%, rgba(255,255,255,0.9), transparent 50%),
    radial-gradient(1.5px 1.5px at 78% 32%, rgba(247,215,122,0.9), transparent 50%),
    radial-gradient(2px 2px at 25% 72%, rgba(255,255,255,0.7), transparent 50%),
    radial-gradient(1.5px 1.5px at 88% 80%, rgba(255,126,201,0.8), transparent 50%),
    radial-gradient(1px 1px at 55% 45%, rgba(255,255,255,0.85), transparent 50%),
    radial-gradient(2px 2px at 40% 88%, rgba(247,215,122,0.7), transparent 50%),
    radial-gradient(1.5px 1.5px at 92% 12%, rgba(255,255,255,0.6), transparent 50%);
  pointer-events: none;
  animation: twinkle 4s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}
.hero h1 {
  font-family: 'Georgia', serif;
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 45%, #fff 65%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .punch {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(247,215,122,0.22), rgba(255,126,201,0.15));
  border: 1px solid rgba(247,215,122,0.55);
  color: var(--accent-bright);
  font-size: 1rem;
}

/* ---------- Hero crown: bigger, glowy, rotating sheen ---------- */
.hero-crown {
  width: 110px; height: 110px;
  background:
    radial-gradient(circle at 30% 25%, #fff 0%, var(--gold) 35%, var(--primary-light) 70%, var(--primary-dark) 100%);
  box-shadow:
    0 8px 40px rgba(247,215,122,0.45),
    0 0 0 4px rgba(247,215,122,0.25),
    inset 0 2px 8px rgba(255,255,255,0.4);
  border: 3px solid rgba(247,215,122,0.65);
  font-size: 3rem;
  position: relative;
}
.hero-crown::after {
  content: "";
  position: absolute; inset: -12px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(247,215,122,0.35) 20%, transparent 40%, transparent 60%, rgba(255,126,201,0.35) 80%, transparent 100%);
  z-index: -1;
  animation: spin 8s linear infinite;
  filter: blur(8px);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Brand logo in header gets gold ring ---------- */
.brand-logo {
  background: radial-gradient(circle at 30% 30%, #fff 0%, var(--gold) 35%, var(--primary) 70%, var(--primary-dark) 100%);
  border: 2px solid rgba(247,215,122,0.65);
  box-shadow: 0 4px 18px rgba(181,59,140,0.5), inset 0 2px 6px rgba(255,255,255,0.35);
}
.brand-logo span { color: var(--primary-dark); }
.brand-name {
  background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1rem;
  line-height: 1.15;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .brand-name { font-size: 0.85rem; }
}
@media (max-width: 600px) {
  .brand-name { font-size: 0.78rem; white-space: normal; }
}

/* ---------- FIX: ladder now uses auto-fit so 4-step ladders fill correctly ---------- */
.ladder {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}
.ladder-step {
  background: linear-gradient(180deg, rgba(247,215,122,0.10) 0%, rgba(181,59,140,0.22) 100%);
  border: 1px solid rgba(247,215,122,0.30);
  padding: 22px 16px;
  transition: 0.3s ease;
}
.ladder-step:hover {
  transform: translateY(-3px);
  border-color: rgba(247,215,122,0.6);
  box-shadow: 0 12px 28px rgba(181,59,140,0.3);
}
.ladder-step .step-num {
  width: 38px; height: 38px; line-height: 38px;
  background: linear-gradient(135deg, var(--gold) 0%, #fff 100%);
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(247,215,122,0.5);
}

/* ---------- Cards: warmer, sparklier ---------- */
.card {
  background: linear-gradient(180deg, rgba(247,215,122,0.08) 0%, rgba(181,59,140,0.18) 100%);
  border: 1px solid rgba(247,215,122,0.22);
}
.card:hover {
  border-color: rgba(247,215,122,0.55);
  box-shadow: 0 22px 50px rgba(181,59,140,0.35);
}
.card-visual {
  background: linear-gradient(135deg, #6b1f5a 0%, #b53b8c 50%, #ff7ec9 100%);
}
.card-body h3 {
  color: var(--gold);
  font-family: 'Georgia', serif;
  font-weight: 800;
}
.card-link { color: var(--gold); }

/* ---------- FIX: 14 division cards in 4-col grid leaves dangling 2.
   Switch to auto-fit so it always balances. ---------- */
.cards-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.cards-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.cards-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ---------- FIX: ULs nested inside cards crashed against card padding.
   Style them as clean inset lists instead of trying to use bullet-list. ---------- */
.card-body ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.card-body ul li {
  position: relative;
  padding: 8px 0 8px 26px;
  color: #f0e6f7;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px dashed rgba(247,215,122,0.18);
}
.card-body ul li:last-child { border-bottom: 0; }
.card-body ul li::before {
  content: "✦";
  position: absolute;
  left: 4px; top: 8px;
  color: var(--gold);
  font-size: 0.9rem;
  text-shadow: 0 0 6px rgba(247,215,122,0.6);
}

/* ---------- Bullet list (outside cards) — make sparkles gold ---------- */
.bullet-list li::before {
  color: var(--gold);
  text-shadow: 0 0 8px rgba(247,215,122,0.6);
}
.bullet-list li {
  background: linear-gradient(135deg, rgba(247,215,122,0.10) 0%, rgba(181,59,140,0.18) 100%);
  border: 1px solid rgba(247,215,122,0.22);
  transition: 0.2s ease;
}
.bullet-list li:hover {
  border-color: rgba(247,215,122,0.5);
  transform: translateX(4px);
}

/* ---------- Stats: gold numerals ---------- */
.stats {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.stat {
  background: linear-gradient(180deg, rgba(247,215,122,0.10) 0%, rgba(181,59,140,0.20) 100%);
  border: 1px solid rgba(247,215,122,0.28);
}
.stat .num {
  background: linear-gradient(135deg, var(--gold) 0%, #fff 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.6rem;
  text-shadow: 0 0 20px rgba(247,215,122,0.3);
}

/* ---------- Visual-card decorative slots: festive shimmer instead of plain box ---------- */
.visual-card {
  background:
    radial-gradient(circle at 30% 30%, rgba(247,215,122,0.18), transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(255,126,201,0.18), transparent 50%),
    linear-gradient(180deg, rgba(247,215,122,0.08) 0%, rgba(181,59,140,0.25) 100%);
  border: 1px solid rgba(247,215,122,0.35);
  position: relative;
  overflow: hidden;
}
.visual-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 15% 25%, rgba(255,255,255,0.9), transparent 50%),
    radial-gradient(2px 2px at 70% 30%, rgba(247,215,122,0.9), transparent 50%),
    radial-gradient(1px 1px at 40% 60%, rgba(255,255,255,0.8), transparent 50%),
    radial-gradient(2px 2px at 85% 75%, rgba(255,126,201,0.7), transparent 50%),
    radial-gradient(1.5px 1.5px at 25% 80%, rgba(247,215,122,0.7), transparent 50%);
  animation: twinkle 5s ease-in-out infinite;
}

/* ---------- CTA section: golden frame, deeper background ---------- */
.cta-section {
  background:
    linear-gradient(135deg, rgba(247,215,122,0.10) 0%, rgba(255,126,201,0.08) 50%, rgba(181,59,140,0.15) 100%);
  border-top: 1px solid rgba(247,215,122,0.35);
  border-bottom: 1px solid rgba(247,215,122,0.35);
}
.cta-section .container { text-align: center; }
.cta-crown {
  font-size: 3.5rem;
  margin: 0 auto 18px;
  display: block;
  filter: drop-shadow(0 0 24px rgba(247,215,122,0.6));
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.cta-section .btn-row { justify-content: center; }

/* ---------- Soft-bg section gets a warmer gradient ---------- */
.soft-bg {
  background: linear-gradient(135deg, rgba(107,31,90,0.35) 0%, rgba(26,10,38,0.2) 100%);
  border-top: 1px solid rgba(247,215,122,0.18);
  border-bottom: 1px solid rgba(247,215,122,0.18);
}

/* ---------- Footer: add gold accent ---------- */
footer {
  border-top: 1px solid rgba(247,215,122,0.35);
  background: linear-gradient(180deg, rgba(26,10,38,0.4) 0%, rgba(12,4,32,0.8) 100%);
  padding: 60px 0 30px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 30px;
}
.footer-brand-logo {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff 0%, var(--gold) 35%, var(--primary) 70%, var(--primary-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Georgia', serif; font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 14px;
  border: 2px solid rgba(247,215,122,0.55);
  box-shadow: 0 4px 14px rgba(181,59,140,0.4);
}
.footer-brand-logo span { font-size: 1.1rem; }
footer h4 {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
footer a {
  color: #e8d9f5;
  line-height: 1.9;
  font-size: 0.94rem;
}
footer a:hover { color: var(--gold); }
.copyright {
  border-top: 1px solid rgba(247,215,122,0.22);
  padding-top: 22px;
  font-size: 0.85rem;
  color: var(--muted-dim);
  text-align: center;
}

/* ---------- Compact hero: roomier ---------- */
.hero.compact .hero-content { padding: 60px 0 40px; }

/* ---------- Mobile cleanup ---------- */
@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-crown { width: 90px; height: 90px; font-size: 2.4rem; }
  .grid-2 { grid-template-columns: 1fr; gap: 28px; }
  .visual-card { aspect-ratio: 16/10; font-size: 4rem; }
}

/* ============================================
   SKIP-LINK — visually hidden, keyboard-only
   Aligned with site.css; uses fixed positioning so
   it can't accidentally show up on the page.
   ============================================ */
.skip-link {
  position: fixed !important;
  top: -60px !important;
  left: 12px !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link:focus,
.skip-link:focus-visible {
  position: fixed !important;
  width: auto !important;
  height: auto !important;
  padding: 12px 20px !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  clip-path: none !important;
  top: 12px !important;
  left: 12px !important;
  z-index: 10000 !important;
  background: var(--gold) !important;
  color: var(--primary-dark) !important;
  font-weight: 800 !important;
  border-radius: 10px !important;
  outline: 2px solid var(--primary) !important;
  outline-offset: 2px !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4) !important;
}

/* ============================================
   BACK-TO-TOP FLOATING BUTTON
   Fades in when scrolled past hero.
   Bottom-right corner. Crown-themed.
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border: 2px solid var(--gold);
  box-shadow:
    0 8px 24px rgba(181,59,140,0.5),
    0 0 0 4px rgba(247,215,122,0.18),
    inset 0 2px 6px rgba(255,255,255,0.3);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  font-family: inherit;
  padding: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 12px 32px rgba(181,59,140,0.6),
    0 0 0 4px rgba(247,215,122,0.35),
    inset 0 2px 6px rgba(255,255,255,0.4);
}

.back-to-top:active {
  transform: translateY(-1px) scale(1);
}

.back-to-top:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

/* Subtle pulsing ring */
.back-to-top::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(247,215,122,0.4);
  animation: pulse-ring 2.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse-ring {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.15);
    opacity: 0;
  }
}

@media (max-width: 760px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}

/* ============================================
   HEADER REDESIGN — two-row, centered nav
   Row 1: brand left, hamburger right (mobile only)
   Row 2: centered nav links
   ============================================ */
.site-header {
  padding: 0 !important;
}
.site-header .container.nav {
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 0 !important;
  padding: 18px 0 0 !important;
  gap: 0 !important;
  position: relative;
}

/* Row 1: brand + hamburger toggle */
.site-header .container.nav .brand {
  margin: 0 auto;
  padding-bottom: 16px;
  text-align: center;
  flex-direction: row;
  justify-content: center;
}

.brand-logo {
  width: 64px !important;
  height: 64px !important;
}
.brand-logo span { font-size: 1.55rem !important; }

.brand-name {
  font-size: 1.15rem !important;
  line-height: 1.1 !important;
  font-family: 'Georgia', serif;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand-sub {
  font-size: 0.78rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-top: 4px !important;
  font-weight: 600;
}

/* Row 2: nav links centered, full width */
.site-header .nav-links {
  width: 100%;
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 22px;
  padding: 12px 16px 16px;
  border-top: 1px solid rgba(247,215,122,0.18);
  background: rgba(12, 4, 32, 0.55);
}
.site-header .nav-links a {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  padding: 8px 4px;
  position: relative;
  white-space: nowrap;
  color: #f0e6f7;
  transition: color 0.2s ease;
}
.site-header .nav-links a:not(.btn):hover {
  color: var(--gold);
}
.site-header .nav-links a.current {
  color: var(--gold);
  font-weight: 700;
}
.site-header .nav-links a.current::after {
  content: "";
  position: absolute;
  left: 4px; right: 4px; bottom: 2px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 1px;
}
.site-header .nav-links a.btn-primary {
  padding: 8px 18px !important;
  font-size: 0.85rem !important;
  margin-left: 8px;
}

/* Hamburger position — top right on mobile only */
.menu-toggle {
  position: absolute !important;
  top: 18px;
  right: 18px;
  width: 44px !important;
  height: 44px !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, rgba(247,215,122,0.18), rgba(181,59,140,0.12)) !important;
  border: 1px solid rgba(247,215,122,0.4) !important;
  color: var(--gold) !important;
  font-size: 1.4rem !important;
  cursor: pointer;
  z-index: 110;
}

/* Mobile: collapse nav into drawer */
@media (max-width: 900px) {
  .menu-toggle { display: flex !important; }
  .site-header .nav-links {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 14px;
    background: rgba(12, 4, 32, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 16px 36px rgba(0,0,0,0.5);
    max-height: 75vh;
    overflow-y: auto;
  }
  .site-header .nav-links.open {
    display: flex !important;
  }
  .site-header .nav-links a {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(247,215,122,0.10);
    font-size: 1rem;
  }
  .site-header .nav-links a.current::after { display: none; }
  .site-header .nav-links a.btn-primary {
    margin: 12px auto 4px;
    padding: 12px 28px !important;
    font-size: 1rem !important;
    width: auto;
    border-bottom: none !important;
  }
  .site-header .container.nav .brand {
    padding: 0 60px 16px;
  }
}

/* Compact further on very small screens */
@media (max-width: 480px) {
  .brand-name { font-size: 0.98rem !important; }
  .brand-sub { font-size: 0.7rem !important; }
  .brand-logo {
    width: 52px !important;
    height: 52px !important;
  }
  .brand-logo span { font-size: 1.3rem !important; }
}

/* ============================================
   (nested-nav CSS removed in v11.4 — nav is flat)
   ============================================ */

/* ============================================
   APPLICATION FORM (Apply page)
   ============================================ */
.apply-card {
  background: linear-gradient(180deg, rgba(122, 61, 204, 0.10) 0%, rgba(26, 10, 38, 0.4) 100%);
  border: 1px solid rgba(247, 215, 122, 0.30);
  border-radius: 22px;
  padding: 36px 32px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.apply-card-header {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(247, 215, 122, 0.22);
}
.apply-card-header h2 {
  font-size: 1.6rem;
  margin: 0 0 8px;
}
.apply-card-header p {
  color: var(--muted, #d8c5e5);
  font-size: 0.95rem;
  margin: 0;
}

.form-row {
  margin-bottom: 18px;
}
.form-row label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gold, #f7d77a);
  letter-spacing: 0.02em;
}
.form-row .field-hint {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: var(--muted-dim, #b09cc6);
  font-style: italic;
}
.form-row .req-star {
  color: #ff7ec9;
  margin-left: 3px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(217, 217, 217, 0.32);
  background: rgba(21, 8, 43, 0.6);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  box-sizing: border-box;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold, #f7d77a);
  background: rgba(21, 8, 43, 0.85);
}
.form-row textarea { resize: vertical; min-height: 100px; }
.form-row select { cursor: pointer; }
.form-row select option { background: #1a0a26; color: #fff; }

.form-row-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) {
  .form-row-inline { grid-template-columns: 1fr; }
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0;
  cursor: pointer;
}
.checkbox-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold, #f7d77a);
  cursor: pointer;
}
.checkbox-row label {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 0.92rem;
  color: #e8d9f5;
  letter-spacing: 0;
  cursor: pointer;
  line-height: 1.4;
}
.checkbox-row label a {
  color: var(--gold, #f7d77a);
  text-decoration: underline;
}

.form-submit-row {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(247, 215, 122, 0.22);
}
.form-submit-row .btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}
.form-submit-row .field-hint {
  text-align: center;
  margin-top: 10px;
}

/* Fairness pledge — sits below form */
.fairness-pledge {
  margin-top: 36px;
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(247, 215, 122, 0.08), rgba(255, 126, 201, 0.04));
  border: 1px solid rgba(247, 215, 122, 0.35);
}
.fairness-pledge h3 {
  font-family: 'Georgia', serif;
  color: var(--gold, #f7d77a);
  margin: 0 0 12px;
  font-size: 1.2rem;
}
.fairness-pledge ul {
  margin: 0;
  padding-left: 20px;
}
.fairness-pledge li {
  margin-bottom: 8px;
  color: #e8d9f5;
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Success message after submit */
.form-success {
  text-align: center;
  padding: 40px 30px;
}
.form-success-icon {
  font-size: 3rem;
  margin-bottom: 14px;
}
.form-success h2 {
  color: var(--gold, #f7d77a);
  margin-bottom: 10px;
}
.form-success p {
  color: #d8c5e5;
  font-size: 1rem;
  line-height: 1.6;
}

/* ============================================
   GGG PARENT-BRAND ATTRIBUTION (footer)
   ============================================ */
.ggg-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px 0 18px;
  border-top: 1px solid rgba(247,215,122,0.15);
  margin-top: 24px;
  flex-wrap: wrap;
}
.ggg-attribution img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(247,215,122,0.35);
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  flex-shrink: 0;
}
.ggg-attribution-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.ggg-attribution-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-dim);
  font-weight: 600;
}
.ggg-attribution-name {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 700;
  margin-top: 2px;
}
@media (max-width: 540px) {
  .ggg-attribution { gap: 10px; }
  .ggg-attribution-text { text-align: center; }
}

/* ============================================
   GGG SPARKLY PINK THEME
   Applied via <body class="ggg-theme">
   Overrides Uplift palette for the GGG page only.
   ============================================ */
.ggg-theme {
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(255, 105, 180, 0.28), transparent 60%),
    radial-gradient(900px 600px at 0% 30%, rgba(255, 215, 235, 0.18), transparent 60%),
    radial-gradient(ellipse at top, #4a1a3f 0%, #2a0d24 55%, #1a0518 100%) fixed !important;
}
.ggg-theme {
  --brand-pink: #FF1493;       /* hot pink */
  --brand-pink-light: #FFB6D9;
  --brand-pink-soft: #FFE4F1;
  --brand-rose: #FF69B4;
  --brand-magenta: #C71585;
  --brand-deep: #4A1A3F;
  --silver: #E8E8E8;
  --silver-bright: #FFFFFF;
}
.ggg-theme .site-header { background: rgba(74, 26, 63, 0.85); border-bottom: 1px solid rgba(255, 182, 217, 0.35); }
.ggg-theme .brand-logo {
  background: radial-gradient(circle at 30% 30%, #fff 0%, #FFB6D9 35%, #FF1493 70%, #C71585 100%);
  border: 2px solid rgba(255, 182, 217, 0.65);
  box-shadow: 0 4px 18px rgba(255, 20, 147, 0.5), inset 0 2px 6px rgba(255,255,255,0.35);
}
.ggg-theme .brand-logo span { color: #C71585; }
.ggg-theme .brand-name {
  background: linear-gradient(135deg, #fff 0%, #FFB6D9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ggg-theme .eyebrow {
  color: var(--brand-pink-light);
  text-shadow: 0 0 14px rgba(255, 20, 147, 0.55);
}
.ggg-theme .section h2,
.ggg-theme .hero h1 {
  background: linear-gradient(135deg, #fff 0%, #FFB6D9 45%, #fff 65%, #FFE4F1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ggg-theme .btn-primary {
  background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
  box-shadow: 0 10px 28px rgba(255, 20, 147, 0.5), inset 0 0 0 1px rgba(255, 182, 217, 0.55);
}
.ggg-theme .btn-primary:hover {
  background: linear-gradient(135deg, #C71585 0%, #FF1493 100%);
}
.ggg-theme .btn-secondary {
  border: 1px solid rgba(255, 182, 217, 0.55);
  background: linear-gradient(135deg, rgba(255, 182, 217, 0.16), rgba(255, 20, 147, 0.04));
}
.ggg-theme .btn-secondary:hover {
  background: linear-gradient(135deg, rgba(255, 182, 217, 0.28), rgba(255, 20, 147, 0.10));
}
.ggg-theme .ladder-step {
  background: linear-gradient(180deg, rgba(255, 182, 217, 0.10) 0%, rgba(255, 20, 147, 0.22) 100%);
  border: 1px solid rgba(255, 182, 217, 0.30);
}
.ggg-theme .ladder-step .step-num {
  background: linear-gradient(135deg, #FFB6D9 0%, #fff 100%);
  color: #C71585;
  box-shadow: 0 4px 12px rgba(255, 20, 147, 0.5);
}
.ggg-theme .card {
  background: linear-gradient(180deg, rgba(255, 182, 217, 0.08) 0%, rgba(255, 20, 147, 0.18) 100%);
  border: 1px solid rgba(255, 182, 217, 0.22);
}
.ggg-theme .card:hover {
  border-color: rgba(255, 182, 217, 0.55);
  box-shadow: 0 22px 50px rgba(255, 20, 147, 0.35);
}
.ggg-theme .card-visual {
  background: linear-gradient(135deg, #C71585 0%, #FF1493 50%, #FFB6D9 100%);
}
.ggg-theme .card-body h3 {
  color: var(--brand-pink-light);
}
.ggg-theme .card-link { color: var(--brand-pink-light); }
.ggg-theme .stat {
  background: linear-gradient(180deg, rgba(255, 182, 217, 0.10) 0%, rgba(255, 20, 147, 0.20) 100%);
  border: 1px solid rgba(255, 182, 217, 0.28);
}
.ggg-theme .stat .num {
  background: linear-gradient(135deg, #FFB6D9 0%, #fff 50%, #FFB6D9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ggg-theme .visual-card {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 182, 217, 0.22), transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(255, 105, 180, 0.22), transparent 50%),
    linear-gradient(180deg, rgba(255, 182, 217, 0.08) 0%, rgba(255, 20, 147, 0.25) 100%);
  border: 1px solid rgba(255, 182, 217, 0.35);
}
.ggg-theme .cta-section {
  background:
    linear-gradient(135deg, rgba(255, 182, 217, 0.12) 0%, rgba(255, 105, 180, 0.10) 50%, rgba(255, 20, 147, 0.18) 100%);
  border-top: 1px solid rgba(255, 182, 217, 0.4);
  border-bottom: 1px solid rgba(255, 182, 217, 0.4);
}
.ggg-theme .soft-bg {
  background: linear-gradient(135deg, rgba(199, 21, 133, 0.35) 0%, rgba(74, 26, 63, 0.2) 100%);
  border-top: 1px solid rgba(255, 182, 217, 0.18);
  border-bottom: 1px solid rgba(255, 182, 217, 0.18);
}
.ggg-theme footer {
  border-top: 1px solid rgba(255, 182, 217, 0.35);
  background: linear-gradient(180deg, rgba(74, 26, 63, 0.4) 0%, rgba(26, 5, 24, 0.85) 100%);
}
.ggg-theme footer h4 { color: var(--brand-pink-light); }
.ggg-theme footer a:hover { color: var(--brand-pink-light); }
.ggg-theme .footer-brand-logo {
  background: radial-gradient(circle at 30% 30%, #fff 0%, #FFB6D9 35%, #FF1493 70%, #C71585 100%);
  border: 2px solid rgba(255, 182, 217, 0.55);
}
.ggg-theme .footer-brand-logo span { color: #C71585; }
.ggg-theme .back-to-top {
  background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
  border: 2px solid #FFB6D9;
  color: #FFB6D9;
  box-shadow: 0 8px 24px rgba(255, 20, 147, 0.5), 0 0 0 4px rgba(255, 182, 217, 0.18);
}
.ggg-theme .ggg-attribution-name { color: var(--brand-pink-light); }
.ggg-theme .punch {
  background: linear-gradient(135deg, rgba(255, 182, 217, 0.22), rgba(255, 105, 180, 0.15));
  border: 1px solid rgba(255, 182, 217, 0.55);
}
.ggg-theme .hero-crown {
  background: radial-gradient(circle at 30% 25%, #fff 0%, #FFB6D9 35%, #FF69B4 70%, #C71585 100%);
  box-shadow: 0 8px 40px rgba(255, 105, 180, 0.5), 0 0 0 4px rgba(255, 182, 217, 0.25), inset 0 2px 8px rgba(255,255,255,0.4);
  border: 3px solid rgba(255, 182, 217, 0.65);
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .back-to-top::before { animation: none; }
  .back-to-top { transition: opacity 0.2s ease; }
  .hero::before, .visual-card::before { animation: none; }
  .hero-crown::after { animation: none; }
  .cta-crown { animation: none; }
}
