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

/* Hero */
.about-hero {
  position: relative;
  height: 52vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.about-hero-bg { position: absolute; inset: 0; }
.about-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.about-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(15,30,60,0.92) 0%, rgba(15,30,60,0.78) 100%);
}
.about-hero-content {
  position: relative; z-index: 1; padding: 0 24px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.about-hero-content .label { color: var(--gold); margin-bottom: 14px; }
.about-hero-content h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900; color: #fff; line-height: 1.05; margin-bottom: 14px;
}
.about-hero-content p {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: rgba(255,255,255,0.65); font-weight: 300;
}

/* Story Split */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}
.about-story-img { position: relative; overflow: hidden; }
.about-story-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.about-story:hover .about-story-img img { transform: scale(1.03); }

.story-badge {
  position: absolute; bottom: 32px; right: -1px;
  background: var(--gold); padding: 18px 28px; text-align: center;
}
.story-badge strong {
  display: block; font-family: 'Merriweather', serif;
  font-size: 1.5rem; font-weight: 900; color: var(--navy);
}
.story-badge span {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--navy); opacity: 0.7;
}

.about-story-text {
  background: var(--off-white);
  padding: 88px 72px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-story-text h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900; color: var(--navy);
  line-height: 1.25; margin-bottom: 22px;
}
.about-story-text h2 em { color: var(--gold); font-style: italic; }

.story-lead {
  font-size: 1rem; font-weight: 600; color: var(--navy);
  line-height: 1.75; margin-bottom: 16px;
}
.about-story-text p {
  font-size: 0.9rem; color: var(--gray);
  line-height: 1.85; margin-bottom: 14px;
}

.story-values { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.sv-item { display: flex; align-items: flex-start; gap: 16px; }
.sv-icon {
  width: 40px; height: 40px; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.sv-item strong {
  display: block; font-size: 0.88rem; font-weight: 700;
  color: var(--navy); margin-bottom: 3px;
}
.sv-item p { font-size: 0.82rem; color: var(--gray); line-height: 1.6; margin: 0; }

/* Stats Bar */
.stats-bar {
  background: var(--navy);
  padding: 64px 40px;
  border-top: 3px solid var(--gold);
}
.stats-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap;
}
.stat {
  flex: 1; min-width: 180px;
  text-align: center; padding: 20px 32px;
  display: flex; flex-direction: column; align-items: center;
}
.stat-num {
  font-family: 'Merriweather', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900; color: var(--gold);
  line-height: 1;
}
.stat-suffix {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900; color: var(--gold);
  line-height: 1;
}
.stat > span:first-child, .stat > span:nth-child(2) { display: inline; }
.stat-num-wrap { display: flex; align-items: baseline; justify-content: center; gap: 2px; }

.stat-label {
  display: block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-top: 10px;
}
.stat-divider {
  width: 1px; height: 56px;
  background: rgba(201,168,76,0.2);
}

/* Team */
.team-section {
  background: var(--white);
  padding: 100px 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--off-white);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(15,30,60,0.14);
}

.team-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.team-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 0.6s ease;
}
.team-card:hover .team-img img { transform: scale(1.06); }

.team-overlay {
  position: absolute; inset: 0;
  background: rgba(15,30,60,0.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.team-card:hover .team-overlay { opacity: 1; }

.team-info { padding: 28px 28px 32px; }

.team-info-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  gap: 12px;
}
.team-info-top h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--navy); line-height: 1.3;
}
.team-role {
  display: block; font-size: 0.68rem;
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-top: 4px;
}
.team-exp {
  text-align: center; flex-shrink: 0;
  background: var(--navy); padding: 8px 12px;
  font-family: 'Merriweather', serif;
  font-size: 1.1rem; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.team-exp span {
  display: block; font-size: 0.6rem;
  font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.team-info p {
  font-size: 0.85rem; color: var(--gray);
  line-height: 1.8; margin-bottom: 18px;
}
.team-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.team-tags span {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.5px; color: var(--navy);
  background: var(--light-gray);
  padding: 4px 10px; border-left: 2px solid var(--gold);
}

/* CTA */
.about-cta {
  background: var(--navy); padding: 100px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.about-cta::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1400&q=50') center/cover;
  opacity: 0.05;
}
.about-cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.about-cta-inner h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900; color: #fff;
  line-height: 1.2; margin-bottom: 16px;
}
.about-cta-inner p {
  font-size: 0.95rem; color: rgba(255,255,255,0.62);
  line-height: 1.8; margin-bottom: 36px;
}
.about-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Reveal */
.reveal-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Active nav */
.nav-active { color: var(--gold) !important; }

/* Responsive */
@media (max-width: 960px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .about-story { grid-template-columns: 1fr; }
  .about-story-img { height: 380px; }
  .about-story-text { padding: 60px 36px; }
  .stats-inner { flex-wrap: wrap; gap: 0; }
  .stat-divider { display: none; }
  .stat { padding: 24px 20px; }
}
@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; }
  .about-cta { padding: 72px 24px; }
}
