/* ============================================
   GATHERING OF THE WATCHMEN — Design System
   Modern Ministry Luxury
   Scholarly · Global · Authoritative
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Core Palette */
  --charcoal: #111214;
  --charcoal-light: #1a1c20;
  --charcoal-mid: #252830;
  --ivory: #f5f5f0;
  --ivory-dim: rgba(245, 245, 240, 0.7);
  --ivory-muted: rgba(245, 245, 240, 0.4);

  /* Accent */
  --gold: #C8A84E;
  --gold-dim: rgba(200, 168, 78, 0.35);
  --gold-glow: rgba(200, 168, 78, 0.12);

  /* Typography */
  --font-serif: 'Cinzel', 'Georgia', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 200ms var(--ease-out);
  --transition-base: 400ms var(--ease-out);
  --transition-slow: 800ms var(--ease-out);
  --transition-cinematic: 1200ms var(--ease-out);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ivory);
  background-color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

::selection {
  background-color: var(--gold);
  color: var(--charcoal);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold);
}

svg.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

svg.icon--lg {
  width: 28px;
  height: 28px;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--ivory);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

h4 {
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

p {
  color: var(--ivory-dim);
}

.subtitle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  display: inline-block;
  margin-bottom: var(--sp-4);
  padding: 6px 16px;
  background: rgba(200, 168, 78, 0.08);
  border: 1px solid rgba(200, 168, 78, 0.18);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.text-muted {
  color: var(--ivory-muted);
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--gold);
}

/* --- Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.flex {
  display: flex;
}

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

.mb-1 {
  margin-bottom: var(--sp-1);
}

.mb-2 {
  margin-bottom: var(--sp-2);
}

.mb-4 {
  margin-bottom: var(--sp-4);
}

.mb-8 {
  margin-bottom: var(--sp-8);
}

.section {
  padding: 140px 0;
}

.section--dark {
  background-color: var(--charcoal-light);
}

.section-divider {
  border: none;
  height: 1px;
  background: var(--gold-dim);
  width: 60px;
  margin: var(--sp-6) auto;
}

.section-divider.centered {
  margin-left: auto;
  margin-right: auto;
}

.max-w-3xl {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Grid --- */
.grid {
  display: grid;
  gap: var(--sp-10);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PRELOADER
   ============================================ */
.c-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-8);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.c-loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-scroll_container {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--ivory-muted);
  white-space: nowrap;
  overflow: hidden;
  animation: loaderScroll 8s linear infinite;
}

.loader-scroll_container:nth-child(even) {
  animation-direction: reverse;
  color: var(--gold-dim);
}

@keyframes loaderScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.loader-progress {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(245, 245, 240, 0.08);
}

.loader-progress_bar {
  flex: 1;
  height: 2px;
  background: rgba(245, 245, 240, 0.08);
  overflow: hidden;
  border-radius: 1px;
}

.loader-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.1s linear;
}

.loader-percent {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ivory-muted);
  min-width: 32px;
  text-align: right;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--sp-4) var(--sp-5);
  transition: background var(--transition-base), padding var(--transition-base), box-shadow var(--transition-base);
}

.nav.scrolled {
  background: rgba(17, 18, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: var(--sp-3) var(--sp-5);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(245, 245, 240, 0.04);
  border: 1px solid rgba(245, 245, 240, 0.08);
  border-radius: 100px;
  padding: var(--sp-2) var(--sp-3) var(--sp-2) var(--sp-5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.nav__logo img {
  height: 36px;
  width: auto;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ivory);
}

.nav__links {
  display: flex;
  gap: var(--sp-6);
}

.nav__link {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ivory-dim);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--sp-2) var(--sp-5);
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: all var(--transition-fast);
  border-radius: 100px;
}

.nav__cta:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
}

.nav__toggle .bar,
.nav__toggle .bar::before,
.nav__toggle .bar::after {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ivory);
  transition: var(--transition-base);
}

.nav__toggle .bar {
  position: relative;
}

.nav__toggle .bar::before,
.nav__toggle .bar::after {
  content: '';
  position: absolute;
}

