/* ============================================================
   FLY EAGLE SPORT — About Page Styles
   ============================================================ */

/* ── Hero ─────────────────────────────────────────────────── */
.about-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center 35%;
  padding: 130px 0 80px;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,8,8,0.94) 0%, rgba(8,8,8,0.72) 45%, rgba(8,8,8,0.28) 100%);
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  margin: 12px 0 18px;
  line-height: 1.08;
}

.about-hero__sub {
  font-size: 1.15rem;
  color: var(--silver);
  max-width: 580px;
  line-height: 1.65;
}

/* ── Story Section ────────────────────────────────────────── */
.about-story {
  padding: 88px 0 72px;
  background: var(--bg-primary);
}

.about-story__layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

@media (max-width: 900px) {
  .about-story__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-story__text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin: 0 0 22px;
  line-height: 1.15;
}

.about-story__text p {
  color: var(--silver);
  line-height: 1.8;
  font-size: 1.03rem;
  margin: 0 0 18px;
}

.about-story__text p:last-child { margin-bottom: 0; }

.about-story__image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}

.about-story__image-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.about-story__badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(8,8,8,0.88);
  border: 1px solid rgba(139,0,0,0.45);
  border-radius: 8px;
  padding: 10px 16px;
  backdrop-filter: blur(6px);
}

.about-story__badge p {
  margin: 0;
  font-size: 0.81rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  color: var(--ox-hover);
  line-height: 1.4;
}

.about-story__badge span {
  display: block;
  font-size: 0.75rem;
  color: var(--silver);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  margin-top: 2px;
}

/* ── Mission Band ─────────────────────────────────────────── */
.about-mission {
  padding: 72px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-mission__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-mission__inner h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--white);
  margin: 10px 0 20px;
  line-height: 1.2;
}

.about-mission__inner p {
  color: var(--silver);
  font-size: 1.07rem;
  line-height: 1.75;
  margin: 0 0 14px;
}

.about-mission__inner p:last-child { margin-bottom: 0; }

/* ── Differentiators ──────────────────────────────────────── */
.about-pillars {
  padding: 80px 0;
  background: var(--bg-primary);
}

.about-pillars h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--white);
  margin: 10px 0 48px;
  text-align: center;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  transition: border-color 0.2s;
}

.pillar-card:hover {
  border-color: var(--ox);
}

.pillar-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(139,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--ox-hover);
}

.pillar-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 8px;
}

.pillar-card p {
  font-size: 0.94rem;
  color: var(--silver);
  line-height: 1.65;
  margin: 0;
}

/* ── Veteran Banner ───────────────────────────────────────── */
.about-veteran {
  padding: 64px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #120808 60%, #0a0a0a 100%);
  border-top: 1px solid rgba(139,0,0,0.2);
  border-bottom: 1px solid rgba(139,0,0,0.2);
}

.about-veteran__inner {
  display: flex;
  gap: 48px;
  align-items: center;
}

@media (max-width: 720px) {
  .about-veteran__inner {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }
}

.about-veteran__emblem {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(139,0,0,0.15);
  border: 2px solid rgba(139,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ox-hover);
}

.about-veteran__text h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--white);
  margin: 0 0 10px;
}

.about-veteran__text p {
  color: var(--silver);
  font-size: 1.01rem;
  line-height: 1.7;
  margin: 0;
  max-width: 640px;
}

/* ── Location Section ─────────────────────────────────────── */
.about-location {
  padding: 80px 0;
  background: var(--bg-primary);
}

.about-location__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 860px) {
  .about-location__layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.about-location__text h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--white);
  margin: 10px 0 16px;
}

.about-location__text p {
  color: var(--silver);
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0 0 16px;
}

.about-location__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.about-location__detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--silver);
}

.about-location__detail svg {
  flex-shrink: 0;
  color: var(--ox-hover);
  margin-top: 2px;
}

.about-location__detail strong {
  color: var(--white);
  display: block;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-heading);
  margin-bottom: 1px;
}

.about-location__map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  background: var(--bg-card);
  aspect-ratio: 4/3;
}

.about-location__map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--silver);
  font-size: 0.97rem;
  text-align: center;
  padding: 24px;
  min-height: 280px;
}

.about-location__map-placeholder svg {
  color: var(--ox-hover);
  opacity: 0.7;
}

.about-location__map-placeholder a {
  color: var(--ox-hover);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.93rem;
}

.about-location__map-placeholder a:hover {
  color: var(--white);
}

/* ── Credentials Bar ──────────────────────────────────────── */
.about-credentials {
  padding: 56px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.about-credentials h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  color: var(--white);
  margin: 10px 0 36px;
  text-align: center;
}

.credentials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.credential-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-heading);
}

.credential-chip svg {
  color: var(--ox-hover);
  flex-shrink: 0;
}

/* ── About CTA ────────────────────────────────────────────── */
.about-cta {
  padding: 88px 0;
  background: linear-gradient(135deg, #0e0e0e 0%, #1c1010 100%);
  border-top: 1px solid var(--border);
  text-align: center;
}

.about-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin: 10px 0 14px;
}

.about-cta p {
  color: var(--silver);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 32px;
}

.about-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
