/* ============================================================
   Help a Sickler — Shared Stylesheet
   ============================================================ */

:root {
  --maroon-dark: #5B0F20;
  --maroon: #7B1A2E;
  --maroon-light: #9E2444;
  --gold: #C99036;
  --gold-light: #E8B460;
  --cream: #FBF7F2;
  --ink: #1A1A28;
  --gray: #6E6E78;
  --gray-light: #A8A8B0;
  --border: #E0DBD4;
  --pink-tint: #F5E2E5;
  --pink-tint-2: #F8EDEF;
  --teal: #1A7080;
  --tan: #F0E8DD;
  --tan-dark: #D4C5A9;
  --white: #ffffff;
  --font-body: 'Nunito', sans-serif;
  --font-display: 'Playfair Display', serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--maroon); text-decoration: none; }
a:hover { color: var(--maroon-dark); }
img { max-width: 100%; }
button { font-family: var(--font-body); }
h1, h2, h3 { font-family: var(--font-display); margin: 0; }
p { margin: 0; }
.diamond-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-repeat: repeat;
}
.diamond-gold { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><path d='M20 0 L40 20 L20 40 L0 20 Z' fill='none' stroke='%23C99036' stroke-width='2'/></svg>"); }
.diamond-white { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><path d='M20 0 L40 20 L20 40 L0 20 Z' fill='none' stroke='%23ffffff' stroke-width='2'/></svg>"); }
.op-03 { opacity: 0.03; } .op-04 { opacity: 0.04; } .op-05 { opacity: 0.05; } .op-06 { opacity: 0.06; } .op-07 { opacity: 0.07; } .op-08 { opacity: 0.08; }

@keyframes heartbeat {
  0%, 100% { box-shadow: 0 0 0 0 rgba(123,26,46,0.12); }
  50%      { box-shadow: 0 0 0 24px rgba(123,26,46,0); }
}
@keyframes hasPulse {
  0%   { box-shadow: 0 0 0 0 rgba(123,26,46,0.4); }
  70%  { box-shadow: 0 0 0 8px rgba(123,26,46,0); }
  100% { box-shadow: 0 0 0 0 rgba(123,26,46,0); }
}
@keyframes blink { from { opacity: 1; } to { opacity: 0.25; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 15px; padding: 14px 32px; border-radius: 4px;
  border: none; cursor: pointer; transition: all 0.25s ease; text-align: center;
  font-family: var(--font-body);
}
.btn-primary { background: var(--maroon); color: var(--white); box-shadow: 0 4px 14px rgba(123,26,46,0.18); }
.btn-primary:hover { background: var(--maroon-light); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(123,26,46,0.35); }
.btn-outline-gold { border: 2px solid var(--gold); color: var(--maroon); background: transparent; padding: 12px 30px; }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }
.btn-outline-white { border: 2px solid var(--white); color: var(--white); background: transparent; padding: 12px 30px; }
.btn-outline-white:hover { background: var(--white); color: var(--maroon); }
.btn-white { background: var(--white); color: var(--maroon); }
.btn-white:hover { background: var(--pink-tint); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 22px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }

/* ============ HEADER / NAV ============ */
.site-header { position: sticky; top: 0; left: 0; right: 0; z-index: 100; font-family: var(--font-body); }
.navbar {
  background: var(--white); height: 72px; padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: none; transition: box-shadow 0.3s ease;
}
.navbar.is-scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-kicker { font-size: 9px; font-weight: 300; letter-spacing: 5px; text-transform: uppercase; color: var(--maroon); }
.nav-logo-name { font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--maroon); line-height: 1.05; margin: 1px 0 2px; }
.nav-logo-rule { width: 100%; height: 1.5px; background: var(--gold); margin-bottom: 3px; }
.nav-logo-tag { font-size: 7px; font-weight: 400; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); }

.nav-links { display: flex; align-items: center; flex-wrap: nowrap; white-space: nowrap; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--ink); padding-bottom: 4px;
  background-image: linear-gradient(var(--gold), var(--gold)); background-repeat: no-repeat;
  background-position: left bottom; background-size: 0% 2px;
  transition: background-size 0.25s ease, color 0.25s ease;
}
.nav-links a:hover { color: var(--maroon); background-size: 100% 2px; }
.nav-links a.active { color: var(--maroon); background-size: 100% 2px; }

.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-cta .btn-donate { animation: hasPulse 2.5s infinite; }

.hamburger {
  display: none; background: transparent; border: none; cursor: pointer;
  width: 30px; height: 24px; position: relative; padding: 0; flex-shrink: 0;
}
.hamburger span {
  position: absolute; left: 3px; right: 3px; height: 3px; border-radius: 2px; background: var(--maroon);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger span:nth-child(1) { top: 3px; }
.hamburger span:nth-child(2) { top: 10.5px; }
.hamburger span:nth-child(3) { top: 18px; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  background: var(--white); overflow: hidden; max-height: 0;
  box-shadow: 0 12px 24px rgba(0,0,0,0.08); transition: max-height 0.3s ease;
}
.mobile-menu.is-open { max-height: 640px; }
.mobile-menu-inner { padding: 24px 30px; }
.mobile-menu-inner a {
  display: block; font-size: 14px; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--border); padding: 14px 0;
}
.mobile-menu-inner a.active { color: var(--maroon); }
.mobile-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.mobile-cta a { display: block; text-align: center; border-bottom: none; padding: 13px 22px; border-radius: 4px; font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }

