/* Growthspan — v2 editorial redesign. No build step. */

:root {
  --paper: #f6f2ea;
  --paper-soft: #efe9dd;
  --ink: #1b1a17;
  --ink-soft: #3d3a35;
  --muted: #6f6a62;
  --line: rgba(27, 26, 23, 0.14);
  --line-soft: rgba(27, 26, 23, 0.07);
  --accent: #a13b1f;
  --accent-ink: #7a2a12;
  --accent-soft: rgba(161, 59, 31, 0.08);
  --ring: rgba(161, 59, 31, 0.45);
  --available: #15803d;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1120px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

#main {
  min-width: 0;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--accent);
  color: var(--paper);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: 6px;
  z-index: 100;
}
.skip-link:focus {
  left: 1rem;
}

.wrap {
  width: min(100% - var(--gutter) * 2, var(--max));
  max-width: 100%;
  margin-inline: auto;
  min-width: 0;
  box-sizing: border-box;
}

/* ——— Type system ——— */

.display {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.4rem, 6.4vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--ink);
}

.display em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.kicker {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.5rem;
}

.label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.lede {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.018em;
  margin: 0 0 1.25rem;
}

.lede em {
  font-style: italic;
  color: var(--accent-ink);
  font-weight: 500;
}

.lede strong {
  font-weight: 600;
  color: var(--ink);
}

.muted {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin: 0;
  max-width: 60ch;
}

/* ——— Nav ——— */

.nav {
  padding-bottom: 1.25rem;
  padding-top: max(1.25rem, env(safe-area-inset-top, 0px));
  border-bottom: 1px solid var(--line-soft);
  position: sticky;
  top: 0;
  background: rgba(246, 242, 234, 0.85);
  backdrop-filter: saturate(160%) blur(10px);
  z-index: 40;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  row-gap: 0.85rem;
  min-width: 0;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  line-height: 0;
}

.wordmark:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 4px;
  border-radius: 6px;
}

.wordmark__mark {
  height: clamp(2.15rem, 4.2vw, 2.85rem);
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0;
  flex: 1 1 auto;
}

.nav__links a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--accent);
}

.nav__cta {
  color: var(--accent) !important;
  border: 1px solid var(--line);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  transition: background 0.2s, border-color 0.2s;
}

.nav__cta:hover {
  background: var(--accent-soft);
  border-color: var(--ring);
}

button.nav__cta {
  font: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  font-family: var(--sans);
  cursor: pointer;
  background: transparent;
  min-height: 2.75rem;
  min-width: 2.75rem;
  padding-inline: 1rem;
}

button.nav__cta:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 4px;
}

.toast {
  position: fixed;
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  left: 50%;
  z-index: 10000;
  max-width: min(92vw, 26rem);
  padding: 0.65rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 36px rgba(27, 26, 23, 0.14);
  transform: translateX(-50%) translateY(calc(100% + 2rem));
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
}

.toast.toast--visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ——— Hero + landing (hero + about above the fold on laptop) ——— */

.landing {
  padding: clamp(0.83rem, 2.67vw, 1.5rem) 0 0;
}

.landing__grid {
  display: grid;
  gap: clamp(1.17rem, 2.67vw, 1.67rem);
  align-items: start;
}

.landing__grid > .landing__hero {
  min-width: 0;
}

@media (min-width: 1024px) {
  .landing__grid {
    /* Equal columns: centered divider + wider bio column vs prior 0.82fr intro */
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 0;
    /* Columns top-align with each other… */
    align-items: start;
    /* …while the whole hero + about row is vertically centered in the viewport */
    align-content: center;
    min-height: calc(100dvh - 5.5rem);
  }
}

.hero {
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 1024px) {
  .landing__hero {
    text-align: left;
    align-items: flex-start;
    /* Mirror intro padding so copy clears the centered column rule */
    padding-right: clamp(1.25rem, 2.5vw, 2rem);
  }

  .landing__hero .hero__sub {
    margin: 0.9rem 0 0;
    max-width: none;
  }
}

.landing__hero .hero__sub {
  margin-bottom: 0;
}

.landing .intro {
  padding: clamp(0.83rem, 2.67vw, 1.5rem) 0 0;
  border-top: 1px solid var(--line);
}