.nav__toggle .bar::before {
  top: -7px;
}

.nav__toggle .bar::after {
  top: 7px;
}

.nav__toggle.active .bar {
  background: transparent;
}

.nav__toggle.active .bar::before {
  top: 0;
  transform: rotate(45deg);
}

.nav__toggle.active .bar::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 960px) {
  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: block;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(17, 18, 20, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--sp-6);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: 0.03em;
  transition: color var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg .overlay-b {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--charcoal) 0%, rgba(17, 18, 20, 0.6) 50%, rgba(17, 18, 20, 0.3) 100%);
}

.hero__bg .overlay-r {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--charcoal) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: var(--sp-20) 0 var(--sp-16);
}

.hero__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  border: 1px solid rgba(200, 168, 78, 0.25);
  background: rgba(200, 168, 78, 0.08);
  padding: var(--sp-2) var(--sp-5);
  margin-bottom: var(--sp-8);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: var(--sp-6);
}

.hero__title .text-gold {
  color: var(--gold);
}

.hero__text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--ivory-dim);
  max-width: 520px;
  margin-bottom: var(--sp-10);
}

.hero__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero__content {
    padding: 140px 0 var(--sp-16);
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 32px;
  border: 1px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  line-height: 1;
}

.btn:hover {
  box-shadow: 0 4px 20px rgba(200, 168, 78, 0.15);
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn--outline {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(245, 245, 240, 0.2);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--dark {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--dark:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

.btn--secondary {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-dim);
}

.btn--secondary:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.btn--full {
  width: 100%;
}

/* ============================================
   PAGE HEADER (Sub-pages)
   ============================================ */
.page-header {
  position: relative;
  padding: 180px 0 var(--sp-16);
  overflow: hidden;
}

.page-header__bg {
  position: absolute;
  inset: 0;
}

.page-header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-header__bg .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17, 18, 20, 0.5), var(--charcoal));
}

.page-header__content {
  position: relative;
  z-index: 2;
}

.page-header__content h1 {
  margin-top: var(--sp-3);
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--charcoal-light);
  border: 1px solid rgba(245, 245, 240, 0.06);
  border-radius: 20px;
  padding: var(--sp-10) var(--sp-8);
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 168, 78, 0.2);
  box-shadow: 0 8px 32px rgba(200, 168, 78, 0.06);
}

.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-glow);
  border-radius: 14px;
  margin-bottom: var(--sp-5);
  color: var(--gold);
}

.card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: var(--sp-4);
  color: var(--ivory);
}

.card__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ivory-muted);
}

/* ============================================
   EVENT CARDS
   ============================================ */
.event-card {
  display: flex;
  gap: var(--sp-8);
  background: var(--charcoal-light);
  border: 1px solid rgba(245, 245, 240, 0.06);
  border-radius: 24px;
  overflow: hidden;
  max-height: 340px;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.event-card:hover {
  border-color: rgba(200, 168, 78, 0.2);
  box-shadow: 0 8px 32px rgba(200, 168, 78, 0.06);
}

.event-card__image {
  flex: 0 0 320px;
  overflow: hidden;
}

.event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.event-card__content {
  padding: var(--sp-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-card__content h3 {
  margin-bottom: var(--sp-3);
}

.event-card__date,
.event-card__location {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: var(--sp-2);
}

.event-card__location {
  color: var(--ivory-muted);
  margin-bottom: var(--sp-4);
}

@media (max-width: 768px) {
  .event-card {
    flex-direction: column;
  }

  .event-card__image {
    flex: none;
    height: 200px;
  }
}

/* ============================================
   TRAINING CARDS
   ============================================ */
.training-card {
  background: var(--charcoal-light);
  border: 1px solid rgba(245, 245, 240, 0.06);
  border-radius: 20px;
  padding: var(--sp-10);
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.training-card:hover {
  border-color: rgba(200, 168, 78, 0.2);
  box-shadow: 0 8px 32px rgba(200, 168, 78, 0.06);
}

.training-card__level {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: var(--sp-1) var(--sp-3);
  border-radius: 100px;
  margin-bottom: var(--sp-4);
  width: fit-content;
}

.training-card__level.beginner {
  background: rgba(200, 168, 78, 0.15);
  color: var(--gold);
}

.training-card__level.intermediate {
  background: rgba(144, 179, 255, 0.15);
  color: #90b3ff;
}

.training-card__level.advanced {
  background: rgba(255, 130, 130, 0.15);
  color: #ff8282;
}

.training-card__meta {
  font-size: 0.8rem;
  color: var(--ivory-muted);
  margin-bottom: var(--sp-3);
}

.training-card__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ivory-dim);
  margin-bottom: var(--sp-6);
  flex: 1;
}

/* ============================================
   MEDIA CARDS
   ============================================ */
/* --- Gallery Card (Photo Gallery) --- */
.gallery-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 500ms var(--ease-out), box-shadow 500ms var(--ease-out);
}

.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(200, 168, 78, 0.06);
}

