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

/* Hero */
.about-hero {
  position: relative;
  height: 55vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 72px;
}

.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: rgba(26,26,26,0.62);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  animation: fadeUp 0.9s ease 0.2s both;
}

.about-hero-content .label { color: var(--gold); margin-bottom: 16px; }

.about-hero-content h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 16px;
}

.about-hero-content p {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  letter-spacing: 0.5px;
  max-width: 520px;
  margin: 0 auto;
}

/* Story Split */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.story-split-img {
  overflow: hidden;
}
.story-split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.story-split-img:hover img { transform: scale(1.04); }

.story-split-text {
  background: var(--cream);
  padding: 96px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-split-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 28px;
}
.story-split-text h2 em { color: var(--red); }

.story-intro {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.75;
  margin-bottom: 20px;
}

.story-split-text p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 16px;
}

/* Stats */
.stats-section {
  background: var(--dark);
  padding: 72px 48px;
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 24px 40px;
}

.stat-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 3px;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-family: 'Oswald', sans-serif;
}

.stat-divider {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,0.1);
}

/* Image break with quote */
.about-img-break {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.about-img-break img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.about-img-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.58);
}

.about-img-quote {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.about-img-quote h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 20px;
}
.about-img-quote h2 em { color: var(--gold); font-style: italic; }

.about-img-quote cite {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-style: normal;
}

/* Team */
.team-section {
  background: var(--light);
  padding: 100px 48px;
}

.team-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.team-header {
  text-align: center;
  margin-bottom: 64px;
}

.team-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.team-header p {
  font-size: 0.95rem;
  color: var(--gray);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.team-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.team-img {
  height: 300px;
  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-info {
  padding: 28px 30px 32px;
}

.team-info h3 {
  font-size: 1.6rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 6px;
}

.role {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  font-family: 'Oswald', sans-serif;
}

.team-info p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.8;
}

/* CTA */
.about-cta {
  background: var(--dark);
  padding: 100px 48px;
  text-align: center;
}

.about-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.about-cta h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}
.about-cta h2 em { color: var(--gold); }

.about-cta p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 960px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .story-split { grid-template-columns: 1fr; }
  .story-split-img { height: 360px; }
  .story-split-text { padding: 60px 36px; }
  .stats-inner { flex-direction: column; gap: 0; }
  .stat-divider { width: 80px; height: 1px; margin: 0 auto; }
  .team-section { padding: 72px 24px; }
}

@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; }
  .about-cta { padding: 72px 24px; }
  .about-img-break { height: 380px; }
}
