:root {
  --white: #fdfdfd;
  --ink: #171414;
  --display: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
  --container: min(1180px, calc(100vw - 64px));
  --ease: cubic-bezier(0.22, 0.75, 0.25, 1);
  --radius: 26px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--muted);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

button {
  color: inherit;
  font: inherit;
}
img {
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
.impact-title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.93;
  letter-spacing: 0.012em;
  color: var(--ink);
}
h1 {
  font-size: clamp(4.7rem, 8.3vw, 9rem);
}
h2 {
  font-size: clamp(3.4rem, 6vw, 6.8rem);
}
h3 {
  color: var(--ink);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 25px;
  height: 1px;
  background: currentColor;
}
.button {
  min-height: 50px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease);
}
.button:hover {
  transform: translateY(-3px);
  background: #922313;
}
.button--outline {
  color: var(--ink);
  background: transparent;
  border-color: rgba(89, 83, 83, 0.24);
}
.button--outline:hover {
  color: var(--white);
  background: var(--ink);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  transition: 0.35s var(--ease);
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(241, 231, 231, 0.9);
  backdrop-filter: blur(18px);
  border-color: rgba(89, 83, 83, 0.1);
}

.brand {
  width: 174px;
  display: inline-flex;
  align-items: center;
  mix-blend-mode: multiply;
}
.brand img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  position: relative;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: 0.3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(89, 83, 83, 0.22);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  padding: 120px 24px 40px;
  background: var(--paper);
  align-content: start;
  gap: 18px;
}
.mobile-menu.open {
  display: grid;
}
.mobile-menu a:not(.button) {
  font-family: var(--display);
  font-size: 2.6rem;
  line-height: 1;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(89, 83, 83, 0.15);
  padding-bottom: 15px;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 150px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  right: -220px;
  top: -300px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--rose), rgba(167, 43, 24, 0.8));
  z-index: -3;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: center;
}
.hero h1 {
  max-width: 720px;
  margin-bottom: 28px;
}
.hero-intro {
  max-width: 630px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.hero-photo-wrap {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}
.hero-photo {
  position: relative;
  width: min(520px, 92%);
  aspect-ratio: 3/2;
  margin: 0;
  border-radius: 240px 240px 32px 32px;
  overflow: hidden;
  background: var(--rose);
  box-shadow: 0 36px 80px rgba(89, 83, 83, 0.2);
  z-index: 2;
}
.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.75s var(--ease);
}
.hero-photo:hover img {
  transform: scale(1.035);
}
.hero-orbit {
  position: absolute;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(167, 43, 24, 0.36);
  border-radius: 50%;
  left: -22px;
  bottom: 5px;
  animation: orbit 28s linear infinite;
}
.hero-orbit::before {
  content: "";
  position: absolute;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--brand);
  left: 46px;
  top: 45px;
}
.institutional-word {
  position: absolute;
  right: -4px;
  top: 52px;
  color: rgba(89, 83, 83, 0.22);
  font-family: var(--institutional);
  font-size: clamp(2.1rem, 4vw, 4rem);
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  z-index: 1;
}
.floating-note {
  position: absolute;
  z-index: 4;
  min-width: 190px;
  padding: 17px 20px;
  border: 1px solid rgba(89, 83, 83, 0.12);
  border-radius: 17px;
  background: rgba(253, 253, 253, 0.83);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(89, 83, 83, 0.13);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.floating-note strong {
  display: block;
  margin-top: 4px;
  color: var(--brand);
  font-size: 0.93rem;
}
.floating-note--one {
  left: -2%;
  top: 15%;
}
.floating-note--two {
  right: -2%;
  bottom: 12%;
}
.scroll-cue {
  position: absolute;
  right: 24px;
  bottom: 34px;
  writing-mode: vertical-rl;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  background: var(--brand);
  color: var(--white);
}
.marquee-track {
  width: max-content;
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 14px 0;
  animation: marquee 24s linear infinite;
}
.marquee-item {
  display: flex;
  gap: 30px;
  align-items: center;
  white-space: nowrap;
}
.marquee-item span {
  font-family: var(--display);
  font-size: 1.65rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
}

.manifesto {
  padding: 150px 0;
  background: var(--white);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(55px, 9vw, 140px);
  align-items: start;
}
.manifesto h2 {
  position: sticky;
  top: 125px;
  max-width: 560px;
}
.manifesto-copy {
  color: var(--ink);
  font-size: clamp(1.2rem, 1.85vw, 1.58rem);
}
.manifesto-copy p + p {
  margin-top: 28px;
}
.manifesto-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
  border-top: 1px solid rgba(89, 83, 83, 0.16);
}
.manifesto-point {
  padding: 24px 22px 0 0;
}
.manifesto-point strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 400;
  text-transform: uppercase;
}
.manifesto-point span {
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.founders {
  padding: 150px 0;
  color: rgba(253, 253, 253, 0.76);
  background: linear-gradient(
    135deg,
    var(--secondary),
    #8c3933 60%,
    var(--brand) 135%
  );
  overflow: hidden;
}
.founders h2 {
  color: var(--white);
  max-width: 780px;
  margin-bottom: 22px;
}
.founders-head {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}
.founders-head > p {
  max-width: 500px;
  margin: 0 0 8px auto;
}
.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.founder-card {
  position: relative;
  min-height: 650px;
  border: 1px solid rgba(253, 253, 253, 0.18);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(253, 253, 253, 0.08);
  backdrop-filter: blur(12px);
}
.founder-photo {
  position: absolute;
  inset: 0;
}
.founder-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.98);
  transition: transform 0.7s var(--ease);
}
.founder-card:hover .founder-photo img {
  transform: scale(1.035);
}
.founder-card::after {
  content: "";
  position: absolute;
  inset: 34% 0 0;
  background: linear-gradient(180deg, transparent, rgba(23, 20, 20, 0.88));
}
.founder-copy {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 30px;
}
.founder-copy span {
  display: block;
  margin-bottom: 9px;
  color: var(--rose);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.founder-copy h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
}
.founder-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(253, 253, 253, 0.76);
}
.founder-line {
  position: absolute;
  z-index: 3;
  width: 170px;
  height: 170px;
  right: -70px;
  top: -70px;
  border: 1px solid rgba(221, 178, 178, 0.38);
  border-radius: 50%;
}