.gallery-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 20px;
}

.gallery-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms var(--ease-out);
}

.gallery-card:hover .gallery-card__image img {
  transform: scale(1.04);
}

.gallery-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 18, 20, 0.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 500ms var(--ease-out);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-5);
}

.gallery-card:hover .gallery-card__overlay {
  opacity: 1;
}

.gallery-card__info {
  padding-top: var(--sp-4);
}

.gallery-card__tag {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: var(--sp-2);
  display: inline-block;
  padding: 3px 10px;
  background: rgba(200, 168, 78, 0.1);
  border: 1px solid rgba(200, 168, 78, 0.2);
  border-radius: 100px;
}

.gallery-card__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--ivory);
  margin-top: var(--sp-2);
}

/* Legacy media-card support */
.media-card {
  cursor: pointer;
  transition: transform var(--transition-base);
}

.media-card:hover {
  transform: translateY(-4px);
}

.media-card__tag {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: var(--sp-2);
  display: block;
}

.media-card__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--ivory);
}

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.testimonial__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--sp-6);
  border: 2px solid var(--gold-dim);
}

.testimonial blockquote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--ivory);
  margin-bottom: var(--sp-6);
}

.testimonial cite {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: 80px 40px;
  text-align: center;
  border-radius: 24px;
  margin: 0 var(--sp-6);
  background: linear-gradient(135deg, rgba(200, 168, 78, 0.08) 0%, rgba(17, 18, 20, 0.95) 40%, rgba(17, 18, 20, 0.95) 60%, rgba(200, 168, 78, 0.08) 100%);
  border: 1px solid rgba(200, 168, 78, 0.15);
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-section::after {
  content: '⚜';
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  color: var(--gold);
  opacity: 0.5;
}

.cta-section h2 {
  color: var(--ivory);
  margin-bottom: var(--sp-4);
}

.cta-section p {
  color: var(--ivory-muted);
  max-width: 520px;
  margin: 0 auto var(--sp-8);
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================
   PREVIEW CARDS (Training/Prayer Target)
   ============================================ */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
}

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

.preview-card {
  background: var(--charcoal-light);
  border: 1px solid rgba(245, 245, 240, 0.06);
  border-radius: 24px;
  padding: var(--sp-10);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.preview-card:hover {
  border-color: rgba(200, 168, 78, 0.2);
  box-shadow: 0 8px 32px rgba(200, 168, 78, 0.06);
}

.preview-card--gold {
  border-color: rgba(200, 168, 78, 0.15);
}

.preview-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: var(--sp-4);
  color: var(--gold);
}

.preview-card__icon svg {
  width: 100%;
  height: 100%;
}

.preview-card__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: var(--gold-glow);
  padding: var(--sp-1) var(--sp-3);
  border-radius: 100px;
  margin-bottom: var(--sp-4);
}

/* ============================================
   CONTACT
   ============================================ */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

@media (max-width: 768px) {
  .content-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
}

.contact-item {
  display: flex;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.contact-item__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-glow);
  border-radius: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-item h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: var(--sp-1);
  text-transform: none;
  letter-spacing: normal;
  color: var(--ivory);
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--ivory-muted);
}