@media (max-width: 1079px) { .navbar { padding: 0 28px; } .nav-links { gap: 22px; } }
@media (max-width: 1023px) {
  .navbar { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
}
@media (min-width: 1024px) { .mobile-menu, .hamburger { display: none; } }

/* ============ SECTIONS / LAYOUT ============ */
.section { padding: 80px 60px; }
.section-narrow { max-width: 1240px; margin: 0 auto; }
.eyebrow { font-size: 9px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin: 0 0 14px; }
.section-title { font-family: var(--font-display); font-weight: 800; font-size: 42px; line-height: 1.08; color: var(--ink); margin: 0; }
.section-title em { font-style: italic; color: var(--gold); }
.section-title.on-dark { color: var(--white); }
.section-lead { font-weight: 400; font-size: 16px; line-height: 1.7; color: var(--gray); max-width: 560px; margin: 20px 0 0; }
.rule { width: 60px; height: 3px; background: var(--gold); margin: 24px 0; }
@media (max-width: 767px) { .section { padding: 56px 20px; } .section-title { font-size: 32px; } }

/* ============ HERO (HOME) ============ */
.hero {
  position: relative; overflow: hidden; background: var(--cream);
  min-height: calc(100vh - 116px); padding: 72px 60px; display: flex; align-items: center;
}
.hero-grid { position: relative; z-index: 1; width: 100%; max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 58fr 42fr; gap: 64px; align-items: center; }
.hero-badge { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); background: var(--pink-tint); padding: 7px 14px; border-radius: 4px; }
.hero-title { font-family: var(--font-display); font-weight: 800; font-size: 58px; line-height: 1.05; color: var(--ink); margin: 22px 0 0; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-copy { font-weight: 400; font-size: 18px; line-height: 1.75; color: var(--gray); max-width: 500px; margin: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.hero-trust { font-weight: 300; font-size: 12px; color: var(--gray-light); margin-top: 20px; }
.hero-media { position: relative; }
.hero-media-ring { position: absolute; inset: -18px; border-radius: 16px 120px 16px 120px; z-index: 0; animation: heartbeat 3s ease-in-out infinite; }
.hero-media-photo { position: relative; z-index: 1; height: 480px; border-radius: 16px 120px 16px 120px; overflow: hidden; }
.hero-media-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-chip { position: absolute; top: 20px; right: -20px; z-index: 3; background: var(--gold); border-radius: 30px; padding: 8px 18px; color: var(--white); font-weight: 700; font-size: 12px; box-shadow: 0 6px 18px rgba(201,144,54,0.35); }
.hero-stat-card { position: absolute; bottom: -20px; left: -30px; z-index: 3; background: var(--white); border-left: 4px solid var(--gold); border-radius: 10px; padding: 16px 22px; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.hero-stat-num { font-family: var(--font-display); font-weight: 800; font-size: 34px; color: var(--maroon); line-height: 1; }
.hero-stat-label { font-weight: 600; font-size: 12px; color: var(--gray); margin-top: 4px; }
.hero-stat-sub { font-weight: 400; font-size: 11px; color: var(--gray-light); margin-top: 2px; }

@media (max-width: 767px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-grid > :first-child { order: 2; }
  .hero-grid > :last-child { order: 1; margin-bottom: 28px; }
  .hero-title { font-size: 40px; }
  .hero-media-photo { height: 340px; }
}
@media (min-width: 768px) and (max-width: 1023px) { .hero-title { font-size: 48px; } }

/* Generic page hero (About/Contact/Donate/Register/Well-wisher) */
.page-hero { position: relative; overflow: hidden; padding: 90px 60px; display: flex; align-items: center; justify-content: center; color: var(--white); text-align: center; }
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.page-hero--maroon { background: var(--maroon); min-height: 50vh; }
.page-hero--maroondark { background: var(--maroon-dark); min-height: 45vh; }
.page-hero--gold { background: var(--gold); min-height: 45vh; }
.page-hero--ink { background: var(--ink); min-height: 55vh; text-align: left; justify-content: flex-start; }
.page-hero-crumb { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.45); margin: 0 0 24px; }
.page-hero-title { font-family: var(--font-display); font-weight: 800; font-size: 54px; line-height: 1.08; color: var(--white); margin: 0 0 22px; }
.page-hero-copy { font-weight: 400; font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.75); max-width: 620px; margin: 0 auto; }
.page-hero-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 16px; }
.page-hero-tag { background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.3); border-radius: 30px; padding: 8px 18px; font-weight: 700; font-size: 12px; color: var(--white); }
@media (max-width: 767px) { .page-hero { padding: 64px 20px; } .page-hero-title { font-size: 34px; } }

