/*
Theme Name:   Unlimited Worship
Theme URI:    https://unlimitedworship.org
Author:       Unlimited Worship Ministry
Description:  A cinematic, animated fundraising theme for Unlimited Worship — built on proven marketing and psychology-of-giving principles. Features scroll-triggered animations, interactive impact calculator, Full Site Editing support, and complete Customizer configurability.
Version:      2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License:      GNU General Public License v2 or later
Text Domain:  unlimited-worship
Tags:         ministry, church, fundraising, full-site-editing, animations, dark, responsive
*/

/* ══════════════════════════════════════════════════
   1. DESIGN TOKENS
══════════════════════════════════════════════════ */
:root {
  /* Brand */
  --navy:       #0d0a1a;
  --navy-mid:   #1a1330;
  --navy-glow:  rgba(13,10,26,0.97);
  --gold:       #d4a854;
  --gold-light: #e8c87a;
  --gold-dim:   rgba(212,168,84,0.15);
  --gold-border:rgba(212,168,84,0.35);
  --purple:     #8b5cf6;
  --purple-dk:  #7c3aed;
  --purple-dim: rgba(139,92,246,0.12);
  --purple-glow:rgba(139,92,246,0.25);

  /* Neutrals */
  --cream:      #f7f6f2;
  --white:      #ffffff;
  --gray-50:    #f0eeea;
  --gray-100:   #e2dfd8;
  --gray-200:   #c8c5bc;
  --gray-400:   #9a9790;
  --gray-500:   #777470;
  --gray-600:   #555250;
  --gray-700:   #333130;
  --gray-900:   #1a1a1a;

  /* Borders */
  --border:     rgba(0,0,0,0.07);
  --border-md:  rgba(0,0,0,0.12);
  --border-dark:rgba(255,255,255,0.08);

  /* Radii */
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-2xl: 32px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-purple: 0 8px 32px rgba(139,92,246,0.25);
  --shadow-gold:   0 8px 32px rgba(212,168,84,0.3);

  /* Transitions */
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --t-fast:  0.15s;
  --t-base:  0.25s;
  --t-slow:  0.4s;

  /* Z-layers */
  --z-below:   -1;
  --z-base:     0;
  --z-raised:  10;
  --z-float:   50;
  --z-nav:    100;
  --z-modal:  200;
}

/* ══════════════════════════════════════════════════
   2. RESET & BASE
══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--cream);
  color: var(--gray-900);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--purple); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--purple-dk); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ══════════════════════════════════════════════════
   3. TYPOGRAPHY
══════════════════════════════════════════════════ */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.15;
}
h1 { font-size: clamp(40px, 7vw, 68px); letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 4.5vw, 44px); letter-spacing: -0.01em; }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: clamp(18px, 2.5vw, 24px); }
h5 { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 500; }
p  { color: var(--gray-500); line-height: 1.8; }
p + p { margin-top: 1em; }
strong { font-weight: 500; color: var(--gray-900); }
em { font-style: italic; }

.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--purple); display: block; margin-bottom: 0.6rem;
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--light { color: rgba(255,255,255,0.5); }

.display-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--gray-900);
}
.display-title--light { color: #fff; }
.display-title em { color: var(--gold); font-style: italic; }
.display-title strong { color: var(--purple); font-weight: 700; }

.lead { font-size: clamp(15px, 2vw, 17px); line-height: 1.8; color: var(--gray-500); max-width: 600px; }
.lead--light { color: rgba(255,255,255,0.65); }

/* ══════════════════════════════════════════════════
   4. LAYOUT
══════════════════════════════════════════════════ */
.container        { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); }
.container--sm    { max-width: 780px;  margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }
.container--xs    { max-width: 640px;  margin: 0 auto; padding: 0 1.5rem; }
.container--wide  { max-width: 1400px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 3rem); }