.principles {
  padding: 150px 0;
  background: var(--paper);
}
.principles-head {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 68px;
}
.principles-head h2 {
  max-width: 740px;
  margin-bottom: 0;
}
.principles-head > p {
  max-width: 500px;
  margin: 0 0 8px auto;
}
.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(89, 83, 83, 0.17);
  border-left: 1px solid rgba(89, 83, 83, 0.17);
}
.principle-card {
  position: relative;
  min-height: 355px;
  padding: 30px;
  border-right: 1px solid rgba(89, 83, 83, 0.17);
  border-bottom: 1px solid rgba(89, 83, 83, 0.17);
  overflow: hidden;
  transition:
    background 0.4s var(--ease),
    color 0.4s var(--ease);
}
.principle-card:hover {
  background: var(--ink);
  color: rgba(241, 231, 231, 0.72);
}
.principle-card b {
  display: block;
  color: var(--brand);
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
}
.principle-card h3 {
  margin-top: 120px;
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: clamp(2.15rem, 3vw, 3.4rem);
  font-weight: 400;
  line-height: 0.94;
  text-transform: uppercase;
  color: inherit;
}
.principle-card p {
  margin: 0;
}
.principle-card::after {
  content: "";
  position: absolute;
  width: 165px;
  height: 165px;
  right: -100px;
  bottom: -100px;
  border: 1px solid rgba(167, 43, 24, 0.18);
  border-radius: 50%;
  transition: transform 0.5s var(--ease);
}
.principle-card:hover::after {
  transform: scale(1.5);
  border-color: rgba(221, 178, 178, 0.32);
}

.relationship {
  padding: 150px 0;
  background: var(--ink);
  color: rgba(241, 231, 231, 0.68);
}
.relationship h2 {
  color: var(--white);
  max-width: 760px;
}
.relationship .eyebrow {
  color: var(--rose);
}
.relationship-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(60px, 9vw, 130px);
  margin-top: 70px;
}
.relationship-intro {
  position: sticky;
  top: 125px;
  align-self: start;
}
.relationship-intro p {
  max-width: 430px;
}
.relationship-steps {
  border-top: 1px solid rgba(241, 231, 231, 0.15);
}
.relationship-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(241, 231, 231, 0.15);
}
.relationship-step b {
  color: var(--rose);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
}
.relationship-step h3 {
  margin-bottom: 9px;
  color: var(--white);
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}
.relationship-step p {
  margin: 0;
}