/* ============ MISSION PILLAR STRIP ============ */
.pillar-strip { position: relative; overflow: hidden; background: var(--maroon-dark); padding: 36px 60px; }
.pillar-strip .diamond-pattern { opacity: 0.06; }
.pillar-grid { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); align-items: stretch; }
.pillar { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 8px 20px; transition: transform 0.25s ease; }
.pillar:hover { transform: translateY(-3px); }
.pillar:not(:first-child) { border-left: 1px solid rgba(255,255,255,0.15); }
.pillar-icon { font-size: 28px; line-height: 1; }
.pillar-title { font-weight: 800; font-size: 10px; letter-spacing: 2px; color: var(--gold); }
.pillar-sub { font-weight: 300; font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.6); max-width: 200px; }
@media (max-width: 767px) {
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .pillar { border-left: none !important; }
  .pillar:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
}

/* ============ STATS ============ */
.stats-decor { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: min(560px, 70%); opacity: 0.04; pointer-events: none; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px 32px; margin-top: 52px; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: 52px; color: var(--maroon); line-height: 1; }
.stat-suffix { font-weight: 400; font-size: 28px; color: var(--gold); }
.stat-rule { width: 40px; height: 3px; background: var(--gold); margin: 16px 0 14px; }
.stat-label { font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--gray); }
.stat-caption { font-weight: 400; font-size: 12px; color: var(--gray-light); max-width: 140px; margin-top: 6px; line-height: 1.5; }
@media (max-width: 767px) { .stat-grid { grid-template-columns: 1fr 1fr; } }

/* ============ CARD GRID (What We Do) ============ */
.card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pillar-card {
  background: var(--white); border-radius: 8px; padding: 32px 28px; border-left: 5px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-width 0.3s ease;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: 0 14px 34px rgba(0,0,0,0.12); border-left-width: 8px; }
.pillar-card-icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.pillar-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--ink); margin: 18px 0 12px; line-height: 1.2; }
.pillar-card p { font-weight: 400; font-size: 14.5px; line-height: 1.7; color: var(--gray); margin: 0 0 20px; }
.pillar-card a { font-weight: 700; font-size: 13px; }
@media (max-width: 767px) { .card-grid { grid-template-columns: 1fr; } }

.live-ticker {
  background: var(--ink); min-height: 46px; border-radius: 6px; display: flex; align-items: center; gap: 20px;
  padding: 10px 40px; margin-top: 24px; flex-wrap: wrap;
}
.live-dot-wrap { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #E84040; animation: blink 1.2s infinite alternate; }
.live-label { font-weight: 800; font-size: 11px; letter-spacing: 2px; color: #E84040; }
.live-text { font-weight: 600; font-size: 14px; color: var(--white); flex: 1; min-width: 200px; }
.live-ticker a { font-weight: 700; font-size: 13px; color: var(--gold); flex-shrink: 0; }
.live-ticker a:hover { color: var(--gold-light); }

/* ============ WHY US ============ */
.why-us { position: relative; overflow: hidden; background: var(--ink); padding: 90px 60px; color: var(--white); }
.why-us .diamond-pattern { opacity: 0.05; }
.why-grid { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 60fr 40fr; gap: 56px; align-items: start; }
.why-copy { font-weight: 400; font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.65); max-width: 520px; margin: 0; }
.why-points { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.why-point { display: flex; gap: 14px; align-items: flex-start; }
.why-point-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 7px; flex-shrink: 0; }
.why-point p { margin: 0; font-size: 14px; line-height: 1.6; }
.why-point strong { font-weight: 800; color: var(--white); }
.why-point span.desc { font-weight: 400; color: rgba(255,255,255,0.6); }
.quote-card { position: relative; background: var(--maroon); border-radius: 12px; padding: 36px 32px 32px 40px; }
.quote-mark { position: absolute; top: 10px; left: 18px; font-family: var(--font-display); font-size: 80px; line-height: 1; color: var(--gold); opacity: 0.5; }
.quote-card p.quote-text { position: relative; z-index: 1; font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 17px; line-height: 1.65; color: var(--white); margin: 0; }
.quote-card p.quote-author { position: relative; z-index: 1; font-weight: 700; font-size: 11px; letter-spacing: 2px; color: var(--gold-light); margin: 14px 0 0; }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.badge-white { background: var(--white); border-radius: 6px; padding: 10px 16px; font-size: 12px; font-weight: 700; color: var(--ink); box-shadow: 0 4px 14px rgba(0,0,0,0.18); }
@media (max-width: 767px) { .why-grid { grid-template-columns: 1fr; } }

/* ============ STORIES ============ */
.stories-scroller { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; scrollbar-width: thin; }
.story-card {
  scroll-snap-align: start; flex: 0 0 320px; background: var(--white); border-radius: 10px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07); transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.story-card:hover { transform: translateY(-6px); box-shadow: 0 14px 34px rgba(0,0,0,0.13); }
.story-bar { height: 6px; }
.story-body { padding: 24px 26px 26px; }
.story-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.story-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--tan-dark); }
.story-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-name { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink); }
.story-region { display: inline-block; margin-top: 4px; background: var(--pink-tint); color: var(--maroon); font-weight: 700; font-size: 10px; letter-spacing: 1px; padding: 3px 12px; border-radius: 30px; }
.story-quote-mark { font-family: var(--font-display); font-size: 40px; color: var(--gold); opacity: 0.3; line-height: 0.6; margin-bottom: 4px; }
.story-quote { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 15px; line-height: 1.7; color: var(--ink); margin: 0 0 16px; }
.story-condition { font-weight: 400; font-size: 11px; color: var(--gray); margin: 0; }
.story-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.story-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: background 0.25s ease; }
.story-dot.is-active { background: var(--gold); }