.section          { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--sm      { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--flush   { padding: 0; }
.section--dark    { background: var(--navy); }
.section--navy-mid{ background: var(--navy-mid); }
.section--white   { background: var(--white); }
.section--cream   { background: var(--cream); }

.grid-2  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.grid-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }

@media (max-width: 900px)  { .grid-split { grid-template-columns: 1fr; } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .grid-2, .grid-3 { grid-template-columns: 1fr; } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px)  { .grid-4 { grid-template-columns: 1fr 1fr; } }

/* ══════════════════════════════════════════════════
   5. SCROLL ANIMATIONS (Intersection Observer driven)
══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {
  [data-anim] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  }
  [data-anim="left"]  { transform: translateX(-40px); }
  [data-anim="right"] { transform: translateX(40px); }
  [data-anim="up"]    { transform: translateY(28px); }
  [data-anim="scale"] { transform: scale(0.92); }
  [data-anim="none"]  { transform: none; }

  [data-anim].is-visible {
    opacity: 1;
    transform: none;
  }

  [data-delay="1"] { transition-delay: 0.1s; }
  [data-delay="2"] { transition-delay: 0.2s; }
  [data-delay="3"] { transition-delay: 0.3s; }
  [data-delay="4"] { transition-delay: 0.4s; }
  [data-delay="5"] { transition-delay: 0.5s; }
  [data-delay="6"] { transition-delay: 0.6s; }
  [data-delay="7"] { transition-delay: 0.7s; }
  [data-delay="8"] { transition-delay: 0.8s; }
}

/* ══════════════════════════════════════════════════
   6. KEYFRAME ANIMATIONS
══════════════════════════════════════════════════ */
@keyframes flicker {
  0%,100% { opacity:1; transform: scaleY(1) scaleX(1); }
  25%     { opacity:.9; transform: scaleY(1.03) scaleX(0.98); }
  50%     { opacity:.95; transform: scaleY(0.97) scaleX(1.02); }
  75%     { opacity:1; transform: scaleY(1.01) scaleX(0.99); }
}
@keyframes float {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-12px); }
}
@keyframes pulse-ring {
  0%   { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(212,168,84,0.5); }
  70%  { transform: scale(1);   box-shadow: 0 0 0 16px rgba(212,168,84,0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(212,168,84,0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes fill-bar {
  from { width: 0%; }
  to   { width: var(--fill); }
}
@keyframes fade-in-up {
  from { opacity:0; transform: translateY(20px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes count-pulse {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.04); }
}
@keyframes orbit {
  from { transform: rotate(0deg) translateX(60px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(60px) rotate(-360deg); }
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  10%     { transform: translate(-1%,-1%); }
  20%     { transform: translate(1%,-2%); }
  30%     { transform: translate(-2%,1%); }
  40%     { transform: translate(2%,2%); }
  50%     { transform: translate(-1%,3%); }
  60%     { transform: translate(3%,1%); }
  70%     { transform: translate(-3%,-2%); }
  80%     { transform: translate(1%,-3%); }
  90%     { transform: translate(-2%,2%); }
}
@keyframes slide-up-fade {
  from { opacity:0; transform:translateY(100%); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes progress-flash {
  0%   { left:-100%; }
  100% { left:150%; }
}

/* ══════════════════════════════════════════════════
   7. HEADER & NAVIGATION
══════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  padding: 0;
  transition: all var(--t-base) var(--ease);
}
.site-header::before {
  content: '';
  position: absolute; inset: 0;
  background: transparent;
  transition: background var(--t-slow) var(--ease);
  pointer-events: none;
}
.site-header.scrolled::before {
  background: var(--navy-glow);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 0.5px solid var(--border-dark);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1rem, 4vw, 2.5rem);
  position: relative; z-index: 1;
  max-width: 1300px; margin: 0 auto;
  transition: padding var(--t-base) var(--ease);
}
.site-header.scrolled .nav-inner { padding-top: 0.75rem; padding-bottom: 0.75rem; }

/* Logo */
.nav-logo .custom-logo {
  height: 38px;
  width: auto;
  display: block;
  /* The logo has a black background — make it transparent */
  mix-blend-mode: screen;   /* removes the black background */
  filter: brightness(1.1);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo__mark {
  width: 32px; height: 32px;
  background: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--navy);
  transition: transform var(--t-base) var(--ease-spring), box-shadow var(--t-base) var(--ease);
  flex-shrink: 0;
}
.nav-logo:hover .nav-logo__mark { transform: rotate(10deg) scale(1.08); box-shadow: var(--shadow-gold); }
.nav-logo__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 700;
  color: #fff; line-height: 1;
}
.nav-logo__text span { color: var(--gold); }

/* Desktop links */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.62);
  padding: 7px 15px; border-radius: 40px;
  position: relative; overflow: hidden;
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}
.nav-link::before {
  content: '';
  position: absolute; inset: 0; border-radius: 40px;
  background: rgba(255,255,255,0.07);
  opacity: 0; transition: opacity var(--t-fast);
}
.nav-link:hover { color: #fff; text-decoration: none; }
.nav-link:hover::before { opacity: 1; }
.nav-link.is-active { color: #fff; }
.nav-link.is-active::before { opacity: 1; }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600; font-size: 14px;
  padding: 9px 22px; border-radius: 40px;
  margin-left: 8px;
  transition: background var(--t-fast), transform var(--t-fast) var(--ease-spring), box-shadow var(--t-fast);
  animation: pulse-ring 2.5s ease infinite;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
  animation: none;
  text-decoration: none;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 6px; border-radius: var(--r-sm);
  background: none; border: none; cursor: pointer;
}
.nav-toggle__bar {
  width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease), opacity var(--t-fast);
  transform-origin: center;
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-top: 0.5px solid var(--border-dark);
  padding: 1rem clamp(1rem, 4vw, 2.5rem) 1.5rem;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.nav-mobile.is-open { max-height: 400px; }
.nav-mobile__link {
  color: rgba(255,255,255,0.7);
  font-size: 16px; padding: 11px 0;
  border-bottom: 0.5px solid var(--border-dark);
  display: block; transition: color var(--t-fast), padding-left var(--t-fast);
}
.nav-mobile__link:hover { color: var(--gold); padding-left: 6px; text-decoration: none; }
.nav-mobile__link:last-child { border-bottom: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile  { display: flex; }
}

/* ══════════════════════════════════════════════════
   8. HERO
══════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  background: var(--navy);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
  padding: clamp(7rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
}

/* Atmospheric layers */
.hero__bg-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero__bg-orb--1 {
  width: min(600px, 80vw); height: min(600px, 80vw);
  background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 65%);
  top: -15%; right: -10%;
  animation: float 8s ease-in-out infinite;
}
.hero__bg-orb--2 {
  width: min(400px, 60vw); height: min(400px, 60vw);
  background: radial-gradient(circle, rgba(212,168,84,0.1) 0%, transparent 65%);
  bottom: -10%; left: -5%;
  animation: float 10s ease-in-out infinite reverse;
}
.hero__bg-orb--3 {
  width: min(200px, 40vw); height: min(200px, 40vw);
  background: radial-gradient(circle, rgba(212,168,84,0.12) 0%, transparent 70%);
  top: 40%; left: 55%;
  animation: float 6s ease-in-out infinite 2s;
}

/* Grain overlay for texture */
.hero__grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  animation: grain 0.8s steps(1) infinite;
}

/* Flame visual */
.hero__flame {
  position: absolute;
  right: clamp(2rem, 8vw, 10rem);
  top: 50%; transform: translateY(-50%);
  width: min(380px, 45vw); height: min(500px, 65vw);
  pointer-events: none; opacity: 0.12;
  animation: flicker 3s ease-in-out infinite;
}

.hero__inner { position: relative; z-index: 2; }

.hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-dim);
  border: 0.5px solid var(--gold-border);
  color: var(--gold);
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 40px;
  margin-bottom: 1.75rem;
  animation: fade-in-up 0.7s var(--ease-out) 0.2s both;
}
.hero__tag::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: pulse-ring 2s ease infinite;
  flex-shrink: 0;
}

.hero__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 9vw, 88px);
  font-weight: 700; color: #fff; line-height: 1.0;
  letter-spacing: -0.02em; margin-bottom: 1.5rem;
  animation: fade-in-up 0.8s var(--ease-out) 0.35s both;
}
.hero__headline em { color: var(--gold); font-style: italic; display: block; }