/* ============================================
   FORMS
   ============================================ */
.form-panel {
  background: var(--charcoal-light);
  border: 1px solid rgba(245, 245, 240, 0.06);
  border-radius: 24px;
  padding: var(--sp-10);
}

.form-group {
  margin-bottom: var(--sp-6);
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ivory-dim);
  margin-bottom: var(--sp-3);
}

.form-input,
.form-textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ivory);
  background: rgba(245, 245, 240, 0.04);
  border: 1px solid rgba(245, 245, 240, 0.1);
  padding: var(--sp-3) var(--sp-5);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  outline: none;
  border-radius: 12px;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 168, 78, 0.1);
  background: rgba(245, 245, 240, 0.06);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--ivory-muted);
}

.form-success {
  text-align: center;
  padding: var(--sp-10) var(--sp-8);
}

.form-success h2 {
  font-size: 1.75rem;
  margin-bottom: var(--sp-4);
  color: var(--gold);
}

.form-success p {
  margin-bottom: var(--sp-6);
}

.space-y-6>*+* {
  margin-top: var(--sp-6);
}

/* ============================================
   ABOUT PAGE — Feature Split
   ============================================ */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

@media (max-width: 768px) {
  .feature-split {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
}

.feature-split__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.feature-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}

.feature-split__image .border-overlay {
  position: absolute;
  inset: var(--sp-3);
  border: 1px solid var(--gold-dim);
  border-radius: 16px;
  pointer-events: none;
}

/* Glassmorphism Logo Watermark */
.logo-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  max-width: 80%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.logo-watermark-section {
  position: relative;
}

.logo-watermark-section>.container {
  position: relative;
  z-index: 1;
}

/* ============================================
   WORLD PRAYER TARGETS
   ============================================ */
.target-hero {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 350px;
  display: flex;
  align-items: flex-end;
}

.target-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.target-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--charcoal) 20%, transparent 100%);
}

.target-hero__content {
  position: relative;
  z-index: 2;
  padding: var(--sp-10);
}

.targets-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--sp-10);
}

@media (max-width: 768px) {
  .targets-layout {
    grid-template-columns: 1fr;
  }
}

.prayer-point {
  display: flex;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
  align-items: flex-start;
}

.prayer-point__number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
}

.prayer-point p {
  font-size: 0.95rem;
  line-height: 1.7;
  padding-top: var(--sp-1);
}

.sidebar-panel {
  background: var(--charcoal-light);
  border: 1px solid rgba(245, 245, 240, 0.06);
  border-radius: 20px;
  padding: var(--sp-8);
}

.sidebar-panel__heading {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: var(--sp-4);
  color: var(--gold);
  text-transform: none;
  letter-spacing: normal;
}

.sidebar-panel ul {
  list-style: none;
}

.sidebar-panel li {
  margin-bottom: var(--sp-3);
}

.sidebar-panel a {
  font-size: 0.85rem;
  color: var(--ivory-dim);
}

.sidebar-panel a:hover {
  color: var(--gold);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  background: linear-gradient(180deg, rgba(30, 31, 35, 1) 0%, rgba(17, 18, 20, 1) 100%);
  border-top: none;
  padding: var(--sp-20) 0 var(--sp-10);
  margin-top: var(--sp-10);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 168, 78, 0.5), transparent);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-10);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
}

.footer__about img {
  height: 48px;
  width: auto;
  margin-bottom: var(--sp-4);
}

.footer__about p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--ivory-muted);
  margin-bottom: var(--sp-5);
  max-width: 320px;
}

.footer__socials {
  display: flex;
  gap: var(--sp-3);
}

.footer__socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 245, 240, 0.1);
  border-radius: 50%;
  color: var(--ivory-muted);
  transition: all var(--transition-fast);
}

.footer__socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer__heading {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-5);
  color: var(--ivory);
  text-transform: none;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: var(--sp-3);
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--ivory-muted);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-8);
  margin-top: var(--sp-4);
  border-top: 1px solid rgba(200, 168, 78, 0.1);
  font-size: 0.75rem;
  color: var(--ivory-muted);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    gap: var(--sp-2);
    text-align: center;
  }
}