/* ============ PARTNERS ============ */
.partner-row { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 16px; }
.partner-chip {
  width: 140px; height: 60px; background: var(--tan); border-radius: 6px; display: flex; align-items: center;
  justify-content: center; text-align: center; font-weight: 600; font-size: 12px; color: var(--gray);
  filter: grayscale(1); opacity: 0.5; transition: filter 0.3s ease, opacity 0.3s ease;
}
.partner-chip:hover { filter: grayscale(0); opacity: 1; }

/* ============ GET INVOLVED CTA ============ */
.cta-band { position: relative; overflow: hidden; background: var(--maroon); padding: 80px 60px; }
.cta-band .diamond-pattern { opacity: 0.07; }
.cta-band-grid { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 65fr 35fr; gap: 48px; align-items: center; }
.cta-band .eyebrow { color: var(--gold-light); }
.cta-band h2 { font-family: var(--font-display); font-weight: 800; font-size: 44px; line-height: 1.1; color: var(--white); margin: 0 0 18px; }
.cta-band-copy { font-weight: 400; font-size: 17px; line-height: 1.75; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0; }
.role-mini { background: var(--white); border-radius: 8px; padding: 16px 18px; display: flex; gap: 12px; align-items: flex-start; }
.role-mini-icon { font-size: 24px; line-height: 1; }
.role-mini-title { font-weight: 800; font-size: 13px; color: var(--ink); }
.role-mini-desc { font-weight: 400; font-size: 12px; color: var(--gray); margin-top: 3px; line-height: 1.5; }
@media (max-width: 767px) { .cta-band-grid { grid-template-columns: 1fr; } .cta-band h2 { font-size: 30px; } }

/* ============ FOOTER ============ */
.site-footer { font-family: var(--font-body); }
.prefooter-cta { background: var(--gold); padding: 36px 60px; display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; }
.prefooter-cta h2 { font-family: var(--font-display); font-weight: 700; font-size: 28px; color: var(--white); margin: 0; }
.prefooter-actions { display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 767px) { .prefooter-cta h2 { font-size: 22px; } }

.impact-ticker { background: var(--ink); height: 44px; overflow: hidden; display: flex; align-items: center; }
.impact-ticker-track { display: flex; white-space: nowrap; animation: marquee 30s linear infinite; }
.impact-ticker-track span { font-weight: 600; font-size: 12px; color: rgba(255,255,255,0.55); }

