
/* =============================================================
   DESIGN TOKENS - Lenity-faithful palette + EMOȚII brand
============================================================= */
:root {
  --primary: #F58220;
  --primary-hover: #DF6F0E;
  --primary-soft: #FFE9D2;
  --secondary: #7FBA42;
  --accent: #FFC107;
  --dark: #0F1A2E;
  --dark-soft: #1B2942;
  --cream: #FFF8F0;
  --cream-soft: #FDF2E2;
  --cream-deep: #F8EBD5;
  --text: #1A1A1A;
  --text-soft: #2C2C2C;
  --muted: #6B7280;
  --muted-soft: #9CA3AF;
  --border: #E5E7EB;
  --border-soft: #F1F2F4;
  --bg: #FFFFFF;
  --bg-card: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 24px 48px rgba(0,0,0,.12);
  --shadow-xl: 0 32px 64px -12px rgba(15,26,46,.25);
  --t-fast: 150ms;
  --t-base: 300ms;
  --t-slow: 500ms;
}
/* =============================================================
   BASE & TYPOGRAPHY
============================================================= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); transition: background-color var(--t-base), color var(--t-base); line-height: 1.7; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; font-weight: 700; letter-spacing: -.025em; line-height: 1.15; color: var(--text); }
h1 em, h2 em, h3 em { font-style: italic; color: var(--primary); }
.lucide { width: 1em; height: 1em; display: inline-block; }
::selection { background: var(--primary); color: white; }

/* =============================================================
   BUTTONS - all states (default/hover/active/focus/disabled)
============================================================= */
.btn { display:inline-flex; align-items:center; justify-content: center; gap:.625rem; padding:.95rem 1.85rem; border-radius:.625rem; font-weight:600; transition: all var(--t-base) ease; cursor: pointer; border: 2px solid transparent; font-size: .95rem; font-family: 'Inter'; min-height: 48px; text-decoration: none; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(245,130,32,.55); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:focus-visible { outline: 3px solid #FFD580; outline-offset: 3px; }
.btn-primary:disabled { background: var(--muted-soft); cursor: not-allowed; transform: none; box-shadow: none; }
.btn-outline { background: transparent; border-color: currentColor; }
.btn-outline:hover { background: var(--primary); border-color: var(--primary); color: white; transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.12); color: white; backdrop-filter: blur(10px); border-color: rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.55); transform: translateY(-2px); }
.btn-dark { background: var(--dark); color: white; }
.btn-dark:hover { background: var(--primary); transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(245,130,32,.4); }
.btn-pill { border-radius: 999px; }
.btn-sm { padding: .55rem 1.15rem; font-size: .825rem; min-height: 38px; }
.btn-lg { padding: 1.15rem 2.25rem; font-size: 1.05rem; min-height: 56px; }
.btn-loading { position: relative; pointer-events: none; opacity: .8; }
.btn-loading::after { content:""; position: absolute; right: 1rem; width: 14px; height: 14px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: spin 700ms linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* =============================================================
   COMPONENTS
============================================================= */
.muted { color: var(--muted); }
.muted-soft { color: var(--muted-soft); }
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 1.25rem; transition: all .4s ease; overflow: hidden; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }
.card-image { overflow: hidden; }
.card-image img { transition: transform .7s ease; width: 100%; height: 100%; object-fit: cover; }
.card:hover .card-image img { transform: scale(1.08); }
.skip-link { position:absolute; left:-9999px; top:0; padding:.5rem 1rem; background: var(--primary); color:white; z-index: 100; border-radius: 0 0 .5rem 0; font-weight: 600; }
.skip-link:focus { left: 0; top: 0; }
.eyebrow { display:inline-flex; align-items:center; gap:.625rem; font-size:.75rem; font-weight:700; letter-spacing:.22em; text-transform:uppercase; color: var(--primary); margin-bottom: 1rem; font-family:'Inter'; }
.eyebrow::before { content:""; width: 32px; height: 2px; background: var(--primary); display: inline-block; }
.eyebrow-center { justify-content: center; }
.fade-up { opacity: 0; transform: translateY(28px); transition: all .9s cubic-bezier(.22,.61,.36,1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Lenity-style slide-in animations */
.slide-in-left { opacity: 0; transform: translateX(-60px); transition: all .9s cubic-bezier(.16,1,.3,1); }
.slide-in-left.visible { opacity: 1; transform: translateX(0); }
.slide-in-right { opacity: 0; transform: translateX(60px); transition: all .9s cubic-bezier(.16,1,.3,1); }
.slide-in-right.visible { opacity: 1; transform: translateX(0); }
.slide-up { opacity: 0; transform: translateY(50px); transition: all .8s cubic-bezier(.16,1,.3,1); }
.slide-up.visible { opacity: 1; transform: translateY(0); }
.scale-in { opacity: 0; transform: scale(.92); transition: all .7s cubic-bezier(.16,1,.3,1); }
.scale-in.visible { opacity: 1; transform: scale(1); }
.stagger-100 { transition-delay: .1s; }
.stagger-200 { transition-delay: .2s; }
.stagger-300 { transition-delay: .3s; }
.stagger-400 { transition-delay: .4s; }
.stagger-500 { transition-delay: .5s; }
.counter { font-variant-numeric: tabular-nums; }
input, select, textarea { background: var(--bg); color: var(--text); border: 1.5px solid var(--border); transition: border var(--t-fast), box-shadow var(--t-fast); font-family: 'Inter'; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(245,130,32,.15); }
input:invalid:not(:placeholder-shown) { border-color: #EF4444; }
.field-error { color: #EF4444; font-size: .8rem; margin-top: .35rem; display: none; }

/* =============================================================
   DECORATIVE - Lenity rainbow strip, overlays, curves
============================================================= */
.rainbow { height: 4px; background: linear-gradient(90deg, #FF6B6B, #F58220, #FFC107, #7FBA42, #2196F3, #7B61FF, #E63946); }
.hero-overlay { background: linear-gradient(115deg, rgba(15,26,46,.88) 0%, rgba(15,26,46,.62) 50%, rgba(245,130,32,.32) 100%); }
.section-band { background: var(--cream); }
.section-band-soft { background: var(--cream-soft); }

/* Lenity decorative orange shape behind imagery */
.deco-shape { position: absolute; background: var(--primary); border-radius: 50% 40% 60% 50% / 50% 60% 40% 50%; opacity: .12; z-index: -1; }
.deco-dots { background-image: radial-gradient(currentColor 1.5px, transparent 1.5px); background-size: 20px 20px; opacity: .12; color: var(--primary); }

/* Lenity play button + ring pulse */
.play-btn { width: 86px; height: 86px; border-radius: 50%; background: rgba(255,255,255,.18); border: 2px solid rgba(255,255,255,.45); display: inline-flex; align-items: center; justify-content: center; color: white; backdrop-filter: blur(10px); transition: all var(--t-base); cursor: pointer; position: relative; }
.play-btn::before { content:""; position: absolute; inset: -10px; border-radius: 50%; border: 2px solid rgba(255,255,255,.3); animation: pulseRing 2.4s infinite; }
.play-btn::after { content:""; position: absolute; inset: -18px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); animation: pulseRing 2.4s infinite; animation-delay: .6s; }
.play-btn:hover { background: var(--primary); border-color: var(--primary); transform: scale(1.08); }
@keyframes pulseRing { 0%{ transform:scale(.95); opacity:.7;} 70%{transform:scale(1.25); opacity:0;} 100%{transform:scale(1.25); opacity:0;} }

/* Lenity image overlay tile - title slides up on hover */
.overlay-tile { position: relative; overflow: hidden; border-radius: 1.25rem; aspect-ratio: 4/5; }
#gallery-grid .overlay-tile { cursor: zoom-in; }

/* Lightbox modal */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(15, 26, 46, .92); display: none; align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 3rem); opacity: 0; transition: opacity .25s ease; backdrop-filter: blur(8px); }
.lightbox.is-open { display: flex; opacity: 1; }
.lightbox-img { max-width: 92vw; max-height: 85vh; border-radius: 1rem; box-shadow: 0 30px 80px rgba(0,0,0,.6); transform: scale(.96); transition: transform .3s cubic-bezier(.16,1,.3,1); object-fit: contain; background: #0F1A2E; }
.lightbox.is-open .lightbox-img { transform: scale(1); }
.lightbox-caption { position: absolute; bottom: clamp(1rem, 3vw, 2.5rem); left: 50%; transform: translateX(-50%); color: white; text-align: center; max-width: 80vw; }
.lightbox-caption .cap-cat { display: inline-block; padding: .25rem .85rem; background: var(--primary); color: white; font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; border-radius: 999px; margin-bottom: .5rem; }
.lightbox-caption .cap-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; }
.lightbox-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border-radius: 999px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: white; display: grid; place-items: center; cursor: pointer; transition: all .2s ease; }
.lightbox-btn:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-50%) scale(1.05); }
.lightbox-prev { left: clamp(.5rem, 2vw, 1.5rem); }
.lightbox-next { right: clamp(.5rem, 2vw, 1.5rem); }
.lightbox-close { position: absolute; top: clamp(.75rem, 2vw, 1.5rem); right: clamp(.75rem, 2vw, 1.5rem); width: 48px; height: 48px; border-radius: 999px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: white; display: grid; place-items: center; cursor: pointer; transform: none; transition: all .2s ease; }
.lightbox-close:hover { background: #FF6B6B; border-color: #FF6B6B; transform: rotate(90deg); }
.lightbox-counter { position: absolute; top: clamp(.75rem, 2vw, 1.5rem); left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: .85rem; font-weight: 600; letter-spacing: .1em; }
body.lightbox-open { overflow: hidden; }
@media (max-width: 640px) { .lightbox-btn { width: 44px; height: 44px; } .lightbox-caption .cap-title { font-size: 1.1rem; } }
.overlay-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
#gallery-grid .overlay-tile:hover img { transform: scale(1.1); }
.overlay-tile .overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(15,26,46,.92) 100%); display: flex; align-items: flex-end; padding: 2rem; transition: all .5s ease; }
#gallery-grid .overlay-tile:hover .overlay { background: linear-gradient(180deg, rgba(15,26,46,.15) 0%, rgba(245,130,32,.92) 100%); }
.overlay-tile .overlay-content { color: white; transform: translateY(8px); transition: transform .5s; }
#gallery-grid .overlay-tile:hover .overlay-content { transform: translateY(-4px); }
.overlay-tile .overlay-cat { display: inline-block; padding: .25rem .75rem; background: var(--primary); color: white; font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; border-radius: 999px; margin-bottom: .75rem; transition: background .3s; }
#gallery-grid .overlay-tile:hover .overlay-cat { background: white; color: var(--primary); }