.fit {
  padding: 150px 0;
  background: var(--white);
}
.fit-head {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 65px;
}
.fit-head h2 {
  max-width: 760px;
  margin-bottom: 0;
}
.fit-head > p {
  max-width: 500px;
  margin: 0 0 8px auto;
}
.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.fit-card {
  min-height: 310px;
  padding: 30px;
  border: 1px solid rgba(89, 83, 83, 0.14);
  border-radius: var(--radius);
  background: var(--paper);
  transition:
    transform 0.4s var(--ease),
    background 0.4s var(--ease);
}
.fit-card:hover {
  transform: translateY(-7px);
  background: var(--rose);
}
.fit-card b {
  display: block;
  margin-bottom: 82px;
  color: var(--brand);
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
}
.fit-card h3 {
  margin-bottom: 13px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.2vw, 3.7rem);
  font-weight: 400;
  line-height: 0.94;
  text-transform: uppercase;
}
.fit-card p {
  margin: 0;
}

.cta {
  padding: 135px 0;
  background: linear-gradient(
    135deg,
    var(--rose),
    var(--paper) 55%,
    var(--white)
  );
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}
.cta h2 {
  margin-bottom: 0;
}
.cta-side p {
  max-width: 520px;
  color: var(--ink);
}
.cta-side .button {
  margin-top: 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr repeat(2, 0.7fr);
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(241, 231, 231, 0.14);
}
.footer-logo-card {
  display: inline-flex;
  width: 218px;
  padding: 13px 17px;
  margin-bottom: 24px;
  border-radius: 12px;
}
.footer-logo-card img {
  display: block;
  width: 100%;
  height: auto;
}

.footer h4 {
  margin: 0 0 20px;
  color: var(--rose);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--white);
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 16px 42px rgba(89, 83, 83, 0.23);
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease);
}
.whatsapp:hover {
  transform: translateY(-4px) rotate(-4deg);
  background: #1fbe5d;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
[data-reveal].visible {
  opacity: 1;
  transform: none;
}
[data-delay="1"] {
  transition-delay: 0.1s;
}
[data-delay="2"] {
  transition-delay: 0.2s;
}
[data-delay="3"] {
  transition-delay: 0.3s;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(100% - 32px, 760px);
  }
  .nav {
    grid-template-columns: 1fr auto;
  }
  .brand {
    width: 158px;
  }
  .nav-links,
  .nav-action {
    display: none;
  }
  .menu-toggle {
    display: grid;
    place-items: center;
    justify-self: end;
  }
  .hero {
    min-height: auto;
    padding-top: 130px;
  }
  .hero-grid,
  .manifesto-grid,
  .founders-head,
  .principles-head,
  .relationship-grid,
  .fit-head,
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .hero-photo-wrap {
    min-height: 540px;
  }
  .manifesto h2,
  .relationship-intro {
    position: static;
  }
  .founders-head > p,
  .principles-head > p,
  .fit-head > p {
    margin-left: 0;
  }
  .principle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .fit-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
}