.footer-main { position: relative; overflow: hidden; background: var(--maroon-dark); padding: 60px; }
.footer-main .diamond-pattern { opacity: 0.05; }
.footer-columns { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand-kicker { font-size: 9px; font-weight: 300; letter-spacing: 5px; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.footer-brand-name { font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--white); line-height: 1.05; margin: 1px 0 2px; }
.footer-tagline { font-weight: 300; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin: 0; }
.footer-desc { font-weight: 400; font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 240px; margin: 14px 0 0; }
.footer-socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.footer-social-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: background 0.25s ease; }
.footer-social-btn:hover { background: var(--gold); }
.footer-heading { font-weight: 800; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin: 0 0 18px; }
.footer-link-col { display: flex; flex-direction: column; gap: 0; }
.footer-link-col a { font-weight: 400; font-size: 13.5px; color: rgba(255,255,255,0.65); line-height: 2.2; transition: all 0.2s ease; }
.footer-link-col a:hover { color: var(--white); transform: translateX(4px); display: inline-block; }
.footer-day-note { font-weight: 400; font-size: 12px; color: rgba(255,255,255,0.4); margin: 18px 0 0; }
.footer-contact-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact-item .icon { font-size: 13px; color: rgba(255,255,255,0.5); flex-shrink: 0; }
.footer-contact-item .txt { font-weight: 400; font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.footer-subscribe { display: flex; gap: 8px; }
.footer-subscribe input { flex: 1; min-width: 0; padding: 11px 14px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 4px; font-size: 13px; color: var(--white); }
.footer-subscribe input::placeholder { color: rgba(255,255,255,0.4); }
.footer-subscribe button { background: var(--gold); color: var(--white); font-weight: 700; font-size: 13px; padding: 11px 18px; border: none; border-radius: 4px; cursor: pointer; transition: background 0.25s ease; flex-shrink: 0; }
.footer-subscribe button:hover { background: var(--gold-light); }
@media (max-width: 1023px) { .footer-columns { grid-template-columns: 1fr 1fr; } }
@media (max-width: 767px) { .footer-columns { grid-template-columns: 1fr; } .footer-main { padding: 44px 20px; } }

.footer-bottom { background: var(--ink); padding: 16px 60px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; }
.footer-bottom p { font-weight: 400; font-size: 12px; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom .reg-note { font-weight: 300; font-size: 11px; color: rgba(255,255,255,0.3); margin: 2px 0 0; }
.footer-legal { display: flex; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-legal a { color: rgba(255,255,255,0.4); transition: color 0.2s ease; }
.footer-legal a:hover { color: var(--white); text-decoration: underline; }
@media (max-width: 767px) { .footer-bottom { padding: 16px 20px; } }

.back-to-top {
  position: fixed; bottom: 28px; right: 28px; width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold); border: none; box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease, transform 0.25s ease; z-index: 200;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: scale(1.1); }

/* ============ FORMS (generic) ============ */
.form-field, .form-select, .form-textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--border); border-radius: 4px;
  font-size: 14px; font-family: var(--font-body); background: var(--white); color: var(--ink);
}
.form-textarea { resize: vertical; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { display: block; font-weight: 700; font-size: 13px; color: var(--ink); margin-bottom: 8px; }
.form-radio-row, .form-check-row { display: flex; gap: 20px; flex-wrap: wrap; }
.form-radio-row label, .form-check-row label { display: flex; align-items: center; gap: 6px; font-size: 14px; color: var(--gray); cursor: pointer; }
@media (max-width: 640px) { .form-row-2 { grid-template-columns: 1fr; } }

.form-field:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,144,54,0.12);
}
.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.file-upload-box {
  border: 2px dashed var(--border); border-radius: 8px; padding: 24px; text-align: center; cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.file-upload-box:hover { border-color: var(--gold); background: var(--cream); }
.file-upload-box .icon { font-size: 24px; margin-bottom: 8px; }
.file-upload-box p { font-size: 13px; color: var(--gray-light); margin: 0; }
.file-upload-box input[type="file"] { display: none; }
.file-upload-name { font-size: 12.5px; color: var(--maroon); font-weight: 700; margin-top: 8px; }

.form-note {
  background: #FDF5E3; border: 1px solid var(--gold); border-radius: 4px; padding: 10px 14px;
  display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 12px; color: #A07020;
}
.privacy-note {
  background: #F0FBF6; border: 1px solid #2E9E6B; border-radius: 4px; padding: 12px 16px;
  font-weight: 600; font-size: 12.5px; color: #1E6E4A; display: flex; gap: 10px; align-items: flex-start;
}

.form-success {
  background: #F0FBF6; border: 1px solid #2E9E6B; border-radius: 8px; padding: 32px; text-align: center;
}
.form-success .icon { font-size: 34px; margin-bottom: 12px; }
.form-success h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: #1E6E4A; margin: 0 0 8px; }
.form-success p { font-size: 14px; color: #2E7D5C; margin: 0; line-height: 1.6; }
.form-error {
  background: #FDF0F0; border: 1px solid #C94F4F; border-radius: 4px; padding: 12px 16px; margin-top: 14px;
  font-weight: 600; font-size: 13px; color: #A03535; display: none;
}
.form-error.is-visible { display: block; }
.form-submitting { opacity: 0.6; pointer-events: none; }

.form-section { padding-bottom: 32px; margin-bottom: 32px; border-bottom: 1px solid var(--border); }
.form-section.form-section-last { padding-bottom: 0; margin-bottom: 28px; border-bottom: none; }
.form-section-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.form-section-num {
  width: 30px; height: 30px; border-radius: 50%; background: var(--maroon); color: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: 14px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.form-section-title { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--ink); margin: 0; }

/* ============ ABOUT PAGE ============ */
.founder-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 60fr 40fr; gap: 56px; align-items: start; }
.founder-copy p { font-weight: 400; font-size: 15.5px; line-height: 1.85; color: var(--gray); margin: 0 0 18px; }
.founder-quote { background: var(--pink-tint); border-left: 5px solid var(--maroon); border-radius: 4px; padding: 20px 24px; margin: 24px 0 0; }
.founder-quote p.q { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 18px; line-height: 1.6; color: var(--ink); margin: 0 0 10px; }
.founder-quote p.a { font-weight: 700; font-size: 12px; letter-spacing: 1px; color: var(--maroon); margin: 0; }
.founder-photo { border-radius: 16px; height: 420px; overflow: hidden; position: relative; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-photo-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px 22px; background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0)); }
.founder-photo-caption p.name { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--white); margin: 0; }
.founder-photo-caption p.role { font-weight: 600; font-size: 12px; letter-spacing: 1px; color: rgba(255,255,255,0.8); margin: 3px 0 0; }
.founder-fact-row { display: flex; gap: 16px; margin-top: 20px; }
.founder-fact { flex: 1; background: var(--white); border-left: 4px solid var(--gold); border-radius: 8px; padding: 14px 18px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.founder-fact-label { font-weight: 700; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--gray); }
.founder-fact-value { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--maroon); margin-top: 4px; }
@media (max-width: 767px) { .founder-grid { grid-template-columns: 1fr; } }