.footer__signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-top: var(--sp-4);
  margin-top: var(--sp-4);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: rgba(200, 168, 78, 0.4);
  transition: color 0.3s ease, opacity 0.3s ease;
}

.footer__signature:hover {
  color: var(--gold);
}

.footer__signature img {
  width: 14px;
  height: 14px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.footer__signature:hover img {
  opacity: 0.9;
}

/* ============================================
   404 PAGE
   ============================================ */
.error-page {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-8);
}

.error-page__code {
  font-family: var(--font-serif);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold-dim);
  margin-bottom: var(--sp-4);
}

.error-page__title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: var(--sp-4);
}

.error-page__text {
  max-width: 480px;
  margin-bottom: var(--sp-8);
}

/* ============================================
   ANIMATION SYSTEM — Portrait-Inspired
   ============================================ */

/* Scroll Reveal: Fade + Lift + Blur-to-Clear */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
  transition:
    opacity 700ms var(--ease-out),
    transform 700ms var(--ease-out),
    filter 700ms var(--ease-out);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
  transition:
    opacity 700ms var(--ease-out),
    transform 700ms var(--ease-out),
    filter 700ms var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Scale Reveal */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  filter: blur(4px);
  transition:
    opacity 700ms var(--ease-out),
    transform 700ms var(--ease-out),
    filter 700ms var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* Fade-only reveal (for subtle elements) */
.reveal-fade {
  opacity: 0;
  transition: opacity 800ms var(--ease-out);
}

.reveal-fade.visible {
  opacity: 1;
}

/* Stagger delays — 80ms increments for smooth cascading */
.stagger-1 {
  transition-delay: 80ms;
}

.stagger-2 {
  transition-delay: 160ms;
}

.stagger-3 {
  transition-delay: 240ms;
}

.stagger-4 {
  transition-delay: 320ms;
}

.stagger-5 {
  transition-delay: 400ms;
}

.stagger-6 {
  transition-delay: 480ms;
}

/* Legacy delay classes */
.delay-1 {
  transition-delay: 100ms;
}

.delay-2 {
  transition-delay: 200ms;
}

.delay-3 {
  transition-delay: 300ms;
}

.delay-4 {
  transition-delay: 400ms;
}

.delay-5 {
  transition-delay: 500ms;
}

.delay-6 {
  transition-delay: 600ms;
}

/* Parallax */
[data-parallax] {
  will-change: transform;
}

/* ============================================
   RESPONSIVE POLISH
   ============================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--sp-4);
  }

  .section {
    padding: var(--sp-16) 0;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* ============================================
   LOGO CLEANUP — Remove black background
   ============================================ */
.nav-logo-img {
  height: 36px;
  width: auto;
  border-radius: 50%;
  object-fit: cover;
  mix-blend-mode: lighten;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  border-radius: 50%;
  object-fit: cover;
  mix-blend-mode: lighten;
  margin-bottom: var(--sp-4);
}

/* ============================================
   HERO — Event Variant
   ============================================ */
.hero--event {
  min-height: 100vh;
}

.hero--event .hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg-event {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__bg-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(70vw, 500px);
  height: auto;
  object-fit: contain;
  opacity: 0.35;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 0 80px rgba(200, 168, 78, 0.15));
}

.overlay-b--soft {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--charcoal) 0%,
    rgba(17, 18, 20, 0.7) 35%,
    rgba(17, 18, 20, 0.3) 65%,
    rgba(17, 18, 20, 0.15) 100%
  );
}

.hero__content--bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  padding-bottom: var(--sp-16);
}

/* ============================================
   NAV — Solid variant (for thank-you page)
   ============================================ */
.nav--solid {
  background: rgba(17, 18, 20, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* ============================================
   REGISTRATION PAGE
   ============================================ */
.reg-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-10);
  align-items: start;
}

@media (max-width: 960px) {
  .reg-layout {
    grid-template-columns: 1fr;
  }
}