.hero__sub {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255,255,255,0.62);
  line-height: 1.8; max-width: 540px;
  margin-bottom: 2.5rem;
  animation: fade-in-up 0.8s var(--ease-out) 0.5s both;
}

.hero__actions {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  margin-bottom: 3.5rem;
  animation: fade-in-up 0.8s var(--ease-out) 0.65s both;
}

/* Scroll indicator */
.hero__scroll {
  display: flex; align-items: center; gap: 10px;
  animation: fade-in-up 0.8s var(--ease-out) 0.8s both;
}
.hero__scroll-line {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.25);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: var(--gold);
  animation: progress-flash 2s ease-in-out infinite;
}
.hero__scroll-text { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); }

/* ══════════════════════════════════════════════════
   9. SOCIAL PROOF BAR (FOMO / Authority)
══════════════════════════════════════════════════ */
.proof-bar {
  background: var(--navy-mid);
  border-top: 0.5px solid rgba(212,168,84,0.2);
  border-bottom: 0.5px solid rgba(212,168,84,0.2);
  padding: 2rem 0;
  position: relative; overflow: hidden;
}
.proof-bar::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--navy-mid) 0%, transparent 15%, transparent 85%, var(--navy-mid) 100%);
  pointer-events: none; z-index: 1;
}
.proof-bar__inner {
  display: flex; align-items: stretch;
  justify-content: center;
  gap: 0;
  position: relative; z-index: 2;
  flex-wrap: wrap;
}
.proof-stat {
  text-align: center;
  padding: 0.5rem clamp(1.5rem, 4vw, 3.5rem);
  border-right: 0.5px solid rgba(255,255,255,0.08);
  flex: 1; min-width: 120px;
}
.proof-stat:last-child { border-right: none; }
.proof-stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700; color: var(--gold); line-height: 1;
  display: block;
}
.proof-stat__num.is-counting { animation: count-pulse 0.3s ease; }
.proof-stat__label { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 4px; line-height: 1.4; }

/* ══════════════════════════════════════════════════
   10. CAMPAIGN PROGRESS (Urgency + Commitment)
══════════════════════════════════════════════════ */
.campaign-progress {
  background: var(--navy);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative; overflow: hidden;
}
.campaign-progress::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,168,84,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.progress-card {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(212,168,84,0.2);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, 3rem);
  position: relative; z-index: 1;
}
.progress-card__header {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 1rem;
  margin-bottom: 1.75rem;
}
.progress-card__raised {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 56px); font-weight: 700;
  color: var(--gold); line-height: 1;
}
.progress-card__raised small {
  font-family: 'Outfit', sans-serif; font-size: 14px;
  color: rgba(255,255,255,0.4); display: block; margin-top: 4px;
}
.progress-card__goal {
  text-align: right;
}
.progress-card__goal-num {
  font-size: 14px; color: rgba(255,255,255,0.4);
}
.progress-card__goal-label { font-size: 11px; color: rgba(255,255,255,0.25); margin-top: 2px; }