.mvv-section { position: relative; overflow: hidden; background: var(--ink); padding: 80px 60px; color: var(--white); }
.mvv-section .diamond-pattern { opacity: 0.05; }
.mvv-grid { position: relative; z-index: 1; max-width: 1240px; margin: 40px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mvv-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 32px 28px; }
.mvv-icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.mvv-tag { font-weight: 800; font-size: 8px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin: 18px 0 8px; }
.mvv-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--white); margin: 0 0 12px; }
.mvv-card p { font-weight: 400; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.7); margin: 0; }
.mvv-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.mvv-chip { background: rgba(201,144,54,0.15); color: var(--gold-light); font-weight: 700; font-size: 11px; padding: 5px 12px; border-radius: 20px; }
@media (max-width: 767px) { .mvv-grid { grid-template-columns: 1fr; } }

.timeline-wrap { position: relative; max-width: 1000px; margin: 0 auto; }
.timeline-rail { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--border); transform: translateX(-50%); }
.timeline-list { display: flex; flex-direction: column; gap: 44px; position: relative; z-index: 1; }
.timeline-row { display: grid; grid-template-columns: 1fr 60px 1fr; align-items: center; gap: 0; }
.timeline-side { display: flex; }
.timeline-side.left { justify-content: flex-end; padding-right: 32px; }
.timeline-side.right { justify-content: flex-start; padding-left: 32px; }
.timeline-node { width: 48px; height: 48px; border-radius: 50%; background: var(--maroon); color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; text-align: center; margin: 0 auto; }
.timeline-card { background: var(--white); box-shadow: 0 4px 20px rgba(0,0,0,0.07); border-radius: 8px; padding: 24px; max-width: 380px; }
.timeline-card .year { font-weight: 800; font-size: 11px; letter-spacing: 2px; color: var(--gold); margin: 0 0 8px; }
.timeline-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ink); margin: 0 0 8px; }
.timeline-card p { font-weight: 400; font-size: 13.5px; line-height: 1.6; color: var(--gray); margin: 0; }
@media (max-width: 899px) {
  .timeline-rail { left: 24px; }
  .timeline-row { grid-template-columns: 60px 1fr; }
  .timeline-side.left { display: none; }
  .timeline-side.right { padding-left: 16px; grid-column: 2; }
  .timeline-node { margin: 0; }
  .timeline-card { max-width: none; }
}

/* ============ CONTACT PAGE ============ */
.contact-split { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 55fr 45fr; gap: 48px; align-items: start; }
.dept-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.dept-tab { border: none; cursor: pointer; padding: 10px 18px; border-radius: 6px; font-weight: 700; font-size: 12.5px; transition: all 0.25s ease; background: var(--cream); color: var(--gray); }
.dept-tab.is-active { background: var(--maroon); color: var(--white); }
.contact-info-panel { background: var(--cream); border-radius: 12px; padding: 36px; }
.info-card-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.info-card { background: var(--white); border-radius: 8px; padding: 16px 20px; display: flex; align-items: center; gap: 14px; }
.info-card-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--white); flex-shrink: 0; }
.info-card-label { font-weight: 700; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--gray); }
.info-card-value { font-weight: 400; font-size: 14px; color: var(--ink); margin-top: 2px; }
.map-placeholder { background: var(--tan-dark); border-radius: 8px; height: 200px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; text-align: center; padding: 12px; }
.map-placeholder span { font-weight: 600; font-size: 14px; color: #5c5346; }
.social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn { width: 36px; height: 36px; border-radius: 50%; background: var(--tan); display: flex; align-items: center; justify-content: center; transition: background 0.25s ease; }
.social-btn:hover { background: var(--maroon); }
.social-btn:hover svg { stroke: var(--white); }
@media (max-width: 767px) { .contact-split { grid-template-columns: 1fr; } }

/* ============ DONATE PAGE ============ */
.impact-calc { max-width: 760px; margin: 0 auto; text-align: center; }
.impact-calc input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 3px; background: var(--border); outline: none; margin-bottom: 8px; }
.impact-calc input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--maroon); cursor: pointer; border: 3px solid var(--white); box-shadow: 0 2px 8px rgba(0,0,0,0.25); }
.impact-calc input[type="range"]::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: var(--maroon); cursor: pointer; border: 3px solid var(--white); box-shadow: 0 2px 8px rgba(0,0,0,0.25); }
.impact-scale { display: flex; justify-content: space-between; font-size: 11px; color: var(--gray-light); margin-bottom: 36px; }
.impact-amount { font-weight: 700; font-size: 17px; color: var(--ink); margin: 0 0 20px; }
.impact-amount span { color: var(--maroon); }
.impact-text { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 24px; color: var(--maroon); line-height: 1.4; margin: 0 0 32px; animation: fadeIn 0.4s ease; }

