/* ── About Team Gallery ── */
.about-team {
  background: #111;
  padding: clamp(60px, 7vw, 96px) 0;
  text-align: center;
}

.about-team-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-team-heading {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: var(--t-heading-ls);
  margin-top: 0;
  margin-bottom: 56px;
  line-height: 1.1;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-team-card { text-align: center; }

.about-team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #1e1e1e;
}

.about-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.about-team-photo-placeholder {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.04) 0px,
    rgba(255,255,255,0.04) 1px,
    transparent 1px,
    transparent 6px
  );
}

.about-team-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.about-team-title {
  font-size: 12px;
  color: #4db8ff;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* ── About Avery — Founder Spotlight ── */
.about-avery {
  background: var(--blue-dark);
  padding: clamp(60px, 7vw, 96px) 0;
}

.about-avery-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}

.about-avery-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}

.about-avery-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.about-avery-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.05) 0px,
    rgba(255,255,255,0.05) 1px,
    transparent 1px,
    transparent 6px
  );
}

.about-avery-text h2 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: var(--t-heading-ls);
  margin-top: 0;
  margin-bottom: 28px;
  line-height: 1.1;
}

.about-avery-text h2 span { color: #4db8ff; }

.about-avery-text h3 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: #4db8ff;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 24px;
}

.about-avery-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-avery-text p:last-child { margin-bottom: 0; }
.about-avery-text strong { color: var(--white); font-weight: 600; }


/* ── Responsive ── */
@media (max-width: 900px) {
  .about-team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .about-avery-inner { grid-template-columns: 1fr; }
  .about-avery-photo {
    max-width: 360px;
    margin: 0 auto;
    aspect-ratio: 4 / 5;
    height: auto;
  }
  .about-avery-photo img {
    position: static;
    inset: auto;
  }
}

@media (max-width: 520px) {
  .about-team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .about-avery-inner { padding: 0 20px; }
}
