/* ===== About Us page ===== */

/* ── Hero ── */
.hero-about {
  position: relative;
  min-height: 580px;
  background: url('../images/v1_388.webp') right center / cover no-repeat;
  display: flex;
  align-items: center;
}
.hero-about::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,5,20,0.42) 0%,
    rgba(0,5,20,0.10) 52%,
    rgba(0,5,20,0.38) 100%
  );
}
.hero-content {
  position: relative; z-index: 1;
  padding: 130px 0 80px;
  max-width: 520px;
}
.hero-content h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-content p {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  line-height: 1.82;
  margin: 0;
}

/* ── What is Longevity — light cream section ── */
.longevity-section {
  background: #FAF7F0;
  padding: 30px 0 60px;
  position: relative;
  overflow: hidden;
}
.longevity-deco-tr {
  position: absolute; top: -30px; right: -30px;
  width: 260px; height: 260px; pointer-events: none; opacity: 0.55;
}
.longevity-deco-bl {
  position: absolute; bottom: -20px; left: -20px;
  width: 200px; height: 200px; pointer-events: none; opacity: 0.4;
}

.longevity-textbox {
  background: none;
  max-width: 900px;
  margin: 0 auto 8px;
  text-align: center;
  padding: 0;
}
.longevity-section h2 {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 18px;
}
.longevity-section .lead-text {
  color: var(--navy);
  font-size: 14.5px;
  line-height: 1.85;
  margin: 0 0 12px;
}
.longevity-section .lead-text:last-child { margin-bottom: 0; }

.pillars-heading {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 22px;
}

/* ── Pillar cards ── */
.pillar-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 200px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.pillar-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.pillar-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(0,8,30,0.82) 0%,
    rgba(0,8,30,0.65) 35%,
    rgba(0,8,30,0.06) 65%,
    transparent 100%
  );
}
.pillar-card .pillar-body {
  position: absolute; top: 0; bottom: 0; left: 0; right: auto; z-index: 1;
  width: 42%;
  padding: 22px 16px 22px 22px;
  display: flex; flex-direction: column; justify-content: center;
}

.pillar-card.pillar-right::after {
  background: linear-gradient(to left,
    rgba(0,8,30,0.82) 0%,
    rgba(0,8,30,0.65) 35%,
    rgba(0,8,30,0.06) 65%,
    transparent 100%
  );
}
.pillar-card.pillar-right .pillar-body {
  left: auto; right: 0;
  padding: 22px 22px 22px 16px;
}

.pillar-card .pillar-title {
  color: #fff;
  font-size: 17px; font-weight: 800;
  line-height: 1.3; margin: 0 0 8px;
}
.pillar-card .pillar-desc {
  color: rgba(255,255,255,0.88);
  font-size: 11.5px; line-height: 1.62; margin: 0;
}

/* ===== Responsive — About ===== */
@media (max-width: 991px) {
  .hero-about { min-height: 460px; }
  .hero-content { padding: 110px 0 56px; }
}
@media (max-width: 768px) {
  .pillar-card { height: 170px; }
  .pillar-card::after,
  .pillar-card.pillar-right::after {
    background: linear-gradient(to top, rgba(0,8,30,.88) 0%, rgba(0,8,30,.30) 100%);
  }
  .pillar-card .pillar-body,
  .pillar-card.pillar-right .pillar-body {
    width: 100%; top: auto; bottom: 0; justify-content: flex-end;
    padding: 16px 18px;
  }
}
@media (max-width: 576px) {
  .hero-content h1 { font-size: 2.6rem; }
}
