/* ============================================
   ABOUT PAGE — about.css
   Extends style.css — no overrides, only additions
   ============================================ */

/* --- PAGE HERO BANNER --- */
.page-hero {
  position: relative;
  height: 65vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { object-position: center 30%; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,18,35,0.92) 0%, rgba(10,18,35,0.55) 50%, rgba(10,18,35,0.3) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding-bottom: 72px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span:last-child { color: rgba(255,255,255,0.85); }

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.page-hero-title em {
  font-style: italic;
  color: var(--red);
}
.page-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 560px;
  font-weight: 300;
}
.page-hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* --- STORY SECTION --- */
.story-section { background: var(--white); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-image-col {
  position: relative;
  height: 600px;
}
.story-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 80%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story-img-main img { object-fit: cover; width: 100%; height: 100%; }

.story-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 46%;
  height: 42%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.story-img-accent img { object-fit: cover; width: 100%; height: 100%; }

.story-years-badge {
  position: absolute;
  bottom: 20%;
  left: -16px;
  background: var(--red);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.story-years-num {
  display: block;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
}
.story-years-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 4px;
}

.section-header-left { text-align: left; margin-bottom: 28px; }
.section-header-left .section-tag { margin-bottom: 12px; }
.section-header-left h2 {
  font-size: clamp(30px, 3.5vw, 46px);
  color: var(--navy);
  line-height: 1.15;
}

.story-lead {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.8vw, 21px);
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 18px;
}
.story-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.story-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.highlight-icon {
  width: 28px; height: 28px;
  background: rgba(204,0,0,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}
.highlight-item span {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.5;
  padding-top: 4px;
}

/* --- MISSION VISION VALUES --- */
.mvv-section {
  background: var(--navy);
  padding: 80px 0;
}
.mvv-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.mvv-card {
  padding: 52px 40px;
  background: rgba(255,255,255,0.03);
  transition: background var(--transition);
  border-right: 1px solid rgba(255,255,255,0.06);
}
.mvv-card:last-child { border-right: none; }
.mvv-card:hover { background: rgba(255,255,255,0.07); }

.mvv-icon {
  width: 52px; height: 52px;
  background: rgba(204,0,0,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  margin-bottom: 24px;
}
.mvv-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.mvv-card p {
  font-size: 14.5px;
  line-height: 1.72;
  color: rgba(255,255,255,0.58);
}

/* --- WHY US --- */
.whyus-section { background: var(--off-white); }
.whyus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.whyus-item {
  background: var(--white);
  padding: 48px 44px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.whyus-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--red);
  transition: width var(--transition);
}
.whyus-item:hover::after { width: 100%; }
.whyus-item:hover { background: var(--off-white); }

.whyus-number {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 800;
  color: var(--gray-200);
  line-height: 1;
  letter-spacing: -2px;
  flex-shrink: 0;
  transition: color var(--transition);
}
.whyus-item:hover .whyus-number { color: rgba(204,0,0,0.15); }
.whyus-content h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.whyus-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-600);
}

/* --- LEGAL --- */
.legal-section { background: var(--white); }
.legal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.legal-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.legal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(to right, var(--red), var(--navy));
}
.legal-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.legal-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.legal-value {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
  line-height: 1.3;
  word-break: break-all;
}
.legal-value--sm { font-size: 22px; word-break: normal; }
.legal-sub {
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.5;
}

/* --- CTA STRIP --- */
.cta-strip {
  background: var(--navy);
  padding: 64px 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-strip-text h3 {
  font-size: clamp(26px, 3vw, 40px);
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.15;
}
.cta-strip-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 480px;
}
.cta-strip-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.25);
  transition: all var(--transition);
}
.btn-navy:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* ============================================
   RESPONSIVE — ABOUT PAGE
   ============================================ */
@media (max-width: 1024px) {
  .legal-grid { grid-template-columns: repeat(2, 1fr); }
  .mvv-grid { grid-template-columns: 1fr; }
  .mvv-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
}
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-image-col { height: 380px; }
  .whyus-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .page-hero { height: 55vh; min-height: 420px; }
  .story-highlights { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-actions { justify-content: center; }
  .legal-grid { grid-template-columns: 1fr; }
  .mvv-grid { padding: 0 20px; }
  .story-years-badge { left: 0; }
}
@media (max-width: 480px) {
  .whyus-item { flex-direction: column; gap: 12px; padding: 32px 24px; }
  .whyus-number { font-size: 36px; }
}