@media (max-width: 720px) {
  .founder-grid {
    grid-template-columns: 1fr;
  }
  .founder-card {
    min-height: 610px;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100vw - 24px);
    --radius: 20px;
  }
  h1 {
    font-size: clamp(4rem, 20vw, 6rem);
  }
  h2 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }
  .hero {
    padding: 120px 0 82px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .button {
    width: 100%;
  }
  .hero-photo-wrap {
    min-height: 440px;
  }
  .hero-photo {
    width: 92%;
    border-radius: 160px 160px 24px 24px;
  }
  .hero-orbit {
    width: 360px;
    height: 360px;
    left: -35px;
  }
  .institutional-word {
    right: -16px;
    font-size: 2rem;
  }
  .floating-note {
    min-width: 145px;
    padding: 14px;
    font-size: 0.58rem;
  }
  .floating-note--one {
    left: -1%;
  }
  .floating-note--two {
    right: -2%;
  }
  .manifesto,
  .founders,
  .principles,
  .relationship,
  .fit,
  .cta {
    padding: 100px 0;
  }
  .manifesto-points {
    grid-template-columns: 1fr;
  }
  .manifesto-point {
    padding: 20px 0;
    border-bottom: 1px solid rgba(89, 83, 83, 0.12);
  }
  .founder-card {
    min-height: 540px;
  }
  .founder-copy {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }
  .principle-grid {
    grid-template-columns: 1fr;
  }
  .principle-card {
    min-height: 270px;
  }
  .principle-card h3 {
    margin-top: 70px;
  }
  .relationship-step {
    grid-template-columns: 52px 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

.founders {
  background: linear-gradient(135deg, #7c3432 0%, #682826 58%, #8b2518 128%);
  color: rgba(253, 253, 253, 0.82);
}

.founders .eyebrow {
  color: var(--paper);
}

.founders .eyebrow::before {
  background: currentColor;
}

.founders h2 {
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.founders-head > p {
  color: rgba(253, 253, 253, 0.82);
}

.principles-head > div > .eyebrow,
.fit-head > div > .eyebrow {
  width: max-content;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* Etapa 1: estabilização do hero em tablets e celulares */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(36px, 7vw, 56px);
    align-items: start;
  }

  .hero-grid > *,
  .hero-photo-wrap,
  .hero-photo {
    min-width: 0;
    max-width: 100%;
  }

  .hero-photo-wrap {
    width: 100%;
    max-width: 640px;
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
    line-height: 0.92;
  }

  .hero {
    overflow: hidden;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero h1,
  .hero-intro {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }
}



/* Etapa 2: capacidade de entrega */

.capabilities {
  padding: 150px 0;
  background: var(--white);
}

.capabilities-head {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 68px;
}

.capabilities-head h2 {
  max-width: 770px;
  margin-bottom: 0;
}

.capabilities-head > p {
  max-width: 510px;
  margin: 0 0 8px auto;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(89, 83, 83, 0.16);
  border-left: 1px solid rgba(89, 83, 83, 0.16);
}

.capability-card {
  position: relative;
  min-height: 395px;
  padding: 30px;
  border-right: 1px solid rgba(89, 83, 83, 0.16);
  border-bottom: 1px solid rgba(89, 83, 83, 0.16);
  overflow: hidden;
  transition:
    background 0.4s var(--ease),
    color 0.4s var(--ease),
    transform 0.4s var(--ease);
}

.capability-card:hover {
  z-index: 2;
  color: rgba(241, 231, 231, 0.76);
  background: var(--ink);
  transform: translateY(-7px);
}

.capability-card b {
  display: block;
  color: var(--brand);
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
}

.capability-card h3 {
  margin: 112px 0 16px;
  color: inherit;
  font-family: var(--display);
  font-size: clamp(2rem, 2.65vw, 3.2rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.capability-card p {
  margin-bottom: 24px;
}

.capability-card > span {
  display: block;
  color: var(--brand);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-transform: uppercase;
}

.capability-card:hover > span {
  color: var(--rose);
}

.capabilities-leadership {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
  border: 1px solid rgba(89, 83, 83, 0.16);
  border-radius: 24px;
  overflow: hidden;
}

.capabilities-leadership > div {
  min-height: 145px;
  padding: 28px;
}

.capabilities-leadership > div + div {
  border-left: 1px solid rgba(89, 83, 83, 0.16);
}

.capabilities-leadership span {
  display: block;
  margin-bottom: 12px;
  color: var(--brand);
  font-family: var(--display);
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
}

.capabilities-leadership strong {
  display: block;
  max-width: 500px;
  color: var(--ink);
  font-family: var(--subtitle);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .capabilities-head {
    grid-template-columns: 1fr;
  }

  .capabilities-head > p {
    margin-left: 0;
  }

  .capabilities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .capabilities {
    padding: 100px 0;
  }

  .capabilities-grid,
  .capabilities-leadership {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: 310px;
  }

  .capability-card h3 {
    margin-top: 72px;
  }

  .capabilities-leadership > div + div {
    border-top: 1px solid rgba(89, 83, 83, 0.16);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .capabilities-head h2 {
    max-width: 100%;
    font-size: clamp(2.45rem, 11vw, 3rem);
    line-height: 0.96;
    overflow-wrap: normal;
  }
}
