html,
body {
  overflow-x: hidden;
}

.hero-copy {
  width: 100%;
  min-width: 0;
}

.hero-copy .eyebrow {
  display: inline-block;
  max-width: 760px;
  margin-bottom: 22px;
  padding: 9px 12px 8px;
  border-left: 3px solid var(--amber);
  background: rgba(23, 21, 18, 0.48);
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 1.8px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

@media (min-width: 1100px) {
  .hero-copy {
    max-width: 1240px;
  }

  .hero-copy h1 {
    max-width: 1160px;
    font-size: clamp(70px, 6.3vw, 94px);
  }
}

.microcopy {
  margin-top: 12px !important;
  font-size: 13px !important;
  opacity: 0.82;
}

.consulting-cta {
  max-width: 900px;
  margin: 40px auto 0;
  padding: clamp(36px, 6vw, 72px);
  border: 1px solid var(--line);
  text-align: center;
}

.consulting-cta h3 {
  margin: 0 auto 20px;
  max-width: 760px;
}

.consulting-cta > p:not(.eyebrow) {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

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

.formula-grid article:nth-child(2n) {
  padding-right: 0;
}

.formula-grid article:nth-child(n + 3) {
  border-top: 1px solid var(--ink);
}

.venue-carousel {
  overflow: hidden;
  border-top: 1px solid rgba(238, 234, 226, 0.28);
  border-bottom: 1px solid rgba(238, 234, 226, 0.28);
  background: var(--ink);
  color: var(--ivory);
}

.venue-track {
  display: flex;
  width: max-content;
  animation: venue-scroll 34s linear infinite;
}

.venue-logos {
  display: flex;
  align-items: center;
}

.venue-logos span {
  display: grid;
  place-items: center;
  min-width: 240px;
  min-height: 118px;
  padding: 22px 32px;
  border-right: 1px solid rgba(238, 234, 226, 0.2);
  font: 400 24px/1.05 var(--serif);
  text-align: center;
}

.venue-carousel:hover .venue-track {
  animation-play-state: paused;
}

.faq {
  background: var(--ivory);
}

.faq-list {
  max-width: 980px;
  margin-left: auto;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 24px 42px 24px 0;
  cursor: pointer;
  font: 400 clamp(22px, 2.4vw, 34px)/1.1 var(--serif);
}

.faq-list p {
  max-width: 720px;
  margin: 0;
  padding: 0 0 28px;
}

@keyframes venue-scroll {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 800px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy .eyebrow {
    max-width: 100%;
    font-size: 12px;
    letter-spacing: 1.35px;
  }

  .consulting-cta {
    padding: 36px 20px;
  }

  .formula-grid {
    grid-template-columns: 1fr;
  }

  .venue-track {
    animation-duration: 25s;
  }

  .venue-logos span {
    min-width: 185px;
    min-height: 92px;
    padding: 18px 24px;
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .venue-track {
    animation-play-state: paused;
  }
}
