/* About page — quiet editorial register (Literata + AllRoundGothic on paper).
   Will be retuned to whichever homepage direction wins the test. */

body {
  font-family: 'Literata', Georgia, 'Times New Roman', serif;
  font-size: 1.0625rem;
}

.tb-letterhead {
  border-bottom: 1px solid var(--tb-hairline);
  padding: 1.1rem 0;
}
.tb-letterhead .tb-wrap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.tb-mark {
  font-family: var(--tb-display);
  font-weight: 600;
  font-size: 1.25rem;
  text-decoration: none;
}
.tb-letterhead nav { display: flex; gap: 1.6rem; }
.tb-letterhead nav a {
  font-family: var(--tb-display);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
}
.tb-letterhead nav a:hover { color: var(--tb-forest); }

.tb-page { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.tb-page h1 {
  font-family: var(--tb-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 1rem 0 2rem;
  max-width: 16em;
}
.tb-story p {
  max-width: var(--tb-measure);
  margin-bottom: 1.2rem;
}
.tb-story-heading {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.tb-ribbon {
  width: 1.35rem;
  height: auto;
  flex-shrink: 0;
}
.tb-story .tb-story-lesson {
  font-style: italic;
  color: var(--tb-forest);
  font-size: 1.1875rem;
}

.tb-sec {
  border-top: 1px solid var(--tb-hairline);
  padding: clamp(2.8rem, 6vw, 4.5rem) 0;
}
.tb-sec h2 {
  font-family: var(--tb-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  margin: 0.6rem 0 1.2rem;
}
.tb-sec > .tb-wrap > p { max-width: var(--tb-measure); margin-bottom: 1rem; }

.tb-beliefs { max-width: 44rem; display: grid; gap: 1.1rem; }
.tb-beliefs li {
  padding-left: 1.4rem;
  position: relative;
}
.tb-beliefs li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--tb-forest);
}

/* ------------------------------------------------------------------- team */
/* Fixed 4 columns / 2 rows (7 people + 1 open seat) so every photo and
   subtitle can run larger than the old auto-fill grid allowed. */
.tb-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem 1.8rem;
  margin-top: 2rem;
}
@media (max-width: 760px) {
  .tb-team-grid { grid-template-columns: repeat(2, 1fr); gap: 1.8rem 1.2rem; }
}
.tb-team-card { display: grid; gap: 0.7rem; }
.tb-team-photo {
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  background: var(--tb-tint);
  border: 1px solid var(--tb-hairline);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.tb-team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tb-team-photo svg { width: 34%; opacity: 0.5; }
.tb-team-photo-primary,
.tb-team-photo-secondary {
  position: absolute;
  inset: 0;
  transition: opacity 0.35s ease;
}
.tb-team-photo-secondary { opacity: 0; }
.tb-team-card.is-flipped .tb-team-photo-primary { opacity: 0; }
.tb-team-card.is-flipped .tb-team-photo-secondary { opacity: 1; }
.tb-team-subtitle-secondary { display: none; }
.tb-team-card.is-flipped .tb-team-subtitle-primary { display: none; }
.tb-team-card.is-flipped .tb-team-subtitle-secondary { display: block; }
.tb-team-photo-hint {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  background: rgba(46, 61, 41, 0.55);
  color: #fff;
  font-family: var(--tb-display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.tb-team-card.is-flipped .tb-team-photo-hint { opacity: 0; }
.tb-team-role {
  font-family: var(--tb-display);
  font-weight: 600;
  font-size: 1.1875rem;
  line-height: 1.25;
}
.tb-team-name { color: var(--tb-deep); opacity: 0.75; font-size: 1rem; }
.tb-team-subtitle {
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--tb-deep);
  opacity: 0.85;
  margin: 0;
}

/* ----------------------------------------------------------------- copper */
.tb-copper-layout {
  display: grid;
  grid-template-columns: minmax(200px, 320px) 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.tb-copper-photo {
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--tb-hairline);
}
.tb-copper-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tb-copper p { max-width: var(--tb-measure); margin-bottom: 1.1rem; }
@media (max-width: 640px) {
  .tb-copper-layout { grid-template-columns: 1fr; }
  .tb-copper-photo { max-width: 260px; margin: 0 auto; }
}

.tb-cta { text-align: left; }
.tb-cta p { max-width: var(--tb-measure); margin-bottom: 1.4rem; }
