.section {
  padding: 6rem 0;
}

.section.alt {
  background: var(--color-pale);
}

.hero {
  position: relative;
  height: max(540px, calc(100vh - 72px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero .scroll-cue {
  color: var(--color-text-on-dark);
}

.hero-block {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 2rem;
}

.hero-block-1 {
  background: #1C1C1C;
  padding-top: 5rem;
}

.hero-block-2 {
  background: #7A1526;
  padding-bottom: 5rem;
}

.hero-block-1 > * {
  animation: heroSlideFromLeft 1.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-block-2 > * {
  animation: heroSlideFromRight 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

@keyframes heroSlideFromRight {
  from { transform: translateX(100vw); }
  to { transform: translateX(0); }
}

@keyframes heroSlideFromLeft {
  from { transform: translateX(-100vw); }
  to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-block-1 > *, .hero-block-2 > * {
    animation: none;
  }
}

.hero h1 {
  color: var(--color-white);
  font-weight: 700;
  font-size: clamp(1.75rem, 4.1vw, 4.1rem);
  line-height: 1.3;
  max-width: 60rem;
  margin: 0 auto;
}

.hero h1 .accent {
  color: var(--color-burgundy);
  font-style: italic;
}

.eyebrow {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(0.9375rem, 1.3vw, 1.25rem);
  font-weight: 600;
  margin: 0 auto 0.75rem;
}

.hero-lede {
  color: var(--color-text-on-dark);
  font-family: 'Commissioner', var(--font-body);
  font-size: clamp(0.9375rem, 1.3vw, 1.25rem);
  max-width: clamp(30rem, 40vw, 38rem);
  margin: 0 auto clamp(1.5rem, 2.5vw, 2rem);
}

.hero-ctas {
  display: flex;
  gap: clamp(1.75rem, 2.5vw, 2.5rem);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero-ctas .btn {
  font-family: 'Commissioner', var(--font-body);
  font-weight: 600;
  font-size: clamp(0.8125rem, 0.9vw, 1rem);
  color: var(--color-white);
  padding: 0.6875rem 1.375rem;
  border: 1.5px solid var(--color-white);
  border-radius: 3px;
  background: none;
  transition: background 0.25s ease;
}

.hero-ctas .btn:hover {
  background: #1C1C1C;
}

.stats {
  position: relative;
  background: var(--color-white);
  height: max(540px, calc(100vh - 72px));
  display: flex;
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.stat {
  text-align: center;
  padding: 3rem 0.75rem;
  border-right: 1px solid var(--color-burgundy);
  opacity: 0;
  transform: translateY(10px);
}

.stat:last-child {
  border-right: none;
}

.stats.in-view .stat {
  animation: statFadeUp 1.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.stats.in-view .stat:nth-child(1) { animation-delay: 0s; }
.stats.in-view .stat:nth-child(2) { animation-delay: 0.5s; }
.stats.in-view .stat:nth-child(3) { animation-delay: 1s; }
.stats.in-view .stat:nth-child(4) { animation-delay: 1.5s; }

@keyframes statFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .stat {
    opacity: 1;
    transform: none;
  }
  .stats.in-view .stat {
    animation: none;
  }
}

.stat-num {
  font-family: var(--font-heading);
  color: var(--color-text);
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: 700;
}

.stat-lbl {
  color: var(--color-slate);
  font-size: 0.8125rem;
  margin-top: 0.25rem;
}

.why {
  position: relative;
  height: max(594px, calc(100vh - 72px));
  display: flex;
  align-items: center;
  padding: 0;
  background: var(--color-white);
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.why > .wrap {
  width: 100%;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-num {
  font-weight: 400;
  color: var(--color-burgundy);
}

.why-card {
  min-width: 0;
  border: 1.5px solid var(--color-navy);
  border-radius: 3px;
  padding: 2rem 1.75rem;
  overflow-wrap: break-word;
}

.why-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
}

.journey {
  position: relative;
  height: max(594px, calc(100vh - 72px));
  display: flex;
  align-items: center;
  padding: 0;
  background: var(--color-white);
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.journey > .wrap {
  width: 100%;
}

.itin-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
}

.itin-row-bottom {
  grid-template-columns: repeat(2, 1fr);
  max-width: 66%;
  margin: 0.875rem auto 0;
}

.itin-card {
  background: var(--color-burgundy);
  border-radius: 3px;
  padding: 1.375rem 1rem;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
}

.journey.in-view .itin-card {
  animation: statFadeUp 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.journey.in-view .itin-row-top .itin-card:nth-child(1) { animation-delay: 0s; }
.journey.in-view .itin-row-top .itin-card:nth-child(2) { animation-delay: 0.3s; }
.journey.in-view .itin-row-top .itin-card:nth-child(3) { animation-delay: 0.6s; }
.journey.in-view .itin-row-bottom .itin-card:nth-child(1) { animation-delay: 0.9s; }
.journey.in-view .itin-row-bottom .itin-card:nth-child(2) { animation-delay: 1.2s; }

@media (prefers-reduced-motion: reduce) {
  .itin-card {
    opacity: 1;
    transform: none;
  }
  .journey.in-view .itin-card {
    animation: none;
  }
}

.itin-day {
  font-size: 0.8125rem;
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: 0.625rem;
}

.itin-card h4 {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 700;
}

.fork {
  position: relative;
  height: max(594px, calc(100vh - 72px));
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  background: var(--color-white);
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.fork > .wrap {
  width: 100%;
}

.fork .sec-head {
  margin-bottom: 2rem;
}

.fork-solo .sec-head {
  margin-bottom: 1rem;
}

.fork-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.fork-col {
  padding: 3rem 2.75rem 2rem;
  border: 1.5px solid var(--color-navy);
  border-radius: 3px;
}

.fork-tag {
  color: var(--color-burgundy);
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.fork-col h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.fork-col .btn {
  margin-top: 1rem;
  padding: 0.5625rem 1.1875rem;
}

.fork-col ul {
  margin: 0 0 1.75rem;
}

.fork-col li {
  color: var(--color-text);
  font-size: 0.90625rem;
  padding: 0.5rem 0 0.5rem 1.375rem;
  position: relative;
  border-bottom: 1px solid var(--color-line);
}

.fork-col li::before {
  content: "▫";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-navy);
}

.fork-col li:last-child {
  border-bottom: none;
}

.partners-teaser {
  position: relative;
  height: max(540px, calc(100vh - 72px));
  display: flex;
  align-items: center;
  background: var(--color-white);
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.partners-teaser > .wrap {
  width: 100%;
}

.partners-teaser-cta {
  display: flex;
  justify-content: center;
}

.about-strip {
  position: relative;
  height: max(594px, calc(100vh - 72px));
  display: flex;
  align-items: center;
  background: var(--color-white);
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.about-strip > .wrap {
  width: 100%;
}

.about-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
}

.about-big {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
}

.about-big span {
  display: block;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.0625rem;
  margin-top: 0.5rem;
  color: var(--color-navy-deep);
}

.about-inner p {
  max-width: 35rem;
  color: var(--color-navy-deep);
  font-weight: 400;
}

.leadership {
  position: relative;
  height: max(666px, calc(100vh - 72px));
  display: flex;
  align-items: center;
  padding-top: 1.5rem;
  background: var(--color-white);
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.leadership .sec-head {
  margin-bottom: 1.5rem;
}

.leadership > .wrap {
  width: 100%;
}

.lead-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.lead-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-navy);
  border-radius: 3px;
  padding: 1.5rem 1.5rem;
  text-align: center;
}

.lead-card h3 {
  font-size: 1.1875rem;
  margin-bottom: 0.25rem;
}

.lead-role {
  color: var(--color-burgundy);
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.lead-card p:not(.lead-role) {
  font-size: 0.9375rem;
}

.partners {
  position: relative;
  height: max(594px, calc(100vh - 72px));
  display: flex;
  align-items: center;
  padding: 0;
  background: var(--color-white);
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.partners > .wrap {
  width: 100%;
}

.partners .sec-head {
  margin-bottom: 2rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.partner-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-navy);
  border-radius: 3px;
  padding: 2.5rem 2.25rem 1.5rem;
}

.partner-card .btn {
  margin-top: 1rem;
}

.partner-tag {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.partner-card.active .partner-tag {
  color: var(--color-burgundy);
}

.partner-card.open .partner-tag {
  color: var(--color-burgundy);
}

.partner-card h3 {
  font-size: 1.3125rem;
  margin-bottom: 0.75rem;
}

.site-footer {
  background: var(--color-white);
  padding: 4rem 0 1.75rem;
  scroll-snap-align: start;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--color-burgundy);
}

.foot-brand p {
  color: var(--color-slate);
  font-size: 0.84375rem;
  margin-top: 0.875rem;
  max-width: 20rem;
}

.foot-cta {
  display: inline-block;
  margin-top: 1.25rem;
  border: 1.5px solid var(--color-navy);
  border-radius: 3px;
  padding: 0.5625rem 1.1875rem;
  color: var(--color-navy);
  font-family: 'Commissioner', var(--font-body);
  font-weight: 550;
  font-size: 0.875rem;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.site-footer .foot-cta:hover {
  background: var(--color-burgundy);
  color: var(--color-white);
}

.site-footer h5 {
  color: var(--color-navy);
  font-family: 'Commissioner', var(--font-body);
  font-weight: 550;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.site-footer li {
  margin-bottom: 0.625rem;
}

.site-footer a {
  color: var(--color-navy);
  font-size: 0.875rem;
}

.site-footer a:hover {
  color: var(--color-burgundy);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.foot-bottom p {
  color: var(--color-slate);
  font-size: 0.78125rem;
}

@media (max-width: 860px) {
  .hero-block-1 {
    padding-top: 1.5rem;
  }
  .hero-block-2 {
    padding-bottom: 1.5rem;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat {
    border-right: none;
    border-bottom: 1px solid var(--color-burgundy);
  }
  .why-grid,
  .lead-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }
  .itin-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .itin-row-bottom {
    max-width: 100%;
  }
  .fork-grid {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stat,
  .itin-card {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .hero {
    height: auto;
    min-height: calc(100vh - 72px);
  }
  .stats,
  .why,
  .journey,
  .fork,
  .partners-teaser,
  .about-strip,
  .leadership,
  .partners {
    height: auto;
    min-height: 0;
  }
  .stats,
  .why,
  .journey,
  .fork,
  .partners-teaser,
  .about-strip,
  .leadership,
  .partners {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .why,
  .journey,
  .fork,
  .partners-teaser,
  .about-strip,
  .leadership,
  .partners {
    overflow: visible;
  }
}
