/* ═══════════════════════════════════════
   ABOUT PAGE — Page-specific styles
   ═══════════════════════════════════════ */

/* ── COMMON ───────────────── */
.about-title {
  margin-top: var(--y-space-l);
  margin-bottom: var(--y-space-l);
}

.section-header {
  margin-bottom: var(--y-space-5xl);
}

.section-header h2 {
  margin-top: var(--y-space-l);
}

/* ── ABOUT HERO GRID ──────── */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--y-space-5xl);
  align-items: center;
}

.about-story {
  max-width: 560px;
}

.about-image-wrap {
  position: relative;
}

.about-hero-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--y-radius-2xl);
}

.about-counter-badge {
  position: absolute;
  bottom: calc(-1 * var(--y-space-xxl));
  left: calc(-1 * var(--y-space-xxl));
  background: var(--y-color-primary);
  color: var(--y-color-white);
  border-radius: var(--y-radius-2xl);
  padding: var(--y-space-l);
  box-shadow: var(--y-shadow-l);
}

.counter-text {
  opacity: 0.9;
}

/* ── VISION & MISSION ─────── */
.vision-icon-accent {
  background: rgba(107, 29, 58, 0.1);
  color: var(--y-color-accent);
}

.vision-icon-primary {
  background: rgba(139, 105, 20, 0.1);
  color: var(--y-color-primary);
}

.vision-icon-accent svg,
.vision-icon-primary svg {
  width: 28px;
  height: 28px;
}

/* ── TIMELINE (OUR JOURNEY) ─ */
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-right: 4rem;
  /* Space for the line and circles on the right */
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  /* Center of the 48px circle */
  width: 2px;
  background: var(--y-color-border);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--y-space-xl);
  background: var(--y-color-white);
  border-radius: var(--y-radius-xl);
  padding: var(--y-space-xl);
  box-shadow: var(--y-shadow-s);
  border: 1px solid var(--y-color-border);
  text-align: right;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-year {
  position: absolute;
  top: 50%;
  right: -4rem;
  /* Push it exactly onto the line */
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--y-color-primary);
  color: var(--y-color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--y-font-s);
  z-index: 2;
}

.timeline-content h4 {
  margin-bottom: var(--y-space-xs);
}

/* ── VALUES ───────────────── */
.value-card {
  background: var(--y-color-white);
  border-radius: var(--y-radius-2xl);
  padding: var(--y-space-3xl);
  border: 1px solid var(--y-color-border);
  text-align: center;
  transition: all var(--y-transition-smooth);
}

.value-card:hover {
  box-shadow: var(--y-shadow-l);
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--y-space-l);
}

.value-emoji {
  font-size: 2rem;
}

/* ── TEAM ─────────────────── */
.team-member {
  text-align: center;
}

.team-img-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto var(--y-space-l);
  border-radius: var(--y-radius-2xl);
  overflow: hidden;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--y-transition-long);
}

.team-member:hover .team-img {
  transform: scale(1.05);
}

.team-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.4), transparent);
}

/* ── CTA (shared with home) ── */
.cta-box {
  background: linear-gradient(to left, var(--y-color-dark), var(--y-color-dark-2));
  border-radius: var(--y-radius-2xl);
  padding: var(--y-space-5xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box h2 {
  font-size: var(--y-font-xxxl);
  margin-bottom: var(--y-space-m);
}

.cta-glow {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.cta-glow-gold {
  position: absolute;
  top: 0;
  left: 0;
  width: 128px;
  height: 128px;
  background: var(--y-color-secondary);
  border-radius: 50%;
  filter: blur(48px);
}

.cta-glow-burgundy {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 160px;
  height: 160px;
  background: var(--y-color-accent);
  border-radius: 50%;
  filter: blur(48px);
}

.cta-desc {
  color: #d1d5db;
  font-size: var(--y-font-l);
  margin-bottom: var(--y-space-3xl);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: var(--y-space-l);
  justify-content: center;
}

.cta-btn-ghost {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--y-color-white);
  background: transparent;
}

.cta-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--y-color-white);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

@media (max-width: 1200px) {
  .about-hero-grid {
    gap: var(--y-space-3xl);
  }

  .team-img-wrap {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 992px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: var(--y-space-3xl);
  }

  .about-hero-img {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .team-img-wrap {
    width: 120px;
    height: 120px;
  }

  .cta-box {
    padding: var(--y-space-3xl);
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .about-counter-badge {
    bottom: calc(-1 * var(--y-space-l));
    left: calc(-1 * var(--y-space-l));
  }
}

@media (max-width: 480px) {
  .value-card {
    padding: var(--y-space-xxl);
  }

  .value-icon {
    width: 56px;
    height: 56px;
  }

  .team-img-wrap {
    width: 100px;
    height: 100px;
  }

  .about-hero-img {
    height: 220px;
  }

  .about-counter-badge {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: var(--y-space-l);
    display: inline-block;
  }

  .cta-box {
    padding: var(--y-space-xxl);
  }

  .cta-desc {
    font-size: var(--y-font-m);
  }
}