/* === S.O.N. — ABOUT US PAGE STYLES === */

/* ─── ABOUT PHOTO ─── */
.about-photo-wrap {
  position: relative;
}

.about-photo-wrap::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: -1.5rem;
  bottom: -1.5rem;
  background: var(--gold);
  border-radius: var(--radius);
  z-index: 0;
}

.about-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ─── BELIEF / MISSION & VISION ─── */
.belief-section {
  text-align: center;
}

.belief-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.belief-block--reversed {
  grid-template-columns: 1fr 280px;
}

.belief-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.belief-content h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .75rem;
}

.belief-content p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
}

/* ─── PAGE HERO WITH BLENDING PHOTO ─── */
.page-hero--photo {
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, var(--navy-deep) 0%, rgba(2,30,84,.92) 32%, rgba(2,30,84,.55) 64%, rgba(2,30,84,.18) 100%),
    linear-gradient(180deg, rgba(2,30,84,.35) 0%, transparent 26%, transparent 72%, rgba(2,30,84,.5) 100%);
}

/* ─── MISSION & VISION CARDS ─── */
.mv-section {
  background: var(--navy);
  padding: 6rem;
  text-align: center;
}

.mv-section .section-title,
.board-dark .section-title,
.strategy .section-title { color: var(--white); }

.mv-section .section-label,
.board-dark .section-label,
.strategy .section-label { color: var(--gold); }

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 960px;
  margin: 2rem auto 0;
}

.mv-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: left;
  transition: transform .2s, background .25s;
}
.mv-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.08); }
.mv-card h3 { display: flex; align-items: center; gap: .6rem; }
.mv-card h3::before {
  content: "";
  width: 26px; height: 3px;
  background: var(--gold);
  border-radius: 999px;
  flex-shrink: 0;
}

.mv-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.mv-card p {
  font-size: .95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
}

/* ─── OUR APPROACH ─── */
.approach-section {
  background: var(--warm);
  padding: 5rem 6rem;
}

.approach-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}

.approach-sub {
  font-size: 1.3rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 480px;
}

.approach-video, .service-video {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 16/9;
}
.approach-video { box-shadow: 0 4px 24px rgba(0,0,0,0.12); }

.approach-video iframe, .service-video video {
  width: 100%;
  height: 100%;
  display: block;
}


.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.approach-item, .service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: box-shadow .2s, transform .2s;
}

.approach-item:hover, .service-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-6px);
}

.approach-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: rgba(1,43,120,0.12);
  display: block;
  margin-bottom: .5rem;
  line-height: 1;
}

.approach-item h3, .service-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .75rem;
}
.approach-item h3 { font-size: 1.2rem; }

.approach-item p, .service-card p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── FULL-BLEED PHOTO ─── */
.full-bleed-photo {
  width: 100%;
  aspect-ratio: 21/9;
  position: relative;
  overflow: hidden;
}

.full-bleed-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.full-bleed-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1,43,120,0.85) 0%, transparent 60%);
  pointer-events: none;
}

.full-bleed-caption {
  position: absolute;
  bottom: 2rem;
  left: 6rem;
  font-size: .82rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
  z-index: 1;
}

/* ─── BOARD DARK ─── */
.board-dark {
  background: var(--navy);
}


.board-dark .board-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
}

.board-dark .board-card:hover {
  box-shadow: 0 12px 34px rgba(0,0,0,0.35);
  background: rgba(255,255,255,0.07);
}

.board-dark .board-info h4 { color: var(--white); }
.board-dark .board-info .role { color: var(--gold); }

.board-dark .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.board-dark .btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ─── SERVICE PILLARS ─── */
.service-pillars {
  background: var(--warm);
  padding: 5rem 6rem;
}

.service-pillars-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.service-video { align-self: center; }
.service-video video { object-fit: cover; }

.service-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}


.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h3 { font-size: 1.15rem; }

/* ─── VISION ─── */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.vision-content p {
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.vision-visual {
  position: relative;
  aspect-ratio: 1;
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-visual::before, .vision-visual::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}
.vision-visual::before {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(232,160,32,0.15), transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}
.vision-visual::after {
  width: 180px; height: 180px;
  border: 2px solid rgba(232,160,32,0.2);
  animation: pulse 4s ease-in-out 1s infinite;
}

.vision-visual .vision-icon {
  font-size: 4rem;
  position: relative;
  z-index: 1;
}

.vision-visual .vision-text {
  position: absolute;
  bottom: 2rem; left: 2rem; right: 2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .15em;
  color: rgba(255,255,255,0.2);
  text-align: center;
}

/* ─── STRATEGY ─── */
.strategy { background: var(--navy); }

.strategy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.strategy-intro {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.strategy-list {
  list-style: none;
  counter-reset: strategy;
}

.strategy-list li {
  counter-increment: strategy;
  display: flex;
  gap: 1.2rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: .95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  align-items: flex-start;
}
.strategy-list li:last-child { border-bottom: none; }

.strategy-list li::before {
  content: counter(strategy, decimal-leading-zero);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: rgba(232,160,32,0.4);
  flex-shrink: 0;
  width: 2rem;
  line-height: 1.3;
}

.strategy-quote {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232,160,32,0.2);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.strategy-quote blockquote {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  border-left: 4px solid var(--gold);
  padding-left: 1.4rem;
  margin-bottom: 1.5rem;
}

.strategy-quote .quote-attr {
  font-size: .85rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: .04em;
}

/* ─── BOARD (about-us board section) ─── */
.board-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.board-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.board-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-6px);
}

.board-photo {
  width: 100%;
  aspect-ratio: 9/10;
  overflow: hidden;
  background: linear-gradient(135deg, #1a3a6e, #0d1f3c);
}

.board-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.board-card:hover .board-photo img {
  transform: scale(1.05);
}

.board-info {
  padding: 1.2rem 1rem;
}

.board-info h4 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .25rem;
}

.board-info .role {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .04em;
}

/* ─── RESPONSIVE: MID (901px – 1100px) ─── */
@media (max-width: 1100px) {
  .board-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  /* Service pillars */
  .service-pillars-layout { grid-template-columns: 1fr; }
  .service-pillars { padding: 3.5rem 1.8rem; }

  /* Board (about-us) */
  .board-grid { grid-template-columns: 1fr 1fr; }
  .board-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* Mission & vision cards */
  .mv-section { padding: 4rem 1.8rem; }
  .mv-grid { grid-template-columns: 1fr; }
  .mv-card { padding: 2rem 1.5rem; }

  /* Our approach */
  .approach-section { padding: 3.5rem 1.8rem; }
  .approach-top { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }

  /* Hero photo */
  .page-hero-bg { display: none; }

  /* Full-bleed photo */
  .full-bleed-photo { aspect-ratio: 16/9; }
  .full-bleed-caption { left: 1.8rem; bottom: 1.2rem; }
}
