:root {
  --about-bg: #671f21;
  --about-accent: #f3f3f3;
  --about-muted: rgba(243, 243, 243, 0.7);
}

.about-page {
  background: var(--about-bg);
}

/* ========== HERO ========== */

.about-hero {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 140px 0 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-hero__text {
  max-width: 960px;
  /* controls width for ALL hero lines */
  margin: 0 auto;
}

/* eyebrow (for "the team" later) */
.eyebrow {
  font-family: 'Hiragino Kaku Gothic Std', 'Suisse Intl', sans-serif;
  font-weight: 800;
  letter-spacing: -0.08em;
  color: #f3f3f3;
  font-size: 55px;
  margin-bottom: 10px;
  text-shadow: 0 1.31px 1.31px rgba(0, 0, 0, 0.25);
  text-shadow: 0 0 20px rgba(243, 243, 243, 0.5);
  filter: blur(0.1px);
}

/* base style for both hero + sub-hero */
.headline {
  font-family: 'Suisse Intl', sans-serif;
  font-weight: 400;
  color: var(--about-accent);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
  text-shadow: 0 1.31px 1.31px rgba(0, 0, 0, 0.25);
  text-shadow: 0 0 20px rgba(243, 243, 243, 0.5);
  filter: blur(0.1px);
}

/* MAIN HERO (2 lines) */
.headline-main {
  font-size: clamp(32px, 4.4vw, 42px);
  word-spacing: 0.09em;
  /* spacing so line 1 & 2 stretch nicely */
}

/* SUB HERO (2 lines) */
.headline-sub {
  font-size: clamp(32px, 4.4vw, 42px);
  margin-top: 120px;
  /* gap between hero & sub-hero */
  word-spacing: 0.3em;
  /* same as hero → same visual width */
}

/* bold words in sub-hero */
.sub-strong {
  font-weight: 600;
}

/* ========== TEAM SECTION ========== */

.about-section-title {
  text-align: center;
  margin: 0 auto 32px;
  max-width: 1200px;
  padding: 0 24px;
}

.section-headline {
  font-family: 'Hiragino Kaku Gothic Std', 'Suisse Intl', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--about-accent);
  line-height: 1.1;
  margin: 6px 0 0;
}

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

.team-stack {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}

.team-card {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.team-photo {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  background: #1a1a1a;
  filter: drop-shadow(0 0 20px rgba(243, 243, 243, 0.1));
}

.team-photo.square {
  aspect-ratio: 1 / 1;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

}

.team-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.team-name {
  font-family: 'Hiragino Kaku Gothic Std', 'Suisse Intl', sans-serif;
  font-weight: 800;
  font-size: 34px;
  color: var(--about-accent);
  margin: 0;
  letter-spacing: -0.07em;
  filter: blur(0.1px);
}

.team-role {
  font-family: 'Suisse Intl', sans-serif;
  color: var(--about-muted);
  font-size: 25px;
  letter-spacing: -0.03cm;
  margin: 0;
  text-shadow: 0 1.31px 1.31px rgba(0, 0, 0, 0.25),
    0 0 20px rgba(243, 243, 243, 0.5);
  filter: blur(0.1px);
}

/* ========== CONTACT SECTION ========== */

.about-contact {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-contact__text {
  max-width: 960px;
  width: 100%;
  text-align: center;
}

.contact-text {
  font-family: 'Suisse Intl', sans-serif;
  font-size: 34px;
  color: #f3f3f3;
  margin: 0;
  letter-spacing: -0.04em;
  text-shadow: 0 1.31px 1.31px rgba(0, 0, 0, 0.25),
    0 0 20px rgba(243, 243, 243, 0.5);
  filter: blur(0.1px);
}

.contact-link {
  color: #f3f3f3;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.contact-link:hover {
  color: var(--about-muted);
  opacity: 0.8;
}

/* ========== MOBILE TWEAKS ========== */

@media (max-width: 768px) {

  .about-hero {
    padding: 60px 24px 60px;
    margin: 0 auto;
  }

  .about-hero__text {
    max-width: 100%;
  }

  /* smaller, no extreme word-spacing, allow nice 3-line look on tiny screens */
  .headline-main {
    font-size: clamp(22px, 5.4vw, 28px);
    word-spacing: 0.08em;
    text-align: justify;
    text-shadow: 0 1.31px 1.31px rgba(0, 0, 0, 0.25);
    text-shadow: 0 0 20px rgba(243, 243, 243, 0.5);
    filter: blur(0px);
  }

  .headline-sub {
    font-size: clamp(22px, 5.4vw, 28px);
    word-spacing: 0.25em;
    text-align: justify;
    text-shadow: 0 1.31px 1.31px rgba(0, 0, 0, 0.25);
    text-shadow: 0 0 20px rgba(243, 243, 243, 0.5);
    filter: blur(0px);
  }

  .headline-sub {
    margin-top: 64px;
    text-shadow: 0 1.31px 1.31px rgba(0, 0, 0, 0.25);
    text-shadow: 0 0 20px rgba(243, 243, 243, 0.5);
    filter: blur(0px);
  }

  .eyebrow {
    text-shadow: 0 1.31px 1.31px rgba(0, 0, 0, 0.25);
    text-shadow: 0 0 20px rgba(243, 243, 243, 0.5);
    filter: blur(0px);
  }

  .about-team {
    padding: 0 24px;
    margin-bottom: 80px;
  }

  .team-card {
    max-width: 220px;
  }

  .team-name {
    font-size: 30px;
    text-shadow: 0 1.31px 1.31px rgba(0, 0, 0, 0.25);
    text-shadow: 0 0 20px rgba(243, 243, 243, 0.5);
    filter: blur(0px);
  }

  .team-role {
    font-size: 19px;
    text-shadow: 0 1.31px 1.31px rgba(0, 0, 0, 0.25);
    text-shadow: 0 0 20px rgba(243, 243, 243, 0.5);
    filter: blur(0px);
  }

  .about-contact {
    padding: 0 24px 40px;
  }

  .contact-link:active {
    color: var(--about-muted);
    opacity: 0.8;
  }

  .contact-text {
    font-family: 'Suisse Intl', sans-serif;
    font-size: 25px;
    text-shadow: 0 1.31px 1.31px rgba(0, 0, 0, 0.25);
    text-shadow: 0 0 20px rgba(243, 243, 243, 0.5);
    filter: blur(0px);
  }

}