/* ═══════════════════════════════════
   ABOUT / WHY US — MULTI-PART SECTION
   ═══════════════════════════════════ */
.about-section { padding: 0; }

/* ══ Part 1 — Headline split ══ */
.about-headline-wrap {
  background: var(--navy-dark);
  padding: var(--section-y) var(--section-x);
}
.about-headline-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: end;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.about-headline-left .section-eyebrow { color: var(--gold-light); }
.about-headline-left h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0;
}
.about-headline-left h2 .text-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-headline-right p {
  font-size: 1rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-headline-right p:last-child { margin-bottom: 0; }

/* ══ Part 2 — Story ══ */
.about-story-wrap {
  background: var(--white);
  padding: var(--section-y) var(--section-x);
}
.about-story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about-story-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 32px 80px rgba(0,0,0,0.14);
  position: relative;
}
.about-story-img::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(212,146,10,0.18);
  border-radius: inherit;
  pointer-events: none;
}
.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-story-text .section-eyebrow { color: var(--gold); }
.about-story-text h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.about-story-text h3 .text-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-story-text p {
  font-size: 0.96rem;
  color: var(--gray-500);
  line-height: 1.78;
  margin-bottom: 16px;
}
.about-story-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.about-story-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.about-story-list li i { color: var(--gold); font-size: 12px; }

/* ══ Part 3 — Values ══ */
.about-values-wrap {
  background: var(--navy);
  padding: var(--section-y) var(--section-x);
  position: relative;
  overflow: hidden;
}
.about-values-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.022) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}
.about-values-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.about-values-header {
  text-align: center;
  margin-bottom: 56px;
}
.about-values-header .section-eyebrow { color: var(--gold-light); }
.about-values-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  max-width: 680px;
  margin: 0 auto;
}
.about-values-header h2 span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.value-card {
  background: var(--navy);
  padding: 40px 32px;
  transition: background var(--t-slow);
}
.value-card:hover { background: rgba(212,146,10,0.06); }
.value-num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.55;
}
.value-card h4 {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.value-card p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
}

/* ══ Part 4 — Team ══ */
.about-team-wrap {
  background: var(--gray-50);
  padding: var(--section-y) var(--section-x);
}
.about-team-inner { max-width: 1200px; margin: 0 auto; }
.about-team-header { margin-bottom: 48px; }
.about-team-header .section-eyebrow { color: var(--gold); }
.about-team-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.about-team-header h2 span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-team-header p {
  font-size: 0.96rem;
  color: var(--gray-500);
  max-width: 520px;
  line-height: 1.7;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  border: 1.5px solid var(--gray-100);
  transition: all var(--t-slow);
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-border);
}
.team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 2px solid var(--gold-border);
  transition: border-color var(--t);
}
.team-card:hover .team-avatar { border-color: var(--gold); }
.team-avatar i { font-size: 24px; color: var(--gold); }
.team-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.team-card > p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ══ Part 5 — Timeline ══ */
.about-timeline-wrap {
  background: var(--navy-dark);
  padding: var(--section-y) var(--section-x);
}
.about-timeline-inner { max-width: 1200px; margin: 0 auto; }
.about-timeline-header { margin-bottom: 52px; }
.about-timeline-header .section-eyebrow { color: var(--gold-light); }
.about-timeline-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.025em;
}

.timeline-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.timeline-item {
  background: var(--navy-dark);
  padding: 40px 32px;
  transition: background var(--t-slow);
}
.timeline-item:hover { background: rgba(212,146,10,0.05); }
.timeline-year {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.timeline-item h4 {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.timeline-item p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
}

/* ══ Responsive ══ */
@media (max-width: 1024px) {
  .about-headline-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 48px; }
  .about-story-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-story-img { max-width: 520px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr 1fr; }
  .timeline-items { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .about-headline-inner { padding-bottom: 40px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .timeline-items { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .timeline-items { grid-template-columns: 1fr; }
}
