/* ============================================================
   COME TOGETHER FOUNDATION — Global Stylesheet
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --clr-primary: #3B55D4;
  --clr-primary-hover: #2d43ba;
  --clr-accent: #4B6AFF;
  --clr-blue-light: #EEF2FF;
  --clr-text: #1a1a2e;
  --clr-text-muted: #6b7280;
  --clr-bg: #ffffff;
  --clr-bg-alt: #F8F9FC;
  --clr-border: #e5e7eb;
  --clr-white: #ffffff;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 76px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-sans); color: var(--clr-text); background: var(--clr-bg); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--clr-primary);
  color: var(--clr-white);
  border: 2px solid var(--clr-primary);
}
.btn--primary:hover {
  background: var(--clr-primary-hover);
  border-color: var(--clr-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(59, 85, 212, 0.35);
}
.btn--outline {
  background: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
}
.btn--outline:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
}
.btn--outline-light {
  background: rgba(255,255,255,0.12);
  color: var(--clr-white);
  border: 2px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.85);
}
.btn--lg { padding: 15px 32px; font-size: 1rem; border-radius: var(--radius-md); }
.btn--sm { padding: 8px 18px; font-size: 0.875rem; }
.btn--full { width: 100%; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { text-align: center; margin-bottom: 52px; }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1rem;
  color: var(--clr-text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  height: var(--nav-h);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar__logo { flex-shrink: 0; }
.navbar__brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.navbar__name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--clr-text);
  letter-spacing: -0.01em;
}
.navbar__location {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  font-weight: 400;
  margin-top: 1px;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar__link {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.navbar__link:hover,
.navbar__link.active {
  color: var(--clr-primary);
}
.navbar__cta { margin-left: 8px; }
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 6px;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  margin-top: var(--nav-h);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Photo collage background */
.hero__collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.hero__col {
  display: grid;
  grid-template-rows: 1fr 1fr;
}
.hero__img-wrap {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 50vh;
}

/* Overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 20, 60, 0.82) 0%,
    rgba(15, 20, 60, 0.65) 40%,
    rgba(15, 20, 60, 0.50) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 80px 24px;
}
.hero__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero__accent { color: #60A5FA; }
.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  padding: 72px 0;
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats__item {
  text-align: center;
  padding: 24px 16px;
  position: relative;
}
.stats__item + .stats__item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: var(--clr-border);
}
.stats__number {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--clr-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stats__plus {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--clr-primary);
}
.stats__label {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  margin-top: 8px;
  font-weight: 400;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 88px 0;
  background: var(--clr-bg-alt);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card__img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-card__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card__img { transform: scale(1.03); }
.service-card__icon {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 44px;
  height: 44px;
  background: var(--clr-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(59,85,212,0.35);
}
.service-card__icon--health { background: #E91E8C; box-shadow: 0 3px 12px rgba(233,30,140,0.35); }
.service-card__icon--edu { background: #3B55D4; }
.service-card__icon--relief { background: #3B55D4; }
.service-card__body { padding: 20px; }
.service-card__title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 8px;
}
.service-card__desc {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

/* ============================================================
   FEATURED STORY
   ============================================================ */
.story {
  padding: 96px 0;
  background: var(--clr-white);
}
.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story__img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story__img {
  width: 100%;
  height: 420px;
  background-size: cover;
  background-position: center;
}
.story__quote-icon { margin-bottom: 20px; }
.story__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.25;
  margin-bottom: 18px;
}
.story__body {
  font-size: 1rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.story__blockquote {
  background: var(--clr-blue-light);
  border-left: 4px solid var(--clr-primary);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--clr-text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  font-style: italic;
}

/* ============================================================
   DONATION SECTION
   ============================================================ */
.donate {
  padding: 88px 0;
  background: var(--clr-bg-alt);
}
.donate__card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: 40px 44px 44px;
  box-shadow: var(--shadow-md);
}
.donate__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--clr-bg-alt);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 30px;
}
.donate__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  transition: var(--transition);
  cursor: pointer;
}
.donate__tab--active {
  background: var(--clr-white);
  color: var(--clr-text);
  box-shadow: var(--shadow-sm);
}
.donate__badge {
  background: #EF4444;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}
.donate__amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}
.donate__amount {
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--clr-white);
}
.donate__amount:hover {
  border-color: var(--clr-primary);
  background: var(--clr-blue-light);
}
.donate__amount--selected {
  border-color: var(--clr-primary);
  background: var(--clr-blue-light);
  box-shadow: 0 0 0 1px var(--clr-primary);
}
.donate__amount-val {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--clr-text);
  margin-bottom: 4px;
}
.donate__amount-label {
  display: block;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  line-height: 1.3;
}
.donate__custom-input,
.donate__input {
  width: 100%;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--clr-text);
  background: var(--clr-white);
  transition: border-color 0.2s;
  margin-bottom: 14px;
  display: block;
}
.donate__custom-input:focus,
.donate__input:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(59,85,212,0.08);
}
.donate__input::placeholder, .donate__custom-input::placeholder { color: #9CA3AF; }
.donate__note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-top: 14px;
}

