/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* HERO */
.about-hero {
  position: relative;
  height: 80vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
}
.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.88) 0%, rgba(13,13,13,0.5) 70%, rgba(13,13,13,0.3) 100%);
}
.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.about-hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
}
.about-hero-content p {
  font-size: 1.05rem;
  color: rgba(240,236,228,0.8);
  line-height: 1.8;
}

/* INTRO */
.about-intro { background: var(--bg-primary); }
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-intro-img {
  position: relative;
}
.about-intro-img img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}
.about-intro-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--gold);
  opacity: 0.3;
  z-index: -1;
}
.about-intro-text h2 { margin-bottom: 8px; }
.about-intro-text p {
  color: #bbbbbb;
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 14px;
}
.about-intro-text strong { color: var(--off-white); font-weight: 500; }

/* VISION MISSION */
.about-vm { background: var(--bg-secondary); }
.about-vm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.about-vm-card {
  background: var(--bg-tertiary);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 48px 36px;
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.about-vm-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-6px);
}
.about-vm-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(201,168,76,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 24px;
}
.about-vm-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--white);
}
.about-vm-card p {
  color: #bbbbbb;
  font-size: 0.9rem;
  line-height: 1.85;
}

/* WHAT MAKES US DIFFERENT */
.about-different { background: var(--bg-primary); }
.about-different-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.about-diff-item {
  padding: 40px 36px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s ease;
}
.about-diff-item:hover {
  background: rgba(201,168,76,0.04);
}
.about-diff-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.25;
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}
.about-diff-item h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.about-diff-item p {
  font-size: 0.88rem;
  color: #aaaaaa;
  line-height: 1.8;
}

/* TEAM */
.about-team { background: var(--bg-secondary); }
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
/* Centre last row when 5 items in a 3-col grid */
.about-team-card:nth-child(4) { grid-column: 1 / 2; }
.about-team-card:nth-child(5) { grid-column: 2 / 3; }
.about-team-card {
  overflow: hidden;
  transition: transform 0.4s ease;
}
.about-team-card:hover { transform: translateY(-6px); }
.about-team-img {
  position: relative;
  height: 450px;
  overflow: hidden;
}
.about-team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.about-team-card:hover .about-team-img img { transform: scale(1.05); }
.about-team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.about-team-card:hover .about-team-overlay { opacity: 1; }
.team-wa {
  width: 50px;
  height: 50px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  text-decoration: none;
  transition: background 0.3s ease;
}
.team-wa:hover { background: var(--gold); color: #0d0d0d; }
.about-team-info {
  padding: 24px;
  background: var(--bg-tertiary);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 2px solid var(--gold);
}
.about-team-info h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 6px;
}
.team-role {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.about-team-info p {
  font-size: 0.87rem;
  color: #aaaaaa;
  line-height: 1.75;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-vm-grid { grid-template-columns: 1fr 1fr; }
  .about-different-grid { grid-template-columns: 1fr 1fr; }
  .about-team-grid { grid-template-columns: 1fr 1fr; }
  .about-intro-grid { gap: 48px; }
  /* Reset centering overrides — let natural flow handle 2-col */
  .about-team-card:nth-child(4) { grid-column: auto; }
  .about-team-card:nth-child(5) { grid-column: auto; }
}

@media (max-width: 768px) {
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-intro-img img { height: 320px; }
  .about-intro-img-accent { display: none; }
  .about-vm-grid { grid-template-columns: 1fr; }
  .about-different-grid { grid-template-columns: 1fr; }
  .about-team-grid { grid-template-columns: 1fr; }
  .about-hero-content h1 { font-size: 2.2rem; }
}
