/* ============================================================
   ABOUT.CSS - Styles specific to pages/about.html
   ============================================================ */

/* ========== PAGE HERO ========== */
.page-hero {
  padding: 160px 0 100px;
  background:
    radial-gradient(ellipse at 70% 0%, rgba(201,169,97,0.12) 0%, transparent 55%),
    linear-gradient(180deg, #FAF8F2 0%, #F0EBE0 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--line);
}
.page-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.page-hero h1 { margin: 12px 0 20px; }
.page-hero h1 span { color: var(--gold-3); }
.page-hero-lede { font-size: 18px; color: var(--text-dim); line-height: 1.75; margin-bottom: 36px; }
.page-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.page-hero-visual { position: relative; aspect-ratio: 4/3; }
.page-hero-img {
  width: 100%; height: 100%; border-radius: 24px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(10,22,40,0.2);
}
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-hero-badge {
  position: absolute; bottom: -24px; left: -24px;
  background: #fff; border-radius: 20px; padding: 20px 24px;
  box-shadow: 0 20px 50px rgba(10,22,40,0.15);
  display: flex; align-items: center; gap: 14px;
}
.page-hero-badge-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--gold); color: var(--navy);
  display: grid; place-items: center; flex-shrink: 0;
}
.page-hero-badge-num { font-size: 26px; font-weight: 900; color: var(--navy); line-height: 1; }
.page-hero-badge-label { font-size: 12px; color: var(--text-dim); font-weight: 500; margin-top: 2px; }

/* ========== STORY ========== */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-img {
  aspect-ratio: 5/6; border-radius: 24px; overflow: hidden;
  background:
    linear-gradient(160deg, rgba(10,22,40,0.25), transparent),
    repeating-linear-gradient(-45deg, #2A3E5E, #2A3E5E 14px, #344A6F 14px, #344A6F 28px);
  box-shadow: 0 40px 80px rgba(10,22,40,0.18); position: relative;
}
.story-img-overlay {
  position: absolute; bottom: 28px; right: 28px;
  background: var(--gold); color: var(--navy);
  border-radius: 16px; padding: 18px 22px;
  font-weight: 800; font-size: 14px; line-height: 1.4;
  box-shadow: 0 16px 40px rgba(201,169,97,0.4);
}
.story-text h2 { margin: 12px 0 20px; }
.story-text h2 span { color: var(--gold-3); }
.story-text p { font-size: 16px; color: var(--text-dim); line-height: 1.8; margin-bottom: 18px; }
.story-milestones { margin: 36px 0; display: grid; gap: 20px; }
.milestone { display: flex; gap: 20px; align-items: flex-start; }
.milestone-year {
  flex-shrink: 0; width: 64px; height: 64px; border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--gold); display: grid; place-items: center;
  font-weight: 900; font-size: 13px; letter-spacing: 0.05em; text-align: center; line-height: 1.2;
}
.milestone-text h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.milestone-text p { font-size: 14px; color: var(--text-dim); line-height: 1.6; margin: 0; }

/* ========== VALUES (ABOUT) ========== */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card {
  background: #fff; border-radius: 20px; padding: 32px 24px;
  border: 1px solid var(--line); transition: all 0.3s; text-align: center;
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(10,22,40,0.08); border-color: var(--gold); }
.value-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--gold); display: grid; place-items: center;
  margin: 0 auto 20px; transition: transform 0.3s;
}
.value-card:hover .value-icon { transform: scale(1.08) rotate(-4deg); }
.value-title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-desc { font-size: 13px; color: var(--text-dim); line-height: 1.65; }

/* ========== TEAM ========== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line); transition: all 0.3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(10,22,40,0.1); }
.team-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  display: grid; place-items: center;
  font-size: 56px; font-weight: 900; color: var(--gold); letter-spacing: -0.02em;
  position: relative; overflow: hidden;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.team-body { padding: 28px; }
.team-name { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--gold-3); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.team-bio { font-size: 14px; color: var(--text-dim); line-height: 1.7; }
.team-cert { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 12px; font-weight: 600; color: var(--text-muted); }
.team-cert svg { color: var(--gold); }

/* ========== APPROACH ========== */
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.approach-card {
  padding: 40px 32px; border-radius: 20px; background: #fff;
  border: 1px solid var(--line); position: relative; overflow: hidden; transition: all 0.3s;
}
.approach-card:hover { transform: translateY(-4px); box-shadow: 0 24px 56px rgba(10,22,40,0.08); border-color: var(--gold); }
.approach-num { position: absolute; top: 20px; left: 24px; font-size: 64px; font-weight: 900; color: var(--bg-soft); line-height: 1; }
.approach-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--gold); display: grid; place-items: center; margin-bottom: 20px; position: relative;
}
.approach-title { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; position: relative; }
.approach-desc { font-size: 14px; color: var(--text-dim); line-height: 1.75; position: relative; }

/* ========== TABLET ========== */
@media (min-width: 768px) and (max-width: 1120px) {
  .approach-grid { grid-template-columns: 1fr; max-width: 600px; margin-inline: auto; }

  .page-hero-inner { grid-template-columns: 1fr; gap: 0; text-align: center; }
  .page-hero-visual { display: none; }
  .page-hero h1 { max-width: 80%; margin-inline: auto; }
  .page-hero-lede { max-width: 80%; margin-inline: auto; margin-bottom: 36px; }
  .page-hero-cta { justify-content: center; }
  .story-img { width: 50%; margin-inline: auto; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-text { text-align: center; max-width: 80%; margin-inline: auto; }
  .story-milestones { max-width: 520px; margin-inline: auto; }
  .milestone { justify-content: flex-end; flex-direction: row-reverse; }
  .milestone-text { text-align: right; flex: 1; }
}

/* ========== ABOUT RESPONSIVE ========== */
@media (max-width: 1120px) {
  .page-hero-inner, .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .page-hero-visual { max-width: 500px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .page-hero { padding: 110px 0 60px; }
  .page-hero-inner { gap: 28px; }
  .page-hero-badge { bottom: -16px; left: -12px; padding: 14px 18px; }
  .story-img { display: none; }
  .story-grid { gap: 32px; }
  .values-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
