/* Beta release polish: brand emphasis, interaction and accessible motion. */
:root { --gold-on-light: #79621f; }

#about .section-index,
#about .timeline time,
#capabilities .section-index,
#capabilities .capability > span,
#team .section-index,
#team .founder-card .role-label,
#team .member__number,
#team .member .role-label,
#method .section-index {
  color: var(--gold-on-light);
}

.hero__tagline {
  max-width: 820px;
  font-size: clamp(1.55rem, 3vw, 2.75rem);
  font-weight: 650;
  line-height: 1.4;
  text-wrap: balance;
}

.hero__disciplines { margin-top: 18px; }

.work__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 10px;
  color: var(--warm-gray);
  font-family: var(--font-accent);
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.work__meta time { color: var(--gold); }

.member {
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.member__avatar { transition: transform .35s ease; }

.member:hover,
.member:focus-within {
  border-color: var(--gold);
  box-shadow: 0 18px 38px rgba(60, 60, 60, .14);
  transform: translateY(-6px);
}

.member:hover .member__avatar,
.member:focus-within .member__avatar { transform: scale(1.035); }

.member p:last-child { transition: color .25s ease, transform .25s ease; }

.member:hover p:last-child,
.member:focus-within p:last-child {
  color: var(--ink);
  transform: translateY(-3px);
}

.site-footer .site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px 48px;
  padding: 40px 0;
}

.site-footer__brand { display: grid; gap: 2px; }
.site-footer__brand strong { color: var(--white); font-size: 1rem; }
.site-footer__brand span {
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: .68rem;
  letter-spacing: .08em;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
}

.site-footer a:hover { color: var(--gold); }
.site-footer__copyright {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(230, 226, 218, .18);
}

.site-nav a:focus-visible,
.button:focus-visible,
.hero__next:focus-visible,
.work__body a:focus-visible,
.contact__links a:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.button,
.work__body a,
.site-footer a {
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.button:hover,
.work__body a:hover { transform: translateY(-2px); }

.js .process li {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}

.js .process li.is-visible { opacity: 1; transform: none; }
.js .process li:nth-child(2) { transition-delay: .08s; }
.js .process li:nth-child(3) { transition-delay: .16s; }
.js .process li:nth-child(4) { transition-delay: .24s; }
.js .process li:nth-child(5) { transition-delay: .32s; }

@media (max-width: 720px) {
  .site-footer .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__nav { justify-content: flex-start; }
  .site-footer__copyright { grid-column: auto; }
}

@media (max-width: 430px) {
  .site-footer__nav { display: grid; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .js .process li { opacity: 1; transform: none; }
  .member:hover,
  .member:focus-within,
  .member:hover .member__avatar,
  .member:focus-within .member__avatar,
  .member:hover p:last-child,
  .member:focus-within p:last-child { transform: none; }
}