.reg-form-panel {
  padding: var(--sp-10) var(--sp-10) var(--sp-12);
}

.reg-form-header {
  margin-bottom: var(--sp-8);
}

.reg-form-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.reg-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}

@media (max-width: 600px) {
  .reg-form-grid {
    grid-template-columns: 1fr;
  }
}

/* Large inputs */
.form-input--lg {
  padding: 16px 20px;
  font-size: 1rem;
  border-radius: 14px;
  min-height: 52px;
}

.btn--lg {
  padding: 18px 36px;
  font-size: 0.85rem;
}

/* Session Selection Cards */
.session-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

@media (max-width: 600px) {
  .session-cards {
    grid-template-columns: 1fr;
  }
}

.session-card {
  cursor: pointer;
}

.session-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.session-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-6) var(--sp-4);
  background: rgba(245, 245, 240, 0.04);
  border: 1px solid rgba(245, 245, 240, 0.1);
  border-radius: 16px;
  transition: all var(--transition-base);
  text-align: center;
}

.session-card__inner:hover {
  border-color: var(--gold-dim);
  background: rgba(200, 168, 78, 0.04);
}

.session-card input[type="radio"]:checked + .session-card__inner {
  border-color: var(--gold);
  background: rgba(200, 168, 78, 0.1);
  box-shadow: 0 0 0 2px rgba(200, 168, 78, 0.2), 0 4px 20px rgba(200, 168, 78, 0.08);
}

.session-card__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: 0.02em;
}

.session-card__recommended {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: rgba(200, 168, 78, 0.12);
  padding: 2px 10px;
  border-radius: 100px;
}

.session-card .icon {
  color: var(--gold);
}

/* Form Trust Line */
.form-trust {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.8rem;
  color: var(--ivory-muted);
  justify-content: center;
}

.form-trust .icon {
  color: var(--gold);
}

/* Registration Sidebar */
.reg-sidebar {
  position: sticky;
  top: 100px;
}

.reg-info-card {
  background: var(--charcoal-light);
  border: 1px solid rgba(245, 245, 240, 0.06);
  border-radius: 20px;
  padding: var(--sp-8);
}

.reg-info-card h3 {
  font-size: 1.15rem;
  margin-bottom: var(--sp-6);
  color: var(--gold);
}

.reg-info-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  margin-bottom: var(--sp-5);
}

.reg-info-item .icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.reg-info-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--ivory);
  margin-bottom: 2px;
}

.reg-info-item p {
  font-size: 0.85rem;
}

.reg-expect-list {
  list-style: none;
}

.reg-expect-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.9rem;
  color: var(--ivory-dim);
  margin-bottom: var(--sp-4);
}

.reg-expect-list .icon {
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 var(--sp-16);
}

.thankyou-card {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
  background: var(--charcoal-light);
  border: 1px solid rgba(245, 245, 240, 0.06);
  border-radius: 28px;
  padding: var(--sp-16) var(--sp-10);
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--sp-8);
  color: var(--gold);
  background: rgba(200, 168, 78, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-icon svg {
  width: 44px;
  height: 44px;
}

.thankyou-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--sp-4);
}

.thankyou-subtitle {
  font-size: 1.05rem;
  color: var(--ivory-dim);
  max-width: 460px;
  margin: 0 auto var(--sp-8);
  line-height: 1.7;
}

.thankyou-details {
  display: flex;
  justify-content: center;
  gap: var(--sp-8);
  margin-bottom: var(--sp-8);
  flex-wrap: wrap;
}

.thankyou-detail-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.9rem;
  color: var(--ivory-dim);
}

.thankyou-detail-item .icon {
  color: var(--gold);
}

.thankyou-notice {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: rgba(200, 168, 78, 0.06);
  border: 1px solid rgba(200, 168, 78, 0.15);
  border-radius: 14px;
  padding: var(--sp-4) var(--sp-5);
  margin-bottom: var(--sp-8);
  font-size: 0.9rem;
  color: var(--ivory-dim);
  justify-content: center;
}