.billing-toggle { display: inline-flex; background: var(--white); border-radius: 30px; padding: 4px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.billing-toggle button { border: none; cursor: pointer; padding: 10px 26px; border-radius: 26px; font-weight: 700; font-size: 13px; transition: all 0.25s ease; background: transparent; color: var(--ink); }
.billing-toggle button.is-active { background: var(--maroon); color: var(--white); }

.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.tier-card { background: var(--white); border-radius: 10px; padding: 32px 28px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); border-top: 4px solid transparent; position: relative; }
.tier-card.is-featured { border-top-color: var(--gold); }
.tier-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--white); font-weight: 700; font-size: 11px; letter-spacing: 1px; padding: 5px 16px; border-radius: 20px; white-space: nowrap; }
.tier-icon { font-size: 30px; margin-bottom: 12px; }
.tier-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--ink); margin: 0 0 6px; }
.tier-price { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--maroon); margin: 0 0 20px; }
.tier-points { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.tier-points p { margin: 0; font-size: 13px; color: var(--gray); display: flex; gap: 8px; }
.tier-points span { color: var(--gold); font-weight: 700; }
.tier-card .btn { display: block; width: 100%; }
@media (max-width: 767px) { .tier-grid { grid-template-columns: 1fr; } }

.donate-form-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 55fr 45fr; gap: 48px; align-items: start; }
.payment-methods { display: flex; gap: 12px; margin-bottom: 22px; }
.payment-method { flex: 1; border: 1px solid var(--border); background: var(--white); border-radius: 6px; padding: 14px 10px; cursor: pointer; font-weight: 700; font-size: 13px; color: var(--ink); transition: all 0.25s ease; }
.payment-method.is-selected { border: 2px solid var(--maroon); background: var(--pink-tint); color: var(--maroon); }
.donate-sidebar-card { background: var(--cream); border-radius: 8px; padding: 28px; }
.donate-sidebar-card .label { font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--gray); margin: 0 0 8px; }
.donate-sidebar-card .amount { font-family: var(--font-display); font-weight: 800; font-size: 32px; color: var(--maroon); margin: 0 0 14px; }
.donate-sidebar-card .impact { font-size: 13.5px; color: var(--gray); line-height: 1.6; margin: 0 0 18px; }
.secure-note { display: flex; align-items: center; gap: 8px; padding-top: 16px; border-top: 1px solid var(--border); font-size: 12px; color: var(--gray); font-weight: 600; }
.donor-list { display: flex; flex-direction: column; gap: 12px; }
.donor-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); }
.donor-row .name { font-size: 13.5px; color: var(--ink); font-weight: 600; }
.donor-row .time { font-size: 11.5px; color: var(--gray-light); }
@media (max-width: 767px) { .donate-form-grid { grid-template-columns: 1fr; } }

.wisher-wall { background: var(--ink); padding: 60px; }
.wisher-wall-inner { max-width: 1100px; margin: 0 auto; }
.wisher-chip-row { display: flex; flex-wrap: wrap; gap: 12px; }
.wisher-chip { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 30px; padding: 8px 16px; font-weight: 600; font-size: 13px; color: var(--white); transition: all 0.25s ease; }
.wisher-chip:hover { background: rgba(201,144,54,0.15); border-color: var(--gold); color: var(--gold); }

/* ============ FAQ PAGE ============ */
.faq-search-wrap { max-width: 560px; margin: 0 auto; position: relative; }
.faq-search-wrap svg { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.faq-search-wrap input {
  width: 100%; padding: 16px 20px 16px 52px; font-size: 16px; border: 2px solid var(--border); border-radius: 8px;
  outline: none; transition: all 0.25s ease; font-family: var(--font-body);
}
.faq-search-wrap input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,144,54,0.12); }
.faq-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 44px; }
.faq-tab { border: none; cursor: pointer; padding: 10px 20px; border-radius: 30px; font-weight: 700; font-size: 13px; transition: all 0.25s ease; background: var(--tan); color: var(--gray); }
.faq-tab.is-active { background: var(--maroon); color: var(--white); }
.faq-group { margin-bottom: 36px; }
.faq-group-label { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin: 0 0 8px; }
.faq-item-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: transparent;
  border: none; text-align: left; padding: 20px 24px; border-bottom: 1px solid var(--border); cursor: pointer; transition: background 0.25s ease;
}
.faq-item-btn:hover { background: var(--cream); }
.faq-item.is-open .faq-item-btn { background: var(--cream); }
.faq-item-q { font-weight: 700; font-size: 15px; color: var(--ink); }
.faq-item.is-open .faq-item-q { color: var(--maroon); }
.faq-item-icon { font-size: 20px; font-weight: 700; color: var(--gold); transition: transform 0.25s ease; flex-shrink: 0; }
.faq-item.is-open .faq-item-icon { transform: rotate(45deg); }
.faq-item-a { display: none; background: #FAFAFA; padding: 16px 24px 24px; }
.faq-item.is-open .faq-item-a { display: block; }
.faq-item-a p { font-weight: 400; font-size: 14.5px; line-height: 1.75; color: var(--gray); margin: 0; }
.faq-no-results { text-align: center; color: var(--gray-light); font-size: 15px; padding: 40px 0; }

/* ============ REGISTER A PATIENT PAGE ============ */
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.benefit-card { background: var(--cream); border-radius: 8px; padding: 28px; border-left: 4px solid var(--maroon); }
.benefit-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 16px; }
.benefit-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ink); margin: 0 0 8px; }
.benefit-card p { font-weight: 400; font-size: 14px; line-height: 1.6; color: var(--gray); margin: 0; }
@media (max-width: 767px) { .benefit-grid { grid-template-columns: 1fr; } }

