/* ── About Page Styles ───────────────────────────────────────── */

/* Story Section */
.story-section { background: var(--bg); }

.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  margin-bottom: var(--space-2xl);
}

.story-block:last-child { margin-bottom: 0; }

.story-block.reverse { direction: rtl; }
.story-block.reverse > * { direction: ltr; }

.story-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.story-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--r-lg);
  transition: transform 0.8s var(--ease);
}
.story-img-wrap:hover img { transform: scale(1.03); }

.story-img-accent {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 120px; height: 120px;
  border: 2px solid var(--accent);
  border-radius: var(--r-md);
  z-index: -1;
}

.story-text .divider { margin: var(--space-md) 0; }
.story-text p { margin-bottom: var(--space-md); line-height: 1.85; }

/* Highlights Parallax */
.highlights-section {
  position: relative;
  overflow: hidden;
  padding: var(--space-2xl) 0;
}

.highlights-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  filter: brightness(0.4);
}

.highlights-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
  color: #fff;
}

.highlight-item {}

.highlight-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.highlight-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* Team Slider */
.team-section { background: var(--bg-alt); }

.team-slider-container {
  position: relative;
  overflow: hidden;
  margin-top: var(--space-xl);
}

.team-track {
  display: flex;
  transition: transform var(--dur-slow) var(--ease);
}

.team-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: center;
}

.team-portrait {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--r-lg);
}

.team-info { }
.team-info .script { font-size: 1rem; }
.team-info h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.3rem;
}
.team-role {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--body);
  margin-bottom: var(--space-md);
}

.team-info .divider { margin: var(--space-md) 0; }
.team-info p { line-height: 1.85; margin-bottom: var(--space-lg); }

.team-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 2px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all var(--dur-fast) var(--ease);
  text-decoration: none;
}
.team-call-btn:hover {
  background: var(--accent);
  color: #fff;
}

.team-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.team-nav-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--body);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  background: none;
  font-size: 0.8rem;
}
.team-nav-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Clients Carousel */
.clients-section { background: var(--bg); overflow: hidden; }

.clients-track-wrap {
  overflow: hidden;
  margin-top: var(--space-xl);
  position: relative;
}

.clients-track-wrap::before,
.clients-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 1;
}
.clients-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.clients-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.clients-track {
  display: flex;
  gap: var(--space-xl);
  width: max-content;
  animation: marquee 30s linear infinite;
}

.clients-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.client-logo {
  height: 48px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.45);
  transition: filter var(--dur-fast) var(--ease);
  flex-shrink: 0;
}
.client-logo:hover { filter: grayscale(0%) opacity(1); }

/* About Responsive */
@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); }
}

@media (max-width: 768px) {
  .story-block,
  .story-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: var(--space-xl);
  }
  .story-img-wrap img { height: 300px; }
  .team-slide { grid-template-columns: 1fr; }
  .team-portrait { aspect-ratio: 1/1; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
}
