/* ============================================================
   aboutus.css – page-specific styles for About Us page
   ============================================================ */

/* ── HERO BANNER ── */
.hero-banner {
    position: relative;
    height: 434px;
    margin-top: 71px;
    background: url('../images/about_banner.png') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
}

.hero-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.38) 100%);
}

.hero-banner-title {
  position: relative; z-index: 2;
  font-family: var(--font-serif);
  font-size: clamp(48px, 7vw, 90px);
  font-weight: 400;
  color: #fff;
  padding: 0 clamp(20px, 5vw, 200px) clamp(30px, 5vh, 60px);
  line-height: 1;
}

/* ── CONTENT WRAP ── */
.content-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

/* ── WHO WE ARE ── */
.who-section {
  padding: clamp(70px, 9vw, 130px) 0 clamp(60px, 8vw, 110px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 500;
  color: var(--gold);
  margin-bottom: clamp(18px, 2.5vw, 28px);
  line-height: 1.1;
}

.section-body {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.85;
}

.who-right img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

/* ── HEALTH & WELLBEING ── */
.health-section {
  padding: clamp(60px, 8vw, 100px) 0 clamp(80px, 10vw, 140px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.health-left img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 880px) {
  .hero-banner { height: 280px; }
  .who-section,
  .health-section { grid-template-columns: 1fr; gap: 32px; }
  .health-left { order: 1; }
  .health-right { order: 0; }
}

@media (max-width: 480px) {
  .hero-banner { height: 220px; }
}