.thankyou-notice .icon {
  color: var(--gold);
}

.thankyou-actions {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
  flex-wrap: wrap;
}

.thankyou-share {
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(245, 245, 240, 0.06);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.72rem;
}

/* ============================================
   GIVING / DONATIONS PAGE
   ============================================ */
.give-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--sp-10);
  align-items: start;
}

@media (max-width: 960px) {
  .give-layout {
    grid-template-columns: 1fr;
  }
}

.give-section-block h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

/* Amount Cards */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

@media (max-width: 600px) {
  .amount-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.amount-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--sp-8) var(--sp-4);
  background: rgba(245, 245, 240, 0.04);
  border: 1px solid rgba(245, 245, 240, 0.1);
  border-radius: 16px;
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: var(--font-sans);
  color: var(--ivory);
  min-height: 100px;
}

.amount-card:hover {
  border-color: var(--gold-dim);
  background: rgba(200, 168, 78, 0.04);
  transform: translateY(-2px);
}

.amount-card.selected {
  border-color: var(--gold);
  background: rgba(200, 168, 78, 0.12);
  box-shadow: 0 0 0 2px rgba(200, 168, 78, 0.2), 0 4px 24px rgba(200, 168, 78, 0.1);
}

.amount-card__value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ivory);
}

.amount-card.selected .amount-card__value {
  color: var(--gold);
}

.amount-card--popular {
  border-color: rgba(200, 168, 78, 0.2);
}

.amount-card__popular-tag {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  background: var(--gold);
  padding: 2px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

/* Custom Amount */
.amount-card--custom {
  padding: var(--sp-5) var(--sp-4);
  gap: var(--sp-2);
}

.amount-card__custom-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ivory-muted);
}

.amount-card__custom-input-wrap {
  display: flex;
  align-items: center;
  gap: 2px;
}

.amount-card__dollar {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold);
}

.amount-card__custom-input {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  outline: none;
  max-width: 100px;
  text-align: center;
}

.amount-card__custom-input::placeholder {
  color: var(--ivory-muted);
  font-size: 0.8rem;
  font-family: var(--font-sans);
}

/* Payment Method Cards */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}

@media (max-width: 768px) {
  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.payment-card {
  background: rgba(245, 245, 240, 0.04);
  border: 1px solid rgba(245, 245, 240, 0.08);
  border-radius: 16px;
  padding: var(--sp-6) var(--sp-4);
  text-align: center;
  transition: all var(--transition-base);
}

.payment-card:hover {
  border-color: rgba(200, 168, 78, 0.2);
  transform: translateY(-2px);
}

.payment-card__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto var(--sp-3);
  color: var(--gold);
}

.payment-card__icon svg {
  width: 100%;
  height: 100%;
}

.payment-card h4 {
  font-size: 0.85rem;
  margin-bottom: var(--sp-2);
}

.payment-notice {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  padding: var(--sp-4) var(--sp-5);
  background: rgba(200, 168, 78, 0.04);
  border: 1px solid rgba(200, 168, 78, 0.1);
  border-radius: 12px;
  font-size: 0.85rem;
  color: var(--ivory-muted);
}

.payment-notice .icon {
  color: var(--gold);
  margin-top: 1px;
}

/* Clickable Payment Cards */
.payment-card--clickable {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
}

.payment-card--clickable:hover {
  border-color: rgba(200, 168, 78, 0.4);
  background: rgba(200, 168, 78, 0.08);
  box-shadow: 0 4px 20px rgba(200, 168, 78, 0.1);
}

.payment-card--clickable.copied {
  border-color: rgba(76, 175, 80, 0.5);
  background: rgba(76, 175, 80, 0.08);
}

.payment-card__handle {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.5rem;
  word-break: break-all;
}

.payment-card__action {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ivory-muted);
  padding: 4px 12px;
  border: 1px solid rgba(245, 245, 240, 0.12);
  border-radius: 100px;
  transition: all var(--transition-base);
}

.payment-card--clickable:hover .payment-card__action {
  border-color: var(--gold);
  color: var(--gold);
}

