/* SouthTorch — "bold" direction. Structural/visual language reference: a11.com
   (huge uppercase display type, italic section labels, numbered value manifesto,
   black/white base + one hard accent color). Built on top of style.css. */

@import url("style.css");

:root {
  --klein: #002fa7;
}

.brand-mark {
  height: 1.7rem;
  width: auto;
}

/* accent takes over the interactive/highlight moments that were --muted before */
.nav-links a:hover {
  color: var(--klein);
}

.service-index {
  color: var(--klein);
  font-weight: 600;
}

.contact-email {
  border-bottom-color: var(--klein);
}
.contact-email:hover {
  color: var(--klein);
}

.italic {
  font-style: italic;
}

.hero-twist {
  font-size: clamp(1rem, 2vw, 1.35rem);
  margin: 1.1rem 0 0;
}

/* the hero-sub carries a longer statement in this direction, give it room */
.hero-sub {
  max-width: 46ch;
}

/* values — full-bleed Klein Blue manifesto block */
.values {
  background: var(--klein);
  color: #ffffff;
  border-top: none;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}

.values-head p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.4;
  max-width: 30ch;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.85);
}

.values-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: val;
}

.values-list li {
  counter-increment: val;
  display: flex;
  align-items: baseline;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.values-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.values-list li::before {
  content: counter(val, decimal-leading-zero);
  flex-shrink: 0;
  width: 2.5ch;
  font-size: 0.9rem;
  opacity: 0.6;
}

.values-list h3 {
  font-family: "Archivo", "Inter", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 4.2vw, 3rem);
  line-height: 1;
  margin: 0;
  letter-spacing: -0.01em;
}

.values-list li:hover h3 {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

/* team — placeholders until real photos/bios/links land */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.team-avatar {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Archivo", "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.team-name {
  font-family: "Archivo", "Inter", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  margin: 0 0 0.4rem;
  letter-spacing: -0.005em;
}

.team-role {
  color: var(--klein);
  margin-bottom: 1.1rem;
}

.team-bio {
  color: var(--muted);
  max-width: 40ch;
  margin: 0 0 1.1rem;
}

.team-link {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--fg);
  padding-bottom: 0.2em;
}

.team-link:hover {
  color: var(--klein);
  border-bottom-color: var(--klein);
}

@media (max-width: 720px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  .values-list li {
    padding: 1.25rem 0;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