.privacy-strip { background: var(--ink); padding: 50px 60px; }
.privacy-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; text-align: center; }
.privacy-item .icon { font-size: 26px; margin-bottom: 12px; }
.privacy-item h3 { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--white); margin: 0 0 8px; }
.privacy-item p { font-weight: 400; font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,0.6); margin: 0; }
@media (max-width: 767px) { .privacy-grid { grid-template-columns: 1fr; } }

/* ============ WELL-WISHER PAGE ============ */
.wisher-hero-grid { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 60fr 40fr; gap: 48px; align-items: center; }
.wisher-stats-row { display: flex; flex-wrap: wrap; gap: 32px; margin-top: 28px; }
.wisher-stat-num { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--white); }
.wisher-stat-label { font-weight: 400; font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.wisher-hero-roles { display: flex; flex-direction: column; gap: 14px; }
.wisher-hero-role { background: var(--white); border-radius: 10px; padding: 16px 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.15); display: flex; align-items: center; gap: 12px; border-left: 4px solid transparent; transition: border-color 0.25s ease; }
.wisher-hero-role:hover { border-left-color: var(--gold); }
@media (max-width: 1023px) { .wisher-hero-grid { grid-template-columns: 1fr; } }

.role-select-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-bottom: 32px; }
.role-select-card { border: 2px solid var(--border); background: transparent; border-radius: 10px; padding: 20px; text-align: center; cursor: pointer; transition: all 0.25s ease; }
.role-select-card.is-active { border-color: var(--maroon); background: var(--pink-tint-2); }
.role-select-icon { font-size: 36px; margin-bottom: 10px; }
.role-select-title { font-weight: 800; font-size: 14px; color: var(--ink); }
.role-select-short { font-weight: 400; font-size: 12px; color: var(--gray); margin-top: 6px; }
.role-detail-card { background: var(--cream); border-radius: 12px; padding: 28px 32px; }
.role-detail-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--maroon); margin: 0 0 6px; }
.role-detail-time { font-weight: 700; font-size: 12px; color: var(--gold); margin: 0 0 16px; }
.role-detail-text { font-weight: 400; font-size: 14.5px; line-height: 1.75; color: var(--gray); margin: 0 0 16px; }
.role-detail-quote { font-family: var(--font-display); font-style: italic; font-size: 15px; color: var(--ink); line-height: 1.6; margin: 0; }
.role-detail-author { font-weight: 700; font-size: 12px; color: var(--maroon); margin: 10px 0 0; }
@media (max-width: 767px) { .role-select-grid { grid-template-columns: 1fr 1fr; } }

.spotlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.spotlight-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.spotlight-photo { height: 140px; overflow: hidden; background: var(--tan-dark); }
.spotlight-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.spotlight-body { padding: 22px; }
.spotlight-body h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--maroon); margin: 0 0 6px; }
.spotlight-role { font-weight: 600; font-size: 12px; letter-spacing: 1px; color: var(--gold); margin: 0 0 14px; }
.spotlight-quote { font-style: italic; font-weight: 400; font-size: 13.5px; line-height: 1.65; color: var(--gray); margin: 0 0 14px; }
.spotlight-since { font-weight: 300; font-size: 11px; color: var(--gray-light); margin: 0; }
@media (max-width: 767px) { .spotlight-grid { grid-template-columns: 1fr; } }

.wisher-form-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 58fr 42fr; gap: 48px; align-items: start; }
.process-steps { display: flex; flex-direction: column; gap: 22px; margin-bottom: 28px; }
.process-step { display: flex; gap: 16px; }
.process-num { width: 32px; height: 32px; border-radius: 50%; background: var(--gold); color: var(--white); font-weight: 800; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.process-title { font-weight: 800; font-size: 14px; color: var(--ink); }
.process-desc { font-weight: 400; font-size: 13px; color: var(--gray); margin-top: 4px; line-height: 1.5; }
.pull-quote { background: var(--pink-tint-2); border-left: 4px solid var(--maroon); padding: 16px 18px; border-radius: 4px; }
.pull-quote p.q { font-family: var(--font-display); font-style: italic; font-size: 15px; color: var(--ink); line-height: 1.6; margin: 0 0 8px; }
.pull-quote p.a { font-weight: 700; font-size: 12px; color: var(--maroon); margin: 0; }
@media (max-width: 1023px) { .wisher-form-grid { grid-template-columns: 1fr; } }