/* ============================================================
   EVENTS PREVIEW
   ============================================================ */
.events-preview {
  padding: 88px 0;
  background: var(--clr-white);
}
.events__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 44px;
}
.event-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.event-card__img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.event-card__img {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.event-card:hover .event-card__img { transform: scale(1.04); }
.event-card__date {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--clr-white);
  text-align: center;
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  box-shadow: var(--shadow-sm);
  min-width: 52px;
}
.event-card__day {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-primary);
  line-height: 1;
}
.event-card__month {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.event-card__body { padding: 22px; }
.event-card__tag {
  display: inline-block;
  background: var(--clr-blue-light);
  color: var(--clr-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.event-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 10px;
  line-height: 1.35;
}
.event-card__desc {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.event-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  margin-bottom: 16px;
}
.events__footer { text-align: center; }

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust {
  padding: 88px 0;
  background: var(--clr-bg-alt);
}
.trust__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.trust__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--clr-text);
  line-height: 1.25;
}
.trust__text {
  font-size: 0.96rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.trust__badges { display: flex; flex-direction: column; gap: 12px; }
.trust__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text);
}
.trust__badge-icon {
  width: 24px; height: 24px;
  background: #D1FAE5;
  color: #059669;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.trust__contact-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
}
.trust__contact-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 22px;
}
.trust__contact-items { display: flex; flex-direction: column; gap: 20px; }
.trust__contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.trust__contact-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.trust__contact-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}
.trust__contact-item p {
  font-size: 0.93rem;
  color: var(--clr-text);
  line-height: 1.55;
}
.trust__contact-item a {
  color: var(--clr-primary);
  transition: opacity 0.2s;
}
.trust__contact-item a:hover { opacity: 0.75; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0F172A;
  color: #CBD5E1;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 60px 24px 44px;
}
.footer__brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.footer__name {
  font-weight: 700;
  color: var(--clr-white);
  font-size: 1rem;
  margin-bottom: 4px;
}
.footer__tagline {
  font-size: 0.82rem;
  color: #64748B;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94A3B8;
  margin-bottom: 6px;
}
.footer__links a {
  font-size: 0.9rem;
  color: #CBD5E1;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--clr-white); }
.footer__contact { display: flex; flex-direction: column; gap: 6px; }
.footer__contact h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94A3B8;
  margin-bottom: 6px;
}
.footer__contact p, .footer__contact a {
  font-size: 0.88rem;
  color: #CBD5E1;
  transition: color 0.2s;
}
.footer__contact a:hover { color: var(--clr-white); }
.footer__bottom {
  border-top: 1px solid #1E293B;
  padding: 18px 24px;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom-inner p {
  font-size: 0.82rem;
  color: #64748B;
}

/* ============================================================
   STICKY DONATE BUTTON
   ============================================================ */
.sticky-donate {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: var(--clr-primary);
  color: var(--clr-white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 26px;
  border-radius: 50px;
  box-shadow: 0 8px 28px rgba(59,85,212,0.40);
  transition: var(--transition);
  transform: translateY(80px);
  opacity: 0;
}
.sticky-donate.visible {
  transform: translateY(0);
  opacity: 1;
}
.sticky-donate:hover {
  background: var(--clr-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(59,85,212,0.50);
}

/* ============================================================
   PLACEHOLDER IMAGES (gradient fallbacks)
   ============================================================ */
.hero__img-wrap:nth-child(1) { background-color: #1a2a4a; background-image: url('images/hero1.jpg'); }
.hero__img-wrap:nth-child(2) { background-color: #2a1a1a; background-image: url('images/hero2.jpg'); }
.hero__col--right .hero__img-wrap:nth-child(1) { background-color: #1a3a2a; background-image: url('images/hero3.jpg'); }
.hero__col--right .hero__img-wrap:nth-child(2) { background-color: #1a1a3a; background-image: url('images/hero4.jpg'); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .story__inner { grid-template-columns: 1fr; gap: 36px; }
  .trust__inner { grid-template-columns: 1fr; gap: 36px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item + .stats__item::before { display: none; }
  .events__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar__nav {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px;
    border-bottom: 1px solid var(--clr-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    gap: 4px;
  }
  .navbar__nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .navbar__link { padding: 12px 16px; border-radius: 8px; }
  .navbar__cta { margin-left: 0; margin-top: 8px; }
  .navbar__hamburger { display: flex; }

  .hero__heading { font-size: 2.1rem; }
  .hero__ctas { flex-direction: column; }
  .btn--lg { padding: 14px 24px; }

  .donate__card { padding: 28px 20px; }
  .donate__amounts { grid-template-columns: repeat(2, 1fr); }

  .services__grid { grid-template-columns: 1fr 1fr; }
  .events__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .services__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .donate__amounts { grid-template-columns: repeat(2, 1fr); }
  .story__img { height: 260px; }
  .sticky-donate { bottom: 16px; right: 16px; padding: 12px 20px; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__content > * {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}
.hero__heading { animation-delay: 0.2s; }
.hero__sub { animation-delay: 0.4s; }
.hero__ctas { animation-delay: 0.6s; }

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
