/* ============================================================
   ABOUT SECTION
============================================================ */
.about-section {
  background: var(--off-white);
  padding: var(--sp-3xl) 0;
  overflow: hidden;
}

/* Two column layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding-bottom: var(--sp-3xl);
}

/* ── Left — Text ── */
.eyebrow-dark {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brand-red);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.eyebrow-dark::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--brand-red);
}

.about-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--navy-deep);
  margin-bottom: 1.5rem;
}
.about-heading span { color: var(--brand-blue); }

.about-body {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.85;
  color: #555;
  margin-bottom: 2rem;
}

/* Stats inline row */
.about-stats-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.about-stat { text-align: center; }

.about-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  color: var(--brand-blue);
  letter-spacing: 0.02em;
}

.about-stat-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-top: 0.3rem;
}

.about-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.about-btn { display: inline-flex; }


/* ── Right — Masonry Grid ── */
.about-masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  height: 560px;
}

.masonry-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Second column — offset downward for Pinterest feel */
.masonry-col:nth-child(2) {
  margin-top: 2.5rem;
}

.masonry-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  flex: 1;
  cursor: pointer;
}

/* Tall items take more vertical space */
.masonry-item.tall { flex: 1.8; }

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  display: block;
}

/* Zoom in on hover */
.masonry-item:hover img {
  transform: scale(1.07);
}

/* Dark overlay on each photo */
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11,24,41,0.75) 0%,
    transparent 50%
  );
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Label appears on hover */
.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

.masonry-overlay span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
}

/* Stagger animation on scroll — items slide up as they enter view */
.masonry-item {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.masonry-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Each item animates slightly after the previous */
.masonry-col:nth-child(1) .masonry-item:nth-child(1) { transition-delay: 0s; }
.masonry-col:nth-child(1) .masonry-item:nth-child(2) { transition-delay: 0.15s; }
.masonry-col:nth-child(2) .masonry-item:nth-child(1) { transition-delay: 0.1s; }
.masonry-col:nth-child(2) .masonry-item:nth-child(2) { transition-delay: 0.25s; }


/* ── Mobile ── */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-masonry {
    height: 400px;
  }
  .about-stats-row {
    gap: 1rem;
  }
}