/* ── About page ── */

/* Shared label style */
.about-label,
.about-section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* Active nav link */
.nav-active { color: var(--accent) !important; }

/* ── Page header ── */
.about-hero {
  position: relative;
  padding: 160px 0 96px;
  overflow: hidden;
}
.about-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(30,31,22,0.55) 0%, rgba(30,31,22,0.45) 100%);
}
.about-hero-content {
  position: relative;
  z-index: 2;
}
.about-hero h1 {
  color: var(--white);
  margin: 0.75rem 0 1.5rem;
}
.about-hero-sub {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  line-height: 1.75;
}

/* ── Intro ── */
.about-intro { background: var(--white); }
.about-intro-inner { max-width: 760px; }
.about-lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 1.25rem;
}
.about-intro-inner p { font-size: 1rem; }

/* ── Two-column layout (Vision + Approach) ── */
.about-vision { background: var(--cream); }
.about-approach { background: var(--cream); }

.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-two-col-left h2 { margin-top: 0.5rem; }
.about-two-col-right p + p { margin-top: 1.25rem; }
.about-two-col-right p { font-size: 0.9375rem; }

/* ── Team ── */
.about-team { background: var(--white); }
.about-team h2 { margin: 0.5rem 0 1rem; }
.about-team-intro {
  max-width: 660px;
  margin-bottom: 3.5rem;
  font-size: 0.9375rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}
.team-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.team-photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.team-info { padding-top: 0.25rem; margin-top: -10px; }
.team-info h3 {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 0.25rem;
}
.team-role {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.team-info p { font-size: 0.9rem; line-height: 1.75; }

.team-together {
  margin-top: 3rem;
  max-width: 820px;
  font-size: 0.9375rem;
  line-height: 1.8;
}

/* ── What we create ── */
.about-create { background: var(--white); }
.about-create h2 { margin: 0.5rem 0 1.5rem; }
.about-create-sub {
  max-width: 680px;
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.about-create-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.about-create-tags a {
  padding: 0.5rem 1.125rem;
  border: 1.5px solid var(--dark);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.about-create-tags a:hover {
  background: var(--dark);
  color: var(--white);
}

/* ── Contact section extra top spacing ── */
.contact-section {
  padding-top: 80px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .about-hero { padding: 120px 0 72px; }

  .about-two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .team-card {
    grid-template-columns: 160px 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .team-card {
    grid-template-columns: 1fr;
  }
  .team-photo { aspect-ratio: 4/3; }
  .team-photo-laura img { object-position: center -25px; }
}