@media (min-width: 1024px) {
  .landing .intro {
    padding: 0 0 0 clamp(1.25rem, 2.5vw, 2rem);
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .landing .intro__main {
    grid-template-columns: minmax(100px, 150px) minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
  }

  .landing .intro__photo {
    width: min(150px, 100%);
  }

  .landing .lede {
    margin-bottom: 0.85rem;
  }

  .landing .intro__body .lede {
    font-size: clamp(0.81rem, 0.92vw, 0.96rem);
  }

  .landing .intro__body .intro__lede-greeting {
    font-size: clamp(1.06rem, 1.28vw, 1.26rem);
  }
}

/* Email + availability row (used in bottom CTA) */
.landing__cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 4vw, 2.75rem);
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
}

.landing__cta-inner .btn {
  max-width: 100%;
  justify-content: center;
  text-align: center;
}

.landing__cta-inner .hero__status {
  margin-left: 0;
}

.hero .display {
  max-width: min(100%, 36ch);
  margin-inline: auto;
}

/* Hero headline: two lines, slightly smaller than global .display */
.landing__hero .display {
  max-width: none;
  margin-inline: 0;
  font-size: clamp(1.85rem, 5.2vw, 2.65rem);
  line-height: 1.08;
}

@media (min-width: 1024px) {
  .landing__hero .display {
    font-size: clamp(1.95rem, 2.75vw, 2.95rem);
  }
}

.hero__sub {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: min(100%, 62ch);
  margin: 1.1rem auto 1.33rem;
}

.hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__status {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  margin-left: clamp(1rem, 3vw, 2.25rem);
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--available);
  box-shadow: 0 0 0 2px rgba(21, 128, 61, 0.22);
  display: inline-block;
  flex-shrink: 0;
  animation: hero-dot-pulse 2.25s ease-out infinite;
}

.hero__note {
  font-size: 0.92rem;
  color: var(--muted);
}

@keyframes hero-dot-pulse {
  0% {
    box-shadow:
      0 0 0 2px rgba(21, 128, 61, 0.22),
      0 0 0 0 rgba(21, 128, 61, 0.45);
  }
  70% {
    box-shadow:
      0 0 0 2px rgba(21, 128, 61, 0.22),
      0 0 0 10px rgba(21, 128, 61, 0);
  }
  100% {
    box-shadow:
      0 0 0 2px rgba(21, 128, 61, 0.22),
      0 0 0 0 rgba(21, 128, 61, 0);
  }
}

/* ——— Buttons ——— */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  color: var(--ink);
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 3px;
}

.btn--lg {
  font-size: 1.05rem;
  padding: 1rem 1.6rem;
  min-height: 2.75rem;
  box-sizing: border-box;
  max-width: 100%;
  overflow-wrap: anywhere;
}

/* ——— Rule ——— */

.rule hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ——— Intro ——— */

.intro {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.clients__grid,
.pull__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.pull__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

@media (min-width: 780px) {
  .clients__grid,
  .pull__grid {
    grid-template-columns: 180px 1fr;
    gap: 4rem;
  }
}

.intro__main {
  display: grid;
  gap: 2rem;
  align-items: start;
  justify-items: start;
  min-width: 0;
}

@media (min-width: 640px) {
  .intro__main {
    grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
  }
}

/* Landing bio: stack photo above copy on phones/tablets — avoids an oversized
   headshot beside text between 640px and the desktop split. */
@media (max-width: 1023px) {
  .landing__grid {
    min-height: 0;
    align-content: start;
  }

  .landing .intro__main {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: clamp(1.25rem, 3.5vw, 1.85rem);
  }

  .landing .intro__photo {
    width: min(220px, 72vw);
    max-width: 100%;
    justify-self: center;
  }

  .landing .intro__body {
    width: 100%;
    max-width: 38rem;
    margin-inline: auto;
  }
}

/* Circle mask; image is slightly zoomed for a tighter crop (links to LinkedIn) */
.intro__photo {
  margin: 0;
  width: min(280px, 100%);
  max-width: 100%;
  justify-self: start;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(27, 26, 23, 0.1);
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.intro__photo:hover {
  box-shadow: 0 12px 34px rgba(27, 26, 23, 0.14);
}

.intro__photo:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 4px;
}
@media (min-width: 640px) {
  .intro__photo {
    width: min(100%, 280px);
  }
}

.intro__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  /* Slight zoom — tighter headshot without heavy repositioning */
  transform: scale(1.1);
  transform-origin: center center;
}

