/* about.css — About Us page. Loaded only on page-about.php.
   Hero (photo + overlay) · Story (photo + text) · Mission/Vision · Values · Stats.
   The closing call-to-action reuses the global .page-cta-strip component. */

/* ── Hero ── */
.ab-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(320px, 46vw, 480px);
  overflow: hidden;
}

.ab-hero__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.ab-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 38, 60, 0.35) 0%,
    rgba(11, 38, 60, 0.72) 78%,
    rgba(11, 38, 60, 0.85) 100%
  );
}

.ab-hero__inner {
  position: relative;
  width: 100%;
  padding-top: 48px;
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  color: var(--lgm-fg-on-green);
}

.ab-hero .lgm-breadcrumb,
.ab-hero__inner a {
  color: rgba(255, 255, 255, 0.85);
}

.ab-hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lgm-gold);
  margin-bottom: 12px;
}

.ab-hero__h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0;
  max-width: 18ch;
  color: #fff;
}

.ab-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  margin: 16px 0 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.9);
}

/* ── Story ── */
.ab-story {
  padding: var(--lgm-section-y) 0;
  background: var(--lgm-bg);
}

.ab-story__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.ab-story__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--lgm-radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--lgm-shadow-card);
}

.ab-story__h {
  position: relative;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 700;
  color: var(--lgm-green);
  margin: 0 0 20px;
  padding-bottom: 14px;
}

.ab-story__h::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: var(--lgm-gold);
}

.ab-story__body p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--lgm-fg-muted);
  margin: 0 0 16px;
}

.ab-story__body p:last-child {
  margin-bottom: 0;
}

/* ── Mission / Vision ── */
.ab-pillars {
  padding: var(--lgm-section-y) 0;
  background: var(--lgm-green);
  color: var(--lgm-fg-on-green);
}

.ab-pillars__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.ab-pillar {
  position: relative;
  padding-left: 22px;
}

.ab-pillar__mark {
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 2px;
  background: var(--lgm-gold);
}

.ab-pillar__h {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 700;
  margin: 0 0 12px;
  color: #fff;
}

.ab-pillar__p {
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

/* ── Values ── */
.ab-values {
  padding: var(--lgm-section-y) 0;
  background: var(--lgm-bg);
}

.ab-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ab-value {
  background: var(--lgm-surface);
  border: 1px solid var(--lgm-line-soft);
  border-radius: var(--lgm-radius-md);
  padding: 26px 22px;
  box-shadow: var(--lgm-shadow-card);
}

.ab-value__num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--lgm-gold);
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}

.ab-value__t {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--lgm-green);
  margin: 0 0 8px;
}

.ab-value__d {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--lgm-fg-muted);
  margin: 0;
}

/* ── Stats ── */
.ab-stats {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--lgm-surface-alt);
}

.ab-stats__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: center;
}

.ab-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ab-stat__num {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  color: var(--lgm-green);
  font-variant-numeric: tabular-nums;
}

.ab-stat__label {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--lgm-fg-muted);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .ab-story__inner { grid-template-columns: 1fr; }
  .ab-story__photo { aspect-ratio: 16 / 10; max-height: 360px; }
  .ab-pillars__inner { grid-template-columns: 1fr; }
  .ab-values__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .ab-values__grid { grid-template-columns: 1fr; }
  .ab-stats__inner { grid-template-columns: 1fr; gap: 26px; }
}