/* Progress track */
.progress-track {
  height: 10px; background: rgba(255,255,255,0.08);
  border-radius: 40px; overflow: hidden; margin-bottom: 1rem;
  position: relative;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  border-radius: 40px;
  width: 0%;
  transition: width 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
  position: relative; overflow: hidden;
}
.progress-fill.is-visible { width: var(--progress-pct, 22%); }
.progress-fill::after {
  content: '';
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: progress-flash 2.5s ease-in-out infinite 2s;
}
.progress-milestones {
  display: flex; justify-content: space-between;
  font-size: 11px; color: rgba(255,255,255,0.25); margin-bottom: 1.5rem;
}
.progress-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.progress-meta__item { font-size: 13px; color: rgba(255,255,255,0.5); }
.progress-meta__item strong { color: rgba(255,255,255,0.85); display: block; font-size: 16px; font-weight: 500; }

/* Urgency notice */
.urgency-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,168,84,0.12);
  border: 0.5px solid rgba(212,168,84,0.3);
  border-radius: 40px; padding: 6px 14px 6px 8px;
  font-size: 12px; color: var(--gold);
  margin-top: 1.5rem;
}
.urgency-pill__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  animation: pulse-ring 1.5s ease infinite;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   11. SCRIPTURE / PULL QUOTE
══════════════════════════════════════════════════ */
.scripture-band {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.75rem;
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  margin: 2.5rem 0;
  position: relative;
}
.scripture-band::before {
  content: '\201C';
  position: absolute; top: -0.5rem; left: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px; color: var(--gold); opacity: 0.15;
  line-height: 1; pointer-events: none;
}
.scripture-band p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.5vw, 22px);
  font-style: italic; color: var(--gray-900);
  line-height: 1.6; margin: 0;
  position: relative; z-index: 1;
}
.scripture-band cite {
  font-size: 12px; color: var(--gray-400);
  display: block; margin-top: 8px;
  font-style: normal; font-family: 'Outfit', sans-serif;
}

/* ══════════════════════════════════════════════════
   12. STORY SECTION (Narrative + Authority)
══════════════════════════════════════════════════ */
.origin-quote {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  margin: 1.75rem 0;
  position: relative; overflow: hidden;
}
.origin-quote::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--purple), transparent);
}
.origin-quote__label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem; display: block;
}
.origin-quote__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(19px, 2.5vw, 24px); font-style: italic;
  color: var(--gray-900); line-height: 1.75;
}

/* ══════════════════════════════════════════════════
   13. TEAM FEATURE (Social Proof)
══════════════════════════════════════════════════ */
.team-block {
  background: var(--navy);
  border-radius: var(--r-2xl);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid; grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin: 2rem 0;
  position: relative; overflow: hidden;
}
.team-block::after {
  content: '';
  position: absolute; top: -40%; right: -10%;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.team-block__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 10vw, 96px); font-weight: 700;
  color: var(--gold); line-height: 1;
  position: relative; z-index: 1;
}
.team-block__number sup { font-size: 0.45em; vertical-align: super; }
.team-block__title  { font-size: clamp(16px, 2vw, 20px); font-weight: 500; color: #fff; margin-bottom: 0.5rem; position: relative; z-index: 1; }
.team-block__body   { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.75; position: relative; z-index: 1; }
.team-block__dots   { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 1.25rem; position: relative; z-index: 1; }
.team-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 0.5px solid rgba(255,255,255,0.1);
  transition: background var(--t-base), transform var(--t-base) var(--ease-spring);
}
.team-dot--lit { background: var(--purple); border-color: var(--purple); }
.team-dot--lit:hover { transform: scale(1.3); background: var(--gold); border-color: var(--gold); }

