/* =========================================================
   LUMIVEX — About Us Page
   ========================================================= */

/* ---------- About Hero ---------- */
.about-hero {
  position: relative;
  min-height: 78vh;
  min-height: 78dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 4rem) 0 5rem;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.55) 0%, rgba(5, 5, 5, 0.72) 45%, #050505 100%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.75) 0%, transparent 55%);
}

.about-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 30% 70%, rgba(212, 175, 55, 0.18), transparent 60%);
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.about-hero-eyebrow {
  margin-bottom: 1.25rem;
}

.about-hero-title {
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.35rem;
}

.about-hero-title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ah-line {
  display: block;
  overflow: hidden;
}

.ah-line > span {
  display: inline-block;
}

.about-hero-sub {
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 48ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.about-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.about-hero-meta strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.about-hero-meta span {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ---------- Story ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.story-copy h2 {
  margin-bottom: 1.25rem;
}

.story-copy p {
  color: var(--text-muted);
  margin-bottom: 1.15rem;
  font-size: 1.05rem;
  max-width: 48ch;
}

.story-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: var(--shadow-soft), 0 0 40px rgba(212, 175, 55, 0.08);
  aspect-ratio: 4 / 5;
}

.story-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-caption {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  padding: 1rem 1.25rem;
}

.story-caption strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.story-caption span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ---------- Mission & Vision ---------- */
.about-mv {
  background: linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.6), transparent);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.mv-card {
  padding: 2.5rem 2rem;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.mv-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: var(--shadow-gold);
}

.mv-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  background: rgba(212, 175, 55, 0.06);
}

.mv-card h3 {
  font-size: 1.85rem;
  margin-bottom: 1rem;
}

.mv-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---------- Values ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.value-card {
  background: var(--bg-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: border-color 0.4s, transform 0.4s var(--ease), box-shadow 0.4s;
}

.value-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.value-num {
  display: block;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.65rem;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- Why Trust ---------- */
.trust-why-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.trust-why-copy h2 {
  margin-bottom: 1.15rem;
}

.trust-why-copy > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 46ch;
}

.trust-why-list {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.trust-why-list li {
  padding-left: 1.25rem;
  border-left: 2px solid rgba(212, 175, 55, 0.45);
}

.trust-why-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.trust-why-list span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.trust-why-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.trust-why-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-float {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 1.25rem 1.5rem;
  text-align: center;
  animation: floatY 6s ease-in-out infinite;
}

.trust-float .font-num {
  font-size: 2.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff, var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}

.trust-float span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.35rem;
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.team-card {
  background: var(--bg-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.4s, box-shadow 0.4s;
}

.team-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: var(--shadow-gold);
}

.team-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.team-card:hover .team-photo img {
  transform: scale(1.06);
}

.team-info {
  padding: 1.35rem 1.25rem 1.5rem;
}

.team-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}

.team-role {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.team-bio {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.55;
}

/* ---------- Offices ---------- */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.office-card {
  padding: 1.75rem;
  transition: border-color 0.35s, transform 0.35s var(--ease);
}

.office-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-4px);
}

.office-city {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.office-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.office-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---------- History Timeline ---------- */
.history-timeline {
  position: relative;
  padding-top: 0.5rem;
}

.history-line {
  position: absolute;
  top: 1.65rem;
  left: 4%;
  right: 4%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.history-progress {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  box-shadow: 0 0 16px var(--gold-glow);
}

.history-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
  list-style: none;
}

.history-item {
  text-align: center;
  padding: 0 0.35rem;
}

.history-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 36px;
  padding: 0 0.75rem;
  margin-bottom: 1.35rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 0 0 8px var(--bg), 0 0 24px var(--gold-glow);
}

.history-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.history-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ---------- Awards ---------- */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.award-card {
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.35s, transform 0.35s var(--ease);
}

.award-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-4px);
}

.award-year {
  display: block;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.award-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.award-card p {
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* ---------- Stats ---------- */
.about-stats {
  background: linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.7), transparent);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.about-stat {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--bg-2);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.about-stat-num {
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 15%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

.about-stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .story-grid,
  .trust-why-grid,
  .mv-grid {
    grid-template-columns: 1fr;
  }

  .story-frame {
    max-width: 520px;
    margin-inline: auto;
    aspect-ratio: 5 / 4;
  }

  .values-grid,
  .offices-grid,
  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid,
  .awards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .history-list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem 1rem;
  }

  .history-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: auto;
    padding-bottom: 3.5rem;
  }

  .about-hero-title {
    font-size: clamp(2.4rem, 9vw, 3.25rem);
  }

  .about-hero-meta {
    gap: 1.5rem 2rem;
  }

  .values-grid,
  .team-grid,
  .offices-grid,
  .awards-grid,
  .about-stats-grid,
  .history-list {
    grid-template-columns: 1fr;
  }

  .history-item {
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.25rem 1rem;
    align-items: start;
  }

  .history-year {
    grid-row: span 2;
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .about-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-cta-actions .btn {
    width: 100%;
  }
}