.intro__body {
  max-width: min(100%, 92ch);
  min-width: 0;
}

/* Entire bio block: one step smaller than default .lede */
.intro__body .lede {
  font-size: clamp(0.93rem, 1.62vw, 1.12rem);
}

.intro__body .intro__lede-greeting {
  font-size: clamp(1.18rem, 2.15vw, 1.42rem);
}

.intro__body .intro__lede-greeting,
.intro__body .intro__lede-lead {
  margin-bottom: 0.45rem;
}

.intro__body .intro__lede-lead,
.intro__body .intro__lede-rest {
  margin-top: 0;
  font-weight: 400;
  letter-spacing: -0.012em;
}

.intro__body .intro__lede-lead em,
.intro__body .intro__lede-rest em {
  font-weight: 400;
}

.intro__body .intro__lede-lead strong em {
  font-style: italic;
  font-weight: 600;
  color: var(--accent-ink);
}

/* ——— Services (.work) ——— */

.work {
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(4rem, 8vw, 6rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--paper-soft), var(--paper));
}

.work .label {
  margin-bottom: 1rem;
}

.work__intro-wrap {
  margin: 0 0 2.5rem;
  width: 100%;
  max-width: none;
  text-align: center;
}

.work__intro-wrap .work__intro {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.18rem, 2.25vw, 1.68rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.work__subhead {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(0.94rem, 1.72vw, 1.18rem);
  line-height: 1.35;
  letter-spacing: -0.018em;
  color: var(--ink-soft);
}

.work__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.work__item {
  padding: 2.25rem 0;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.work__item:first-child {
  border-top: 0;
  padding-top: 0;
}

@media (min-width: 780px) {
  .work__item {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: baseline;
  }

  .work__item > * {
    min-width: 0;
  }
}

.work__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.12rem, 1.85vw, 1.38rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
}

.work__desc {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 42ch;
}

.work__fit {
  margin: 0;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--accent-ink);
  line-height: 1.5;
  max-width: 30ch;
  letter-spacing: -0.005em;
}

/* ——— Clients ——— */

.clients {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.pull + .clients {
  border-top: 1px solid var(--line);
}

.clients__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.clients__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line-soft);
  font-size: 1.02rem;
  flex-wrap: wrap;
  min-width: 0;
}

.clients__list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.clients__primary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

/* Fixed slot so every company name starts on the same vertical line */
.clients__mark {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.clients__mark .clients__logo {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: left center;
}

.clients__logo {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain;
  /* No tile background — monochrome marks */
  filter: grayscale(1) contrast(1.12);
  opacity: 0.88;
}

.clients__logo--dark {
  filter: grayscale(1) contrast(1.28) brightness(0.74);
  opacity: 0.96;
}

/* Favicon white box → blends into page (until a transparent PNG is used) */
.clients__logo--earthmover {
  mix-blend-mode: multiply;
  opacity: 1;
}

.clients__name {
  font-weight: 500;
  color: var(--ink);
}

.clients__list em {
  flex: 1 1 12rem;
  min-width: 0;
  text-align: right;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.98rem;
  color: var(--muted);
}

@media (max-width: 520px) {
  .clients__list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .clients__list em {
    text-align: left;
    flex-basis: auto;
  }
}

/* ——— Pull quote ——— */

.pull {
  padding: clamp(4rem, 9vw, 7rem) 0;
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
}

/* Square image → circular mask; incircle uses full frame (no extra zoom).
   Width tracks .intro__photo so the testimonial headshot never reads larger than
   Christin’s hero photo (150px on desktop landing, same max as intro). */
.pull__portrait {
  margin: 0;
  width: min(280px, 100%);
  max-width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(27, 26, 23, 0.08);
}

@media (min-width: 640px) {
  .pull__portrait {
    width: min(100%, 280px);
  }
}

@media (min-width: 1024px) {
  .pull__portrait {
    width: min(150px, 100%);
  }
}

.pull__portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.pull__quote {
  margin: 0;
  max-width: 60ch;
}

.pull__quote blockquote {
  margin: 0 0 1.5rem;
}

.pull__quote p {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.6vw, 1.95rem);
  line-height: 1.35;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0;
}