@media (max-width: 580px) { .team-block { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════
   14. VISION STEPS
══════════════════════════════════════════════════ */
.vision-steps {
  border-radius: var(--r-xl); overflow: hidden;
  border: 0.5px solid var(--border);
  margin: 2rem 0;
}
.vision-step {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 1.25rem; padding: 1.4rem 1.75rem;
  background: var(--white);
  border-bottom: 0.5px solid var(--border);
  align-items: start;
  transition: background var(--t-fast);
}
.vision-step:hover { background: rgba(139,92,246,0.02); }
.vision-step:last-child { border-bottom: none; }
.vision-step__num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--purple-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: var(--purple);
  flex-shrink: 0; margin-top: 2px;
  transition: background var(--t-base), transform var(--t-base) var(--ease-spring);
}
.vision-step:hover .vision-step__num { background: var(--purple); color: #fff; transform: scale(1.1); }
.vision-step__title { font-size: 15px; font-weight: 500; color: var(--gray-900); margin-bottom: 4px; }
.vision-step__body  { font-size: 13px; color: var(--gray-400); line-height: 1.65; }

/* ══════════════════════════════════════════════════
   15. COST CONTRAST (Loss Aversion)
══════════════════════════════════════════════════ */
.cost-contrast {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 1rem; align-items: center;
  margin: 2rem 0;
}
.cost-panel {
  border-radius: var(--r-lg);
  padding: 1.75rem;
  text-align: center;
}
.cost-panel--bad {
  background: rgba(226,75,74,0.05);
  border: 0.5px solid rgba(226,75,74,0.2);
}
.cost-panel--good {
  background: rgba(139,92,246,0.05);
  border: 0.5px solid rgba(139,92,246,0.25);
}
.cost-panel__label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; }
.cost-panel--bad  .cost-panel__label { color: #a32d2d; }
.cost-panel--good .cost-panel__label { color: var(--purple-dk); }
.cost-panel__amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 4vw, 36px); font-weight: 700; line-height: 1;
  margin-bottom: 0.5rem;
}
.cost-panel--bad  .cost-panel__amount { color: #e24b4a; }
.cost-panel--good .cost-panel__amount { color: var(--purple); }
.cost-panel__sub { font-size: 12px; color: var(--gray-400); line-height: 1.5; }
.cost-vs {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 700; color: var(--gray-200);
  text-align: center; flex-shrink: 0;
}

@media (max-width: 640px) {
  .cost-contrast { grid-template-columns: 1fr; }
  .cost-vs { display: none; }
}

/* ══════════════════════════════════════════════════
   16. EQUIPMENT GRID
══════════════════════════════════════════════════ */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px; margin: 2rem 0;
}
.equipment-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.25rem 1rem;
  transition: border-color var(--t-base), transform var(--t-base) var(--ease-spring), box-shadow var(--t-base);
  cursor: default; position: relative; overflow: hidden;
}
.equipment-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--purple-dim) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--t-base);
  border-radius: var(--r-lg);
}
.equipment-card:hover { border-color: var(--purple-glow); transform: translateY(-3px); box-shadow: var(--shadow-purple); }
.equipment-card:hover::after { opacity: 1; }
.equipment-card__icon { font-size: 24px; margin-bottom: 10px; position: relative; z-index: 1; }
.equipment-card__name { font-size: 13px; font-weight: 500; color: var(--gray-900); margin-bottom: 3px; position: relative; z-index: 1; }
.equipment-card__note { font-size: 12px; color: var(--gray-400); line-height: 1.45; position: relative; z-index: 1; }

/* Trailer feature card */
.trailer-card {
  background: var(--navy);
  border-radius: var(--r-2xl);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: grid; grid-template-columns: auto 1fr;
  gap: 1.5rem; align-items: start;
  margin: 12px 0;
  border: 0.5px solid rgba(212,168,84,0.15);
  position: relative; overflow: hidden;
}
.trailer-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--purple), transparent);
}
.trailer-card__icon { font-size: 36px; }
.trailer-card__title { font-size: 16px; font-weight: 500; color: #fff; margin-bottom: 6px; }
.trailer-card__body  { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.75; }
.trailer-card__body strong { color: rgba(255,255,255,0.9); }
.priority-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(212,168,84,0.15);
  border: 0.5px solid rgba(212,168,84,0.35);
  color: var(--gold);
  padding: 4px 10px; border-radius: 20px; margin-top: 10px;
}
.priority-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse-ring 2s ease infinite; flex-shrink: 0; }

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

/* ══════════════════════════════════════════════════
   17. IMPACT CALCULATOR (Interactive engagement)
══════════════════════════════════════════════════ */
.impact-calc {
  background: var(--navy);
  border-radius: var(--r-2xl);
  padding: clamp(2rem, 4vw, 3rem);
  position: relative; overflow: hidden;
  border: 0.5px solid rgba(139,92,246,0.2);
}
.impact-calc::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(139,92,246,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.impact-calc__inner { position: relative; z-index: 1; }
.impact-calc__slider-wrap { margin: 2rem 0; }
.impact-calc__label {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
}
.impact-calc__label span { font-size: 14px; color: rgba(255,255,255,0.5); }
.impact-calc__amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 52px); font-weight: 700;
  color: var(--gold); transition: all var(--t-fast);
}

/* Custom range slider */
.impact-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 40px; outline: none; cursor: pointer;
}
.impact-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,168,84,0.25);
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease-spring), box-shadow var(--t-fast);
}
.impact-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 0 8px rgba(212,168,84,0.2);
}
.impact-slider::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold); border: none;
  box-shadow: 0 0 0 4px rgba(212,168,84,0.25);
  cursor: pointer;
}

.impact-result {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-top: 1.75rem;
}
.impact-result__card {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg); padding: 1.25rem;
  text-align: center;
  transition: background var(--t-base), border-color var(--t-base);
}
.impact-result__card.is-highlighted { background: rgba(212,168,84,0.1); border-color: rgba(212,168,84,0.3); }
.impact-result__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 4vw, 36px); font-weight: 700;
  color: var(--gold); line-height: 1; display: block;
  transition: all var(--t-base);
}
.impact-result__label { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 4px; line-height: 1.4; }

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

