/* ============================================
   Home page — specific styles
   (Hero, Festival/Countdown, Testimonials, Initiatives,
   News, Photo strip, Aftermovie, Newsletter)
   ============================================ */

.hero {
  display: grid; grid-template-columns: 1.1fr 0.9fr; min-height: 620px;
  background: var(--navy);
}
.hero-left {
  padding: 90px 60px 70px 5vw; display: flex; flex-direction: column; justify-content: center; color: white;
}
.eyebrow {
  font-family: var(--ui); font-size: 13px; font-weight: 700; letter-spacing: 2px;
  color: var(--wave-l); text-transform: uppercase; margin-bottom: 18px;
}
.hero-left h1 { font-size: clamp(42px, 5.4vw, 72px); color: white; margin-bottom: 22px; }
.hero-left h1 .accent { color: var(--orange); }
.hero-copy {
  font-family: var(--serif); font-size: 19px; max-width: 480px; color: #DCE6F2; margin-bottom: 34px;
}
.hero-right {
  position: relative; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  overflow: hidden; padding: 40px;
}
.hero-right::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(127,196,232,0.15), transparent 40%),
    radial-gradient(circle at 75% 75%, rgba(242,151,29,0.12), transparent 45%);
}
.logo-stack { position: relative; width: 100%; max-width: 380px; }
.logo-card {
  background: white; border-radius: 20px; box-shadow: 0 24px 50px rgba(0,0,0,0.35);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.logo-card img { width: 100%; height: auto; display: block; border-radius: 6px; }
.card-1 { position: relative; width: 78%; z-index: 2; margin-left: auto; }
.card-2 {
  position: relative; width: 86%; margin-top: -60px; z-index: 1;
  transform: translateX(-8%);
}

/* ---- Festival / Countdown ---- */
.festival { background: var(--wave-d); color: white; }
.festival .section-label { color: var(--wave-l); }
.festival .section-title { color: white; }
.festival-copy { font-family: var(--serif); max-width: 560px; font-size: 18px; color: #D6E9F5; margin-bottom: 36px; }
.countdown { display: flex; gap: 18px; margin-bottom: 32px; flex-wrap: wrap; }
.count-box {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); border-radius: 10px;
  padding: 18px 24px; text-align: center; min-width: 92px;
}
.count-box .num { font-family: var(--display); font-size: 40px; font-weight: 700; }
.count-box .unit { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: #B7CFE3; }
.festival-note { font-size: 13px; color: #9FBBD3; font-style: italic; }

/* ---- Testimonials ---- */
.testimonials { background: var(--paper); }
.testi-track { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 900px) { .testi-track { grid-template-columns: 1fr; } }
.testi-card {
  background: var(--bg); border-radius: 14px; padding: 28px 26px;
  border-left: 5px solid var(--red);
}
.testi-card:nth-child(2) { border-left-color: var(--orange); }
.testi-card:nth-child(3) { border-left-color: var(--green); }
.testi-card:nth-child(4) { border-left-color: var(--navy); }
.testi-quote { font-family: var(--serif); font-style: italic; font-size: 16.5px; color: var(--charcoal); margin-bottom: 18px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--wave-l), var(--navy)); flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 14px; }
.testi-role { font-size: 12.5px; color: #7A828C; }

/* ---- Featured Initiatives ---- */
.initiatives { background: var(--bg); }
.init-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 30px; }
.init-card {
  background: var(--paper); border-radius: 14px; overflow: hidden; box-shadow: 0 8px 24px rgba(27,58,107,0.08);
}
.init-media { height: 130px; display: flex; align-items: center; justify-content: center; color: white; font-size: 12px; font-weight: 700; text-align: center; padding: 10px;}
.init-card:nth-child(1) .init-media { background: linear-gradient(135deg, var(--red), #a02323); }
.init-card:nth-child(2) .init-media { background: linear-gradient(135deg, var(--orange), #c76d0c); }
.init-card:nth-child(3) .init-media { background: linear-gradient(135deg, var(--green), #276b34); }
.init-card:nth-child(4) .init-media { background: linear-gradient(135deg, var(--navy), var(--navy-deep)); }
.init-body { padding: 18px; }
.init-body h4 { font-family: var(--ui); font-size: 15px; font-weight: 700; margin-bottom: 6px; text-transform: none; }
.init-body p { font-size: 13px; color: #6b7280; }
.link-more { font-size: 14px; font-weight: 700; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; }

/* ---- News & Get Involved ---- */
.news { background: var(--navy); color: white; }
.news .section-label { color: var(--wave-l); }
.news .section-title { color: white; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 34px; }
.news-card { background: rgba(255,255,255,0.06); border-radius: 12px; padding: 20px; border: 1px solid rgba(255,255,255,0.12); }
.news-date { font-size: 12px; color: var(--wave-l); font-weight: 700; letter-spacing: 1px; margin-bottom: 8px; }
.news-card h4 { font-family: var(--ui); font-size: 15.5px; font-weight: 700; margin-bottom: 8px; }
.news-card p { font-size: 13.5px; color: #C7D6E8; }

/* ---- Photo strip ---- */
.photo-strip { background: var(--paper); padding: 70px 0; }
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.photo-tile { aspect-ratio: 1; border-radius: 10px; overflow: hidden; position: relative; }
.photo-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-tile .cap {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 12px 8px;
  background: linear-gradient(0deg, rgba(0,0,0,0.65), transparent);
  color: white; font-size: 11.5px; font-weight: 600; line-height: 1.25;
}

/* ---- Aftermovie ---- */
.aftermovie { background: var(--bg); padding: 70px 0; }
.video-frame {
  max-width: 780px; margin: 0 auto; aspect-ratio: 16/9; border-radius: 14px;
  width: 100%; display: block; background: var(--navy-deep); object-fit: cover;
}

/* ---- Newsletter ---- */
.newsletter { background: var(--paper); text-align: center; padding: 80px 0; }
.newsletter h3 { font-size: 30px; color: var(--navy); margin-bottom: 10px; }
.newsletter p { font-family: var(--serif); color: #556; margin-bottom: 26px; }
.newsletter-form { display: flex; justify-content: center; gap: 10px; max-width: 440px; margin: 0 auto; flex-wrap: wrap;}
.newsletter-form input {
  flex: 1; min-width: 220px; padding: 13px 16px; border-radius: 7px; border: 1.5px solid #D3D9E0; font-family: var(--ui); font-size: 14px;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 320px; }
}