/* Donut chart */
.donut { width: 240px; height: 240px; border-radius: 50%; background: conic-gradient(var(--primary) 0 80%, #2196F3 80% 95%, var(--secondary) 95% 100%); display: grid; place-items: center; position: relative; box-shadow: 0 20px 40px -16px rgba(245,130,32,.4); }
.donut::after { content:""; width: 62%; height: 62%; background: var(--bg-card); border-radius: 50%; position: absolute; }
.donut-center { z-index: 1; text-align: center; }
.legend-dot { width: 14px; height: 14px; border-radius: 4px; flex-shrink: 0; }

/* Gallery filter pills */
.filter-pill { padding: .6rem 1.25rem; border-radius: 999px; font-size: .85rem; font-weight: 600; background: transparent; border: 1.5px solid var(--border); color: var(--text); cursor: pointer; transition: all var(--t-base); }
.filter-pill:hover { border-color: var(--primary); color: var(--primary); }
.filter-pill.active { background: var(--primary); border-color: var(--primary); color: white; box-shadow: 0 10px 22px -8px rgba(245,130,32,.55); }

/* Steps - icon-driven (no AI photos) */
.step-icon {
  width: 140px; height: 140px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: grid; place-items: center;
  color: var(--primary);
  background: var(--cream-soft);
  border: 1.5px dashed var(--primary);
  position: relative;
  transition: all .5s cubic-bezier(.16,1,.3,1);
}
.step-icon::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--bg);
  transition: all .5s cubic-bezier(.16,1,.3,1);
  z-index: 0;
}
.step-icon > i,
.step-icon > svg {
  position: relative;
  z-index: 2;
  color: var(--primary);
  transition: all .5s cubic-bezier(.16,1,.3,1);
}
.step:hover .step-icon {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-6px) rotate(-3deg);
  box-shadow: 0 16px 32px -12px rgba(245,130,32,.45);
}
.step:hover .step-icon::before { background: rgba(255,255,255,.18); }
.step:hover .step-icon > i,
.step:hover .step-icon > svg { color: white; transform: scale(1.1); }