/* ══════════════════════════════════════════════════
   18. MONTH CALENDAR VISUALIZATION
══════════════════════════════════════════════════ */
.month-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 8px; margin: 1.5rem 0;
}
.month-cell {
  background: var(--gray-50);
  border: 0.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 6px; text-align: center;
  transition: transform var(--t-base) var(--ease-spring), border-color var(--t-base), background var(--t-base);
}
.month-cell:hover { transform: translateY(-2px); }
.month-cell--done   { background: rgba(139,92,246,0.08); border-color: rgba(139,92,246,0.3); }
.month-cell--target { background: rgba(212,168,84,0.07); border-color: rgba(212,168,84,0.28); }
.month-cell--target { cursor: pointer; }
.month-cell--target:hover { background: rgba(212,168,84,0.14); border-color: rgba(212,168,84,0.5); }
.month-cell__abbr { font-size: 11px; font-weight: 600; color: var(--gray-300); display: block; }
.month-cell--done   .month-cell__abbr { color: var(--purple); }
.month-cell--target .month-cell__abbr { color: #b8882a; }
.month-cell__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gray-100); margin: 5px auto 0; }
.month-cell--done   .month-cell__dot { background: var(--purple); box-shadow: 0 0 6px var(--purple-glow); }
.month-cell--target .month-cell__dot { background: var(--gold); box-shadow: 0 0 6px rgba(212,168,84,0.3); }
.month-legend { display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: 12px; color: var(--gray-400); margin-top: 10px; }
.month-legend__dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 5px; vertical-align: middle; }

/* ══════════════════════════════════════════════════
   19. GIVING TIERS (Cialdini: Commitment + Contrast)
══════════════════════════════════════════════════ */
.tiers-stack { display: flex; flex-direction: column; gap: 10px; margin: 2rem 0; }
.tier-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.25rem 1.5rem;
  display: grid; grid-template-columns: 150px 1fr auto;
  gap: 1.25rem; align-items: center;
  text-decoration: none;
  transition: border-color var(--t-base), transform var(--t-base) var(--ease-spring), box-shadow var(--t-base);
  position: relative; overflow: hidden;
}
.tier-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: transparent;
  transition: background var(--t-base);
}
.tier-card:hover { border-color: rgba(139,92,246,0.4); transform: translateX(4px); box-shadow: var(--shadow-md); text-decoration: none; }
.tier-card:hover::before { background: var(--purple); }
.tier-card--featured {
  border: 1.5px solid var(--purple);
  background: rgba(139,92,246,0.03);
  box-shadow: var(--shadow-purple);
}
.tier-card--featured::before { background: var(--purple); }
.tier-card--featured:hover { transform: translateX(4px) scale(1.005); }

.tier-card__amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3.5vw, 28px); font-weight: 700;
  color: var(--gray-900); line-height: 1;
}
.tier-badge {
  display: inline-block;
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(139,92,246,0.1); color: var(--purple-dk);
  padding: 2px 8px; border-radius: 12px; margin-bottom: 5px;
}
.tier-card__name   { font-size: 14px; font-weight: 500; color: var(--gray-900); margin-bottom: 3px; }
.tier-card__impact { font-size: 12px; color: var(--gray-400); line-height: 1.55; }
.tier-card__arrow  { color: var(--gray-200); font-size: 20px; flex-shrink: 0; transition: transform var(--t-base) var(--ease-spring), color var(--t-base); }
.tier-card:hover .tier-card__arrow { transform: translateX(4px); color: var(--purple); }

@media (max-width: 640px) { .tier-card { grid-template-columns: 1fr; gap: 0.6rem; } .tier-card__arrow { display: none; } }

/* ══════════════════════════════════════════════════
   20. DONATION BOX & FORM
══════════════════════════════════════════════════ */
.donate-box {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.donate-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--purple));
}

.donate-methods {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
}
.donate-method {
  background: var(--white);
  padding: 2rem; text-align: center;
  transition: background var(--t-fast);
}
.donate-method:hover { background: var(--gray-50); }
.donate-method__icon { font-size: 32px; margin-bottom: 10px; }
.donate-method__title { font-size: 15px; font-weight: 500; color: var(--gray-900); margin-bottom: 5px; }
.donate-method__sub   { font-size: 12px; color: var(--gray-400); line-height: 1.5; }
.donate-method__val   { font-size: 20px; font-weight: 600; color: var(--purple); margin-top: 6px; font-family: 'Cormorant Garamond', serif; }

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

.uw-form { padding: 2rem 2.25rem; }
.uw-form__group { margin-bottom: 1.1rem; }
.uw-form__group label {
  display: block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--gray-600); margin-bottom: 6px;
}
.uw-form__group input,
.uw-form__group textarea,
.uw-form__group select {
  width: 100%; padding: 12px 16px;
  background: var(--gray-50);
  border: 1px solid var(--border-md);
  border-radius: var(--r-md);
  font-family: 'Outfit', sans-serif; font-size: 15px; color: var(--gray-900);
  outline: none;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  -webkit-appearance: none; appearance: none;
}
.uw-form__group input:focus,
.uw-form__group textarea:focus,
.uw-form__group select:focus {
  border-color: var(--purple);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--purple-dim);
}
.uw-form__group textarea { resize: vertical; min-height: 100px; }
.uw-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 520px) { .uw-form__row { grid-template-columns: 1fr; } }
.uw-form__note { font-size: 12px; color: var(--gray-400); text-align: center; margin-top: 12px; line-height: 1.6; }
.form-success {
  background: rgba(34,197,94,0.07);
  border: 0.5px solid rgba(34,197,94,0.3);
  border-radius: var(--r-lg); padding: 1.25rem 1.5rem;
  display: none; margin-bottom: 1.25rem;
  font-size: 14px; color: #166534; line-height: 1.6;
}
.form-success.is-visible { display: block; animation: fade-in-up 0.4s var(--ease-out); }

