.nav-check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  min-height: var(--header-h);
  padding: 0 max(1.25rem, 2%);
  color: var(--ink);
  background: var(--paper);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.logo-lockup {
  display: block;
  width: min(19.25rem, 55vw);
  height: auto;
}

.header-end {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 40px;
}

.header-nav a {
  font-family: var(--font-nav);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  color: #a3a3a3;
}

.header-nav a:hover,
.header-nav a[aria-current="page"] {
  color: #000;
}

.burger {
  position: relative;
  z-index: 60;
  width: 1.35rem;
  height: 0.7rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 1px;
  width: 100%;
  background: currentColor;
  transition: transform 0.2s ease;
}

.nav-check:checked ~ .site-header .burger span:first-child {
  transform: translateY(0.3rem) rotate(45deg);
}

.nav-check:checked ~ .site-header .burger span:last-child {
  transform: translateY(-0.3rem) rotate(-45deg);
}

@media (min-width: 960px) {
  .header-nav {
    display: flex;
  }

  .burger {
    display: none;
  }
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5.5rem var(--pad) 2rem;
  overflow-y: auto;
  background: var(--paper);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.nav-check:checked ~ .overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.overlay ul {
  text-align: center;
  width: 100%;
}

.overlay a {
  display: block;
  padding: 0.35rem 0.5rem;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.overlay a:hover,
.overlay a[aria-current="page"] {
  opacity: 0.4;
}

.wrap {
  width: min(100% - (var(--pad) * 2), var(--max));
  margin-inline: auto;
}

main {
  flex: 1 0 auto;
  background: var(--paper);
}

.hero {
  position: relative;
  width: 100%;
  height: calc(100svh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: #1c1f24;
  color: #fff;
}

.hero-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.hero-frame::after {
  display: none;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.hero-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: auto;
  height: auto;
  max-width: 30%;
  max-height: 50%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  opacity: 0.46;
  pointer-events: none;
}

@media (max-width: 700px) {
  .hero-mark {
    max-width: 46%;
    max-height: 48%;
  }

  .site-header .brand {
    font-size: 14px;
    letter-spacing: 0.22em;
  }
}

.hero h1,
.hero p,
.hero a {
  color: #fff;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55);
}

.intro {
  background: var(--paper);
  padding: 5.5rem 0 0;
}

.intro h1,
.page-head h1 {
  max-width: none;
}

.intro .lede,
.page-head .lede {
  max-width: none;
  width: 100%;
  margin-top: 1rem;
  line-height: 1.5;
}

body.home .intro h1,
body.home .intro .lede,
body.home .cols-3 {
  text-transform: uppercase;
}

body.home .intro h1 {
  max-width: none;
  color: #3a3a3a;
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.22;
}

body.home .intro h1 span {
  display: block;
  white-space: nowrap;
}

body.home .intro .lede {
  color: #8a8a8a;
  font-size: clamp(0.78rem, 1.05vw, 0.92rem);
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1.72;
  text-align: left;
}

@media (min-width: 880px) {
  body.home .intro .wrap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 3.5rem;
    align-items: start;
  }

  body.home .intro h1 {
    grid-column: 1 / -1;
    margin-bottom: 4.75rem;
  }

  body.home .intro .lede {
    grid-column: 2 / -1;
    margin-top: 0;
    margin-bottom: 13rem;
  }

  body.home .cols-3 {
    grid-column: 1 / -1;
  }
}

@media (max-width: 879px) {
  body.home .intro h1 span {
    white-space: normal;
  }

  body.home .intro .lede {
    margin-top: 2.25rem;
    margin-bottom: 9rem;
  }
}

body.home .cols-3 {
  gap: 2.75rem 1.15rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1180px) {
  body.home .cols-3 {
    grid-template-columns: repeat(3, minmax(min-content, 1fr));
  }
}

body.home .cols-3 h4 {
  padding-bottom: 0;
  margin-bottom: 1.05rem;
  border: 0;
  border-bottom: none;
  text-decoration: none;
  color: #2e2e2e;
  font-size: clamp(1.9rem, 2.89vw, 2.41rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

body.home .cols-3 p {
  color: #8a8a8a;
  font-size: clamp(0.78rem, 1.05vw, 0.92rem);
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1.72;
  text-align: left;
}

body.strategy .page-head,
body.strategy .page-body,
body.strategy .class-copy,
body.team .page-head,
body.team .page-body,
body.team .people {
  text-transform: uppercase;
}

body.strategy .page-head,
body.team .page-head {
  padding: 5.5rem 0 0;
}

body.strategy .page-head h1,
body.team .page-head h1 {
  color: #3a3a3a;
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.22;
}

body.strategy .page-head h1 span,
body.team .page-head h1 span {
  display: block;
  white-space: nowrap;
}

body.strategy .page-head .lede,
body.team .page-head .lede {
  color: #5c5c5c;
  font-size: clamp(0.78rem, 1.05vw, 0.92rem);
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1.72;
}

body.strategy .page-head .lede,
body.team .page-head .lede {
  text-align: left;
}

@media (min-width: 880px) {
  body.strategy .page-head .wrap,
  body.team .page-head .wrap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 3.5rem;
    align-items: start;
  }

  body.strategy .page-head h1,
  body.team .page-head h1 {
    grid-column: 1 / -1;
    margin-bottom: 3.15rem;
  }

  body.strategy .page-head .lede,
  body.team .page-head .lede {
    grid-column: 2 / -1;
    margin-top: 0;
    margin-bottom: 5.25rem;
  }
}

@media (max-width: 879px) {
  body.strategy .page-head h1 span,
  body.team .page-head h1 span {
    white-space: normal;
  }

  body.strategy .page-head .lede,
  body.team .page-head .lede {
    margin-bottom: 3.5rem;
  }
}

body.strategy .page-body {
  padding: 0 0 0;
}

body.strategy .page-body h2 {
  color: #3a3a3a;
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.22;
  margin-bottom: 2.75rem;
}

body.strategy .focus-mosaic {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

body.strategy .class-block {
  gap: 0;
  align-items: stretch;
  min-height: clamp(22rem, 36vw, 28rem);
}

body.strategy .class-block img {
  height: 100%;
  min-height: clamp(18rem, 36vw, 28rem);
  aspect-ratio: auto;
  object-fit: cover;
}

body.strategy .class-copy {
  background: #f5f5f5;
  padding: clamp(2rem, 4.5vw, 4.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.strategy .class-copy h3 {
  color: #2e2e2e;
  font-size: clamp(1.2rem, 2.15vw, 1.78rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.25;
  margin-bottom: 1.15rem;
}

body.strategy .class-copy p {
  color: #5c5c5c;
  font-size: clamp(0.72rem, 0.95vw, 0.84rem);
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1.7;
  margin-top: 0;
}

body.strategy .stack--loose > .class-block + .class-block,
body.strategy .focus-mosaic > .class-block + .class-block {
  margin-top: 0;
}

@media (min-width: 880px) {
  body.strategy .class-block {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}

.band {
  padding: 1.25rem 0 2.5rem;
}

.band--paper {
  background: var(--paper);
}

body.home .band--paper {
  padding-top: 0;
  padding-bottom: 0;
}

.band--mist {
  background: var(--mist);
  padding-top: 3.25rem;
  padding-bottom: 3.5rem;
}

.band--fog {
  background: var(--fog);
  padding-top: 4.5rem;
  padding-bottom: 5.5rem;
}

.band--ink {
  background: var(--navy);
  color: var(--on-dark);
}

.band h2,
.page-body h2 {
  margin-bottom: 1.35rem;
}

.carousel-wrap {
  position: relative;
}

.carousel {
  display: flex;
  gap: clamp(1rem, 4vw, 3.75rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel li {
  flex: 0 0 min(40.4rem, 82vw);
  scroll-snap-align: start;
}

.carousel img {
  width: 100%;
  aspect-ratio: 647 / 432;
  object-fit: cover;
  margin-bottom: 1.15rem;
}

.carousel h3 {
  font-size: 1.278rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

.carousel .meta {
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.carousel-nav {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.carousel-btn {
  width: 2.55rem;
  height: 2.55rem;
  border: 0;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 0.5px var(--ink);
}

.carousel-btn:hover {
  background: var(--mist);
}

.carousel-btn svg {
  width: 0.85rem;
  height: 0.85rem;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.7rem;
  padding: 0.4em 1.3em;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  border: 0.5px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.2;
}

.btn:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn--solid {
  background: var(--clay);
  color: var(--paper);
  border-color: var(--clay);
}

.btn--solid:hover {
  filter: brightness(1.06);
  background: var(--clay);
  color: var(--paper);
}

.btn--disabled,
.btn--disabled:hover {
  background: transparent;
  color: var(--muted);
  border-color: var(--gray);
  cursor: not-allowed;
  filter: none;
}

.band--ink .btn {
  border-color: var(--on-dark);
  color: var(--on-dark);
}

.band--ink .btn:hover {
  background: var(--on-dark);
  color: var(--navy);
}

.explore-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem 1.5rem;
  padding: 2.1rem 0 2.4rem;
  border-top: 1px solid var(--ink);
  align-items: start;
}

.explore-row:last-child {
  border-bottom: 1px solid var(--ink);
}

.explore-title {
  font-size: clamp(1.15rem, 1.78vw, 1.6rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.explore-desc {
  max-width: 26rem;
}

.explore-row img {
  width: 100%;
  aspect-ratio: 435 / 310;
  object-fit: cover;
}

@media (min-width: 880px) {
  .explore-row {
    grid-template-columns: 1.15fr 1fr 1.15fr;
    padding: 2.6rem 0 2.8rem;
  }
}

.cols-3 {
  display: grid;
  gap: 1.5rem 1.35rem;
}

.cols-3 h4 {
  margin-bottom: 0.65rem;
  border: 0;
  text-decoration: none;
}

@media (min-width: 800px) {
  .cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.kicker {
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}

.stack-list {
  font-size: clamp(1.15rem, 1.78vw, 1.6rem);
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.stack-list span {
  display: block;
}

.about-grid {
  display: grid;
  gap: 2.25rem;
}

.about-grid img {
  width: 100%;
  aspect-ratio: 501 / 631;
  object-fit: cover;
}

.about-grid h2 {
  margin-bottom: 2rem;
}

.about-lists {
  display: grid;
  gap: 2.4rem 1.5rem;
}

.about-lists h4 {
  margin-bottom: 0.85rem;
}

.about-lists p span,
.about-lists li {
  display: block;
}

@media (min-width: 880px) {
  .about-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3vw;
    align-items: start;
  }

  .about-lists {
    grid-template-columns: 1fr 1fr;
  }
}

.page-head {
  background: var(--paper);
  padding: 2rem 0 1.5rem;
}

.page-body {
  background: var(--paper);
  padding: 1.25rem 0 2.5rem;
}

.stack > * + * {
  margin-top: 1.35rem;
}

.stack--loose > * + * {
  margin-top: 2.75rem;
}

.bullets {
  list-style: disc;
  padding-left: 1.2rem;
}

.has-top {
  margin-top: 2rem;
}

.measure {
  max-width: none;
  width: 100%;
}

.service p,
.class-block p {
  margin-top: 0.7rem;
}

.class-block {
  display: grid;
  gap: 1.15rem;
}

.class-block img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.stack--loose > .class-block + .class-block {
  margin-top: 3.75rem;
}

@media (min-width: 880px) {
  .class-block {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 2.4rem 3.2rem;
    align-items: center;
  }

  .class-block:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  }

  .class-block:nth-child(even) img {
    order: 2;
  }
}

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 4vw, 3.75rem);
  background: var(--paper);
  padding: 0 0 4.5rem;
}

@media (min-width: 720px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}

.gallery figure img {
  width: 100%;
  aspect-ratio: 647 / 432;
  object-fit: cover;
}

.people {
  display: grid;
  gap: 3.5rem;
}

@media (min-width: 720px) {
  .people {
    grid-template-columns: 1fr 1fr;
    gap: 3.75rem;
  }
}

.person-photo {
  width: min(100%, 22rem);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-bottom: 1.1rem;
}

.quotes {
  display: grid;
  gap: 2.5rem;
}

blockquote {
  font-size: clamp(1.15rem, 1.78vw, 1.6rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

blockquote footer {
  margin-top: 0.7rem;
  font-size: 0.9rem;
  letter-spacing: 0;
}

.band--ink .placeholder {
  color: rgba(250, 250, 250, 0.45);
}

.brand-close {
  background: var(--paper);
  padding: 8.5rem 0 9rem;
}

.brand-close-lockup {
  display: block;
  margin-inline: auto;
  height: clamp(5.4rem, 11vw, 8.4rem);
  width: auto;
}

.site-footer {
  background: var(--footer);
  color: #fff;
  padding: 3.6rem 0 3.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem 3rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }
}

.footer-col {
  min-width: 0;
}

.footer-label {
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact {
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.55;
  color: #fff;
}

.footer-contact a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
  overflow-wrap: anywhere;
}

.footer-contact a:hover {
  opacity: 0.55;
}

.social {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.05rem;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}

.social a:hover {
  opacity: 0.55;
}

.social svg {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
}

.empty-state {
  max-width: 32rem;
}

.empty-state > * + * {
  margin-top: 0.75rem;
}

.article-meta {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.back {
  display: inline-block;
  margin-bottom: 1.1rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.bleed-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 2.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.9s ease forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.page-head h1,
.band h2 {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

.people .kicker {
  margin: 0.15rem 0 0.85rem;
}

.people p + p {
  margin-top: 0.75rem;
}

.leaflet-map {
  height: min(28rem, 70vh);
  width: 100%;
  margin-top: 2.75rem;
  background: var(--mist);
  z-index: 1;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

@media (min-width: 720px) {
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .portfolio-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.portfolio-card {
  color: inherit;
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 647 / 432;
  object-fit: cover;
  margin-bottom: 0.85rem;
}

.portfolio-card h3 {
  font-size: 1.278rem;
  margin-bottom: 0.35rem;
}

.portfolio-card .meta {
  font-size: 0.9rem;
}

.property-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 2rem;
}

.property-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 720px) {
  .property-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
}

.property-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.mailto {
  text-decoration: none;
}

.mailto:hover {
  opacity: 0.55;
}

body.portfolio .page-body {
  padding: 3.1rem 0 0;
  container-type: inline-size;
}

body.portfolio .portfolio-grid {
  width: 100%;
  max-width: none;
  gap: 3.65rem 0.75rem;
}

@media (min-width: 880px) {
  body.portfolio .portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

body.portfolio .portfolio-card {
  display: block;
  text-decoration: none;
  color: inherit;
  --copy-inset: max(1.25rem, 2cqw);
  --card-copy-inset: var(--copy-inset);
}

@media (min-width: 720px) {
  body.portfolio .portfolio-card {
    --card-copy-inset: 0px;
  }

  body.portfolio .portfolio-card:nth-child(odd of :not([hidden])) {
    --card-copy-inset: var(--copy-inset);
  }
}

@media (min-width: 880px) {
  body.portfolio .portfolio-card:nth-child(odd of :not([hidden])) {
    --card-copy-inset: 0px;
  }

  body.portfolio .portfolio-card:nth-child(3n + 1 of :not([hidden])) {
    --card-copy-inset: var(--copy-inset);
  }
}

body.portfolio .portfolio-card[hidden] {
  display: none;
}

body.portfolio .portfolio-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 1.35rem;
}

body.portfolio .portfolio-card h3 {
  color: #6e6e6e;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.32;
  margin-bottom: 1.15rem;
  min-height: 2.64em;
}

body.portfolio .portfolio-card h3 span {
  display: block;
}

@media (min-width: 880px) {
  body.portfolio .portfolio-card h3 span {
    white-space: nowrap;
  }
}

body.portfolio .portfolio-card .meta {
  color: #a3a3a3;
  font-size: clamp(0.62rem, 0.82vw, 0.72rem);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.portfolio .portfolio-card h3,
body.portfolio .portfolio-card .meta {
  padding-left: var(--card-copy-inset);
}

body.portfolio .portfolio-card:hover h3 {
  color: #5c5c5c;
}

body.portfolio .leaflet-map {
  height: min(32rem, 68vh);
  margin-top: 3.15rem;
}

body.team .team-hero {
  margin: 0;
  width: 100%;
}

body.team .team-hero img {
  width: 100%;
  height: clamp(20rem, 48vw, 36rem);
  object-fit: cover;
  object-position: center 12%;
}

body.team .page-body {
  padding: 4.75rem 0 0;
}

body.team .people {
  gap: 3.75rem 3.5rem;
}

body.team .people h3 {
  color: #2e2e2e;
  font-size: clamp(1.05rem, 1.55vw, 1.32rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.25;
  margin-bottom: 0.35rem;
}

body.team .people .kicker {
  color: #a3a3a3;
  font-size: clamp(0.62rem, 0.78vw, 0.7rem);
  font-weight: 400;
  letter-spacing: 0.16em;
  margin: 0 0 1.15rem;
}

body.team .people p {
  color: #5c5c5c;
  font-size: clamp(0.72rem, 0.95vw, 0.84rem);
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1.7;
}