.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: grid; place-items: center;
  font-family: 'Playfair Display';
  font-weight: 800;
  font-size: 1.15rem;
  color: white;
  position: relative;
  margin: -32px auto 1rem;
  box-shadow: 0 8px 20px rgba(245,130,32,.45);
  border: 3px solid var(--bg);
  transition: all var(--t-slow);
  z-index: 2;
}
.step:hover .step-num { transform: scale(1.15) rotate(-8deg); }

/* Testimonial quote mark */
.testimonial { position: relative; padding-top: 4rem; }
.testimonial::before { content:"\201C"; font-family: 'Playfair Display'; font-size: 9rem; line-height: .6; color: var(--primary); opacity: .18; position: absolute; top: 1.5rem; left: 1.75rem; }

/* Donate tabs */
.donate-tab { padding: .85rem 1.15rem; border-radius: .65rem; border: 2px solid var(--border); background: var(--bg); color: var(--text); font-weight: 600; font-size: .875rem; cursor: pointer; transition: all var(--t-base); display:inline-flex; align-items:center; gap:.5rem; }
.donate-tab:hover { border-color: var(--primary); color: var(--primary); }
.donate-tab.active { border-color: var(--primary); background: rgba(245,130,32,.1); color: var(--primary); }
.donate-pane { display: none; }
.donate-pane.active { display: block; animation: fadeIn .35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.amount-btn { padding: 1rem .5rem; border: 2px solid var(--border); background: var(--bg); border-radius: .75rem; font-weight: 700; font-size: 1.05rem; cursor: pointer; transition: all var(--t-base); color: var(--text); }
.amount-btn:hover { border-color: var(--primary); color: var(--primary); }
.amount-btn.active { background: var(--primary); border-color: var(--primary); color: white; box-shadow: 0 12px 22px -10px rgba(245,130,32,.55); }
.freq-radio { display: flex; gap: .75rem; }
.freq-radio label { flex: 1; padding: .85rem 1rem; border: 2px solid var(--border); border-radius: .65rem; cursor: pointer; font-weight: 600; text-align: center; transition: all var(--t-base); }
.freq-radio input { position: absolute; opacity: 0; }
.freq-radio input:checked + label { border-color: var(--primary); background: rgba(245,130,32,.08); color: var(--primary); }

/* Numbered features list (Why Choose Us) */
.feature-num { width: 60px; height: 60px; border-radius: .85rem; background: var(--cream-soft); display: grid; place-items: center; font-family: 'Playfair Display'; font-weight: 800; font-size: 1.5rem; color: var(--primary); flex-shrink: 0; transition: all var(--t-base); }
.feature-item:hover .feature-num { background: var(--primary); color: white; transform: rotate(-5deg) scale(1.08); }

/* Marquee partners */
.partner-logo { filter: grayscale(1); opacity: .55; transition: all var(--t-base); padding: 1.25rem 1.5rem; }
.partner-logo:hover { filter: grayscale(0); opacity: 1; transform: scale(1.05); }

/* Curved divider top */
.curve-bottom { position: relative; }
.curve-bottom::after { content:""; position: absolute; bottom: -1px; left: 0; right: 0; height: 80px; background: var(--bg); border-radius: 50% 50% 0 0 / 100% 100% 0 0; }

/* Decorative numbered side cards in hero */
.hero-side-card { background: rgba(255,255,255,.1); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.2); border-radius: 1.1rem; padding: 1.25rem 1.5rem; transition: all var(--t-base); }
.hero-side-card:hover { background: rgba(245,130,32,.85); border-color: rgba(245,130,32,1); transform: translateX(-6px); }
.hero-side-num { font-family: 'Playfair Display'; font-weight: 800; font-size: 2.5rem; color: var(--accent); line-height: 1; }
.hero-side-card:hover .hero-side-num { color: white; }

/* Trust badge */
.trust-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem 1rem; background: rgba(127,186,66,.12); color: var(--secondary); border-radius: 999px; font-size: .8rem; font-weight: 600; }

/* Service card icon plate */
.service-icon { width: 84px; height: 84px; border-radius: 1.1rem; background: var(--cream-soft); display: grid; place-items: center; color: var(--primary); transition: all .5s; position: relative; overflow: hidden; }
.service-icon::after { content:""; position: absolute; inset: -50%; background: linear-gradient(45deg, var(--primary), var(--accent)); border-radius: 50%; transform: scale(0); transition: transform .6s; z-index: 0; }
.service-card:hover .service-icon::after { transform: scale(1); }
.service-icon i { position: relative; z-index: 1; transition: color .4s; }
.service-card:hover .service-icon i { color: white; }