/* ══════════════════════════════════════════════════
   21. BUTTONS
══════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif; font-weight: 500;
  font-size: 14px; letter-spacing: 0.02em;
  padding: 13px 28px; border-radius: 40px; border: none;
  cursor: pointer; text-decoration: none;
  position: relative; overflow: hidden;
  transition: transform var(--t-base) var(--ease-spring), box-shadow var(--t-base), opacity var(--t-fast);
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute; inset: 0; border-radius: 40px;
  background: rgba(255,255,255,0); transition: background var(--t-fast);
}
.btn:hover::after { background: rgba(255,255,255,0.1); }
.btn:hover  { transform: translateY(-2px); text-decoration: none; }
.btn:active { transform: translateY(0) scale(0.98); }

.btn--gold   { background: var(--gold);   color: var(--navy); }
.btn--gold:hover   { box-shadow: var(--shadow-gold); }
.btn--purple { background: var(--purple); color: #fff; }
.btn--purple:hover { box-shadow: var(--shadow-purple); }
.btn--navy   { background: var(--navy);   color: #fff; }
.btn--outline-light {
  background: transparent; color: rgba(255,255,255,0.7);
  border: 0.5px solid rgba(255,255,255,0.25);
}
.btn--outline-light:hover { color: #fff; border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); box-shadow: none; }
.btn--outline-dark {
  background: transparent; color: var(--gray-700);
  border: 0.5px solid var(--border-md);
}
.btn--outline-dark:hover { border-color: var(--purple); color: var(--purple); box-shadow: none; }
.btn--lg { padding: 15px 36px; font-size: 15px; }
.btn--sm { padding: 9px 20px; font-size: 13px; }
.btn--full { width: 100%; justify-content: center; }
.btn--pulsing { animation: pulse-ring 2.5s ease infinite; }

/* ══════════════════════════════════════════════════
   22. TRUST / WHY-GIVE LIST
══════════════════════════════════════════════════ */
.trust-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.trust-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.1rem 1.25rem;
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color var(--t-base), transform var(--t-base) var(--ease-spring);
}
.trust-item:hover { border-color: rgba(139,92,246,0.25); transform: translateX(4px); }
.trust-item__icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--purple-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px;
  transition: background var(--t-base), transform var(--t-base) var(--ease-spring);
}
.trust-item:hover .trust-item__icon { background: var(--purple); transform: rotate(-8deg) scale(1.05); }
.trust-item__title { font-size: 14px; font-weight: 500; color: var(--gray-900); margin-bottom: 3px; }
.trust-item__body  { font-size: 13px; color: var(--gray-400); line-height: 1.65; }

/* ══════════════════════════════════════════════════
   23. FINAL CTA BAND
══════════════════════════════════════════════════ */
.cta-finale {
  background: var(--navy);
  border-radius: var(--r-2xl);
  padding: clamp(3.5rem, 7vw, 6rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
  position: relative; overflow: hidden;
  margin: 3rem 0;
}
.cta-finale::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(139,92,246,0.22) 0%, transparent 60%);
  pointer-events: none;
}
.cta-finale::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-finale h2 { color: #fff; position: relative; z-index: 1; margin-bottom: 1rem; }
.cta-finale h2 em { color: var(--gold); font-style: italic; }
.cta-finale p { color: rgba(255,255,255,0.58); max-width: 480px; margin: 0 auto 2.5rem; position: relative; z-index: 1; }
.cta-finale__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; position: relative; z-index: 1; }

/* ══════════════════════════════════════════════════
   24. BLOG / POSTS
══════════════════════════════════════════════════ */
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.post-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color var(--t-base), transform var(--t-base) var(--ease-spring), box-shadow var(--t-base);
}
.post-card:hover { border-color: rgba(139,92,246,0.3); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post-card__thumb { height: 210px; overflow: hidden; }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.post-card:hover .post-card__thumb img { transform: scale(1.04); }
.post-card__thumb-placeholder {
  height: 210px; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; opacity: 0.5;
}
.post-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.post-card__cat  { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--purple); margin-bottom: 8px; }
.post-card__title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--gray-900); line-height: 1.3; margin-bottom: 8px; }
.post-card__title a { color: inherit; transition: color var(--t-fast); }
.post-card__title a:hover { color: var(--purple); text-decoration: none; }
.post-card__excerpt { font-size: 13px; color: var(--gray-400); line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }
.post-card__footer { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--gray-300); }
.post-card__read { color: var(--purple); font-weight: 500; transition: gap var(--t-fast); }
.post-card__read:hover { text-decoration: none; }

