/* ── HOME PAGE ── */

/* HERO */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: flex-end; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(7,24,48,0.82) 0%, rgba(13,43,82,0.65) 60%, rgba(7,24,48,0.5) 100%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.04;
  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");
}
.hero-body {
  position: relative; z-index: 2;
  padding-top: 140px; padding-bottom: 120px;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 9vw, 8rem);
  font-weight: 600; line-height: 0.93;
  letter-spacing: -0.03em; color: #fff;
}
.hero-h1 em {
  font-style: italic; color: var(--yellow);
  display: block;
}
.hero-sub {
  max-width: 500px; color: rgba(255,255,255,0.76);
  font-size: 1.05rem; line-height: 1.65;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  position: relative; z-index: 2;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.stat { display: flex; flex-direction: column; align-items: center; padding: 1.35rem 3rem; }
.stat-n {
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 700;
  color: var(--navy-dark); line-height: 1;
  letter-spacing: -0.02em;
}
.stat-l {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(7,24,48,0.6); margin-top: 0.2rem;
}
.stat-rule { width: 1px; height: 44px; background: rgba(7,24,48,0.18); }

/* MISSION BAND */
.mission-band {
  background: var(--cream); padding: 6rem 0;
  border-bottom: 1px solid var(--border);
}
.mission-band .container { display: flex; flex-direction: column; align-items: center; gap: 2rem; text-align: center; }
.mission-quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-weight: 400; font-style: italic;
  color: var(--navy); line-height: 1.55;
  max-width: 820px;
}

/* PILLARS */
.pillars { background: var(--warm-gray); padding: 7rem 0; }
.pillars-header { margin-bottom: 3rem; }
.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pillar-card {
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pillar-img { height: 220px; overflow: hidden; }
.pillar-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.pillar-card:hover .pillar-img img { transform: scale(1.06); }
.pillar-body { padding: 1.75rem; }
.pillar-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.pillar-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 600;
  color: var(--navy); margin-bottom: 0.75rem;
}
.pillar-body p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* PHOTO STRIP */
.photo-strip {
  display: grid; grid-template-columns: repeat(5, 1fr);
  height: 280px; overflow: hidden;
}
.strip-img { overflow: hidden; }
.strip-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); filter: saturate(0.85); }
.strip-img:hover img { transform: scale(1.08); filter: saturate(1); }

/* HOME CTA */
.home-cta { background: var(--navy); padding: 6rem 0; }
.cta-box {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 4rem;
}
.cta-right p { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; }
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-box .section-title em { color: var(--yellow); }

@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: repeat(3, 1fr); height: 200px; }
  .photo-strip .strip-img:nth-child(n+4) { display: none; }
  .cta-box { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem; }
}
@media (max-width: 600px) {
  .stat { padding: 1rem 1.5rem; }
  .stat-n { font-size: 2rem; }
  .hero-h1 { font-size: 3.2rem; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .photo-strip .strip-img:nth-child(n+3) { display: none; }
}