/* Author/avatar */
.avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--primary); display: grid; place-items: center; color: white; font-weight: 700; font-family: 'Playfair Display'; font-size: 1.15rem; flex-shrink: 0; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .fade-up, .slide-in-left, .slide-in-right, .slide-up, .scale-in {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

/* =============================================================
   LENITY-STYLE TRANSPARENT HEADER over hero
============================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  background: transparent;
  transform: translateY(0);
  transition: transform 500ms cubic-bezier(.16,1,.3,1);
  color: white;
  will-change: transform;
  font-family: 'Manrope', 'Inter', sans-serif;
}
/* Stronger dark gradient at top for max readability on hero images */
.site-header::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(15,26,46,.78) 0%, rgba(15,26,46,.5) 50%, rgba(15,26,46,.15) 85%, transparent 100%);
  z-index: -1;
}
.site-header.hidden-up { transform: translateY(-120%); }
.site-header .nav-link {
  color: #ffffff;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: .005em;
  text-shadow: 0 2px 12px rgba(0,0,0,.6), 0 1px 3px rgba(0,0,0,.5);
  transition: color .3s ease;
  position: relative;
}
.site-header .nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--accent); border-radius: 2px;
  transform: scaleX(0); transform-origin: center;
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.site-header .nav-link:hover { color: var(--accent); }
.site-header .nav-link:hover::after { transform: scaleX(1); }
.site-header .nav-link[aria-current="page"] { color: var(--accent); }
.site-header .nav-link[aria-current="page"]::after { transform: scaleX(1); }
.site-header .logo-text {
  color: white;
  font-family: 'Manrope', 'Inter', sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.75rem !important;
  letter-spacing: -.015em !important;
  text-shadow: 0 2px 14px rgba(0,0,0,.55), 0 1px 4px rgba(0,0,0,.4);
}
.site-header .logo-sub {
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 6px rgba(0,0,0,.55), 0 1px 2px rgba(0,0,0,.4);
  font-weight: 600;
  font-family: 'Manrope', 'Inter', sans-serif;
}
.site-header .logo-svg { color: white; }
.site-header .mobile-toggle { color: white; filter: drop-shadow(0 1px 6px rgba(0,0,0,.55)); }

/* Spacer so content sits below fixed header */
.header-spacer { height: 0; }

/* Lenity-style animated arrow link */
.link-arrow { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--primary); position: relative; transition: color .3s; }
.link-arrow .arrow { display: inline-block; transition: transform .3s cubic-bezier(.16,1,.3,1); }
.link-arrow:hover .arrow { transform: translateX(6px); }
.link-arrow::after { content:""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1.5px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .35s cubic-bezier(.16,1,.3,1); }
.link-arrow:hover::after { transform: scaleX(1); transform-origin: left; }

/* Big number watermark behind section heading */
.section-watermark { position: relative; }
.section-watermark .watermark-num {
  position: absolute; top: -2.5rem; left: -1rem;
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: clamp(7rem, 14vw, 14rem); line-height: .8;
  color: var(--primary); opacity: .07; pointer-events: none;
  z-index: 0; letter-spacing: -.05em;
}
.section-watermark > *:not(.watermark-num) { position: relative; z-index: 1; }

/* Lenity numbered service-card (CHANGE 4) */
.pillar-card {
  position: relative; background: var(--bg-card); border: 1px solid var(--border); border-radius: 1.25rem;
  padding: 2.5rem 1.75rem 2rem; transition: all .45s cubic-bezier(.16,1,.3,1); overflow: hidden;
}
.pillar-card::before {
  content:""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 0%, var(--cream-soft) 100%);
  opacity: 0; transition: opacity .45s; z-index: 0;
}
.pillar-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); border-color: transparent; }
.pillar-card:hover::before { opacity: 1; }
.pillar-card > * { position: relative; z-index: 1; }
.pillar-num {
  font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.1rem;
  color: var(--primary); letter-spacing: .15em; margin-bottom: 1rem;
  display: inline-flex; align-items: center; gap: .5rem;
}
.pillar-num::after { content:""; width: 28px; height: 2px; background: var(--primary); display: inline-block; }
.pillar-icon {
  width: 76px; height: 76px; border-radius: 1.25rem; background: var(--cream-soft);
  display: grid; place-items: center; color: var(--primary); margin-bottom: 1.5rem;
  transition: all .5s cubic-bezier(.16,1,.3,1);
}
.pillar-card:hover .pillar-icon { background: var(--primary); color: white; transform: scale(1.08) rotate(-4deg); }

/* Lenity "About Us - United in compassion" layout: left image collage + right content */
.about-collage {
  position: relative;
  aspect-ratio: 1 / 1.32;
  width: 100%;
}
.about-collage-top, .about-collage-bottom {
  position: absolute;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 40px -16px rgba(15,26,46,.25);
  width: 72%;
  aspect-ratio: 4 / 5;
}
.about-collage-top {
  top: 0; left: -22%;
  z-index: 1;
}
.about-collage-bottom {
  bottom: 0; right: -4%;
  z-index: 2;
}
.about-collage-top img, .about-collage-bottom img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.about-collage:hover .about-collage-top img,
.about-collage:hover .about-collage-bottom img { transform: scale(1.04); }

.about-collage-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  color: white;
  width: 150px; height: 150px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 14px 36px rgba(245,130,32,.5);
  border: 6px solid var(--bg);
  z-index: 5;
  animation: float-soft 3s ease-in-out infinite;
}
@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.about-collage-badge-text {
  font-size: 0.78rem;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: .01em;
}
.about-collage-badge-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  margin-top: .25rem;
}

/* About - single feature (icon + title + description, Lenity-style) */
.about-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.about-feature-icon {
  flex-shrink: 0;
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  display: grid; place-items: center;
  color: var(--primary);
  transition: all .4s cubic-bezier(.16,1,.3,1);
}
.about-feature:hover .about-feature-icon {
  background: var(--primary);
  color: white;
  transform: rotate(-8deg) scale(1.08);
}
.about-feature-content h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.about-feature-content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* About - stat badge with portrait + number + label */
.about-stat-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  padding: .85rem 1.25rem .85rem .85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px -10px rgba(15,26,46,.12);
}
.about-stat-portrait {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Lenity "Building hope" 2-col layout - left feature list + right image collage */
.lenity-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.lenity-feature-icon {
  flex-shrink: 0;
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  background: transparent;
  display: grid; place-items: center;
  color: var(--primary);
  transition: all .4s cubic-bezier(.16,1,.3,1);
}
.lenity-feature:hover .lenity-feature-icon {
  background: var(--primary);
  color: white;
  transform: rotate(-8deg) scale(1.08);
}
.lenity-feature-content h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text);
  letter-spacing: -.01em;
}
.lenity-feature-content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Image collage (right side): big rounded rectangle + small overlapping circle + floating Donate pill */
.lenity-collage {
  position: relative;
  aspect-ratio: 1 / 1.05;
  width: 100%;
}
.lenity-collage-main {
  position: absolute;
  top: 0; right: 0;
  width: 80%; height: 78%;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(15,26,46,.25);
}
.lenity-collage-main img { width: 100%; height: 100%; object-fit: cover; }
.lenity-collage-circle {
  position: absolute;
  bottom: 0; left: 0;
  width: 48%; height: 48%;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid var(--bg);
  box-shadow: 0 24px 48px -12px rgba(15,26,46,.3);
}
.lenity-collage-circle img { width: 100%; height: 100%; object-fit: cover; }
.lenity-collage-cta {
  position: absolute;
  top: 1.75rem; left: 1.75rem;
  z-index: 10;
  background: var(--primary);
  color: white;
  width: 96px; height: 96px;
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .05em;
  box-shadow: 0 12px 30px rgba(245,130,32,.45);
  transition: all .4s cubic-bezier(.16,1,.3,1);
  animation: pulse-soft 2.5s ease-in-out infinite;
}
.lenity-collage-cta:hover {
  transform: scale(1.08) rotate(-6deg);
  background: var(--primary-hover);
}
@keyframes pulse-soft {
  0%, 100% { box-shadow: 0 12px 30px rgba(245,130,32,.45); }
  50% { box-shadow: 0 12px 40px rgba(245,130,32,.7); }
}