.pull__quote p em {
  font-style: normal;
  color: var(--accent);
  font-family: var(--display);
}

.pull__quote figcaption {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.pull__more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}

.pull__more:hover {
  border-bottom-color: var(--accent);
}

/* ——— CTA ——— */

.cta {
  padding: clamp(5rem, 11vw, 8rem) 0;
  border-top: 1px solid var(--line);
  text-align: center;
}

.cta__inner {
  max-width: 640px;
  margin-inline: auto;
}

main:not(.t-page) .cta__inner {
  max-width: min(100%, 52rem);
}

.cta__title {
  margin-bottom: 0.65rem;
  font-size: clamp(1.2rem, 3.2vw, 2.5rem);
}

.t-page .cta .cta__title {
  margin-bottom: 2.25rem;
}

.cta__subhead {
  margin: 0 0 1.85rem;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(0.94rem, 1.72vw, 1.18rem);
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--ink-soft);
}

.cta__back {
  margin-top: 2rem;
}

.cta__home-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.15s ease, transform 0.15s ease;
  border-radius: 8px;
}

.cta__home-logo:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.cta__home-logo:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 4px;
  opacity: 1;
}

.cta__home-logo img {
  display: block;
  height: 2.75rem;
  width: auto;
}

/* ——— Footer ——— */

.foot {
  padding: 2rem 0 max(2.5rem, env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line-soft);
}

.foot__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.foot p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.foot a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.foot a:hover {
  color: var(--accent);
}

/* ——— Testimonials page ——— */

.t-page {
  padding-bottom: 0;
}

.t-hero {
  padding: clamp(3.5rem, 9vw, 6.5rem) 0 clamp(0.65rem, 1.75vw, 1.25rem);
}

.t-hero .display {
  max-width: min(100%, 38ch);
}

.t-hero .hero__sub {
  margin-top: 1.75rem;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.t-list {
  padding: clamp(1rem, 2.5vw, 2rem) 0 clamp(3rem, 7vw, 5rem);
}

.t-card {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  align-items: start;
}

.t-card:first-child {
  border-top: 0;
}

@media (min-width: 820px) {
  .t-card {
    grid-template-columns: minmax(140px, 200px) minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 3rem;
    row-gap: 1.35rem;
  }

  .t-card__header {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .t-card__aside {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
  }

  .t-card__main {
    grid-column: 2;
    grid-row: 2;
  }
}

.t-card__header {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.t-card__aside {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
}

.t-card__portrait {
  width: min(160px, 52vw);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(27, 26, 23, 0.08);
  flex-shrink: 0;
}

.t-card__portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.t-card__main {
  min-width: 0;
}

.t-card__quote {
  margin: 0;
}

.t-card__quote p {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.02rem, 1.4vw, 1.12rem);
  line-height: 1.65;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
}

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

.t-card__quote strong {
  font-weight: 600;
  color: var(--ink);
  background: linear-gradient(
    180deg,
    transparent 65%,
    var(--accent-soft) 65%
  );
  padding: 0 0.08em;
}

.t-card__by {
  margin: 0;
  font-family: var(--sans);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  max-width: 14rem;
}

.t-card__name {
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
}

.t-card__role,
.t-card__company {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

@media (max-width: 819px) {
  .t-card__aside {
    align-items: center;
    width: 100%;
  }

  .t-card__by {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  .t-card__main {
    width: 100%;
  }

  .t-card__quote {
    text-align: left;
  }
}

/* ——— Motion & responsive polish ——— */

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 560px) {
  .nav__links {
    gap: 1rem;
    justify-content: flex-end;
  }

  .nav__links a:not(.nav__cta) {
    font-size: 0.88rem;
  }

  .wordmark {
    min-width: 0;
  }

  .hero__meta {
    flex-direction: column;
    gap: 1.35rem;
  }

  .hero__status {
    margin-left: 0;
    max-width: 100%;
    justify-content: center;
  }
}
