/* ============================================================
   ABOUT US PAGE (page-about-us.php)
   Page-specific layout only — tokens and shared components
   (sec, wrap, sec-head, split, badges, store-grid, info-cols,
   crumb-bar) come from main.css.
   ============================================================ */

/* ── HERO ────────────────────────────────────────────────── */
.about-hero { background: linear-gradient(180deg, var(--dark) 0%, var(--ink) 100%); border-bottom: 1px solid var(--border); padding: 88px 0 60px; }
.about-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.about-hero .hero-badges { margin-bottom: 30px; }
.about-hero h1 { font-family: var(--display); font-size: clamp(44px, 6vw, 80px); line-height: 1.04; letter-spacing: .02em; text-transform: uppercase; color: var(--white); margin: 12px 0 18px; }
.about-hero h1 em { font-style: normal; color: var(--gold); }
.about-hero p { max-width: 720px; font-size: 17px; line-height: 1.75; color: var(--mid); }

/* ── TEAM ────────────────────────────────────────────────── */
.team-group { margin-bottom: 44px; }
.team-group:last-child { margin-bottom: 0; }
.team-group-title { font-family: var(--head); font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; display: flex; align-items: center; gap: 14px; }
.team-group-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 14px; }
.team-card { background: var(--panel); border: 1px solid var(--border); border-radius: 4px; padding: 20px 18px; display: flex; align-items: center; gap: 14px; transition: border-color .2s, transform .2s; }
.team-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.team-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--dark); border: 1px solid var(--gold-dk); color: var(--gold-lt); font-family: var(--display); font-size: 17px; letter-spacing: .05em; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.team-name { font-family: var(--head); font-size: 15px; font-weight: 600; color: var(--white); }

/* ── COMMITMENT TO SERVICE ───────────────────────────────── */
.commit-cols { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: center; }
.commit-cols p { font-size: 16px; color: var(--mid); line-height: 1.8; }
.commit-card { background: var(--panel); border: 1px solid var(--border); border-left: 3px solid var(--gold); border-radius: 4px; padding: 34px 30px; text-align: center; }
.commit-score { font-family: var(--display); font-size: 64px; color: var(--gold); line-height: 1; }
.commit-label { margin-top: 10px; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--mist); }

/* ── VISIT US ────────────────────────────────────────────── */
.visit-intro { max-width: 760px; margin-bottom: 40px; }
.visit-intro p { font-size: 16px; color: var(--mid); line-height: 1.8; margin-bottom: 16px; }
.visit-intro p:last-child { margin-bottom: 0; }
.visit-intro a { color: var(--gold); transition: color .15s; }
.visit-intro a:hover { color: var(--gold-lt); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .commit-cols { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .about-hero { padding: 64px 0 44px; }
  .team-grid { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 10px; }
}