/* Copy Toast */
.copy-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--charcoal);
  border: 1px solid rgba(76, 175, 80, 0.4);
  color: #4CAF50;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.copy-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Give Sidebar */
.give-sidebar {
  position: sticky;
  top: 100px;
}

.give-form-panel {
  padding: var(--sp-8);
}

.give-form-panel h3 {
  font-size: 1.2rem;
  color: var(--gold);
}

/* Impact Card */
.give-impact-card {
  background: var(--charcoal-light);
  border: 1px solid rgba(245, 245, 240, 0.06);
  border-radius: 20px;
  padding: var(--sp-8);
}

.give-impact-card h3 {
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: var(--sp-5);
}

.give-impact-list {
  list-style: none;
}

.give-impact-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.88rem;
  color: var(--ivory-dim);
  margin-bottom: var(--sp-4);
}

.give-impact-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ============================================
   FORM SELECT OVERRIDE
   ============================================ */
.form-select {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ivory);
  background: rgba(245, 245, 240, 0.04);
  border: 1px solid rgba(245, 245, 240, 0.1);
  padding: var(--sp-3) var(--sp-5);
  border-radius: 12px;
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 168, 78, 0.1);
}

/* ============================================
   MOBILE POLISH — New Pages
   ============================================ */
@media (max-width: 480px) {
  .thankyou-card {
    padding: var(--sp-10) var(--sp-5);
  }

  .thankyou-actions {
    flex-direction: column;
  }

  .thankyou-actions .btn {
    width: 100%;
  }

  .reg-form-panel {
    padding: var(--sp-6) var(--sp-5);
  }

  .amount-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .payment-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   FOUNDER BIO — Expandable Toggle
   ============================================ */
.founder-block {
  border-top: 1px solid rgba(200, 168, 78, 0.15);
  padding-top: var(--sp-6);
}

.founder-toggle {
  display: inline-block;
  background: none;
  border: none;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: var(--sp-2) 0;
  margin-top: var(--sp-3);
  letter-spacing: 0.02em;
  transition: opacity var(--transition-fast);
}

.founder-toggle:hover {
  opacity: 0.75;
}

.founder-full {
  animation: founderFadeIn 400ms var(--ease-out);
}

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

/* ============================================
   COMMUNITY FEED — Media Page (Social Posts)
   ============================================ */
.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

@media (max-width: 992px) {
  .feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.feed-post {
  break-inside: avoid;
  background: var(--charcoal-light);
  border: 1px solid rgba(245, 245, 240, 0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 400ms var(--ease-out), box-shadow 400ms var(--ease-out);
}

.feed-post:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

/* Post Header — avatar + name + date */
.feed-post__header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
}

.feed-post__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--charcoal);
  flex-shrink: 0;
}

.feed-post__author {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: 0.01em;
}

.feed-post__date {
  display: block;
  font-size: 0.7rem;
  color: var(--ivory-muted);
  margin-top: 1px;
}

/* Post Image */
.feed-post__image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.feed-post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

.feed-post:hover .feed-post__image img {
  transform: scale(1.03);
}

/* Post Body */
.feed-post__body {
  padding: var(--sp-3) var(--sp-4) var(--sp-4);
}

/* Action Buttons — heart, comment, share */
.feed-post__actions {
  display: flex;
  gap: var(--sp-4);
  margin-bottom: var(--sp-3);
}

.feed-action {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--ivory-muted);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.feed-action svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feed-action:hover {
  color: var(--gold);
  transform: scale(1.15);
}

/* Tag */
.feed-post__tag {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  background: rgba(200, 168, 78, 0.1);
  border: 1px solid rgba(200, 168, 78, 0.2);
  border-radius: 100px;
  padding: 2px 10px;
  display: inline-block;
  margin-bottom: var(--sp-2);
}

/* Title — uses Inter (sans) to avoid Cinzel clipping */
.feed-post__title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.4;
  margin-bottom: var(--sp-1);
}

/* Caption */
.feed-post__caption {
  font-size: 0.8rem;
  color: var(--ivory-muted);
  line-height: 1.55;
}