/* ─── INTRO ──────────────────────────────────────────────────── */
.about-intro {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 56px;
  border-bottom: 1px solid var(--border);
}

/* Full-width header image — breaks out of container */
.intro-header {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  aspect-ratio: 1920 / 700;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.intro-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}

/* fade out to page bg at the bottom */
.intro-header-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    transparent 30%,
    rgba(8,8,8,0.75) 70%,
    rgba(8,8,8,1) 100%
  );
}

.intro-header-content {
  position: relative;
  z-index: 2;
  padding: 32px 24px 44px;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.intro-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.intro-title {
  font-family: var(--font-bebas);
  font-size: clamp(48px, 12vw, 90px);
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: #fff;
}

/* Two-column layout */
.intro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.intro-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.intro-text p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

.intro-text strong {
  color: #fff;
  font-weight: 600;
}

/* Right images */
.intro-images {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.intro-img {
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}

.intro-img.tall {
  aspect-ratio: 4/3;
}

.intro-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.intro-img-row .intro-img {
  aspect-ratio: 1/1;
}

/* Trusted by strip */
.intro-clients {
  padding: 40px 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--border);
}

.clients-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px 48px;
}

.clients-grid img {
  height: 22px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.3;
  transition: opacity 0.2s;
}
.clients-grid img:hover { opacity: 0.7; }

/* ─── SERVICES ───────────────────────────────────────────────── */
.about-services {
  max-width: 1000px;
  margin: 0 auto;
  padding: 64px 24px;
  border-bottom: 1px solid var(--border);
}

.section-heading {
  font-family: var(--font-bebas);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  margin-bottom: 36px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.service-item {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-item:nth-child(3n) { border-right: none; }
.service-item:nth-last-child(-n+3) { border-bottom: none; }

.service-num {
  font-family: var(--font-bebas);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.service-title {
  font-family: var(--font-bebas);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1.1;
}

.service-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
}

/* ─── CTA ────────────────────────────────────────────────────── */
.about-cta {
  text-align: center;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.cta-heading {
  font-family: var(--font-bebas);
  font-size: clamp(40px, 12vw, 80px);
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: #fff;
}

/* ─── NAV ACTIVE STATE ───────────────────────────────────────── */
.nav-link.active { color: #fff; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 768px) {
  .about-intro { padding: 0 16px 0; gap: 40px; }

  /* header image: show full image on mobile */
  .intro-header {
    aspect-ratio: 2752 / 1536;
    min-height: unset;
    max-height: unset;
  }
  .intro-header-bg {
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
  }
  .intro-header-content { padding: 16px 16px 24px; }
  .intro-title { font-size: clamp(36px, 12vw, 64px); }

  /* stack columns */
  .intro-layout { grid-template-columns: 1fr; gap: 28px; }
  .intro-images { order: -1; }
  .intro-img.tall { aspect-ratio: 16/9; }

  .about-services { padding: 48px 16px; }
  .about-cta { padding: 56px 16px; }
  .intro-clients { padding: 32px 0 36px; gap: 16px; }
}

/* Phone */
@media (max-width: 600px) {
  .intro-header { min-height: 52vw; max-height: 280px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-item:nth-child(3n)        { border-right: 1px solid var(--border); }
  .service-item:nth-child(2n)        { border-right: none; }
  .service-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .service-item:nth-last-child(-n+2) { border-bottom: none; }

  .intro-text p { font-size: 14px; line-height: 1.7; }
  .clients-grid { gap: 20px 24px; }
  .clients-grid img { height: 16px; }
  .service-item { padding: 20px 16px; }
  .service-title { font-size: 18px; }
  .service-desc { font-size: 12px; }
}

/* iPhone SE */
@media (max-width: 400px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-item { border-right: none !important; }
  .service-item:last-child { border-bottom: none !important; }
  .service-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .intro-header { min-height: 48vw; }
  .about-cta { padding: 40px 12px; }
  .clients-grid img { height: 14px; }
  .clients-grid { gap: 16px 18px; }
}
