body.entrance-active {
  overflow: hidden;
}
.brand-loader {
  display: grid;
  place-items: center;
  background: var(--loader-ivory);
  clip-path: inset(0 0 0 0);
  animation: none;
  contain: strict;
  z-index: var(--z-loader);
}
.brand-loader__stage {
  width: min(56vw, 1075px);
  aspect-ratio: 8/3;
}
.brand-loader__animation,
.brand-loader__animation svg {
  display: block;
  width: 100%;
  height: 100%;
}
.brand-loader.is-exiting {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.2s cubic-bezier(0.87, 0, 0.13, 1);
  will-change: clip-path;
}
.brand-loader[hidden] {
  display: none;
}
.foundation-note {
  margin: 28px 0 -2px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brand);
}
.values-complete {
  grid-template-columns: auto minmax(190px, 0.72fr) minmax(0, 1.35fr);
  gap: var(--space-2-5) clamp(28px, 3vw, 44px);
}
.values-complete .values-heading {
  min-width: 0;
  align-self: start;
}
.values-complete .values-heading h3 {
  max-width: 8ch;
  font-size: clamp(2.4rem, 3.5vw, 3.9rem);
  line-height: 0.92;
  text-wrap: balance;
}
.values-complete .values-heading p {
  grid-column: auto;
  font-size: 1rem;
  margin-top: var(--space-2);
}
.values-list {
  min-width: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-self: center;
  border-top: 1px solid var(--support-40);
}
.values-list li {
  min-width: 0;
  padding: var(--space-2) var(--space-1-5) var(--space-2) 0;
  border-bottom: 1px solid var(--support-40);
  font-size: clamp(0.95rem, 1.25vw, 1.15rem);
  font-weight: 800;
  line-height: 1.3;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}
.hero-copy h1 span {
  animation-play-state: paused;
}
body.entrance-complete .hero-copy h1 span {
  animation-play-state: running;
}
body.entrance-complete .hero-copy h1 span:nth-child(1) {
  animation-delay: 0.05s;
}
body.entrance-complete .hero-copy h1 span:nth-child(2) {
  animation-delay: 0.1s;
}
body.entrance-complete .hero-copy h1 span:nth-child(3) {
  animation-delay: 0.15s;
}
@media (min-width: 801px) and (max-width: 1100px) {
  .value-card:nth-child(3),
  .value-card:nth-child(4) {
    grid-column: 1 / -1;
  }
}
@media (max-width: 800px) {
  .brand-loader__stage {
    width: 92vw;
  }
  .values-complete {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .values-complete .values-heading h3 {
    font-size: 3.15rem;
  }
  .values-complete .values-heading p {
    margin: 8px 0 18px;
  }
  .values-list {
    grid-template-columns: 1fr 1fr;
  }
  .values-list li {
    padding: 11px 8px 11px 0;
    font-size: 0.9rem;
    line-height: 1.25;
  }
  .values-list li:nth-child(odd) {
    border-right: 1px solid var(--support-40);
  }
  .values-list li:nth-child(even) {
    padding-left: 10px;
  }
  .values-complete {
    min-height: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .brand-loader {
    display: none;
  }
  .hero-copy h1 span {
    animation-play-state: running;
  }
}