/* Lenity "Building hope" card with image header + floating number + icon plate */
.lenity-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all .45s cubic-bezier(.16,1,.3,1);
  display: flex;
  flex-direction: column;
}
.lenity-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.lenity-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.lenity-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.lenity-card:hover .lenity-card-image img { transform: scale(1.08); }
.lenity-card-num {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--primary); color: white;
  font-family: 'Playfair Display', serif; font-weight: 800;
  font-size: 1.5rem; line-height: 1;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(245,130,32,.4);
  z-index: 2;
}
.lenity-card-icon {
  position: absolute; bottom: -28px; right: 1.5rem;
  width: 64px; height: 64px;
  background: white;
  border-radius: 1rem;
  display: grid; place-items: center;
  color: var(--primary);
  box-shadow: 0 12px 28px rgba(15,26,46,.15);
  transition: all .5s cubic-bezier(.16,1,.3,1);
  z-index: 2;
}
.lenity-card:hover .lenity-card-icon {
  background: var(--primary);
  color: white;
  transform: rotate(-8deg) scale(1.08);
}
.lenity-card-body {
  padding: 2.75rem 1.75rem 2rem;
  flex: 1;
  display: flex; flex-direction: column;
}
.lenity-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--text);
  transition: color .3s;
}
.lenity-card:hover .lenity-card-body h3 { color: var(--primary); }
.lenity-card-body .link-arrow { margin-top: auto; align-self: flex-start; }

/* Section curve dividers (Lenity-style) */
.section-curve-top { position: relative; padding-top: 80px !important; }
.section-curve-top::before {
  content:""; position: absolute; top: -1px; left: 0; right: 0; height: 80px;
  background: var(--bg);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  z-index: 1;
}

/* Orange dot decoration overlay */
.dot-pattern { background-image: radial-gradient(var(--primary) 1.5px, transparent 1.5px); background-size: 22px 22px; opacity: .08; }

/* Subtle decorative orbs for white sections - visible but soft */
.bg-orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; filter: blur(60px); }
.bg-orb-sm { width: 260px; height: 260px; }
.bg-orb-md { width: 420px; height: 420px; }
.bg-orb-lg { width: 580px; height: 580px; }
.bg-orb-xl { width: 760px; height: 760px; filter: blur(90px); }

