/*
 * bn-about.css — About page styles
 * Loaded only on /about.php
 */

/* ── STUDIO STORY ─────────────────────────────────────────── */

.about-story {
  padding: 80px 24px 64px;
}

.about-story__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-story__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bn-acc);
  margin-bottom: 20px;
}

.about-story__headline {
  font-family: var(--bn-font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--bn-text);
  line-height: 1.15;
  margin-bottom: 24px;
}

.about-story__body {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--bn-text-muted);
  line-height: 1.75;
}

.about-story__body p + p {
  margin-top: 16px;
}


/* ── TEAM SECTION ─────────────────────────────────────────── */

.team {
  padding: 80px 24px 96px;
}

.team__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.team__header {
  text-align: center;
  margin-bottom: 56px;
}

.team__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bn-acc);
  margin-bottom: 12px;
}

.team__headline {
  font-family: var(--bn-font-display);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--bn-text);
}

/* Grid — 2-col on desktop, stacks on mobile */
.team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Single card — center it when only one member is present */
.team__grid--single {
  grid-template-columns: minmax(0, 560px);
  justify-content: center;
}

/* ── TEAM CARD ────────────────────────────────────────────── */

.team__card {
  background: var(--bn-surf);
  border: 1px solid var(--bn-bdr);
  border-radius: 12px;
  overflow: hidden;           /* clips the portrait photo to card corners */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.team__card--founder {
  border-top: 3px solid var(--bn-acc);
}

/* Portrait photo — full card width, tall crop */
.team__photo-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bn-bg);
  flex-shrink: 0;
}

.team__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.team__card:hover .team__photo {
  transform: scale(1.03);
}

/* Initials fallback — shown when no photo is uploaded */
.team__initials {
  width: 100%;
  height: 100%;
  background: var(--bn-acc);
  color: var(--bn-acc-on);
  font-family: var(--bn-font-display);
  font-size: 48px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}

/* Card content area below the photo */
.team__card > .team__name,
.team__card > .team__role,
.team__card > .team__bio,
.team__card > .team__social {
  padding-left: 36px;
  padding-right: 36px;
}

.team__card > .team__name  { padding-top: 32px; }
.team__card > .team__social { padding-bottom: 32px; }

/* Name & role */
.team__name {
  font-family: var(--bn-font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--bn-text);
  margin-bottom: 4px;
  line-height: 1.2;
}

.team__role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bn-acc);
  margin-bottom: 24px;
}

/* Bio */
.team__bio {
  flex: 1;
}

.team__bio p {
  font-size: 15px;
  color: var(--bn-text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.team__bio p:last-child {
  margin-bottom: 0;
}

.team__bio a {
  color: var(--bn-acc);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.team__quote {
  border-left: 3px solid var(--bn-acc);
  margin: 16px 0;
  padding: 4px 0 4px 16px;
  font-size: 15px;
  font-style: italic;
  color: var(--bn-text);
  line-height: 1.6;
}

/* Social icons */
.team__social {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--bn-bdr);
  width: 100%;
}

.team__social a {
  color: var(--bn-text-faint);
  display: flex;
  align-items: center;
  transition: color 0.18s ease;
}

.team__social a:hover {
  color: var(--bn-acc);
}

/* ── VALUES STRIP ─────────────────────────────────────────── */

.about-values {
  background: var(--bn-surf);
  padding: 72px 24px;
  border-top: 1px solid var(--bn-bdr);
  border-bottom: 1px solid var(--bn-bdr);
}

.about-values__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.about-values__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-values__num {
  font-family: var(--bn-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bn-acc);
}

.about-values__title {
  font-family: var(--bn-font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--bn-text);
  line-height: 1.2;
}

.about-values__desc {
  font-size: 14px;
  color: var(--bn-text-muted);
  line-height: 1.7;
}

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

@media (max-width: 800px) {
  .team__grid {
    grid-template-columns: 1fr;
  }

  .team__grid--single {
    grid-template-columns: 1fr;
  }

  .team__card > .team__name,
  .team__card > .team__role,
  .team__card > .team__bio,
  .team__card > .team__social {
    padding-left: 24px;
    padding-right: 24px;
  }
  .team__card > .team__social { padding-bottom: 24px; }

  .about-values__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .about-story { padding: 56px 24px 48px; }
  .team { padding: 56px 24px 72px; }
  .about-values { padding: 56px 24px; }
}