/* ══════════════════════════════════════════════════
   25. SINGLE POST
══════════════════════════════════════════════════ */
.article-wrap { max-width: 720px; margin: 0 auto; padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 2rem); }
.article-hero { padding: clamp(5rem, 10vw, 8rem) clamp(1rem, 4vw, 2.5rem) 0; background: var(--navy); }
.article-hero__content { max-width: 720px; margin: 0 auto; }
.article-content h2 { font-size: clamp(24px, 3.5vw, 32px); margin: 2.25rem 0 0.9rem; }
.article-content h3 { font-size: clamp(20px, 2.5vw, 26px); margin: 2rem 0 0.75rem; }
.article-content p  { font-size: 16px; color: var(--gray-600); line-height: 1.85; margin-bottom: 1.4rem; }
.article-content ul, .article-content ol { margin: 1rem 0 1.4rem 1.75rem; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { font-size: 16px; color: var(--gray-600); line-height: 1.8; margin-bottom: 0.5rem; }
.article-content img { border-radius: var(--r-lg); margin: 2rem 0; }
.article-content blockquote { margin: 2.5rem 0; }

/* ══════════════════════════════════════════════════
   26. PAGE HERO (inner pages)
══════════════════════════════════════════════════ */
.page-hero {
  background: var(--navy); padding: clamp(6rem, 10vw, 8rem) 0 clamp(3.5rem, 6vw, 5rem);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center top, rgba(139,92,246,0.18) 0%, transparent 60%); pointer-events: none; }
.page-hero h1 { color: #fff; position: relative; z-index: 1; margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto; position: relative; z-index: 1; }

/* ══════════════════════════════════════════════════
   27. FOOTER
══════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  padding: clamp(4rem, 7vw, 6rem) 0 2rem;
  border-top: 0.5px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}
.footer-brand__name { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.footer-brand__name span { color: var(--gold); }
.footer-brand__desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.75; margin-bottom: 1.5rem; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social-link {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 0.5px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 16px;
  transition: all var(--t-base) var(--ease-spring);
  text-decoration: none;
}
.footer-social-link:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); border-color: var(--gold); }
.footer-col__title { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1.25rem; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color var(--t-fast), padding-left var(--t-fast); }
.footer-nav a:hover { color: var(--gold); padding-left: 6px; text-decoration: none; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact-icon { font-size: 16px; opacity: 0.5; flex-shrink: 0; margin-top: 1px; }
.footer-contact-text { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.55; }
.footer-contact-text a { color: rgba(255,255,255,0.5); transition: color var(--t-fast); }
.footer-contact-text a:hover { color: var(--gold); text-decoration: none; }
.footer-bottom {
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom__copy  { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-bottom__legal { display: flex; gap: 1.25rem; }
.footer-bottom__legal a { font-size: 12px; color: rgba(255,255,255,0.2); transition: color var(--t-fast); }
.footer-bottom__legal a:hover { color: rgba(255,255,255,0.5); text-decoration: none; }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ══════════════════════════════════════════════════
   28. WHATSAPP FLOAT
══════════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: var(--z-float);
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.wa-float__tooltip {
  background: var(--white); color: var(--gray-900);
  font-size: 13px; font-weight: 500;
  padding: 7px 14px; border-radius: 20px;
  box-shadow: var(--shadow-lg); white-space: nowrap;
  animation: slide-up-fade 0.4s var(--ease-out) 1.5s both;
}
.wa-float__btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--t-base) var(--ease-spring), box-shadow var(--t-base);
  animation: slide-up-fade 0.4s var(--ease-out) 1.2s both;
}
.wa-float__btn:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,0.5); color: #fff; text-decoration: none; }

/* ══════════════════════════════════════════════════
   29. PAGINATION & MISC
══════════════════════════════════════════════════ */
.uw-pagination { display: flex; justify-content: center; gap: 6px; padding: 3rem 0 1rem; }
.uw-pagination a, .uw-pagination span {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 500; text-decoration: none;
  border: 0.5px solid var(--border); color: var(--gray-600);
  transition: all var(--t-base);
}
.uw-pagination a:hover { border-color: var(--purple); color: var(--purple); }
.uw-pagination .current { background: var(--purple); color: #fff; border-color: var(--purple); }

/* 404 */
.page-404 { text-align: center; padding: clamp(6rem, 12vw, 10rem) 1.5rem; }
.page-404__num { font-family: 'Cormorant Garamond', serif; font-size: clamp(100px, 20vw, 180px); font-weight: 700; color: var(--gray-100); line-height: 1; }
.page-404 h2 { margin-bottom: 1rem; }
.page-404 p  { max-width: 380px; margin: 0 auto 2rem; }

/* Dividers */
.divider { height: 0.5px; background: var(--border); margin: 3rem 0; }
.divider--gold { background: linear-gradient(90deg, transparent, rgba(212,168,84,0.3), transparent); }

/* Shimmer loading effect for numbers */
.shimmer-text {
  background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmer 1.5s linear infinite;
}

/* WordPress core alignment */
.alignleft   { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright  { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.aligncenter { display: block; margin: 1rem auto; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.wp-caption-text { font-size: 12px; color: var(--gray-400); text-align: center; margin-top: 6px; }