/* Outlined circles - geometric, visible */
.bg-circle { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.bg-circle-sm { width: 120px; height: 120px; }
.bg-circle-md { width: 220px; height: 220px; }
.bg-circle-lg { width: 360px; height: 360px; }
.bg-circle-outline { border: 1.5px solid var(--primary); opacity: .22; }
.bg-circle-outline-thick { border: 4px solid var(--primary); opacity: .15; }
.bg-circle-dashed { border: 1.5px dashed var(--primary); opacity: .35; }
.bg-circle-dotted { border: 2px dotted var(--primary); opacity: .35; }
.bg-circle-double { border: 1.5px solid var(--primary); box-shadow: 0 0 0 8px rgba(255,255,255,1), 0 0 0 10px var(--primary); opacity: .25; }
.bg-circle-filled { background: var(--primary); opacity: .08; }
.bg-circle-yellow { border-color: var(--accent); }
.bg-circle-mint { border-color: #7FBA42; }
.bg-circle-rose { border-color: #FF6B6B; }
.bg-circle-sky { border-color: #2196F3; }
.bg-circle-purple { border-color: #7B61FF; }

/* Solid filled circles - fully colored interiors */
.bg-circle-solid { opacity: .85; }
.bg-circle-solid.bg-circle-orange { background: var(--primary); border: none; }
.bg-circle-solid.bg-circle-yellow { background: var(--accent); border: none; }
.bg-circle-solid.bg-circle-mint { background: #7FBA42; border: none; }
.bg-circle-solid.bg-circle-rose { background: #FF6B6B; border: none; }
.bg-circle-solid.bg-circle-sky { background: #2196F3; border: none; }
.bg-circle-solid.bg-circle-purple { background: #7B61FF; border: none; }
.bg-circle-solid.bg-circle-peach { background: #FFB07A; border: none; }
/* Softer fills (medium opacity, still fully colored) */
.bg-circle-soft { opacity: .35; }
.bg-circle-soft.bg-circle-orange { background: var(--primary); border: none; }
.bg-circle-soft.bg-circle-yellow { background: var(--accent); border: none; }
.bg-circle-soft.bg-circle-mint { background: #7FBA42; border: none; }
.bg-circle-soft.bg-circle-rose { background: #FF6B6B; border: none; }
.bg-circle-soft.bg-circle-sky { background: #2196F3; border: none; }
.bg-circle-soft.bg-circle-peach { background: #FFB07A; border: none; }
/* Tinted fills - very subtle, fully colored interior (default global decoration) */
.bg-circle-tint { opacity: .07; }
.bg-circle-tint.bg-circle-orange { background: var(--primary); border: none; }
.bg-circle-tint.bg-circle-yellow { background: var(--accent); border: none; }
.bg-circle-tint.bg-circle-mint { background: #7FBA42; border: none; }
.bg-circle-tint.bg-circle-rose { background: #FF6B6B; border: none; }
.bg-circle-tint.bg-circle-sky { background: #2196F3; border: none; }
.bg-circle-tint.bg-circle-peach { background: #FFB07A; border: none; }
.bg-circle-tint.bg-circle-purple { background: #7B61FF; border: none; }

/* Color variants - subtle, very lightly visible */
.bg-orb-orange { background: radial-gradient(circle, var(--primary) 0%, transparent 70%); opacity: .22; }
.bg-orb-orange-soft { background: var(--primary); opacity: .12; }
.bg-orb-yellow { background: radial-gradient(circle, var(--accent) 0%, transparent 70%); opacity: .20; }
.bg-orb-rose { background: radial-gradient(circle, #FF6B6B 0%, transparent 70%); opacity: .18; }
.bg-orb-peach { background: radial-gradient(circle, #FFB088 0%, transparent 70%); opacity: .26; }
.bg-orb-mint { background: radial-gradient(circle, #7FBA42 0%, transparent 70%); opacity: .14; }
.bg-orb-sky { background: radial-gradient(circle, var(--secondary) 0%, transparent 70%); opacity: .12; }

/* Make section content stay above orbs */
section > div, section > article { position: relative; z-index: 1; }

/* Mobile fine-tuning */
@media (max-width: 768px) {
  .donut { width: 200px; height: 200px; }
  h1 { font-size: 2.75rem !important; }
  h2 { font-size: 2rem !important; }
  .testimonial::before { font-size: 6rem; }
  .section-watermark .watermark-num { font-size: 6rem; top: -1.5rem; }
}

/* Article body typography (single article page) */
.article-body { max-width: 720px; margin: 0 auto; }
.article-body p { font-size: 1.0625rem; line-height: 1.8; margin-bottom: 1.5rem; color: var(--text); }
.article-body .lead { font-size: 1.25rem; line-height: 1.7; color: var(--text-soft); margin-bottom: 2rem; font-weight: 500; }
.article-body h2 { font-family: 'Playfair Display'; font-weight: 800; font-size: 1.875rem; margin-top: 3rem; margin-bottom: 1.25rem; line-height: 1.25; letter-spacing: -.02em; }
.article-body h3 { font-family: 'Playfair Display'; font-weight: 700; font-size: 1.5rem; margin-top: 2.25rem; margin-bottom: 1rem; line-height: 1.3; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.article-body li { font-size: 1.0625rem; line-height: 1.7; margin-bottom: .5rem; }
.article-body blockquote { border-left: 4px solid var(--primary); padding: .75rem 1.5rem; margin: 2rem 0; font-family: 'Playfair Display'; font-style: italic; font-size: 1.35rem; line-height: 1.5; color: var(--text); background: var(--cream-soft); border-radius: 0 .75rem .75rem 0; }
.article-body figure { margin: 2.5rem 0; }
.article-body figure img { width: 100%; border-radius: .85rem; }
.article-body figcaption { font-size: .85rem; color: var(--muted); text-align: center; margin-top: .75rem; font-style: italic; }
.article-body a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.article-body strong { font-weight: 700; color: var(--text); }
.article-share { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; padding: 1.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 2.5rem 0; max-width: 720px; margin-left: auto; margin-right: auto; }
.article-share-btn { display: inline-flex; align-items: center; gap: .5rem; padding: .55rem 1rem; border: 1.5px solid var(--border); border-radius: 999px; font-size: .85rem; font-weight: 600; color: var(--text); background: transparent; cursor: pointer; transition: all .25s ease; text-decoration: none; }
.article-share-btn:hover { background: var(--primary); border-color: var(--primary); color: white; transform: translateY(-2px); }
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .85rem; color: rgba(255,255,255,.75); margin-bottom: 1.25rem; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.9); transition: color .2s; text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: rgba(255,255,255,.4); }

/* Timeline (for Despre noi page) */
.timeline { position: relative; list-style: none; padding: 0; margin: 0; }
.timeline::before { content: ""; position: absolute; left: 50px; top: 12px; bottom: 12px; width: 2px; background: var(--border); }
.timeline-item { position: relative; padding-left: 130px; padding-bottom: 3rem; min-height: 70px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker { position: absolute; left: 0; top: 0; width: 100px; height: 56px; background: var(--primary); color: white; border-radius: 999px; display: grid; place-items: center; font-weight: 800; font-family: 'Playfair Display'; font-size: 1.15rem; z-index: 1; box-shadow: 0 8px 24px -8px rgba(245,130,32,.5); }
.timeline-content { padding-top: .5rem; }
.timeline-content h3 { font-family: 'Playfair Display'; font-weight: 700; }
@media (max-width: 640px) { .timeline::before { left: 28px; } .timeline-item { padding-left: 80px; } .timeline-marker { width: 64px; height: 42px; font-size: .9rem; } }

/* Custom focus visible */
a:focus-visible, button:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; border-radius: 4px; }

/* Newsletter form on dark */
.input-dark { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: white; }
.input-dark::placeholder { color: rgba(255,255,255,.5); }
.input-dark:focus { background: rgba(255,255,255,.12); border-color: var(--primary); box-shadow: 0 0 0 4px rgba(245,130,32,.2); }

/* =============================================================
   RESPONSIVE / MOBILE — added in mobile refactor
============================================================= */

/* Prevent any horizontal scroll on any device */
html, body { overflow-x: hidden; max-width: 100vw; }

/* Override any on headings (causes overflow) */
h1.whitespace-nowrap, h2.whitespace-nowrap, h3.whitespace-nowrap { white-space: normal !important; }

/* Mobile nav drawer */
.mobile-nav { position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 88vw); background: var(--dark); transform: translateX(100%); transition: transform .3s cubic-bezier(.16,1,.3,1); z-index: 60; padding: 5rem 1.5rem 2rem; overflow-y: auto; box-shadow: -20px 0 50px rgba(0,0,0,.3); }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-backdrop { position: fixed; inset: 0; background: rgba(15,26,46,.7); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 55; }
.mobile-nav-backdrop.open { opacity: 1; pointer-events: auto; }
.mobile-nav-close { position: absolute; top: 1rem; right: 1rem; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1); border: 0; color: white; cursor: pointer; display: grid; place-items: center; transition: all .2s; }
.mobile-nav-close:hover { background: rgba(255,255,255,.18); transform: rotate(90deg); }
.mobile-nav-brand { display: flex; align-items: center; gap: .75rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 1rem; }
.mobile-nav-brand-text { font-family: 'Playfair Display'; font-weight: 800; font-size: 1.25rem; color: white; }
.mobile-nav-brand-sub { font-size: 10px; color: rgba(255,255,255,.6); letter-spacing: .15em; text-transform: uppercase; }
.mobile-nav-link { display: flex; align-items: center; gap: .75rem; color: white; padding: 1rem 0; font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,.08); transition: color .2s; text-decoration: none; }
.mobile-nav-link:hover { color: var(--accent); }
.mobile-nav-link.active { color: var(--accent); }
.mobile-nav-cta { margin-top: 1.5rem; }
.mobile-nav-cta .btn { width: 100%; justify-content: center; }
body.mobile-nav-open { overflow: hidden; }

/* ===== Mobile (< 768px) layout tweaks ===== */
@media (max-width: 768px) {
  /* Reduce big vertical padding on sections */
  section.py-24, section.md\:py-32, [class*="py-24"], [class*="md:py-32"] { padding-top: 3rem !important; padding-bottom: 3rem !important; }
  section.py-20, section.md\:py-24, [class*="py-20"], [class*="md:py-24"] { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }

  /* Smaller hero padding */
  .pt-40, .pt-44, .pt-48, .md\:pt-44, .md\:pt-48, .md\:pt-52 { padding-top: 7rem !important; }
  .pb-20, .pb-32, .pb-44, .md\:pb-24, .md\:pb-44 { padding-bottom: 2.5rem !important; }

  /* Heading sizes */
  h1 { font-size: 2rem !important; line-height: 1.2 !important; }
  h2 { font-size: 1.625rem !important; line-height: 1.25 !important; }
  h3 { font-size: 1.25rem !important; line-height: 1.3 !important; }

  /* Override huge tailwind text utilities used in hero */
  .text-6xl, .text-5xl, .text-4xl, [class*="text-[3"], [class*="text-[4"], [class*="text-[5"] { font-size: clamp(1.75rem, 7vw, 2.25rem) !important; line-height: 1.2 !important; }
  .md\:text-6xl, .md\:text-5xl, .md\:text-4xl { font-size: clamp(1.75rem, 7vw, 2.25rem) !important; }
  .text-3xl { font-size: 1.5rem !important; }

  /* Stats numbers smaller */
  .stat-value, [data-target] { font-size: 2rem !important; }
  .text-4xl.font-bold, .text-5xl.font-bold { font-size: 1.75rem !important; }

  /* Lead paragraph */
  .text-lg.md\:text-xl { font-size: 1rem !important; }

  /* Buttons full-width if flex wraps */
  .btn-lg { font-size: .9rem !important; padding: .75rem 1.25rem !important; }

  /* Watermarks */
  .section-watermark .watermark-num { font-size: 5rem !important; top: -1rem !important; }
  .testimonial::before { font-size: 5rem !important; }

  /* Hero specific */
  section[style*="min-height: 78vh"] { min-height: 70vh !important; }
  section[style*="min-height: 60vh"] { min-height: 50vh !important; }

  /* About collage on mobile - simplify */
  .about-collage { aspect-ratio: 1/1.15 !important; max-width: 380px; margin: 0 auto; }
  .about-collage-top, .about-collage-bottom { width: 78% !important; }
  .about-collage-top { left: -10% !important; }
  .about-collage-bottom { right: -6% !important; }
  .about-collage-badge { padding: .85rem !important; }

  /* Don't show decorative numbered side cards */
  .hero-side-num, .hero-side-card { display: none !important; }

  /* Lenity collage */
  .lenity-collage { aspect-ratio: 1/1.15 !important; max-width: 380px; margin: 0 auto; }
  .lenity-collage-cta { width: 110px !important; height: 110px !important; font-size: .9rem !important; }
  .lenity-collage-circle { width: 130px !important; height: 130px !important; }

  /* Cards padding smaller on mobile */
  .card.p-8, .card.md\:p-10, .card.md\:p-12 { padding: 1.25rem !important; }

  /* Article body */
  .article-body .lead { font-size: 1.05rem !important; }
  .article-body p { font-size: .975rem !important; }
  .article-body h2 { font-size: 1.5rem !important; margin-top: 2rem !important; }
  .article-body blockquote { font-size: 1.1rem !important; padding: .5rem 1rem !important; }

  /* Container padding */
  .max-w-7xl, .max-w-6xl, .max-w-5xl, .max-w-4xl { padding-left: 1rem !important; padding-right: 1rem !important; }

  /* Donation form tabs */
  .donate-tab { font-size: .75rem !important; padding: .5rem .75rem !important; }

  /* Filter pills wrap better */
  .filter-pill { font-size: .75rem !important; padding: .35rem .75rem !important; }

  /* Image collage on About */
  .about-stat-badge { flex-direction: column !important; align-items: flex-start !important; }
  .about-stat-portrait { width: 48px !important; height: 48px !important; }

  /* Footer */
  footer .grid.lg\:grid-cols-4 { gap: 2rem !important; }
}

/* ===== Tiny mobile (< 480px) ===== */
@media (max-width: 480px) {
  h1 { font-size: 1.75rem !important; }
  h2 { font-size: 1.4rem !important; }
  .stat-value { font-size: 1.75rem !important; }
  section.py-24, section.md\:py-32 { padding-top: 2.25rem !important; padding-bottom: 2.25rem !important; }
  .max-w-7xl, .max-w-6xl, .max-w-5xl, .max-w-4xl { padding-left: .75rem !important; padding-right: .75rem !important; }
  .btn { padding: .55rem 1rem !important; font-size: .85rem !important; }

  /* Tighter form columns */
  .grid.md\:grid-cols-3, .grid.md\:grid-cols-4, .grid.lg\:grid-cols-3, .grid.lg\:grid-cols-4 { gap: .75rem !important; }
}


/* === Round 2: critical fixes + remaining mobile issues === */
@media (max-width: 768px) {
  /* Badge collage "Sprijinim copiii din 2013" - mult mai mic */
  .about-collage-badge { width: 110px !important; height: 110px !important; padding: .75rem !important; font-size: .75rem !important; line-height: 1.2 !important; border-width: 4px !important; }
  .about-collage-badge i, .about-collage-badge svg { width: 20px !important; height: 20px !important; }
  .about-collage-badge-text { font-size: .7rem !important; line-height: 1.2 !important; }

  /* Lenity collage CTA "Donează acum" - mult mai mic și mutat */
  .lenity-collage-cta { width: 88px !important; height: 88px !important; top: 1rem !important; left: 1rem !important; font-size: .72rem !important; line-height: 1.15 !important; padding: .5rem !important; }
  .lenity-collage-cta-inner { font-size: .72rem !important; }
  .lenity-collage-cta span.block { font-size: .8rem !important; }

  /* Transparency legend - flex-wrap pe mobile pentru % */
  .donut-section .flex.justify-between, ul li .flex.justify-between { flex-wrap: wrap !important; gap: .25rem !important; }

  /* Logo subtext pe ecrane foarte mici dispare */
  /* (păstrăm tracking redus general) */
  .logo-sub { letter-spacing: .12em !important; }

  /* Stats strip 2-col cu cell egal */
  .grid.grid-cols-2.lg\:grid-cols-4 { grid-auto-rows: 1fr !important; }

  /* Gallery overlay padding redus */
  .overlay-tile .overlay { padding: 1rem !important; }
  .overlay-tile .overlay-cat { font-size: .6rem !important; padding: .15rem .5rem !important; margin-bottom: .35rem !important; }
  .overlay-tile h4, .overlay-tile h3 { font-size: .85rem !important; }
  .overlay-tile .overlay-content p { font-size: .65rem !important; }

  /* Donation amount buttons - 4 cols pe mobile pentru aliniament mai bun */
  .grid.grid-cols-3.md\:grid-cols-5 { grid-template-columns: repeat(4, 1fr) !important; }
  .amount-btn { padding: .55rem !important; font-size: .85rem !important; }

  /* pillar-card și lenity-card-body - padding redus pe mobile */
  .pillar-card, .lenity-card-body { padding: 1.25rem !important; }

  /* iOS Safari fix pentru vh */
  section[style*="min-height: 78vh"] { min-height: 70svh !important; min-height: 70dvh !important; }
  section[style*="min-height: 60vh"] { min-height: 50svh !important; min-height: 50dvh !important; }
}

/* Tiny phones: ascunde subtext logo */
@media (max-width: 420px) {
  .logo-sub { display: none !important; }
}

/* Mid breakpoint: schimbă form 2-col să stack-eze sub 768px */
@media (max-width: 767px) {
  .grid.sm\:grid-cols-2.gap-4 { grid-template-columns: 1fr !important; gap: .85rem !important; }
}


/* Allow circles to flow freely between sections (override section overflow:hidden) */
@supports selector(:has(*)) {
  section:has(> .bg-circle) { overflow: visible !important; }
}

/* Hide circles inside sections with colored backgrounds (they hide behind the bg color) */
section.section-band > .bg-circle,
section.section-band-soft > .bg-circle,
section[style*="background: var(--dark)"] > .bg-circle,
section[style*="background: var(--primary)"] > .bg-circle,
section[style*="linear-gradient"] > .bg-circle { display: none !important; }

/* Force colored-bg sections to paint on top so they cover circles from adjacent transparent sections */
section.section-band,
section.section-band-soft,
section[style*="background: var(--dark)"],
section[style*="background: var(--primary)"],
section[style*="linear-gradient"] {
  position: relative;
  z-index: 2;
  isolation: isolate;
}
section.section-band, section.section-band-soft {
  background-color: var(--cream) !important;
}
section.section-band-soft {
  background-color: var(--cream-soft) !important;
}

/* === Big floating animation on decorative circles === */
@keyframes float-a { 0%,100%{transform:translate3d(0,0,0) rotate(0);} 50%{transform:translate3d(180px,-150px,0) rotate(15deg);} }
@keyframes float-b { 0%,100%{transform:translate3d(0,0,0) rotate(0);} 50%{transform:translate3d(-200px,130px,0) rotate(-12deg);} }
@keyframes float-c { 0%,100%{transform:translate3d(0,0,0) rotate(0);} 25%{transform:translate3d(140px,-110px,0) rotate(10deg);} 50%{transform:translate3d(60px,80px,0) rotate(-5deg);} 75%{transform:translate3d(-130px,40px,0) rotate(-15deg);} }
@keyframes float-d { 0%,100%{transform:translate3d(0,0,0) rotate(0);} 33%{transform:translate3d(-150px,-180px,0) rotate(12deg);} 66%{transform:translate3d(170px,100px,0) rotate(-8deg);} }
@keyframes float-e { 0%,100%{transform:translate3d(0,0,0) rotate(0);} 50%{transform:translate3d(220px,80px,0) rotate(20deg);} }
@keyframes float-f { 0%,100%{transform:translate3d(0,0,0) rotate(0);} 50%{transform:translate3d(-180px,-90px,0) rotate(-18deg);} }

.bg-circle { animation: float-a 14s ease-in-out infinite; will-change: transform; }
.bg-circle:nth-of-type(2n) { animation: float-b 18s ease-in-out infinite; animation-delay: -3s; }
.bg-circle:nth-of-type(3n) { animation: float-c 22s ease-in-out infinite; animation-delay: -6s; }
.bg-circle:nth-of-type(4n) { animation: float-d 16s ease-in-out infinite; animation-delay: -9s; }
.bg-circle:nth-of-type(5n) { animation: float-e 20s ease-in-out infinite; animation-delay: -12s; }
.bg-circle:nth-of-type(6n) { animation: float-f 17s ease-in-out infinite; animation-delay: -15s; }

@media (prefers-reduced-motion: reduce) {
  .bg-circle { animation: none !important; }
}

