/* ══════════════════════════════
   ABOUT PAGE
══════════════════════════════ */

/* ── Shared helpers ── */
.section-eyebrow {
  display: inline-block;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-heading {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 2px;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 20px;
}

.section-heading span {
  color: var(--red);
}

.section-heading.center {
  text-align: center;
}

.section-body {
  color: #aaa;
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 14px;
}

/* ══════════════════════════════
   PAGE HERO
══════════════════════════════ */
.about-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 60px;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1517604931442-7e0c8ed2963c?w=1400&q=80') center/cover no-repeat;
  filter: brightness(.25) saturate(.5);
  z-index: 0;
}

.about-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(229,9,20,.15) 0%, transparent 70%);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.about-eyebrow {
  display: inline-block;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(52px, 8vw, 88px);
  letter-spacing: 3px;
  line-height: .95;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,.5);
}

.about-hero-desc {
  color: rgba(255,255,255,.7);
  font-size: 15px;
  line-height: 1.7;
  max-width: 480px;
}

/* ══════════════════════════════
   MISSION STRIP
══════════════════════════════ */
.mission-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}

.mission-item {
  padding: 16px 10px;
  position: relative;
}

.mission-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}

.mission-number {
  font-family: 'Bebas Neue', cursive;
  font-size: 42px;
  color: var(--red);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 4px;
}

.mission-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ══════════════════════════════
   OUR STORY
══════════════════════════════ */
.story-section {
  background: var(--bg);
  padding: 80px 0;
}

.story-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.story-img {
  width: 100%;
  border-radius: 8px;
  display: block;
  filter: brightness(.9);
  border: 1px solid var(--border);
}

.story-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  border-radius: 8px;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(229,9,20,.35);
}

.story-badge-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 44px;
  color: #fff;
  line-height: 1;
}

.story-badge-text {
  color: rgba(255,255,255,.85);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.3;
  margin-top: 4px;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.story-tags span {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: #aaa;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: .5px;
  transition: border-color .2s, color .2s;
}

.story-tags span:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ══════════════════════════════
   VALUES
══════════════════════════════ */
.values-section {
  background: var(--bg2);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.value-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  height: 100%;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(229,9,20,.12);
  border-color: rgba(229,9,20,.3);
}

.value-icon {
  width: 50px;
  height: 50px;
  background: rgba(229,9,20,.12);
  border: 1px solid rgba(229,9,20,.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background .25s;
}

.value-card:hover .value-icon {
  background: var(--red);
  border-color: var(--red);
}

.value-icon i {
  color: var(--red);
  font-size: 18px;
  transition: color .25s;
}

.value-card:hover .value-icon i {
  color: #fff;
}

.value-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 10px;
}

.value-desc {
  color: #888;
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

/* ══════════════════════════════
   TEAM
══════════════════════════════ */
.team-section {
  background: var(--bg);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.team-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,.4);
}

.team-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .35s, filter .35s;
  filter: grayscale(30%);
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.team-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(229,9,20,.9) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  padding: 24px 0 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s;
}

.team-card:hover .team-social {
  opacity: 1;
  transform: translateY(0);
}

.team-social a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.team-social a:hover {
  background: rgba(255,255,255,.35);
}

.team-info {
  padding: 18px 20px;
}

.team-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 2px;
}

.team-role {
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.team-bio {
  color: #888;
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════
   CTA BANNER
══════════════════════════════ */
.cta-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(229,9,20,.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 12px;
  position: relative;
}

.cta-sub {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 32px;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.cta-btn {
  padding: 13px 32px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .5px;
  transition: transform .15s, background .2s, color .2s;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

.cta-btn.primary {
  background: var(--red);
  color: #fff;
}

.cta-btn.primary:hover {
  background: var(--red-dark);
}

.cta-btn.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid #444;
}

.cta-btn.secondary:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .about-hero        { padding: 60px 0 40px; }
  .story-badge       { bottom: -12px; right: -8px; padding: 12px 16px; }
  .story-badge-num   { font-size: 32px; }
  .story-section     { padding: 60px 0 80px; }
  .values-section,
  .team-section,
  .cta-section       { padding: 60px 0; }
  .mission-item:not(:last-child)::after { display: none; }
}
